From 044869f9ea011d9d744fbf96a2e6c2d69b505813 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <piotr@debian.org> Date: Fri, 6 Jul 2012 23:09:34 +0200 Subject: [PATCH] dist_fallback: add python-imaging (which wasn't recognized before due to .pth file) --- debian/changelog | 7 +++++++ pydist/dist_fallback | 7 +++---- pydist/generate_fallback_list.py | 2 ++ 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/debian/changelog b/debian/changelog index e2a25a9..a92001d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +python-defaults (2.7.3-2) UNRELEASED; urgency=low + + * dist_fallback: add python-imaging (which wasn't recognized before due to + .pth file) + + -- Piotr Ożarowski <piotr@debian.org> Fri, 06 Jul 2012 23:03:32 +0200 + python-defaults (2.7.3-1) unstable; urgency=low [ Piotr Ożarowski ] diff --git a/pydist/dist_fallback b/pydist/dist_fallback index 9cf7a50..ff7aef9 100644 --- a/pydist/dist_fallback +++ b/pydist/dist_fallback @@ -2,6 +2,7 @@ python python setuptools python-pkg-resources wsgiref python (>= 2.5) | python-wsgiref argparse python (>= 2.7) | python-argparse +pil python-imaging AddOns python-peak.util BatchModify trac-batchmodify BitTornado bittornado @@ -193,6 +194,7 @@ debpartial_mirror debpartial-mirror deluge deluge-common devscripts devscripts dicompyler dicompyler +dispcalGUI dispcalgui dissy dissy djagios djagios django_ajax_selects django-ajax-selects @@ -372,7 +374,6 @@ openstack.common python-openstack-common osc osc pYsearch python-yahoo pbundler pbundler -pdfposter pdfposter pdfshuffler pdfshuffler pep8 pep8 perroquet perroquet @@ -405,7 +406,6 @@ py_rrdtool python-rrdtool pyacidobasic python-acidobasic pyacoustid python-acoustid pyalsaaudio python-alsaaudio -pybackpack pybackpack pybloom python-bloomfilter pybridge pybridge pybtex pybtex @@ -450,7 +450,6 @@ pyrit pyrit pyrite_publisher pyrite-publisher pysane python-imaging-sane pysatellites python-satellites -pysendfile python-sendfile pyserial python-serial pysnmp python-pysnmp4 pysnmp_apps python-pysnmp4-apps @@ -625,9 +624,9 @@ ubuntu_sso_client ubuntu-sso-client udev_discover udev-discover ufw ufw unattended_upgrades unattended-upgrades -undertaker undertaker unittest_xml_reporting python-xmlrunner urlscan urlscan +vamos undertaker vboxapi virtualbox virtaal virtaal virtinst virtinst diff --git a/pydist/generate_fallback_list.py b/pydist/generate_fallback_list.py index cbaf720..ee2667d 100755 --- a/pydist/generate_fallback_list.py +++ b/pydist/generate_fallback_list.py @@ -72,4 +72,6 @@ fp.write('python python\n') fp.write('setuptools python-pkg-resources\n') fp.write('wsgiref python (>= 2.5) | python-wsgiref\n') fp.write('argparse python (>= 2.7) | python-argparse\n') +# wasn't recognized due to .pth file (egg-info is in PIL/ and not in *-packages/) +fp.write('pil python-imaging\n') fp.writelines(result) -- GitLab