From owner-svn-ports-head@freebsd.org Sat Mar 3 19:15:51 2018 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 129B4F336F9; Sat, 3 Mar 2018 19:15:51 +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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id B9EE77175C; Sat, 3 Mar 2018 19:15:50 +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 B4E5F264E; Sat, 3 Mar 2018 19:15:50 +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 w23JFopr097300; Sat, 3 Mar 2018 19:15:50 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w23JFoPF097296; Sat, 3 Mar 2018 19:15:50 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803031915.w23JFoPF097296@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 3 Mar 2018 19:15:50 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r463522 - in head/devel: . py-pipenv X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: in head/devel: . py-pipenv X-SVN-Commit-Revision: 463522 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 03 Mar 2018 19:15:51 -0000 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 +# $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 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