19.1.1: Features - Restore pyproject.toml handling to how it was with pip 19.0.3 to prevent the need to add --no-use-pep517 when installing in editable mode. Bug Fixes - Fix a regression that caused @ to be quoted in pypiserver links. This interfered with parsing the revision string from VCS urls.
28 lines
738 B
Makefile
28 lines
738 B
Makefile
# $NetBSD: Makefile,v 1.31 2019/05/07 05:17:20 adam Exp $
|
|
|
|
DISTNAME= pip-19.1.1
|
|
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
|
CATEGORIES= devel python
|
|
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
|
|
|
|
USE_LANGUAGES= # none
|
|
|
|
REPLACE_PYTHON+= src/pip/_vendor/appdirs.py
|
|
REPLACE_PYTHON+= src/pip/_vendor/chardet/cli/chardetect.py
|
|
REPLACE_PYTHON+= src/pip/_vendor/requests/certs.py
|
|
|
|
post-install:
|
|
cd ${DESTDIR}${PREFIX}/bin && ${RM} -f pip pip[2-3]
|
|
|
|
# no tests included
|
|
do-test:
|
|
${DO_NADA}
|
|
|
|
.include "../../lang/python/application.mk"
|
|
.include "../../lang/python/egg.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|