|
| 1 | +project(python-setuptools) |
| 2 | + |
| 3 | +set(setuptools_src |
| 4 | + setuptools/archive_util.py |
| 5 | + setuptools/compat.py |
| 6 | + setuptools/depends.py |
| 7 | + setuptools/dist.py |
| 8 | + setuptools/extension.py |
| 9 | + setuptools/__init__.py |
| 10 | + setuptools/lib2to3_ex.py |
| 11 | + setuptools/msvc9_support.py |
| 12 | + setuptools/package_index.py |
| 13 | + setuptools/py26compat.py |
| 14 | + setuptools/py27compat.py |
| 15 | + setuptools/py31compat.py |
| 16 | + setuptools/sandbox.py |
| 17 | + setuptools/site-patch.py |
| 18 | + setuptools/ssl_support.py |
| 19 | + setuptools/unicode_utils.py |
| 20 | + setuptools/utils.py |
| 21 | + setuptools/version.py |
| 22 | + setuptools/windows_support.py |
| 23 | +) |
| 24 | +set(setuptools_command_src |
| 25 | + setuptools/command/alias.py |
| 26 | + setuptools/command/bdist_egg.py |
| 27 | + setuptools/command/bdist_rpm.py |
| 28 | + setuptools/command/bdist_wininst.py |
| 29 | + setuptools/command/build_ext.py |
| 30 | + setuptools/command/build_py.py |
| 31 | + setuptools/command/develop.py |
| 32 | + setuptools/command/easy_install.py |
| 33 | + setuptools/command/egg_info.py |
| 34 | + setuptools/command/__init__.py |
| 35 | + setuptools/command/install_egg_info.py |
| 36 | + setuptools/command/install_lib.py |
| 37 | + setuptools/command/install.py |
| 38 | + setuptools/command/install_scripts.py |
| 39 | + setuptools/command/register.py |
| 40 | + setuptools/command/rotate.py |
| 41 | + setuptools/command/saveopts.py |
| 42 | + setuptools/command/sdist.py |
| 43 | + setuptools/command/setopt.py |
| 44 | + setuptools/command/test.py |
| 45 | + setuptools/command/upload_docs.py |
| 46 | +) |
| 47 | + |
| 48 | +set(setuptools_tmpl |
| 49 | + "setuptools/script (dev).tmpl" |
| 50 | + setuptools/script.tmpl |
| 51 | +) |
| 52 | + |
| 53 | +set(pkgresources_src |
| 54 | + pkg_resources/__init__.py |
| 55 | +) |
| 56 | +set(pkgresources_vendor_src |
| 57 | + pkg_resources/_vendor/__init__.py |
| 58 | +) |
| 59 | +set(pkgresources_vendorp_src |
| 60 | + pkg_resources/_vendor/packaging/__about__.py |
| 61 | + pkg_resources/_vendor/packaging/_compat.py |
| 62 | + pkg_resources/_vendor/packaging/__init__.py |
| 63 | + pkg_resources/_vendor/packaging/specifiers.py |
| 64 | + pkg_resources/_vendor/packaging/_structures.py |
| 65 | + pkg_resources/_vendor/packaging/version.py |
| 66 | +) |
| 67 | + |
| 68 | +pyc("py27_setuptools" SOURCES ${setuptools_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/setuptools) |
| 69 | +pyc("py27_setuptools_command" SOURCES ${setuptools_command_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/setuptools/command) |
| 70 | +install(FILES ${setuptools_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/setuptools) |
| 71 | +install(FILES ${setuptools_command_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/setuptools/command) |
| 72 | + |
| 73 | +pyc("py26_setuptools" SOURCES ${setuptools_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools) |
| 74 | +pyc("py26_setuptools_command" SOURCES ${setuptools_command_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/command) |
| 75 | +install(FILES ${setuptools_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools) |
| 76 | +install(FILES ${setuptools_command_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools/command) |
| 77 | + |
| 78 | +pyc("py26_pkgr" SOURCES ${pkgresources_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources) |
| 79 | +pyc("py26_pkgr_vendor" SOURCES ${pkgresources_vendor_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources/_vendor/packaging) |
| 80 | +pyc("py26_pkgr_vendorp" SOURCES ${pkgresources_vendorp_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources/_vendor) |
| 81 | +install(FILES ${pkgresources_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources) |
| 82 | +install(FILES ${pkgresources_vendor_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources/_vendor) |
| 83 | +install(FILES ${pkgresources_vendorp_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/pkg_resources/_vendor/packaging) |
| 84 | + |
| 85 | +pyc("py27_pkgr" SOURCES ${pkgresources_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources) |
| 86 | +pyc("py27_pkgr_vendor" SOURCES ${pkgresources_vendor_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources/_vendor/packaging) |
| 87 | +pyc("py27_pkgr_vendorp" SOURCES ${pkgresources_vendorp_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources/_vendor) |
| 88 | +install(FILES ${pkgresources_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources) |
| 89 | +install(FILES ${pkgresources_vendor_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources/_vendor) |
| 90 | +install(FILES ${pkgresources_vendorp_src} DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/pkg_resources/_vendor/packaging) |
| 91 | + |
| 92 | +INSTALL(DIRECTORY setuptools.egg-info/ DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.7/Extras/lib/python/setuptools-18.5-py2.7.egg-info) |
| 93 | +INSTALL(DIRECTORY setuptools.egg-info/ DESTINATION libexec/darling/System/Library/Frameworks/Python.framework/Versions/2.6/Extras/lib/python/setuptools-18.5-py2.6.egg-info) |
0 commit comments