svn commit: r555250 - in head/devel: . py-virtualenv-api
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Sun Nov 15 17:55:54 UTC 2020
Author: sunpoet
Date: Sun Nov 15 17:55:48 2020
New Revision: 555250
URL: https://svnweb.freebsd.org/changeset/ports/555250
Log:
Add py-virtualenv-api 2.1.18
virtualenv is a tool to create isolated Python environments. Unfortunately, it
does not expose a native Python API. This package aims to provide an API in the
form of a wrapper around virtualenv.
It can be used to create and delete environments and perform package management
inside the environment.
WWW: https://github.com/sjkingo/virtualenv-api
Added:
head/devel/py-virtualenv-api/
head/devel/py-virtualenv-api/Makefile (contents, props changed)
head/devel/py-virtualenv-api/distinfo (contents, props changed)
head/devel/py-virtualenv-api/pkg-descr (contents, props changed)
Modified:
head/devel/Makefile
Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile Sun Nov 15 17:55:42 2020 (r555249)
+++ head/devel/Makefile Sun Nov 15 17:55:48 2020 (r555250)
@@ -5194,6 +5194,7 @@
SUBDIR += py-versiontools
SUBDIR += py-vine
SUBDIR += py-virtualenv
+ SUBDIR += py-virtualenv-api
SUBDIR += py-virtualenv-clone
SUBDIR += py-virtualenvwrapper
SUBDIR += py-visitor
Added: head/devel/py-virtualenv-api/Makefile
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-virtualenv-api/Makefile Sun Nov 15 17:55:48 2020 (r555250)
@@ -0,0 +1,22 @@
+# Created by: Po-Chuan Hsieh <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= virtualenv-api
+PORTVERSION= 2.1.18
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at FreeBSD.org
+COMMENT= API for virtualenv/pip
+
+LICENSE= BSD2CLAUSE
+
+RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=0:devel/py-six@${PY_FLAVOR}
+
+USES= python
+USE_PYTHON= autoplist concurrent distutils
+
+NO_ARCH= yes
+
+.include <bsd.port.mk>
Added: head/devel/py-virtualenv-api/distinfo
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-virtualenv-api/distinfo Sun Nov 15 17:55:48 2020 (r555250)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1605426317
+SHA256 (virtualenv-api-2.1.18.tar.gz) = 2115cceaeab27faf2909780c442f4ee7a33fda9a49fe8255967432290a0557af
+SIZE (virtualenv-api-2.1.18.tar.gz) = 7376
Added: head/devel/py-virtualenv-api/pkg-descr
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/devel/py-virtualenv-api/pkg-descr Sun Nov 15 17:55:48 2020 (r555250)
@@ -0,0 +1,8 @@
+virtualenv is a tool to create isolated Python environments. Unfortunately, it
+does not expose a native Python API. This package aims to provide an API in the
+form of a wrapper around virtualenv.
+
+It can be used to create and delete environments and perform package management
+inside the environment.
+
+WWW: https://github.com/sjkingo/virtualenv-api
More information about the svn-ports-all
mailing list