aboutsummaryrefslogtreecommitdiffstats
path: root/pythoneggs.py
Commit message (Collapse)AuthorAgeFilesLines
* Make python dependencies extraction much fasterPascal Terjan2015-10-201-1/+2
| | | | | | | | | | | | | | | | | | | New style rpm dependency extractors mean that the script is called for each file in the package. This exhibit the slowness of the python one, where most of the time is spent on importing a module which is usually not needed. Running pythoneggs.py --requires on python-setuptools: Before: real 1m43.763s user 1m33.220s sys 0m7.460s After: real 0m18.298s user 0m15.060s sys 0m2.190s
* Support being passed the egg-info directoryPascal Terjan2014-10-141-1/+4
|
* fix emitting pythoneggs deps with internal generatorThierry Vignaud2014-09-261-6/+11
| | | | | | | with internal generator we only get list of matching files but we'll never get any matching directory => check parent directory
* no need to use envThierry Vignaud2014-09-241-1/+1
|
* readd back pythoneggs.pyThierry Vignaud2014-09-241-0/+183
|
* drop most of the script-based dependency generation bitsThierry Vignaud2014-09-121-183/+0
| | | | | | | | | Use rpmdeps to generate any "normal" dependencies even for the kernel module stuff, drop all other unnecessary duplication like elf, libtool and pkgconfig deps. But for TCL, which is broken since forever (we don't package the needed prov/req scripts since at least 2007)
* Switch to new pythonegg depsPascal Terjan2013-10-151-10/+3
|
* Only add new provides for now, to add them everywhere before switching requiresPascal Terjan2013-10-141-1/+10
|
* Have differrent provides/requires for python2 and python3 eggPascal Terjan2013-10-101-2/+3
|
* - merge svn rev. 271797 from Mandriva to make the python auto-requires alwaysAhmad Samir2011-02-181-7/+7
| | | | lowercase
* add encoding typePer Øyvind Karlsen2010-11-011-0/+1
|
* add documentationPer Øyvind Karlsen2010-11-011-1/+19
|
* add strict version requires on python versionPer Øyvind Karlsen2010-11-011-2/+2
|
* * don't add redundant python(abi) requires on pathsPer Øyvind Karlsen2010-10-311-1/+3
| | | | | * fix versioned python(abi) requires on paths to be '>=', not '=='
* determine python(abi) version based on pathPer Øyvind Karlsen2010-10-201-5/+7
|
* improve...Per Øyvind Karlsen2010-10-201-29/+103
|
* add pythoneggs() dependency extractorPer Øyvind Karlsen2010-10-191-0/+83