Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 10 Dec 2020 21:27:36 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r557462 - in head/devel: . py-pip-shims
Message-ID:  <202012102127.0BALRae1037819@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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@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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202012102127.0BALRae1037819>