From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C1395138351 for ; Fri, 21 Feb 2020 14:11:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA33FE0917; Fri, 21 Feb 2020 14:11:09 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A6B33E0917 for ; Fri, 21 Feb 2020 14:11:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6AE0834EF01 for ; Fri, 21 Feb 2020 14:11:08 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 518C0145 for ; Fri, 21 Feb 2020 14:11:06 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1582294250.a46018e1791946e438c3e7cd36e2ccfdc514055e.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/gemato/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/gemato/gemato-14.3.ebuild app-portage/gemato/gemato-9999.ebuild X-VCS-Directories: app-portage/gemato/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: a46018e1791946e438c3e7cd36e2ccfdc514055e X-VCS-Branch: master Date: Fri, 21 Feb 2020 14:11:06 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 283ca86f-e734-4f77-92a0-2ebfdb7b10c2 X-Archives-Hash: b5125a182bd99f6f9305b33985fe1162 commit: a46018e1791946e438c3e7cd36e2ccfdc514055e Author: Michał Górny gentoo org> AuthorDate: Fri Feb 21 14:07:26 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Feb 21 14:10:50 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a46018e1 app-portage/gemato: Set DISTUTILS_USE_SETUPTOOLS, update tests Closes: https://bugs.gentoo.org/709892 Signed-off-by: Michał Górny gentoo.org> app-portage/gemato/gemato-14.3.ebuild | 16 +++++----------- app-portage/gemato/gemato-9999.ebuild | 13 ++++--------- 2 files changed, 9 insertions(+), 20 deletions(-) diff --git a/app-portage/gemato/gemato-14.3.ebuild b/app-portage/gemato/gemato-14.3.ebuild index 1c2e6cc874a..7903d882e70 100644 --- a/app-portage/gemato/gemato-14.3.ebuild +++ b/app-portage/gemato/gemato-14.3.ebuild @@ -3,8 +3,10 @@ EAPI=7 +DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} pypy3 ) PYTHON_REQ_USE='threads(+)' + inherit distutils-r1 DESCRIPTION="Stand-alone Manifest generation & verification tool" @@ -14,24 +16,16 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" LICENSE="BSD-2" SLOT="0" KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 ~riscv s390 sh sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux" -IUSE="+blake2 bzip2 +gpg lzma sha3 test tools" -RESTRICT="!test? ( test )" +IUSE="+blake2 bzip2 +gpg lzma sha3 tools" -MODULE_RDEPEND=" +RDEPEND=" blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_5} pypy{,3}) ) bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) ) gpg? ( app-crypt/gnupg ) lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) ) sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_5} pypy) )" -RDEPEND="${MODULE_RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND=">=dev-python/setuptools-34[${PYTHON_USEDEP}] - test? ( ${MODULE_RDEPEND} )" - -python_test() { - esetup.py test -} +distutils_enable_tests setup.py python_install_all() { distutils-r1_python_install_all diff --git a/app-portage/gemato/gemato-9999.ebuild b/app-portage/gemato/gemato-9999.ebuild index 840a8c6afc7..a52943c5d57 100644 --- a/app-portage/gemato/gemato-9999.ebuild +++ b/app-portage/gemato/gemato-9999.ebuild @@ -3,8 +3,10 @@ EAPI=7 +DISTUTILS_USE_SETUPTOOLS=rdepend PYTHON_COMPAT=( python{2_7,3_6,3_7,3_8} pypy3 ) PYTHON_REQ_USE='threads(+)' + inherit distutils-r1 git-r3 DESCRIPTION="Stand-alone Manifest generation & verification tool" @@ -18,21 +20,14 @@ KEYWORDS="" IUSE="+blake2 bzip2 +gpg lzma sha3 test tools" RESTRICT="!test? ( test )" -MODULE_RDEPEND=" +RDEPEND=" blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_5} pypy{,3}) ) bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) ) gpg? ( app-crypt/gnupg ) lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) ) sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_5} pypy) )" -RDEPEND="${MODULE_RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}]" -DEPEND=">=dev-python/setuptools-34[${PYTHON_USEDEP}] - test? ( ${MODULE_RDEPEND} )" - -python_test() { - esetup.py test -} +distutils_enable_tests setup.py python_install_all() { distutils-r1_python_install_all