Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Mar 2018 19:15:29 +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: r463521 - in head/devel: . py-pew
Message-ID:  <201803031915.w23JFTwv097124@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: sunpoet
Date: Sat Mar  3 19:15:29 2018
New Revision: 463521
URL: https://svnweb.freebsd.org/changeset/ports/463521

Log:
  Add py-pew 1.1.2
  
  Python Env Wrapper is a set of commands to manage multiple virtual environments.
  Pew can create, delete and copy your environments, using a single command to
  switch to them wherever you are, while keeping them in a single (configurable)
  location.
  
  Virtualenvs makes it easier to work on more than one project at a time without
  introducing conflicts in their dependencies.
  
  Pew is completely shell-agnostic and thus works on bash, zsh, fish, powershell,
  etc.
  
  WWW: https://pypi.python.org/pypi/pew
  WWW: https://github.com/berdario/pew

Added:
  head/devel/py-pew/
  head/devel/py-pew/Makefile   (contents, props changed)
  head/devel/py-pew/distinfo   (contents, props changed)
  head/devel/py-pew/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Sat Mar  3 19:15:24 2018	(r463520)
+++ head/devel/Makefile	Sat Mar  3 19:15:29 2018	(r463521)
@@ -4685,6 +4685,7 @@
     SUBDIR += py-pep8-naming
     SUBDIR += py-period
     SUBDIR += py-petname
+    SUBDIR += py-pew
     SUBDIR += py-pex
     SUBDIR += py-phabricator
     SUBDIR += py-phonenumbers

Added: head/devel/py-pew/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pew/Makefile	Sat Mar  3 19:15:29 2018	(r463521)
@@ -0,0 +1,32 @@
+# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pew
+PORTVERSION=	1.1.2
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	sunpoet@FreeBSD.org
+COMMENT=	Tool to manage multiple virtualenvs
+
+LICENSE=	MIT
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}virtualenv>=1.11:devel/py-virtualenv@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}virtualenv-clone>=0.2.5:devel/py-virtualenv-clone@${FLAVOR}
+
+NO_ARCH=	yes
+USE_PYTHON=	autoplist concurrent distutils
+USES=		python shebangfix
+
+SHEBANG_FILES=	pew/shell_config/complete_deploy
+
+.include <bsd.port.pre.mk>
+
+.if ${PYTHON_REL} < 3000
+RUN_DEPENDS+=	${PYTHON_PKGNAMEPREFIX}backports.shutil_get_terminal_size>=0:devel/py-backports.shutil_get_terminal_size@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}pathlib>=0:devel/py-pathlib@${FLAVOR} \
+		${PYTHON_PKGNAMEPREFIX}shutilwhich>=0:sysutils/py-shutilwhich@${FLAVOR}
+.endif
+
+.include <bsd.port.post.mk>

Added: head/devel/py-pew/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pew/distinfo	Sat Mar  3 19:15:29 2018	(r463521)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1520099753
+SHA256 (pew-1.1.2.tar.gz) = b8312728526c9010295c88215c95a1b1731fdbd1a568f728e069932bd0545611
+SIZE (pew-1.1.2.tar.gz) = 19637

Added: head/devel/py-pew/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pew/pkg-descr	Sat Mar  3 19:15:29 2018	(r463521)
@@ -0,0 +1,13 @@
+Python Env Wrapper is a set of commands to manage multiple virtual environments.
+Pew can create, delete and copy your environments, using a single command to
+switch to them wherever you are, while keeping them in a single (configurable)
+location.
+
+Virtualenvs makes it easier to work on more than one project at a time without
+introducing conflicts in their dependencies.
+
+Pew is completely shell-agnostic and thus works on bash, zsh, fish, powershell,
+etc.
+
+WWW: https://pypi.python.org/pypi/pew
+WWW: https://github.com/berdario/pew



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