Searched refs:bdist (Results 1 – 25 of 27) sorted by relevance
12
/external/python/setuptools/setuptools/command/ |
D | __init__.py | 9 from distutils.command.bdist import bdist 14 if 'egg' not in bdist.format_commands: 15 bdist.format_command['egg'] = ('bdist_egg', "Python .egg file") 16 bdist.format_commands.append('egg') 18 del bdist, sys
|
/external/python/cpython2/Doc/distutils/ |
D | commandref.rst | 52 .. % \protect\command{bdist} command family} 53 .. % \label{bdist-cmds} 55 .. % \subsection{\protect\command{bdist}} 56 .. % \subsection{\protect\command{bdist\_dumb}} 57 .. % \subsection{\protect\command{bdist\_rpm}} 58 .. % \subsection{\protect\command{bdist\_wininst}}
|
D | builtdist.rst | 29 uses the setup script and the :command:`bdist` command family to generate built 35 python setup.py bdist 60 The :command:`bdist` command has a :option:`!--formats` option, similar to the 64 python setup.py bdist --format=zip 118 You don't have to use the :command:`bdist` command with the :option:`!--formats` 120 interested in. Some of these :command:`bdist` "sub-commands" actually generate 124 :command:`bdist` sub-commands, and the formats generated by each, are: 168 or the :command:`bdist` command with the :option:`!--format` option:: 170 python setup.py bdist --formats=rpm 281 .. % \command{bdist\_rpm} command with one that writes whatever else you want [all …]
|
D | introduction.rst | 139 python setup.py bdist --help-formats
|
D | apiref.rst | 1779 :mod:`distutils.command.bdist` --- Build a binary installer 1782 .. module:: distutils.command.bdist
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_bdist.py | 7 from distutils.command.bdist import bdist 18 cmd = bdist(dist) 32 cmd = bdist(dist)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_bdist.py | 6 from distutils.command.bdist import bdist 17 cmd = bdist(dist) 31 cmd = bdist(dist)
|
/external/python/cpython3/Doc/distutils/ |
D | commandref.rst | 96 .. % \protect\command{bdist} command family} 97 .. % \label{bdist-cmds} 99 .. % \subsection{\protect\command{bdist}} 100 .. % \subsection{\protect\command{bdist\_dumb}} 101 .. % \subsection{\protect\command{bdist\_rpm}} 102 .. % \subsection{\protect\command{bdist\_wininst}}
|
D | builtdist.rst | 29 uses the setup script and the :command:`bdist` command family to generate built 35 python setup.py bdist 60 The :command:`bdist` command has a :option:`!--formats` option, similar to the 64 python setup.py bdist --format=zip 126 You don't have to use the :command:`bdist` command with the :option:`!--formats` 128 interested in. Some of these :command:`bdist` "sub-commands" actually generate 132 binary and source RPMs. The :command:`bdist` sub-commands, and the formats 177 or the :command:`bdist` command with the :option:`!--format` option:: 179 python setup.py bdist --formats=rpm 290 .. % \command{bdist\_rpm} command with one that writes whatever else you want [all …]
|
D | introduction.rst | 139 python setup.py bdist --help-formats
|
D | apiref.rst | 1787 :mod:`distutils.command.bdist` --- Build a binary installer 1790 .. module:: distutils.command.bdist
|
/external/python/cpython2/Lib/distutils/command/ |
D | bdist.py | 20 for format in bdist.format_commands: 22 bdist.format_command[format][1])) 27 class bdist(Command): class
|
D | bdist_wininst.py | 89 bdist = self.distribution.get_command_obj('bdist') 90 bdist.plat_name = self.plat_name
|
/external/python/cpython3/Lib/distutils/command/ |
D | bdist.py | 17 for format in bdist.format_commands: 19 bdist.format_command[format][1])) 24 class bdist(Command): class
|
D | bdist_wininst.py | 81 bdist = self.distribution.get_command_obj('bdist') 82 bdist.plat_name = self.plat_name
|
/external/fonttools/ |
D | tox.ini | 49 [testenv:bdist] 70 {[testenv:bdist]deps} argument 75 {[testenv:bdist]commands}
|
/external/capstone/bindings/python/ |
D | Makefile | 1 .PHONY: gen_const install install3 install_cython sdist sdist3 bdist bdist3 clean check 50 bdist: target
|
/external/python/cpython3/Lib/test/ |
D | test_sundry.py | 30 import distutils.command.bdist
|
/external/grpc-grpc/tools/distrib/python/ |
D | submit.py | 78 if args.bdist:
|
/external/python/cpython2/Lib/test/ |
D | test_sundry.py | 31 import distutils.command.bdist
|
/external/python/setuptools/docs/ |
D | setuptools.txt | 1299 installed "bdist" packaging tool that internally uses the distutils 1301 examples of "bdist" formats that this should work with include the 1315 either the "bdist" tool in question or setuptools can be modified to 1474 the command line ahead of the ``sdist`` or ``bdist`` commands that you want 1752 supply this, then the ``--dist-dir`` setting of the ``bdist`` command 1781 because they were copied from similar ``bdist`` commands used as an example for 1786 Keep the contents of the ``--bdist-dir`` tree around after creating the 1789 ``--bdist-dir=DIR, -b DIR`` 2104 ``bdist`` command's ``--dist-dir`` option, which will usually be the
|
/external/libvpx/libvpx/vp9/encoder/ |
D | vp9_rdopt.c | 1603 int64_t bdist; member 2113 &bsi->rdstat[i][mode_idx].byrate, &bsi->rdstat[i][mode_idx].bdist, in rd_pick_best_sub8x8_mode() 2151 bd += bsi->rdstat[i][mode_idx].bdist; in rd_pick_best_sub8x8_mode()
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.3rc1.rst | 928 --skip-build option given to bdist.
|
D | 2.7a1.rst | 3144 Added bdist_msi to the list of bdist supported formats. Initial fix by
|
/external/python/cpython3/Doc/whatsnew/ |
D | 3.5.rst | 1083 enabled by passing ``xztar`` as an argument to ``bdist --format``.
|
12