diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-07-31 15:24:09 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-07-31 15:24:09 +0200 |
| commit | fb8e639a7199a5707ae24c8424e5dc748fe0be37 (patch) | |
| tree | f74afae1939f25d36bb325c991b28c194595dc7e /setup.py | |
| parent | dd85685eb9c2a3ce4392b581818d4ac84410f296 (diff) | |
| download | python-apt-fb8e639a7199a5707ae24c8424e5dc748fe0be37.tar.gz | |
python: Remove the progress classes in apt_pkg.
They have been replaced with apt.progress.base, so stuff like GTK+ or
Qt progress classes can be written using subclassing.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -35,9 +35,8 @@ files = ['apt_pkgmodule.cc', 'acquire.cc', 'cache.cc', 'cdrom.cc', 'hashstring.cc', 'indexfile.cc', 'indexrecords.cc', 'metaindex.cc', 'pkgmanager.cc', 'pkgrecords.cc', 'pkgsrcrecords.cc', 'policy.cc', 'progress.cc', 'sourcelist.cc', 'string.cc', 'tag.cc', - 'opprogress.cc', 'acquireprogress.cc', 'cdromprogress.cc', 'lock.cc', - 'acquire-item.cc'] -files = sorted(['python/' + fname for fname in files]) + 'lock.cc', 'acquire-item.cc'] +files = sorted(['python/' + fname for fname in files], key=lambda s: s[:-3]) apt_pkg = Extension("apt_pkg", files, libraries=["apt-pkg"]) # The apt_inst module |
