svn commit: r392030 - in head/devel: . py-pex py-pex/files

Steven Kreuzer skreuzer at FreeBSD.org
Tue Jul 14 15:53:21 UTC 2015


Author: skreuzer
Date: Tue Jul 14 15:53:18 2015
New Revision: 392030
URL: https://svnweb.freebsd.org/changeset/ports/392030

Log:
  PEX files are self-contained executable Python virtual environments.
  
  More specifically, they are carefully constructed zip files with a
  #!/usr/bin/env python and special __main__.py that allows you to interact with
  the PEX runtime
  
  WWW: https://pex.readthedocs.org/en/latest/

Added:
  head/devel/py-pex/
  head/devel/py-pex/Makefile   (contents, props changed)
  head/devel/py-pex/distinfo   (contents, props changed)
  head/devel/py-pex/files/
  head/devel/py-pex/files/patch-pex_version.py   (contents, props changed)
  head/devel/py-pex/pkg-descr   (contents, props changed)
Modified:
  head/devel/Makefile

Modified: head/devel/Makefile
==============================================================================
--- head/devel/Makefile	Tue Jul 14 15:33:24 2015	(r392029)
+++ head/devel/Makefile	Tue Jul 14 15:53:18 2015	(r392030)
@@ -4055,6 +4055,7 @@
     SUBDIR += py-pbr
     SUBDIR += py-pefile
     SUBDIR += py-period
+    SUBDIR += py-pex
     SUBDIR += py-phabricator
     SUBDIR += py-phpserialize
     SUBDIR += py-pika

Added: head/devel/py-pex/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pex/Makefile	Tue Jul 14 15:53:18 2015	(r392030)
@@ -0,0 +1,20 @@
+# Created by: Steven Kreuzer <skreuzer at FreeBSD.org>
+# $FreeBSD$
+
+PORTNAME=	pex
+PORTVERSION=	1.0.1
+CATEGORIES=	devel python
+MASTER_SITES=	CHEESESHOP
+PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
+
+MAINTAINER=	skreuzer at FreeBSD.org
+COMMENT=	PEX packaging toolchain
+
+LICENSE=	APACHE20
+
+RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}wheel>=0.24.0:${PORTSDIR}/devel/py-wheel
+
+USES=		python
+USE_PYTHON=	autoplist distutils
+
+.include <bsd.port.mk>

Added: head/devel/py-pex/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pex/distinfo	Tue Jul 14 15:53:18 2015	(r392030)
@@ -0,0 +1,2 @@
+SHA256 (pex-1.0.1.tar.gz) = 8ed092f12afa86474bd35248a530789ca278bd3a15a6c27b3c6771b48a56519a
+SIZE (pex-1.0.1.tar.gz) = 105121

Added: head/devel/py-pex/files/patch-pex_version.py
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pex/files/patch-pex_version.py	Tue Jul 14 15:53:18 2015	(r392030)
@@ -0,0 +1,9 @@
+--- pex/version.py.orig	2015-07-14 15:45:35 UTC
++++ pex/version.py
+@@ -3,5 +3,5 @@
+ 
+ __version__ = '1.0.1'
+ 
+-SETUPTOOLS_REQUIREMENT = 'setuptools>=2.2,<16'
++SETUPTOOLS_REQUIREMENT = 'setuptools>=2.2,<=17'
+ WHEEL_REQUIREMENT = 'wheel>=0.24.0,<0.25.0'

Added: head/devel/py-pex/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/devel/py-pex/pkg-descr	Tue Jul 14 15:53:18 2015	(r392030)
@@ -0,0 +1,7 @@
+PEX files are self-contained executable Python virtual environments.
+
+More specifically, they are carefully constructed zip files with a
+#!/usr/bin/env python and special __main__.py that allows you to interact with
+the PEX runtime
+
+WWW: https://pex.readthedocs.org/en/latest/


More information about the svn-ports-all mailing list