From owner-svn-ports-all@freebsd.org Wed Nov 8 18:53:51 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 C74B3E59FF2; Wed, 8 Nov 2017 18:53:51 +0000 (UTC) (envelope-from ehaupt@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 9E72163F90; Wed, 8 Nov 2017 18:53:51 +0000 (UTC) (envelope-from ehaupt@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vA8IroKX018975; Wed, 8 Nov 2017 18:53:50 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vA8Irnsm018960; Wed, 8 Nov 2017 18:53:49 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711081853.vA8Irnsm018960@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Wed, 8 Nov 2017 18:53:49 +0000 (UTC) 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/... X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: 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/py-httplib2 www/py3-httpl... X-SVN-Commit-Revision: 453761 X-SVN-Commit-Repository: ports 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: Wed, 08 Nov 2017 18:53:51 -0000 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 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 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 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 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"