/external/python/setuptools/setuptools/tests/ |
D | test_dist.py | 24 def sdist_with_index(distname, version): argument 25 dist_dir = index.mkdir(distname) 26 dist_sdist = '%s-%s.tar.gz' % (distname, version) 27 make_nspkg_sdist(str(dist_dir.join(dist_sdist)), distname, version)
|
D | test_easy_install.py | 523 def make_dependency_sdist(dist_path, distname, version): argument 533 """.format(name=distname, version=version))), 534 (distname + '.py', 554 def make_trivial_sdist(dist_path, distname, version): argument 568 """ % (distname, version)))]) 571 def make_nspkg_sdist(dist_path, distname, version): argument 578 parts = distname.split('.') 591 """ % (distname, version, packages, nspackage)) 619 def create_setup_requires_package(path, distname='foobar', version='0.1', argument 634 'setup_requires': ['%s==%s' % (distname, version)], [all …]
|
D | test_virtualenv.py | 86 def sdist(distname, version): argument 87 dist_path = tmpdir.join('%s-%s.tar.gz' % (distname, version)) 88 make_nspkg_sdist(str(dist_path), distname, version)
|
/external/python/cpython2/Lib/ |
D | platform.py | 225 def _dist_try_harder(distname,version,id): argument 237 distname = 'SuSE' 249 return distname,version,id 269 distname = 'slackware' 271 return distname,version,id 273 return distname,version,id 322 def linux_distribution(distname='', version='', id='', argument 350 return distname,version,id 357 distname = _distname 360 return _dist_try_harder(distname,version,id) [all …]
|
/external/ltp/testcases/lib/ |
D | tst_kvcmp.c | 74 const char *distname = tst_kvcmp_distname(cur_kver); in compare_kver() local 89 if (!distname || strcmp(distname, exver)) in compare_kver()
|
/external/libsrtp2/ |
D | Makefile.in | 322 distname = libsrtp-$(shell cat VERSION) 326 if [ -f ../$(distname).tgz ]; then \ 327 mv ../$(distname).tgz ../$(distname).tgz.bak; \ 329 cd ..; tar cvzf $(distname).tgz libsrtp
|
/external/python/cpython2/Doc/library/ |
D | platform.rst | 245 .. function:: dist(distname='', version='', id='', supported_dists=('SuSE','debian','redhat','mandr… 257 .. function:: linux_distribution(distname='', version='', id='', supported_dists=('SuSE','debian','… 269 Returns a tuple ``(distname,version,id)`` which defaults to the args given as
|
/external/python/cpython3/Doc/install/ |
D | index.rst | 255 define ABI flags; :file:`{distname}` will be replaced by the name of the module 316 C headers :file:`{userbase}/include/python{X.Y}{abiflags}/{distname}` 327 C headers :file:`{userbase}\\Python{XY}\\Include\\{distname}` 378 C headers :file:`{home}/include/python/{distname}` 428 C headers :file:`{prefix}/include/python{X.Y}{abiflags}/{distname}` 479 C headers :file:`{prefix}\\Include\\{distname}`
|
/external/python/cpython2/Doc/install/ |
D | index.rst | 298 version of Python, for example ``2.7``; :file:`{distname}` will be replaced by 359 C headers :file:`{userbase}/include/python{X.Y}/{distname}` 370 C headers :file:`{userbase}\\Python{XY}\\Include\\{distname}` 421 C headers :file:`{home}/include/python/{distname}` 474 C headers :file:`{prefix}/include/python{X.Y}/{distname}` 525 C headers :file:`{prefix}\\Include\\{distname}`
|
/external/python/setuptools/docs/ |
D | pkg_resources.txt | 1839 ``name`` and ``distname`` attributes.)
|