Changeset 391 for python/trunk/Doc/distutils/builtdist.rst
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Doc/distutils/builtdist.rst
r2 r391 81 81 | ``tar`` | tar file (:file:`.tar`) | \(3) | 82 82 +-------------+------------------------------+---------+ 83 | ``zip`` | zip file (:file:`.zip`) | \(4)|83 | ``zip`` | zip file (:file:`.zip`) | (2),(4) | 84 84 +-------------+------------------------------+---------+ 85 85 | ``rpm`` | RPM | \(5) | … … 89 89 | ``sdux`` | HP-UX :program:`swinstall` | | 90 90 +-------------+------------------------------+---------+ 91 | ``rpm`` | RPM | \(5) | 92 +-------------+------------------------------+---------+ 93 | ``wininst`` | self-extracting ZIP file for | (2),(4) | 91 | ``wininst`` | self-extracting ZIP file for | \(4) | 94 92 | | Windows | | 95 93 +-------------+------------------------------+---------+ 94 | ``msi`` | Microsoft Installer. | | 95 +-------------+------------------------------+---------+ 96 96 97 97 98 Notes: … … 102 103 (2) 103 104 default on Windows 104 105 **\*\*** to-do! **\*\***106 105 107 106 (3) … … 134 133 | :command:`bdist_wininst` | wininst | 135 134 +--------------------------+-----------------------+ 135 | :command:`bdist_msi` | msi | 136 +--------------------------+-----------------------+ 136 137 137 138 The following sections give details on the individual :command:`bdist_\*` … … 144 145 ================================= 145 146 146 **\*\***Need to document absolute vs. prefix-relative packages here, but first147 I have to implement it! **\*\*** 147 .. XXX Need to document absolute vs. prefix-relative packages here, but first 148 I have to implement it! 148 149 149 150 … … 174 175 175 176 python setup.py bdist_rpm --packager="John Doe <jdoe@example.org>" \ 176 bdist_wininst --target _version="2.0"177 bdist_wininst --target-version="2.0" 177 178 178 179 Creating RPM packages is driven by a :file:`.spec` file, much as using the … … 239 240 you distribute or package many Python module distributions, you might want to 240 241 put options that apply to all of them in your personal Distutils configuration 241 file (:file:`~/.pydistutils.cfg`). 242 file (:file:`~/.pydistutils.cfg`). If you want to temporarily disable 243 this file, you can pass the --no-user-cfg option to setup.py. 242 244 243 245 There are three steps to building a binary RPM package, all of which are … … 319 321 320 322 By default the installer will display the cool "Python Powered" logo when it is 321 run, but you can also supply your own bitmap which must be a Windows323 run, but you can also supply your own 152x261 bitmap which must be a Windows 322 324 :file:`.bmp` file with the :option:`--bitmap` option. 323 325 … … 355 357 To cross-compile, you must download the Python source code and cross-compile 356 358 Python itself for the platform you are targetting - it is not possible from a 357 binary install tion of Python (as the .lib etc file for other platforms are359 binary installation of Python (as the .lib etc file for other platforms are 358 360 not included.) In practice, this means the user of a 32 bit operating 359 361 system will need to use Visual Studio 2008 to open the … … 372 374 --------------------------- 373 375 374 Starting with Python 2.3, a postinstallation script can be specified w hich the376 Starting with Python 2.3, a postinstallation script can be specified with the 375 377 :option:`--install-script` option. The basename of the script must be 376 378 specified, and the script filename must also be listed in the scripts argument … … 425 427 Which folders are available depends on the exact Windows version, and probably 426 428 also the configuration. For details refer to Microsoft's documentation of the 427 :c func:`SHGetSpecialFolderPath` function.429 :c:func:`SHGetSpecialFolderPath` function. 428 430 429 431
Note:
See TracChangeset
for help on using the changeset viewer.