Searched refs:bdist_rpm (Results 1 – 25 of 28) sorted by relevance
12
/external/python/setuptools/setuptools/command/ |
D | bdist_rpm.py | 1 import distutils.command.bdist_rpm as orig 4 class bdist_rpm(orig.bdist_rpm): class 19 orig.bdist_rpm.run(self) 24 spec = orig.bdist_rpm._make_spec_file(self)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_bdist_rpm.py | 9 from distutils.command.bdist_rpm import bdist_rpm 71 cmd = bdist_rpm(dist) 115 cmd = bdist_rpm(dist)
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_bdist_rpm.py | 17 from distutils.command.bdist_rpm import bdist_rpm 76 cmd = bdist_rpm(dist) 120 cmd = bdist_rpm(dist)
|
/external/python/setuptools/setuptools.egg-info/ |
D | entry_points.txt | 8 bdist_rpm = setuptools.command.bdist_rpm:bdist_rpm
|
D | SOURCES.txt | 124 setuptools/command/bdist_rpm.py
|
/external/python/cpython2/Doc/distutils/ |
D | builtdist.rst | 123 ``zip``), and :command:`bdist_rpm` generates both binary and source RPMs. The 131 | :command:`bdist_rpm` | rpm, srpm | 164 :command:`bdist_rpm` command:: 166 python setup.py bdist_rpm 176 python setup.py bdist_rpm --packager="John Doe <jdoe@example.org>" \ 181 :command:`bdist_rpm` command normally creates a :file:`.spec` file based on the 208 options to the :command:`bdist_rpm` command as follows: 211 | RPM :file:`.spec` file option | :command:`bdist_rpm` option | default value | 261 :option:`!--spec-only` option to make :command:`bdist_rpm` just create the 266 :command:`bdist_rpm`.) [all …]
|
D | configfile.rst | 100 run to run; for example, :command:`bdist_rpm` needs to know everything required 104 supplied as options to :command:`bdist_rpm`, which would be very tedious to do 108 [bdist_rpm]
|
D | introduction.rst | 125 :command:`bdist_rpm` command, Solaris :program:`pkgtool` 130 python setup.py bdist_rpm 132 (The :command:`bdist_rpm` command uses the :command:`rpm` executable, therefore
|
D | apiref.rst | 1827 :mod:`distutils.command.bdist_rpm` --- Build a binary distribution as a Redhat RPM and SRPM 1830 .. module:: distutils.command.bdist_rpm
|
/external/python/cpython3/Doc/distutils/ |
D | builtdist.rst | 131 ``xztar``, ``ztar``, and ``zip``), and :command:`bdist_rpm` generates both 140 | :command:`bdist_rpm` | rpm, srpm | 173 :command:`bdist_rpm` command:: 175 python setup.py bdist_rpm 185 python setup.py bdist_rpm --packager="John Doe <jdoe@example.org>" \ 190 :command:`bdist_rpm` command normally creates a :file:`.spec` file based on the 217 options to the :command:`bdist_rpm` command as follows: 220 | RPM :file:`.spec` file option | :command:`bdist_rpm` option | default value | 270 :option:`!--spec-only` option to make :command:`bdist_rpm` just create the 275 :command:`bdist_rpm`.) [all …]
|
D | configfile.rst | 108 run to run; for example, :command:`bdist_rpm` needs to know everything required 112 supplied as options to :command:`bdist_rpm`, which would be very tedious to do 118 [bdist_rpm]
|
D | introduction.rst | 125 :command:`bdist_rpm` command, Solaris :program:`pkgtool` 130 python setup.py bdist_rpm 132 (The :command:`bdist_rpm` command uses the :command:`rpm` executable, therefore
|
D | apiref.rst | 1835 :mod:`distutils.command.bdist_rpm` --- Build a binary distribution as a Redhat RPM and SRPM 1838 .. module:: distutils.command.bdist_rpm
|
/external/python/cpython3/Lib/test/ |
D | test_sundry.py | 31 import distutils.command.bdist_rpm
|
/external/python/cpython2/Lib/test/ |
D | test_sundry.py | 32 import distutils.command.bdist_rpm
|
/external/python/cpython3/Lib/distutils/command/ |
D | bdist_rpm.py | 15 class bdist_rpm(Command): class
|
/external/python/cpython2/Lib/distutils/command/ |
D | bdist_rpm.py | 20 class bdist_rpm (Command): class
|
/external/python/cpython2/Doc/extending/ |
D | building.rst | 134 python setup.py bdist_rpm
|
/external/python/cpython3/Doc/extending/ |
D | building.rst | 166 python setup.py bdist_rpm
|
/external/python/setuptools/ |
D | CHANGES.rst | 3182 * Fix uploaded ``bdist_rpm`` packages being described as ``bdist_egg`` 3197 * Fix ``upload`` command not uploading files built by ``bdist_rpm`` or 3362 * Enhanced ``bdist_rpm`` so that it installs single-version eggs that
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7a1.rst | 3714 Installed but not listed *.pyo was breaking Distutils bdist_rpm command. 3723 Added --quiet option to Distutils bdist_rpm command.
|
D | 2.7.4rc1.rst | 2341 Make the distutils upload command aware of bdist_rpm products.
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.0.rst | 867 difficult, "bdist_rpm" and "bdist_wininst" commands have already been
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.0.rst | 867 difficult, "bdist_rpm" and "bdist_wininst" commands have already been
|
/external/python/setuptools/docs/ |
D | setuptools.txt | 1297 Setuptools currently supports ``bdist_rpm``, ``bdist_wininst``, and 2051 distutils command, so that commands like ``bdist_wininst`` and ``bdist_rpm``
|
12