f19454cdb8
Changes: * Correct the deprecation message when not specifying a --format so that it uses the correct setting name (format) rather than the incorrect one (list_format) (#4058). * Fix pip check to check all available distributions and not just the local ones (#4083). * Fix a crash on non ASCII characters from lsb_release (#4062). * Fix an SyntaxError in an an used module of a vendored dependency (#4059). * Fix UNC paths on Windows (#4064).
22 lines
675 B
Makefile
22 lines
675 B
Makefile
# $NetBSD: Makefile,v 1.18 2016/12/23 19:12:38 jdolecek Exp $
|
|
|
|
DISTNAME= pip-9.0.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_PYPI:=p/pip/}
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.pip-installer.org/
|
|
COMMENT= Installs Python packages as an easy_install replacement
|
|
LICENSE= mit
|
|
|
|
REPLACE_PYTHON+= pip/__init__.py pip/_vendor/requests/certs.py
|
|
REPLACE_PYTHON+= pip/_vendor/requests/packages/chardet/chardetect.py
|
|
|
|
post-install:
|
|
${RM} -f ${DESTDIR}${PREFIX}/bin/pip
|
|
${RM} -f ${DESTDIR}${PREFIX}/bin/pip[2-3]
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|