svn commit: r441158 - in head/devel: . py-rwt
Sunpoet Po-Chuan Hsieh
sunpoet at FreeBSD.org
Thu May 18 16:02:40 UTC 2017
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 <sunpoet at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME= rwt
+PORTVERSION= 2.15.1
+CATEGORIES= devel python
+MASTER_SITES= CHEESESHOP
+PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER= sunpoet at 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 <bsd.port.mk>
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
More information about the svn-ports-head
mailing list