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 489581382C5 for ; Wed, 3 Jan 2018 19:23:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD8B0E0841; Wed, 3 Jan 2018 19:23:00 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 90B28E0841 for ; Wed, 3 Jan 2018 19:23:00 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 376F3335C2C for ; Wed, 3 Jan 2018 19:22:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C6B2A18A for ; Wed, 3 Jan 2018 19:22:57 +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: <1515007369.7098e18bf81f9609945ba3922280e9071329d551.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-9.2-r1.ebuild app-portage/gemato/gemato-9.2.ebuild X-VCS-Directories: app-portage/gemato/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7098e18bf81f9609945ba3922280e9071329d551 X-VCS-Branch: master Date: Wed, 3 Jan 2018 19:22:57 +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: 6d25853d-c292-4ad6-a060-bcc23894c8e0 X-Archives-Hash: d043af99d28b9f93dd81564dc0584739 commit: 7098e18bf81f9609945ba3922280e9071329d551 Author: Michał Górny gentoo org> AuthorDate: Wed Jan 3 19:14:02 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 3 19:22:49 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7098e18b app-portage/gemato: Block incompatible mod from dev-python/pyliblzma Closes: https://bugs.gentoo.org/643254 app-portage/gemato/{gemato-9.2.ebuild => gemato-9.2-r1.ebuild} | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app-portage/gemato/gemato-9.2.ebuild b/app-portage/gemato/gemato-9.2-r1.ebuild similarity index 86% rename from app-portage/gemato/gemato-9.2.ebuild rename to app-portage/gemato/gemato-9.2-r1.ebuild index a3d0234e963..fd32f6fdd3f 100644 --- a/app-portage/gemato/gemato-9.2.ebuild +++ b/app-portage/gemato/gemato-9.2-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=6 @@ -17,7 +17,10 @@ SLOT="0" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" IUSE="+blake2 bzip2 +gpg lzma +portage-postsync sha3 test" +# pyliblzma installs an incompatible 'lzma' module (fixed properly in -9999) +# https://bugs.gentoo.org/643254 MODULE_RDEPEND=" + $(python_gen_cond_dep '!!dev-python/pyliblzma' python2_7) blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) ) bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) ) gpg? ( app-crypt/gnupg )