summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-08-07 17:47:25 +0200
committerJulian Andres Klode <jak@debian.org>2009-08-07 17:47:25 +0200
commite526904d0440e720cbeebf895faf884717f3fbb3 (patch)
tree8438ba618219fd3525627225d5634a091524d6a7 /setup.py
parent68120a33ecb68da02cfb8124244be79ff5a2fad8 (diff)
downloadpython-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.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 9b33ed5d..4eb6987e 100644
--- a/setup.py
+++ b/setup.py
@@ -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