From owner-svn-ports-all@freebsd.org Sun Nov 15 17:55:54 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 490472EFA1E; Sun, 15 Nov 2020 17:55:54 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CZ0HX33fdz4fsX; Sun, 15 Nov 2020 17:55:51 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 618E41FD49; Sun, 15 Nov 2020 17:55:49 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 0AFHtn2v003106; Sun, 15 Nov 2020 17:55:49 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 0AFHtmug003102; Sun, 15 Nov 2020 17:55:48 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <202011151755.0AFHtmug003102@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sun, 15 Nov 2020 17:55:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r555250 - in head/devel: . py-virtualenv-api X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-virtualenv-api X-SVN-Commit-Revision: 555250 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 15 Nov 2020 17:55:54 -0000 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 +# $FreeBSD$ + +PORTNAME= virtualenv-api +PORTVERSION= 2.1.18 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@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 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