Date: Sat, 3 Mar 2018 19:15:50 +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: r463522 - in head/devel: . py-pipenv Message-ID: <201803031915.w23JFoPF097296@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: sunpoet Date: Sat Mar 3 19:15:50 2018 New Revision: 463522 URL: https://svnweb.freebsd.org/changeset/ports/463522 Log: Add py-pipenv 11.0.2 Pipenv -- the officially recommended Python packaging tool from Python.org, free (as in freedom). Pipenv is a tool that aims to bring the best of all packaging worlds (bundler, composer, npm, cargo, yarn, etc.) to the Python world. Windows is a first-class citizen, in our world. It automatically creates and manages a virtualenv for your projects, as well as adds/removes packages from your Pipfile as you install/uninstall packages. It also generates the ever-important Pipfile.lock, which is used to produce deterministic builds. WWW: https://docs.pipenv.org/ WWW: https://github.com/pypa/pipenv Added: head/devel/py-pipenv/ head/devel/py-pipenv/Makefile (contents, props changed) head/devel/py-pipenv/distinfo (contents, props changed) head/devel/py-pipenv/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sat Mar 3 19:15:29 2018 (r463521) +++ head/devel/Makefile Sat Mar 3 19:15:50 2018 (r463522) @@ -4696,6 +4696,7 @@ SUBDIR += py-pika-pool SUBDIR += py-pinocchio SUBDIR += py-pip + SUBDIR += py-pipenv SUBDIR += py-pkgconfig SUBDIR += py-plan SUBDIR += py-plex Added: head/devel/py-pipenv/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipenv/Makefile Sat Mar 3 19:15:50 2018 (r463522) @@ -0,0 +1,24 @@ +# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org> +# $FreeBSD$ + +PORTNAME= pipenv +PORTVERSION= 11.0.2 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python Development Workflow for Humans + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pew>=0.1.26:devel/py-pew@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}pip>=9.0.1:devel/py-pip@${FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}virtualenv>=0:devel/py-virtualenv@${FLAVOR} + +NO_ARCH= yes +USE_PYTHON= autoplist concurrent distutils +USES= python + +.include <bsd.port.mk> Added: head/devel/py-pipenv/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipenv/distinfo Sat Mar 3 19:15:50 2018 (r463522) @@ -0,0 +1,3 @@ +TIMESTAMP = 1520099353 +SHA256 (pipenv-11.0.2.tar.gz) = 0796cb5078b00a26b9332a87ed137efa0c21e585dbf945d5943022e9b35e1663 +SIZE (pipenv-11.0.2.tar.gz) = 4117997 Added: head/devel/py-pipenv/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-pipenv/pkg-descr Sat Mar 3 19:15:50 2018 (r463522) @@ -0,0 +1,14 @@ +Pipenv -- the officially recommended Python packaging tool from Python.org, free +(as in freedom). + +Pipenv is a tool that aims to bring the best of all packaging worlds (bundler, +composer, npm, cargo, yarn, etc.) to the Python world. Windows is a first-class +citizen, in our world. + +It automatically creates and manages a virtualenv for your projects, as well as +adds/removes packages from your Pipfile as you install/uninstall packages. It +also generates the ever-important Pipfile.lock, which is used to produce +deterministic builds. + +WWW: https://docs.pipenv.org/ +WWW: https://github.com/pypa/pipenv
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201803031915.w23JFoPF097296>