Date: Wed, 8 Nov 2017 18:53:49 +0000 (UTC) From: Emanuel Haupt <ehaupt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453761 - in head: devel devel/py3-protobuf security security/py-pbkdf2 security/py-pyaes security/py3-pbkdf2 security/py3-pyaes textproc textproc/py-qrcode textproc/py3-qrcode www www/... Message-ID: <201711081853.vA8Irnsm018960@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: ehaupt Date: Wed Nov 8 18:53:49 2017 New Revision: 453761 URL: https://svnweb.freebsd.org/changeset/ports/453761 Log: Add python3 stub ports required for the upcoming update of finance/electrum. Approved by: portmgr (bdrewery) Differential Revision: D13000 Added: head/devel/py3-protobuf/ head/devel/py3-protobuf/Makefile (contents, props changed) head/security/py3-pbkdf2/ head/security/py3-pbkdf2/Makefile (contents, props changed) head/security/py3-pyaes/ head/security/py3-pyaes/Makefile (contents, props changed) head/textproc/py3-qrcode/ head/textproc/py3-qrcode/Makefile (contents, props changed) head/www/py3-httplib2/ head/www/py3-httplib2/Makefile (contents, props changed) Modified: head/devel/Makefile head/security/Makefile head/security/py-pbkdf2/Makefile head/security/py-pyaes/Makefile head/textproc/Makefile head/textproc/py-qrcode/Makefile head/www/Makefile head/www/py-httplib2/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/devel/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -5103,6 +5103,7 @@ SUBDIR += py3-ply SUBDIR += py3-pretend SUBDIR += py3-prompt_toolkit + SUBDIR += py3-protobuf SUBDIR += py3-py SUBDIR += py3-pyasn1 SUBDIR += py3-pycodestyle Added: head/devel/py3-protobuf/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py3-protobuf/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-protobuf + +USES= python:3 + +.include "${MASTERDIR}/Makefile" Modified: head/security/Makefile ============================================================================== --- head/security/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/security/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -998,6 +998,8 @@ SUBDIR += py3-ecdsa SUBDIR += py3-libnacl SUBDIR += py3-openssl + SUBDIR += py3-pbkdf2 + SUBDIR += py3-pyaes SUBDIR += py3-pycrypto SUBDIR += qtkeychain-qt4 SUBDIR += qtkeychain-qt5 Modified: head/security/py-pbkdf2/Makefile ============================================================================== --- head/security/py-pbkdf2/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/security/py-pbkdf2/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -12,7 +12,7 @@ COMMENT= PKCS5 v2.0 PBKDF2 Module LICENSE= MIT -USES= python +USES?= python USE_PYTHON= distutils autoplist .include <bsd.port.mk> Modified: head/security/py-pyaes/Makefile ============================================================================== --- head/security/py-pyaes/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/security/py-pyaes/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -14,7 +14,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt NO_ARCH= yes -USES= python +USES?= python USE_PYTHON= autoplist distutils .include <bsd.port.mk> Added: head/security/py3-pbkdf2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py3-pbkdf2/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pbkdf2 + +USES= python:3 + +.include "${MASTERDIR}/Makefile" Added: head/security/py3-pyaes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/security/py3-pyaes/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-pyaes + +USES= python:3 + +.include "${MASTERDIR}/Makefile" Modified: head/textproc/Makefile ============================================================================== --- head/textproc/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/textproc/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -1401,6 +1401,7 @@ SUBDIR += py3-pyPEG2 SUBDIR += py3-pygments SUBDIR += py3-pystemmer + SUBDIR += py3-qrcode SUBDIR += py3-snowballstemmer SUBDIR += py3-sphinx SUBDIR += py3-sphinx_rtd_theme Modified: head/textproc/py-qrcode/Makefile ============================================================================== --- head/textproc/py-qrcode/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/textproc/py-qrcode/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -15,7 +15,7 @@ LICENSE= BSD3CLAUSE RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:devel/py-six \ ${PYTHON_PKGNAMEPREFIX}pillow>=2.6:graphics/py-pillow -USES= python +USES?= python USE_PYTHON= autoplist distutils .include <bsd.port.mk> Added: head/textproc/py3-qrcode/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/textproc/py3-qrcode/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-qrcode + +USES= python:3 + +.include "${MASTERDIR}/Makefile" Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/www/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -1874,6 +1874,7 @@ SUBDIR += py-yarl SUBDIR += py-zope.app.wsgi SUBDIR += py3-cssutils + SUBDIR += py3-httplib2 SUBDIR += py3-requests SUBDIR += pyblosxom SUBDIR += pycarddav Modified: head/www/py-httplib2/Makefile ============================================================================== --- head/www/py-httplib2/Makefile Wed Nov 8 18:49:20 2017 (r453760) +++ head/www/py-httplib2/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -14,6 +14,6 @@ LICENSE= MIT NO_ARCH= yes USE_PYTHON= autoplist distutils -USES= python +USES?= python .include <bsd.port.mk> Added: head/www/py3-httplib2/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/py3-httplib2/Makefile Wed Nov 8 18:53:49 2017 (r453761) @@ -0,0 +1,7 @@ +# $FreeBSD$ + +MASTERDIR= ${.CURDIR}/../py-httplib2 + +USES= python:3 + +.include "${MASTERDIR}/Makefile"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201711081853.vA8Irnsm018960>