From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7A0291384B4 for ; Wed, 11 Nov 2015 10:12:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D147221C035; Wed, 11 Nov 2015 10:12:42 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BF6421C035 for ; Wed, 11 Nov 2015 10:12:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C48733BF11 for ; Wed, 11 Nov 2015 10:12:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A37D51066 for ; Wed, 11 Nov 2015 10:12:34 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1447236751.9e276c984be1309437d2356c63752ac96d14bb57.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/qrcode/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/qrcode/qrcode-5.0.1.ebuild X-VCS-Directories: dev-python/qrcode/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 9e276c984be1309437d2356c63752ac96d14bb57 X-VCS-Branch: master Date: Wed, 11 Nov 2015 10:12:34 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9bee601a-f584-40c2-84f8-10d8f82af0e1 X-Archives-Hash: 02a6dc1677fcd7eb12b7273a49352054 commit: 9e276c984be1309437d2356c63752ac96d14bb57 Author: Justin Lecher gentoo org> AuthorDate: Wed Nov 11 10:12:26 2015 +0000 Commit: Justin Lecher gentoo org> CommitDate: Wed Nov 11 10:12:31 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e276c98 dev-python/qrcode: Use optfeature to point to optional deps Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=500742 Package-Manager: portage-2.2.23 Signed-off-by: Justin Lecher gentoo.org> dev-python/qrcode/qrcode-5.0.1.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dev-python/qrcode/qrcode-5.0.1.ebuild b/dev-python/qrcode/qrcode-5.0.1.ebuild index 8582957..17cfdab 100644 --- a/dev-python/qrcode/qrcode-5.0.1.ebuild +++ b/dev-python/qrcode/qrcode-5.0.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2014 Gentoo Foundation +# Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ @@ -6,7 +6,7 @@ EAPI=5 PYTHON_COMPAT=( python{2_7,3_3,3_4} ) -inherit distutils-r1 +inherit distutils-r1 eutils DESCRIPTION="QR Code generator on top of PIL" HOMEPAGE="https://pypi.python.org/pypi/qrcode" @@ -17,9 +17,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="test" -# optional deps: -# - dev-python/lxml for svg backend -# - virtual/pil for PIL backend RDEPEND="dev-python/six[${PYTHON_USEDEP}]" DEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] @@ -28,3 +25,8 @@ DEPEND="${RDEPEND} python_test() { "${PYTHON}" -m unittest qrcode.tests || die "Testing failed with ${EPYTHON}" } + +pkg_postist() { + optfeature "svg backend" dev-python/lxml + optfeature "PIL backend" dev-python/pillow +}