From owner-svn-ports-all@freebsd.org Fri Nov 10 08:42:00 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 7F37CE683C7; Fri, 10 Nov 2017 08:42:00 +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 4B90E6B2C2; Fri, 10 Nov 2017 08:42:00 +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 vAA8fxTd082755; Fri, 10 Nov 2017 08:41:59 GMT (envelope-from ehaupt@FreeBSD.org) Received: (from ehaupt@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vAA8fx7L082754; Fri, 10 Nov 2017 08:41:59 GMT (envelope-from ehaupt@FreeBSD.org) Message-Id: <201711100841.vAA8fx7L082754@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ehaupt set sender to ehaupt@FreeBSD.org using -f From: Emanuel Haupt Date: Fri, 10 Nov 2017 08:41:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453887 - head/textproc/py-qrcode X-SVN-Group: ports-head X-SVN-Commit-Author: ehaupt X-SVN-Commit-Paths: head/textproc/py-qrcode X-SVN-Commit-Revision: 453887 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: Fri, 10 Nov 2017 08:42:00 -0000 Author: ehaupt Date: Fri Nov 10 08:41:59 2017 New Revision: 453887 URL: https://svnweb.freebsd.org/changeset/ports/453887 Log: Fix dependencies for py3-* stub port. Modified: head/textproc/py-qrcode/Makefile Modified: head/textproc/py-qrcode/Makefile ============================================================================== --- head/textproc/py-qrcode/Makefile Fri Nov 10 07:47:15 2017 (r453886) +++ head/textproc/py-qrcode/Makefile Fri Nov 10 08:41:59 2017 (r453887) @@ -3,6 +3,7 @@ PORTNAME= qrcode PORTVERSION= 5.3 +PORTREVISION= 1 CATEGORIES= textproc python MASTER_SITES= CHEESESHOP PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -12,10 +13,18 @@ COMMENT= QR Code image generator LICENSE= BSD3CLAUSE +USES?= python +USE_PYTHON= autoplist distutils + +.include + +.if ${PYTHON_REL} > 3000 +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:devel/py3-six \ + ${PYTHON_PKGNAMEPREFIX}pillow>=2.6:graphics/py3-pillow +.else RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.8:devel/py-six \ ${PYTHON_PKGNAMEPREFIX}pillow>=2.6:graphics/py-pillow +.endif -USES?= python -USE_PYTHON= autoplist distutils +.include -.include