--- python-setuptools-0.6c8.orig/setuptools.egg-info/entry_points.txt
+++ python-setuptools-0.6c8/setuptools.egg-info/entry_points.txt
@@ -32,7 +32,8 @@
 
 [console_scripts]
 easy_install = setuptools.command.easy_install:main
-easy_install-2.3 = setuptools.command.easy_install:main
+easy_install-2.5 = setuptools.command.easy_install:main
+easy_install-2.4 = setuptools.command.easy_install:main
 
 [setuptools.file_finders]
 svn_cvs = setuptools.command.sdist:_default_revctrl
--- python-setuptools-0.6c8.orig/setup.py
+++ python-setuptools-0.6c8/setup.py
@@ -13,6 +13,16 @@
 import sys
 scripts = []
 
+import os
+console_scripts = ["easy_install = setuptools.command.easy_install:main"]
+if os.environ.has_key('PYVERS'):
+    for version in os.environ['PYVERS'].split():
+        console_scripts.append("easy_install-%s = setuptools.command.easy_install:main"
+                               % version)
+else:
+    console_scripts.append("easy_install-%s = setuptools.command.easy_install:main"
+                           % sys.version[:3])
+
 setup(
     name="setuptools",
     version=VERSION,
@@ -66,11 +76,7 @@
             "dependency_links.txt = setuptools.command.egg_info:overwrite_arg",
         ],
 
-        "console_scripts": [
-             "easy_install = setuptools.command.easy_install:main",
-             "easy_install-%s = setuptools.command.easy_install:main"
-                % sys.version[:3]
-        ],
+        "console_scripts": console_scripts,
 
         "setuptools.file_finders":
             ["svn_cvs = setuptools.command.sdist:_default_revctrl"],
--- python-setuptools-0.6c8.orig/setuptools/command/egg_info.py
+++ python-setuptools-0.6c8/setuptools/command/egg_info.py
@@ -217,9 +217,9 @@
             data = f.read()
             f.close()
 
-            if data.startswith('8'):
+            if data.startswith('8') or data.startswith('9'):
                 data = map(str.splitlines,data.split('\n\x0c\n'))
-                del data[0][0]  # get rid of the '8'
+                del data[0][0]  # get rid of the '8' or '9'
                 dirurl = data[0][3]
                 localrev = max([int(d[9]) for d in data if len(d)>9 and d[9]]+[0])
             elif data.startswith('<?xml'):
--- python-setuptools-0.6c8.orig/setuptools/command/sdist.py
+++ python-setuptools-0.6c8/setuptools/command/sdist.py
@@ -86,7 +86,7 @@
     f = open(filename,'rU')
     data = f.read()
     f.close()
-    if data.startswith('8'):    # subversion 1.4
+    if data.startswith('8') or data.startswith('9'):  # subversion 1.4 or 1.5
         for record in map(str.splitlines, data.split('\n\x0c\n')[1:]):
             if not record or len(record)>=6 and record[5]=="delete":
                 continue    # skip deleted
--- python-setuptools-0.6c8.orig/log
+++ python-setuptools-0.6c8/log
@@ -0,0 +1,328 @@
+dpkg-buildpackage: source package python-setuptools
+dpkg-buildpackage: source version 0.6c8-1
+dpkg-buildpackage: source changed by Matthias Klose <doko@debian.org>
+dpkg-buildpackage: host architecture i386
+ fakeroot debian/rules clean
+dh_testdir
+dh_testroot
+rm -f build-stamp
+rm -rf build dist
+#rm -rf setuptools.egg-info
+find -name '*.py[co]' | xargs rm -f
+dh_clean
+ dpkg-source -i -b python-setuptools-0.6c8
+dpkg-source: building python-setuptools using existing python-setuptools_0.6c8.orig.tar.gz
+dpkg-source: building python-setuptools in python-setuptools_0.6c8-1.diff.gz
+dpkg-source: warning: newly created empty file 'build-python2.5' will not be represented in diff
+dpkg-source: warning: newly created empty file 'build-python2.4' will not be represented in diff
+dpkg-source: building python-setuptools in python-setuptools_0.6c8-1.dsc
+ debian/rules build
+touch build-stamp
+ fakeroot debian/rules binary
+dh_testdir
+dh_testroot
+dh_clean -k
+dh_installdirs -A usr/bin usr/lib/python2.5/site-packages
+python2.5 setup.py install --root=/home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools
+running install
+running build
+running build_py
+creating build
+creating build/lib
+copying pkg_resources.py -> build/lib
+copying easy_install.py -> build/lib
+copying site.py -> build/lib
+creating build/lib/setuptools
+copying setuptools/extension.py -> build/lib/setuptools
+copying setuptools/sandbox.py -> build/lib/setuptools
+copying setuptools/depends.py -> build/lib/setuptools
+copying setuptools/__init__.py -> build/lib/setuptools
+copying setuptools/archive_util.py -> build/lib/setuptools
+copying setuptools/dist.py -> build/lib/setuptools
+copying setuptools/package_index.py -> build/lib/setuptools
+creating build/lib/setuptools/tests
+copying setuptools/tests/test_resources.py -> build/lib/setuptools/tests
+copying setuptools/tests/__init__.py -> build/lib/setuptools/tests
+copying setuptools/tests/test_packageindex.py -> build/lib/setuptools/tests
+copying setuptools/tests/doctest.py -> build/lib/setuptools/tests
+creating build/lib/setuptools/command
+copying setuptools/command/build_ext.py -> build/lib/setuptools/command
+copying setuptools/command/upload.py -> build/lib/setuptools/command
+copying setuptools/command/bdist_wininst.py -> build/lib/setuptools/command
+copying setuptools/command/egg_info.py -> build/lib/setuptools/command
+copying setuptools/command/__init__.py -> build/lib/setuptools/command
+copying setuptools/command/setopt.py -> build/lib/setuptools/command
+copying setuptools/command/install_egg_info.py -> build/lib/setuptools/command
+copying setuptools/command/bdist_egg.py -> build/lib/setuptools/command
+copying setuptools/command/install.py -> build/lib/setuptools/command
+copying setuptools/command/bdist_rpm.py -> build/lib/setuptools/command
+copying setuptools/command/install_lib.py -> build/lib/setuptools/command
+copying setuptools/command/saveopts.py -> build/lib/setuptools/command
+copying setuptools/command/develop.py -> build/lib/setuptools/command
+copying setuptools/command/easy_install.py -> build/lib/setuptools/command
+copying setuptools/command/build_py.py -> build/lib/setuptools/command
+copying setuptools/command/install_scripts.py -> build/lib/setuptools/command
+copying setuptools/command/sdist.py -> build/lib/setuptools/command
+copying setuptools/command/rotate.py -> build/lib/setuptools/command
+copying setuptools/command/alias.py -> build/lib/setuptools/command
+copying setuptools/command/register.py -> build/lib/setuptools/command
+copying setuptools/command/test.py -> build/lib/setuptools/command
+copying setuptools/cli.exe -> build/lib/setuptools
+copying setuptools/gui.exe -> build/lib/setuptools
+running install_lib
+copying build/lib/pkg_resources.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages
+copying build/lib/easy_install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages
+copying build/lib/site.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/extension.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/sandbox.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/depends.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/archive_util.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/dist.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/package_index.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/test_resources.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/test_packageindex.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/doctest.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/build_ext.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/upload.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_wininst.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/egg_info.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/setopt.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_egg_info.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_egg.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_rpm.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_lib.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/saveopts.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/develop.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/easy_install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/build_py.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_scripts.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/sdist.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/rotate.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/alias.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/register.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/command/test.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command
+copying build/lib/setuptools/cli.exe -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+copying build/lib/setuptools/gui.exe -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/pkg_resources.py to pkg_resources.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/easy_install.py to easy_install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/site.py to site.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/extension.py to extension.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/sandbox.py to sandbox.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/depends.py to depends.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/archive_util.py to archive_util.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/dist.py to dist.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/package_index.py to package_index.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests/test_resources.py to test_resources.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests/test_packageindex.py to test_packageindex.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/tests/doctest.py to doctest.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/build_ext.py to build_ext.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/upload.py to upload.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/bdist_wininst.py to bdist_wininst.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/egg_info.py to egg_info.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/setopt.py to setopt.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/install_egg_info.py to install_egg_info.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/bdist_egg.py to bdist_egg.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/install.py to install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/bdist_rpm.py to bdist_rpm.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/install_lib.py to install_lib.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/saveopts.py to saveopts.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/develop.py to develop.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/easy_install.py to easy_install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/build_py.py to build_py.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/install_scripts.py to install_scripts.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/sdist.py to sdist.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/rotate.py to rotate.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/alias.py to alias.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/register.py to register.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/test.py to test.pyc
+running install_egg_info
+running egg_info
+writing setuptools.egg-info/PKG-INFO
+writing top-level names to setuptools.egg-info/top_level.txt
+writing dependency_links to setuptools.egg-info/dependency_links.txt
+writing entry points to setuptools.egg-info/entry_points.txt
+reading manifest file 'setuptools.egg-info/SOURCES.txt'
+writing manifest file 'setuptools.egg-info/SOURCES.txt'
+Copying setuptools.egg-info to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools-0.6c8-py2.5.egg-info
+running install_scripts
+Installing easy_install script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+Installing easy_install-2.5 script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+Installing easy_install-2.4 script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+mv debian/python-setuptools/usr/lib/python2.5/site-packages/pkg_resources.py \
+	  debian/python-pkg-resources/usr/lib/python2.5/site-packages/
+mv debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools-0.6c8-py2.5.egg-info \
+	  debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools.egg-info
+echo setuptools-0.6c8.egg-info \
+	  > debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools.pth
+dh_installdirs -A usr/bin usr/lib/python2.4/site-packages
+python2.4 setup.py install --root=/home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools
+running install
+running build
+running build_py
+running install_lib
+copying build/lib/pkg_resources.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages
+copying build/lib/easy_install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages
+copying build/lib/site.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/extension.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/sandbox.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/depends.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/archive_util.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/dist.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/package_index.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/test_resources.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/test_packageindex.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests
+copying build/lib/setuptools/tests/doctest.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests
+creating /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/build_ext.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/upload.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_wininst.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/egg_info.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/__init__.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/setopt.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_egg_info.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_egg.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/bdist_rpm.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_lib.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/saveopts.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/develop.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/easy_install.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/build_py.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/install_scripts.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/sdist.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/rotate.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/alias.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/register.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/command/test.py -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command
+copying build/lib/setuptools/cli.exe -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+copying build/lib/setuptools/gui.exe -> /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/pkg_resources.py to pkg_resources.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/easy_install.py to easy_install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/site.py to site.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/extension.py to extension.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/sandbox.py to sandbox.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/depends.py to depends.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/archive_util.py to archive_util.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/dist.py to dist.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/package_index.py to package_index.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests/test_resources.py to test_resources.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests/test_packageindex.py to test_packageindex.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/tests/doctest.py to doctest.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/build_ext.py to build_ext.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/upload.py to upload.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/bdist_wininst.py to bdist_wininst.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/egg_info.py to egg_info.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/__init__.py to __init__.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/setopt.py to setopt.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/install_egg_info.py to install_egg_info.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/bdist_egg.py to bdist_egg.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/install.py to install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/bdist_rpm.py to bdist_rpm.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/install_lib.py to install_lib.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/saveopts.py to saveopts.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/develop.py to develop.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/easy_install.py to easy_install.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/build_py.py to build_py.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/install_scripts.py to install_scripts.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/sdist.py to sdist.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/rotate.py to rotate.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/alias.py to alias.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/register.py to register.pyc
+byte-compiling /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/test.py to test.pyc
+running install_egg_info
+running egg_info
+writing setuptools.egg-info/PKG-INFO
+writing top-level names to setuptools.egg-info/top_level.txt
+writing dependency_links to setuptools.egg-info/dependency_links.txt
+writing entry points to setuptools.egg-info/entry_points.txt
+reading manifest file 'setuptools.egg-info/SOURCES.txt'
+writing manifest file 'setuptools.egg-info/SOURCES.txt'
+Copying setuptools.egg-info to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools-0.6c8-py2.4.egg-info
+running install_scripts
+Installing easy_install script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+Installing easy_install-2.5 script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+Installing easy_install-2.4 script to /home/packages/python-setuptools/python-setuptools-0.6c8/debian/python-setuptools/usr/bin
+mv debian/python-setuptools/usr/lib/python2.4/site-packages/pkg_resources.py \
+	  debian/python-pkg-resources/usr/lib/python2.4/site-packages/
+mv debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools-0.6c8-py2.4.egg-info \
+	  debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools.egg-info
+echo setuptools-0.6c8.egg-info \
+	  > debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools.pth
+find debian -name 'setuptools_boot.py*' | xargs rm -f
+find debian -name '*.py[co]' | xargs rm -f
+: # Replace all '#!' calls to python with 
+: # and make them executable
+for i in \
+	  debian/python-setuptools/usr/bin/easy_install \
+	  `find debian/python-setuptools/usr/lib -type f`; \
+	do \
+	  case "$i" in *-[0-9].[0-9]) continue; esac; \
+	  sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
+	        $i > $i.temp; \
+	  if cmp --quiet $i $i.temp; then \
+	    rm -f $i.temp; \
+	  else \
+	    mv -f $i.temp $i; \
+	    chmod 755 $i; \
+	    echo "fixed interpreter: $i"; \
+	  fi; \
+	done
+fixed interpreter: debian/python-setuptools/usr/bin/easy_install
+fixed interpreter: debian/python-setuptools/usr/lib/python2.5/site-packages/setuptools/command/easy_install.py
+fixed interpreter: debian/python-setuptools/usr/lib/python2.4/site-packages/setuptools/command/easy_install.py
+dh_testdir
+dh_testroot
+dh_installchangelogs -i
+dh_installdocs -ppython-setuptools setuptools.txt EasyInstall.txt
+dh_installdocs -ppython-pkg-resources pkg_resources.txt
+dh_compress -i
+dh_fixperms -i
+sed -i -e 's/python2\../python2.5/g' \
+		debian/python-setuptools/usr/bin/easy_install-2.5
+dh_pycentral -i
+cat debian/python-setuptools.substvars
+python:Versions=2.4, 2.5
+python:Provides=python2.4-setuptools, python2.5-setuptools
+python:Depends=python2.4, python2.5, python-central (>= 0.5.8), python (<< 2.6), python (>= 2.4)
+( \
+	  echo 'python:Versions=2.4, 2.5'; \
+	  echo 'python:Provides=python2.4-setuptools, python2.5-setuptools'; \
+	  echo 'python:Depends=python (>= 2.4), python (<< 2.6), python-central (>= 0.5.7)'; \
+	) > debian/python-setuptools.substvars
+cat debian/python-setuptools.substvars
+python:Versions=2.4, 2.5
+python:Provides=python2.4-setuptools, python2.5-setuptools
+python:Depends=python (>= 2.4), python (<< 2.6), python-central (>= 0.5.7)
+dh_installdeb -i
+dh_gencontrol -i
+dh_md5sums -i
+dh_builddeb -i
+warning, `debian/python-setuptools/DEBIAN/control' contains user-defined field `Python-Version'
+dpkg-deb: ignoring 1 warnings about the control file(s)
+dpkg-deb: building package `python-setuptools' in `../python-setuptools_0.6c8-1_all.deb'.
+warning, `debian/python-pkg-resources/DEBIAN/control' contains user-defined field `Python-Version'
+dpkg-deb: ignoring 1 warnings about the control file(s)
+dpkg-deb: building package `python-pkg-resources' in `../python-pkg-resources_0.6c8-1_all.deb'.
+ signfile python-setuptools_0.6c8-1.dsc
+ dpkg-genchanges -sa >../python-setuptools_0.6c8-1_i386.changes
+
+dpkg-genchanges: including full source code in upload
+ signfile python-setuptools_0.6c8-1_i386.changes
+
+dpkg-buildpackage: full upload (original source is included)
--- python-setuptools-0.6c8.orig/debian/copyright
+++ python-setuptools-0.6c8/debian/copyright
@@ -0,0 +1,333 @@
+This package was debianized by Matthias Klose <m@klose.in-berlin.de> on
+Tue, 14 Dec 2004 12:45:14 +0100.
+
+It was downloaded from
+http://cheeseshop.python.org/pypi/setuptools
+
+Copyright:
+
+Upstream Author: Phillip J. Eby
+
+License:
+
+PSF or ZPL (both appended in this file)
+
+
+PSF
+------------------------------------------------------------------------------
+
+A. HISTORY OF THE SOFTWARE
+==========================
+
+Python was created in the early 1990s by Guido van Rossum at Stichting
+Mathematisch Centrum (CWI, see http://www.cwi.nl) in the Netherlands
+as a successor of a language called ABC.  Guido remains Python's
+principal author, although it includes many contributions from others.
+
+In 1995, Guido continued his work on Python at the Corporation for
+National Research Initiatives (CNRI, see http://www.cnri.reston.va.us)
+in Reston, Virginia where he released several versions of the
+software.
+
+In May 2000, Guido and the Python core development team moved to
+BeOpen.com to form the BeOpen PythonLabs team.  In October of the same
+year, the PythonLabs team moved to Digital Creations (now Zope
+Corporation, see http://www.zope.com).  In 2001, the Python Software
+Foundation (PSF, see http://www.python.org/psf/) was formed, a
+non-profit organization created specifically to own Python-related
+Intellectual Property.  Zope Corporation is a sponsoring member of
+the PSF.
+
+All Python releases are Open Source (see http://www.opensource.org for
+the Open Source Definition).  Historically, most, but not all, Python
+releases have also been GPL-compatible; the table below summarizes
+the various releases.
+
+    Release         Derived     Year        Owner       GPL-
+		    from                                compatible? (1)
+
+    0.9.0 thru 1.2              1991-1995   CWI         yes
+    1.3 thru 1.5.2  1.2         1995-1999   CNRI        yes
+    1.6             1.5.2       2000        CNRI        no
+    2.0             1.6         2000        BeOpen.com  no
+    1.6.1           1.6         2001        CNRI        yes (2)
+    2.1             2.0+1.6.1   2001        PSF         no
+    2.0.1           2.0+1.6.1   2001        PSF         yes
+    2.1.1           2.1+2.0.1   2001        PSF         yes
+    2.2             2.1.1       2001        PSF         yes
+    2.1.2           2.1.1       2002        PSF         yes
+    2.1.3           2.1.2       2002        PSF         yes
+    2.2.1           2.2         2002        PSF         yes
+    2.2.2           2.2.1       2002        PSF         yes
+    2.3             2.2.2       2002-2003   PSF         yes
+
+Footnotes:
+
+(1) GPL-compatible doesn't mean that we're distributing Python under
+    the GPL.  All Python licenses, unlike the GPL, let you distribute
+    a modified version without making your changes open source.  The
+    GPL-compatible licenses make it possible to combine Python with
+    other software that is released under the GPL; the others don't.
+
+(2) According to Richard Stallman, 1.6.1 is not GPL-compatible,
+    because its license has a choice of law clause.  According to
+    CNRI, however, Stallman's lawyer has told CNRI's lawyer that 1.6.1
+    is "not incompatible" with the GPL.
+
+Thanks to the many outside volunteers who have worked under Guido's
+direction to make these releases possible.
+
+
+B. TERMS AND CONDITIONS FOR ACCESSING OR OTHERWISE USING PYTHON
+===============================================================
+
+PSF LICENSE AGREEMENT FOR PYTHON 2.3
+------------------------------------
+
+1. This LICENSE AGREEMENT is between the Python Software Foundation
+("PSF"), and the Individual or Organization ("Licensee") accessing and
+otherwise using Python 2.3 software in source or binary form and its
+associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, PSF
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+license to reproduce, analyze, test, perform and/or display publicly,
+prepare derivative works, distribute, and otherwise use Python 2.3
+alone or in any derivative version, provided, however, that PSF's
+License Agreement and PSF's notice of copyright, i.e., "Copyright (c)
+2001, 2002 Python Software Foundation; All Rights Reserved" are
+retained in Python 2.3 alone or in any derivative version prepared by
+Licensee.
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python 2.3 or any part thereof, and wants to make
+the derivative work available to others as provided herein, then
+Licensee hereby agrees to include in any such work a brief summary of
+the changes made to Python 2.3.
+
+4. PSF is making Python 2.3 available to Licensee on an "AS IS"
+basis.  PSF MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, PSF MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 2.3 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. PSF SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+2.3 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 2.3,
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. Nothing in this License Agreement shall be deemed to create any
+relationship of agency, partnership, or joint venture between PSF and
+Licensee.  This License Agreement does not grant permission to use PSF
+trademarks or trade name in a trademark sense to endorse or promote
+products or services of Licensee, or any third party.
+
+8. By copying, installing or otherwise using Python 2.3, Licensee
+agrees to be bound by the terms and conditions of this License
+Agreement.
+
+
+BEOPEN.COM LICENSE AGREEMENT FOR PYTHON 2.0
+-------------------------------------------
+
+BEOPEN PYTHON OPEN SOURCE LICENSE AGREEMENT VERSION 1
+
+1. This LICENSE AGREEMENT is between BeOpen.com ("BeOpen"), having an
+office at 160 Saratoga Avenue, Santa Clara, CA 95051, and the
+Individual or Organization ("Licensee") accessing and otherwise using
+this software in source or binary form and its associated
+documentation ("the Software").
+
+2. Subject to the terms and conditions of this BeOpen Python License
+Agreement, BeOpen hereby grants Licensee a non-exclusive,
+royalty-free, world-wide license to reproduce, analyze, test, perform
+and/or display publicly, prepare derivative works, distribute, and
+otherwise use the Software alone or in any derivative version,
+provided, however, that the BeOpen Python License is retained in the
+Software, alone or in any derivative version prepared by Licensee.
+
+3. BeOpen is making the Software available to Licensee on an "AS IS"
+basis.  BEOPEN MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, BEOPEN MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF THE SOFTWARE WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+4. BEOPEN SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF THE
+SOFTWARE FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS
+AS A RESULT OF USING, MODIFYING OR DISTRIBUTING THE SOFTWARE, OR ANY
+DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+5. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+6. This License Agreement shall be governed by and interpreted in all
+respects by the law of the State of California, excluding conflict of
+law provisions.  Nothing in this License Agreement shall be deemed to
+create any relationship of agency, partnership, or joint venture
+between BeOpen and Licensee.  This License Agreement does not grant
+permission to use BeOpen trademarks or trade names in a trademark
+sense to endorse or promote products or services of Licensee, or any
+third party.  As an exception, the "BeOpen Python" logos available at
+http://www.pythonlabs.com/logos.html may be used according to the
+permissions granted on that web page.
+
+7. By copying, installing or otherwise using the software, Licensee
+agrees to be bound by the terms and conditions of this License
+Agreement.
+
+
+CNRI LICENSE AGREEMENT FOR PYTHON 1.6.1
+---------------------------------------
+
+1. This LICENSE AGREEMENT is between the Corporation for National
+Research Initiatives, having an office at 1895 Preston White Drive,
+Reston, VA 20191 ("CNRI"), and the Individual or Organization
+("Licensee") accessing and otherwise using Python 1.6.1 software in
+source or binary form and its associated documentation.
+
+2. Subject to the terms and conditions of this License Agreement, CNRI
+hereby grants Licensee a nonexclusive, royalty-free, world-wide
+license to reproduce, analyze, test, perform and/or display publicly,
+prepare derivative works, distribute, and otherwise use Python 1.6.1
+alone or in any derivative version, provided, however, that CNRI's
+License Agreement and CNRI's notice of copyright, i.e., "Copyright (c)
+1995-2001 Corporation for National Research Initiatives; All Rights
+Reserved" are retained in Python 1.6.1 alone or in any derivative
+version prepared by Licensee.  Alternately, in lieu of CNRI's License
+Agreement, Licensee may substitute the following text (omitting the
+quotes): "Python 1.6.1 is made available subject to the terms and
+conditions in CNRI's License Agreement.  This Agreement together with
+Python 1.6.1 may be located on the Internet using the following
+unique, persistent identifier (known as a handle): 1895.22/1013.  This
+Agreement may also be obtained from a proxy server on the Internet
+using the following URL: http://hdl.handle.net/1895.22/1013".
+
+3. In the event Licensee prepares a derivative work that is based on
+or incorporates Python 1.6.1 or any part thereof, and wants to make
+the derivative work available to others as provided herein, then
+Licensee hereby agrees to include in any such work a brief summary of
+the changes made to Python 1.6.1.
+
+4. CNRI is making Python 1.6.1 available to Licensee on an "AS IS"
+basis.  CNRI MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR
+IMPLIED.  BY WAY OF EXAMPLE, BUT NOT LIMITATION, CNRI MAKES NO AND
+DISCLAIMS ANY REPRESENTATION OR WARRANTY OF MERCHANTABILITY OR FITNESS
+FOR ANY PARTICULAR PURPOSE OR THAT THE USE OF PYTHON 1.6.1 WILL NOT
+INFRINGE ANY THIRD PARTY RIGHTS.
+
+5. CNRI SHALL NOT BE LIABLE TO LICENSEE OR ANY OTHER USERS OF PYTHON
+1.6.1 FOR ANY INCIDENTAL, SPECIAL, OR CONSEQUENTIAL DAMAGES OR LOSS AS
+A RESULT OF MODIFYING, DISTRIBUTING, OR OTHERWISE USING PYTHON 1.6.1,
+OR ANY DERIVATIVE THEREOF, EVEN IF ADVISED OF THE POSSIBILITY THEREOF.
+
+6. This License Agreement will automatically terminate upon a material
+breach of its terms and conditions.
+
+7. This License Agreement shall be governed by the federal
+intellectual property law of the United States, including without
+limitation the federal copyright law, and, to the extent such
+U.S. federal law does not apply, by the law of the Commonwealth of
+Virginia, excluding Virginia's conflict of law provisions.
+Notwithstanding the foregoing, with regard to derivative works based
+on Python 1.6.1 that incorporate non-separable material that was
+previously distributed under the GNU General Public License (GPL), the
+law of the Commonwealth of Virginia shall govern this License
+Agreement only as to issues arising under or with respect to
+Paragraphs 4, 5, and 7 of this License Agreement.  Nothing in this
+License Agreement shall be deemed to create any relationship of
+agency, partnership, or joint venture between CNRI and Licensee.  This
+License Agreement does not grant permission to use CNRI trademarks or
+trade name in a trademark sense to endorse or promote products or
+services of Licensee, or any third party.
+
+8. By clicking on the "ACCEPT" button where indicated, or by copying,
+installing or otherwise using Python 1.6.1, Licensee agrees to be
+bound by the terms and conditions of this License Agreement.
+
+        ACCEPT
+
+
+CWI LICENSE AGREEMENT FOR PYTHON 0.9.0 THROUGH 1.2
+--------------------------------------------------
+
+Copyright (c) 1991 - 1995, Stichting Mathematisch Centrum Amsterdam,
+The Netherlands.  All rights reserved.
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted,
+provided that the above copyright notice appear in all copies and that
+both that copyright notice and this permission notice appear in
+supporting documentation, and that the name of Stichting Mathematisch
+Centrum or CWI not be used in advertising or publicity pertaining to
+distribution of the software without specific, written prior
+permission.
+
+STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
+THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
+FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
+OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+
+
+Zope Public License (ZPL) Version 2.1
+------------------------------------------------------------------------------
+
+A copyright notice accompanies this license document that
+identifies the copyright holders.
+
+This license has been certified as open source. It has also
+been designated as GPL compatible by the Free Software
+Foundation (FSF).
+
+Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the
+following conditions are met:
+
+1. Redistributions in source code must retain the
+   accompanying copyright notice, this list of conditions,
+   and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the accompanying
+   copyright notice, this list of conditions, and the
+   following disclaimer in the documentation and/or other
+   materials provided with the distribution.
+
+3. Names of the copyright holders must not be used to
+   endorse or promote products derived from this software
+   without prior written permission from the copyright
+   holders.
+
+4. The right to distribute this software or to use it for
+   any purpose does not give you the right to use
+   Servicemarks (sm) or Trademarks (tm) of the copyright
+   holders. Use of them is covered by separate agreement
+   with the copyright holders.
+
+5. If any files are modified, you must cause the modified
+   files to carry prominent notices stating that you changed
+   the files and the date of any change.
+
+Disclaimer
+
+  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS''
+  AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
+  NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+  AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN
+  NO EVENT SHALL THE COPYRIGHT HOLDERS BE
+  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+  LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+  HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+  OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
+  DAMAGE.
--- python-setuptools-0.6c8.orig/debian/rules
+++ python-setuptools-0.6c8/debian/rules
@@ -0,0 +1,113 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+#
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+#
+# Modified to make a template file for a multi-binary package with separated
+# build-arch and build-indep targets  by Bill Allombert 2001
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# This has to be exported to make some magic below work.
+export DH_OPTIONS
+
+# setuptools doesn't handle translated messages
+export LC_ALL=C
+
+PYVERS	:= 2.3 2.5 $(shell pyversions -vr debian/control)
+PYVERS	:= 2.5 2.4
+PYVER   := $(shell python -c 'import sys; print sys.version[:3]')
+SETUPTOOLSVER=$(shell dpkg-parsechangelog | grep 'Version:' | sed 's,Version: \(.*\)-.*,\1,g')
+export PYVERS
+
+d = debian/python-setuptools
+d2 = debian/python-pkg-resources
+
+build: build-stamp
+build-stamp: $(PYVERS:%=build-python%)
+	touch $@
+build-python%:
+	python$* setup.py build
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp
+	rm -rf build dist
+	#rm -rf setuptools.egg-info
+	-find -name '*.py[co]' | xargs rm -f
+	dh_clean
+
+install: build install-prereq $(PYVERS:%=install-python%)
+	-find debian -name 'setuptools_boot.py*' | xargs rm -f
+	-find debian -name '*.py[co]' | xargs rm -f
+
+	: # Replace all '#!' calls to python with $(PYTHON)
+	: # and make them executable
+	for i in \
+	  debian/python-setuptools/usr/bin/easy_install \
+	  `find debian/python-setuptools/usr/lib -type f`; \
+	do \
+	  case "$$i" in *-[0-9].[0-9]) continue; esac; \
+	  sed '1s,#!.*python[^ ]*\(.*\),#! /usr/bin/python\1,' \
+	        $$i > $$i.temp; \
+	  if cmp --quiet $$i $$i.temp; then \
+	    rm -f $$i.temp; \
+	  else \
+	    mv -f $$i.temp $$i; \
+	    chmod 755 $$i; \
+	    echo "fixed interpreter: $$i"; \
+	  fi; \
+	done
+
+install-prereq:
+	dh_testdir
+	dh_testroot
+	dh_clean -k
+
+install-python%:
+	dh_installdirs -A usr/bin usr/lib/python$*/site-packages
+	python$* setup.py install --root=$(CURDIR)/$(d)
+
+	mv $(d)/usr/lib/python$*/site-packages/pkg_resources.py \
+	  $(d2)/usr/lib/python$*/site-packages/
+
+	mv $(d)/usr/lib/python$*/site-packages/setuptools-$(SETUPTOOLSVER)-py$*.egg-info \
+	  $(d)/usr/lib/python$*/site-packages/setuptools.egg-info
+	echo setuptools-$(SETUPTOOLSVER).egg-info \
+	  > $(d)/usr/lib/python$*/site-packages/setuptools.pth
+
+binary-arch:
+
+binary-indep: build install
+	dh_testdir
+	dh_testroot
+	dh_installchangelogs -i
+	dh_installdocs -ppython-setuptools setuptools.txt EasyInstall.txt
+	dh_installdocs -ppython-pkg-resources pkg_resources.txt
+	dh_compress -i
+	dh_fixperms -i
+	sed -i -e 's/python2\../python2.5/g' \
+		debian/python-setuptools/usr/bin/easy_install-2.5
+	DH_PYCENTRAL=noprepare dh_pycentral -i
+	cat $(d).substvars
+	( \
+	  echo 'python:Versions=2.4, 2.5'; \
+	  echo 'python:Provides=python2.4-setuptools, python2.5-setuptools'; \
+	  echo 'python:Depends=python (>= 2.4), python (<< 2.6), python-central (>= 0.5.7)'; \
+	) > $(d).substvars
+	cat $(d).substvars
+
+	dh_installdeb -i
+	dh_gencontrol -i
+	dh_md5sums -i
+	dh_builddeb -i
+
+binary: binary-arch binary-indep
+.PHONY: build clean binary-indep binary-arch binary install
--- python-setuptools-0.6c8.orig/debian/watch
+++ python-setuptools-0.6c8/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://cheeseshop.python.org/packages/source/s/setuptools/setuptools-([0-9a-z.]*).*.zip debian uupdate
--- python-setuptools-0.6c8.orig/debian/changelog
+++ python-setuptools-0.6c8/debian/changelog
@@ -0,0 +1,144 @@
+python-setuptools (0.6c8-4~bpo40+1) etch-backports; urgency=low
+
+  * Backport testing version for backports.org
+  * Changed python-pkg-resources conflict on python-setuptools to 
+    work with backported version
+
+ -- Micah Anderson <micah@debian.org>  Sun,  3 Aug 2008 09:39:04 -0600
+
+python-setuptools (0.6c8-4) unstable; urgency=low
+
+  * Don't break with subversion-1.5. Closes: #489263.
+
+ -- Matthias Klose <doko@debian.org>  Sat, 12 Jul 2008 09:25:36 +0200
+
+python-setuptools (0.6c8-3) unstable; urgency=low
+
+  * Move site.py into the python-pkg-resources package.
+
+ -- Matthias Klose <doko@debian.org>  Wed, 09 Apr 2008 22:44:47 +0200
+
+python-setuptools (0.6c8-2) unstable; urgency=low
+
+  * python-pkg-resources: Conflict with python-setuptools. Closes: #468944.
+
+ -- Matthias Klose <doko@debian.org>  Sun, 02 Mar 2008 15:34:10 +0100
+
+python-setuptools (0.6c8-1) unstable; urgency=low
+
+  * New upstream version. Closes: #467012.
+  * Split out a python-pkg-resources package (to be used as a runtime
+    dependency instead of python-setuptools).
+
+ -- Matthias Klose <doko@debian.org>  Fri, 29 Feb 2008 01:20:15 +0100
+
+python-setuptools (0.6c7-1) unstable; urgency=low
+
+  * New upstream version.
+
+ -- Matthias Klose <doko@ubuntu.com>  Fri, 02 Nov 2007 10:57:34 -0400
+
+python-setuptools (0.6c6-1) unstable; urgency=low
+
+  * New upstream version (release candidate 6). Closes: #433556.
+
+ -- Matthias Klose <doko@debian.org>  Wed, 25 Jul 2007 02:11:49 +0200
+
+python-setuptools (0.6c5-1ubuntu1) feisty; urgency=low
+
+  * Use the unversioned interpreter name for scripts without
+    version suffix. Ubuntu #94309.
+
+ -- Matthias Klose <doko@ubuntu.com>  Thu, 29 Mar 2007 10:18:33 +0000
+
+python-setuptools (0.6c5-1) unstable; urgency=low
+
+  * New upstream version (release candidate 5).
+
+ -- Matthias Klose <doko@debian.org>  Wed, 17 Jan 2007 18:00:39 +0000
+
+python-setuptools (0.6c3-3) unstable; urgency=low
+
+  * Drop 2.3.
+
+ -- Matthias Klose <doko@debian.org>  Tue, 24 Oct 2006 00:47:58 +0200
+
+python-setuptools (0.6c3-2) unstable; urgency=low
+
+  * Build for 2.3, 2.4, 2.5.
+
+ -- Matthias Klose <doko@debian.org>  Sun, 22 Oct 2006 22:03:03 +0000
+
+python-setuptools (0.6c3-1) unstable; urgency=medium
+
+  * New upstream version (release candidate 3). Closes: #389780.
+
+ -- Matthias Klose <doko@debian.org>  Wed,  4 Oct 2006 00:49:36 +0200
+
+python-setuptools (0.6c2-1) unstable; urgency=low
+
+  * New upstream version (release candidate 2). Closes: #382573.
+  * /usr/bin/easy_install-2.3: Use python2.3 s interpreter. Closes: #386318.
+
+ -- Matthias Klose <doko@debian.org>  Fri,  8 Sep 2006 03:19:43 +0200
+
+python-setuptools (0.6b3-3) unstable; urgency=low
+
+  * Workaround #375437.
+
+ -- Matthias Klose <doko@debian.org>  Mon,  3 Jul 2006 14:08:53 +0000
+
+python-setuptools (0.6b3-2) unstable; urgency=low
+
+  * Add entry points for all versioned console scripts. Closes: #375975.
+
+ -- Matthias Klose <doko@debian.org>  Sun,  2 Jul 2006 15:14:35 +0000
+
+python-setuptools (0.6b3-1) unstable; urgency=low
+
+  * New upstream version (closes: #354621).
+    - OverflowError for amd64 build fixed (closes: #352176).
+
+ -- Matthias Klose <doko@debian.org>  Fri,  9 Jun 2006 22:14:10 +0200
+
+python-setuptools (0.6a8-0.1) unstable; urgency=low
+
+  * NMU with maintainer approval
+  * New upstream release
+  * debian/rules: Create setuptools.pth to instruct python where the
+    module is located. Closes: #330562
+
+ -- Otavio Salvador <otavio@debian.org>  Thu, 24 Nov 2005 19:26:43 -0200
+
+python-setuptools (0.6a6-1) unstable; urgency=low
+
+  * New upstream version (closes: #335101).
+
+ -- Matthias Klose <doko@debian.org>  Sun, 23 Oct 2005 13:14:22 +0000
+
+python-setuptools (0.6a2-0.1) unstable; urgency=low
+
+  * NMU with maintainer approval
+  * New upstream release
+  * Include a watch file to be easier to upgrade next time
+  * Bump Standards-Version to 3.6.2 (no changes need)
+  * Use Build-Depends-Indep since we don't build architecture dependent
+    packages
+  * Don't remove setuptools.egg-info directory on clean target since it's
+    used now on building system since it use entry_points feature to its
+    install
+
+ -- Otavio Salvador <otavio@debian.org>  Sat, 24 Sep 2005 17:00:56 -0300
+
+python-setuptools (0.5a13-1) unstable; urgency=low
+
+  * New upstream version 0.5a13.
+
+ -- Matthias Klose <doko@debian.org>  Mon, 18 Jul 2005 12:58:21 +0200
+
+python-setuptools (0.0.1.041214-0ubuntu1) hoary; urgency=low
+
+  * Initial Release.
+
+ -- Matthias Klose <m@klose.in-berlin.de>  Tue, 14 Dec 2004 12:45:14 +0100
+
--- python-setuptools-0.6c8.orig/debian/control
+++ python-setuptools-0.6c8/debian/control
@@ -0,0 +1,34 @@
+Source: python-setuptools
+Section: python
+Priority: optional
+Maintainer: Matthias Klose <doko@debian.org>
+Build-Depends-Indep: debhelper (>= 5.0.37.1), python-all-dev, python2.5-dev, python-central (>= 0.4.10)
+XS-Python-Version: 2.4, 2.5
+Standards-Version: 3.7.3
+
+Package: python-setuptools
+Architecture: all
+Depends: ${python:Depends}, python-pkg-resources (= ${source:Version})
+Conflicts: python2.3-setuptools (<< 0.6b2), python2.4-setuptools (<< 0.6b2)
+Replaces: python2.3-setuptools, python2.4-setuptools
+Provides: ${python:Provides}
+XB-Python-Version: ${python:Versions}
+Description: Python Distutils Enhancements
+ Extensions to the python-distutils for large or complex distributions.
+
+Package: python-pkg-resources
+Architecture: all
+Depends: ${python:Depends}
+Conflicts: python2.3-setuptools (<< 0.6b2), python2.4-setuptools (<< 0.6b2), python-setuptools (<< 0.6c8-3)
+Replaces: python2.3-setuptools, python2.4-setuptools
+Provides: ${python:Provides}
+Suggests: python-setuptools
+XB-Python-Version: ${python:Versions}
+Description: Package Discovery and Resource Access using pkg_resources
+ The pkg_resources module provides an API for Python libraries to
+ access their resource files, and for extensible applications and
+ frameworks to automatically discover plugins.  It also provides
+ runtime support for using C extensions that are inside zipfile-format
+ eggs, support for merging packages that have separately-distributed
+ modules or subpackages, and APIs for managing Python's current
+ "working set" of active packages.
--- python-setuptools-0.6c8.orig/debian/compat
+++ python-setuptools-0.6c8/debian/compat
@@ -0,0 +1 @@
+5
--- python-setuptools-0.6c8.orig/debian/README.Debian
+++ python-setuptools-0.6c8/debian/README.Debian
@@ -0,0 +1,6 @@
+python-setuptools for Debian
+----------------------------
+
+Snapshot, taken from the sandbox CVS.
+
+ -- Matthias Klose <m@klose.in-berlin.de>, Tue, 14 Dec 2004 12:45:14 +0100
