From owner-svn-ports-all@freebsd.org Thu May 18 16:02:40 2017 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2237CD7335B; Thu, 18 May 2017 16:02:40 +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 mx1.freebsd.org (Postfix) with ESMTPS id D35E7DD3; Thu, 18 May 2017 16:02:39 +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 v4IG2cU1002428; Thu, 18 May 2017 16:02:38 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v4IG2ccW002422; Thu, 18 May 2017 16:02:38 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201705181602.v4IG2ccW002422@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Thu, 18 May 2017 16:02:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r441158 - in head/devel: . py-rwt X-SVN-Group: ports-head 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.23 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: Thu, 18 May 2017 16:02:40 -0000 Author: sunpoet Date: Thu May 18 16:02:38 2017 New Revision: 441158 URL: https://svnweb.freebsd.org/changeset/ports/441158 Log: Add py-rwt 2.15.1 RWT (Run With This) provides on-demand dependency resolution. - Allows declaration of dependencies at runtime. - Downloads missing dependencies and makes their packages available for import. - Installs packages to a special staging location such that they're not installed after the process exits. - Relies on pip to cache downloads of such packages for reuse. - Supersedes installed packages when required. - Relies on packages already satisfied. - Re-uses the pip tool chain for package installation and pkg_resources for working set management. WWW: https://pypi.python.org/pypi/rwt WWW: https://github.com/jaraco/rwt Added: head/devel/py-rwt/ head/devel/py-rwt/Makefile (contents, props changed) head/devel/py-rwt/distinfo (contents, props changed) head/devel/py-rwt/pkg-descr (contents, props changed) head/devel/py-rwt/pkg-plist (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Thu May 18 15:56:22 2017 (r441157) +++ head/devel/Makefile Thu May 18 16:02:38 2017 (r441158) @@ -4696,6 +4696,7 @@ SUBDIR += py-ruamel.yaml SUBDIR += py-rubymarshal SUBDIR += py-ruledispatch + SUBDIR += py-rwt SUBDIR += py-sanetime SUBDIR += py-sarge SUBDIR += py-scripttest Added: head/devel/py-rwt/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rwt/Makefile Thu May 18 16:02:38 2017 (r441158) @@ -0,0 +1,22 @@ +# Created by: Po-Chuan Hsieh +# $FreeBSD$ + +PORTNAME= rwt +PORTVERSION= 2.15.1 +CATEGORIES= devel python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= RWT (Run With This) provides on-demand dependency resolution + +LICENSE= MIT + +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}setuptools_scm>=1.15.0:devel/py-setuptools_scm +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pip>=0:devel/py-pip + +NO_ARCH= yes +USE_PYTHON= distutils +USES= python + +.include Added: head/devel/py-rwt/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rwt/distinfo Thu May 18 16:02:38 2017 (r441158) @@ -0,0 +1,3 @@ +TIMESTAMP = 1495052893 +SHA256 (rwt-2.15.1.tar.gz) = b0abb1c3c1621b2bb33483245a4572a109143764176cd0a0156d50b36549760a +SIZE (rwt-2.15.1.tar.gz) = 13578 Added: head/devel/py-rwt/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rwt/pkg-descr Thu May 18 16:02:38 2017 (r441158) @@ -0,0 +1,14 @@ +RWT (Run With This) provides on-demand dependency resolution. + +- Allows declaration of dependencies at runtime. - Downloads missing + dependencies and makes their packages available for import. +- Installs packages to a special staging location such that they're not + installed after the process exits. +- Relies on pip to cache downloads of such packages for reuse. +- Supersedes installed packages when required. +- Relies on packages already satisfied. +- Re-uses the pip tool chain for package installation and pkg_resources for + working set management. + +WWW: https://pypi.python.org/pypi/rwt +WWW: https://github.com/jaraco/rwt Added: head/devel/py-rwt/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-rwt/pkg-plist Thu May 18 16:02:38 2017 (r441158) @@ -0,0 +1,28 @@ +bin/rwt +%%PYTHON_SITELIBDIR%%/rwt/__init__.py +%%PYTHON_SITELIBDIR%%/rwt/__init__.pyc +%%PYTHON_SITELIBDIR%%/rwt/__init__.pyo +%%PYTHON_SITELIBDIR%%/rwt/__main__.py +%%PYTHON_SITELIBDIR%%/rwt/__main__.pyc +%%PYTHON_SITELIBDIR%%/rwt/__main__.pyo +%%PYTHON_SITELIBDIR%%/rwt/commands.py +%%PYTHON_SITELIBDIR%%/rwt/commands.pyc +%%PYTHON_SITELIBDIR%%/rwt/commands.pyo +%%PYTHON_SITELIBDIR%%/rwt/deps.py +%%PYTHON_SITELIBDIR%%/rwt/deps.pyc +%%PYTHON_SITELIBDIR%%/rwt/deps.pyo +%%PYTHON_SITELIBDIR%%/rwt/launch.py +%%PYTHON_SITELIBDIR%%/rwt/launch.pyc +%%PYTHON_SITELIBDIR%%/rwt/launch.pyo +%%PYTHON_SITELIBDIR%%/rwt/scripts.py +%%PYTHON_SITELIBDIR%%/rwt/scripts.pyc +%%PYTHON_SITELIBDIR%%/rwt/scripts.pyo +%%PYTHON_SITELIBDIR%%/rwt/tests/test_deps.py +%%PYTHON_SITELIBDIR%%/rwt/tests/test_deps.pyc +%%PYTHON_SITELIBDIR%%/rwt/tests/test_deps.pyo +%%PYTHON_SITELIBDIR%%/rwt/tests/test_launch.py +%%PYTHON_SITELIBDIR%%/rwt/tests/test_launch.pyc +%%PYTHON_SITELIBDIR%%/rwt/tests/test_launch.pyo +%%PYTHON_SITELIBDIR%%/rwt/tests/test_scripts.py +%%PYTHON_SITELIBDIR%%/rwt/tests/test_scripts.pyc +%%PYTHON_SITELIBDIR%%/rwt/tests/test_scripts.pyo