Skip to content

Commit c5991b0

Browse files
committed
Use http://www.python.org/packman as the base URL. Also upped the version
number because of this.
1 parent 006ebeb commit c5991b0

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/plat-mac/pimp.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Package Install Manager for Python.
22
33
This is currently a MacOSX-only strawman implementation.
4-
Motto: "He may be shabby, but he gets you what you need" :-)
4+
Despite other rumours the name stands for "Packman IMPlementation".
55
66
Tools to allow easy installation of packages. The idea is that there is
77
an online XML database per (platform, python-version) containing packages
@@ -35,7 +35,7 @@
3535

3636
NO_EXECUTE=0
3737

38-
PIMP_VERSION="0.2"
38+
PIMP_VERSION="0.3"
3939

4040
# Flavors:
4141
# source: setup-based package
@@ -44,7 +44,7 @@
4444
DEFAULT_DOWNLOADDIR='/tmp'
4545
DEFAULT_BUILDDIR='/tmp'
4646
DEFAULT_INSTALLDIR=distutils.sysconfig.get_python_lib()
47-
DEFAULT_PIMPDATABASE="http://homepages.cwi.nl/~jack/pimp-0.2/pimp-%s.plist" % distutils.util.get_platform()
47+
DEFAULT_PIMPDATABASE="http://www.python.org/packman/version-0.3/%s.plist" % distutils.util.get_platform()
4848

4949
def _cmd(output, dir, *cmditems):
5050
"""Internal routine to run a shell command in a given directory."""

0 commit comments

Comments
 (0)