diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-08-07 17:47:25 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-08-07 17:47:25 +0200 |
| commit | e526904d0440e720cbeebf895faf884717f3fbb3 (patch) | |
| tree | 8438ba618219fd3525627225d5634a091524d6a7 /setup.py | |
| parent | 68120a33ecb68da02cfb8124244be79ff5a2fad8 (diff) | |
| download | python-apt-e526904d0440e720cbeebf895faf884717f3fbb3.tar.gz | |
python/arfile.cc: Introduce apt_inst.ArArchive and apt_inst.ArMember.
This is part one of wishlist Bug#536096, introducing classes in
apt_inst.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -40,7 +40,8 @@ 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 -files = ["python/apt_instmodule.cc", "python/generic.cc", "python/tar.cc"] +files = ["python/apt_instmodule.cc", "python/generic.cc", "python/tar.cc", + "python/arfile.cc"] apt_inst = Extension("apt_inst", files, libraries=["apt-pkg", "apt-inst"]) # Replace the leading _ that is used in the templates for translation |
