svn commit: r557462 - in head/devel: . py-pip-shims
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Thu Dec 10 21:27:37 UTC 2020
Author: sunpoet
Date: Thu Dec 10 21:27:36 2020
New Revision: 557462
URL: https://svnweb.freebsd.org/changeset/ports/557462
Log:
Add py-pip-shims 0.5.3
pip-shims is a set of compatibilty access shims to the pip internal API.
pip-shims provides compatibility with pip versions 8.0 through the current
release. The shims are provided using a lazy import strategy by hacking a module
by overloading a class instance's getattr method.
WWW: https://github.com/sarugaku/pip-shims
Added:
head/devel/py-pip-shims/
head/devel/py-pip-shims/Makefile (contents, props changed)
head/devel/py-pip-shims/distinfo (contents, props changed)
head/devel/py-pip-shims/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Thu Dec 10 21:25:49 2020 (r557461)
+++ head/devel/Makefile Thu Dec 10 21:27:36 2020 (r557462)
@@ -4765,6 +4765,7 @@
SUBDIR += py-pip-api
SUBDIR += py-pip-licenses
SUBDIR += py-pip-run
+ SUBDIR += py-pip-shims
SUBDIR += py-pip-tools
SUBDIR += py-pip-tools4
SUBDIR += py-pipdeptree
Added: head/devel/py-pip-shims/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pip-shims/Makefile Thu Dec 10 21:27:36 2020 (r557462)
@@ -0,0 +1,29 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= pip-shims
+PORTVERSION= 0.5.3
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+DISTNAME= pip_shims-${PORTVERSION}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= Compatibility shims for pip versions 8 thru current
+
+LICENSE= ISCL
+LICENSE_FILE= ${WRKSRC}/LICENSE
+
+BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}packaging>=0:devel/py-packaging@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}pip>=0:devel/py-pip@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR} \
+ ${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
+
+USES= python:3.5+
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-pip-shims/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pip-shims/distinfo Thu Dec 10 21:27:36 2020 (r557462)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1607539613
+SHA256 (pip_shims-0.5.3.tar.gz) = 05b00ade9d1e686a98bb656dd9b0608a933897283dc21913fad6ea5409ff7e91
+SIZE (pip_shims-0.5.3.tar.gz) = 48405
Added: head/devel/py-pip-shims/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-pip-shims/pkg-descr Thu Dec 10 21:27:36 2020 (r557462)
@@ -0,0 +1,6 @@
+pip-shims is a set of compatibilty access shims to the pip internal API.
+pip-shims provides compatibility with pip versions 8.0 through the current
+release. The shims are provided using a lazy import strategy by hacking a module
+by overloading a class instance's getattr method.
+
+WWW: https://github.com/sarugaku/pip-shims
More information about the svn-ports-all
mailing list