diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-29 00:09:18 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-06-29 00:09:18 (GMT) |
commit | c5991b0c02aefd0cfea502000ac5ee5f5a6fef00 (patch) | |
tree | 85c86ae18cf0903641361b6ad7da8c985dffc551 /Lib | |
parent | 006ebebe5a9742b641264ea27a82c4b6353c961d (diff) | |
download | cpython-c5991b0c02aefd0cfea502000ac5ee5f5a6fef00.zip cpython-c5991b0c02aefd0cfea502000ac5ee5f5a6fef00.tar.gz cpython-c5991b0c02aefd0cfea502000ac5ee5f5a6fef00.tar.bz2 |
Use http://www.python.org/packman as the base URL. Also upped the version
number because of this.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/plat-mac/pimp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-mac/pimp.py b/Lib/plat-mac/pimp.py index b0fb6ce..b05767b 100644 --- a/Lib/plat-mac/pimp.py +++ b/Lib/plat-mac/pimp.py @@ -1,7 +1,7 @@ """Package Install Manager for Python. This is currently a MacOSX-only strawman implementation. -Motto: "He may be shabby, but he gets you what you need" :-) +Despite other rumours the name stands for "Packman IMPlementation". Tools to allow easy installation of packages. The idea is that there is an online XML database per (platform, python-version) containing packages @@ -35,7 +35,7 @@ _scriptExc_BadInstalled = "pimp._scriptExc_BadInstalled" NO_EXECUTE=0 -PIMP_VERSION="0.2" +PIMP_VERSION="0.3" # Flavors: # source: setup-based package @@ -44,7 +44,7 @@ DEFAULT_FLAVORORDER=['source', 'binary'] DEFAULT_DOWNLOADDIR='/tmp' DEFAULT_BUILDDIR='/tmp' DEFAULT_INSTALLDIR=distutils.sysconfig.get_python_lib() -DEFAULT_PIMPDATABASE="http://homepages.cwi.nl/~jack/pimp-0.2/pimp-%s.plist" % distutils.util.get_platform() +DEFAULT_PIMPDATABASE="http://www.python.org/packman/version-0.3/%s.plist" % distutils.util.get_platform() def _cmd(output, dir, *cmditems): """Internal routine to run a shell command in a given directory.""" |