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 CA78D138334 for ; Sun, 16 Jun 2019 15:01:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A4EABE085D; Sun, 16 Jun 2019 15:01:25 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 83C0EE085D for ; Sun, 16 Jun 2019 15:01:25 +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 6B59B346236 for ; Sun, 16 Jun 2019 15:01:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15E91614 for ; Sun, 16 Jun 2019 15:01:22 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1560697245.bbae26277dd01e34f6b6cf2bd0f2902a69132d92.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyGPG/pyGPG-0.2.ebuild X-VCS-Directories: dev-python/pyGPG/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: bbae26277dd01e34f6b6cf2bd0f2902a69132d92 X-VCS-Branch: master Date: Sun, 16 Jun 2019 15:01:22 +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: c98f19df-91b3-4197-b1b3-0a512b32aeb9 X-Archives-Hash: dd86ba24fb3da67d1ca0dcddea509658 commit: bbae26277dd01e34f6b6cf2bd0f2902a69132d92 Author: David Seifert gentoo org> AuthorDate: Sun Jun 16 15:00:45 2019 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Jun 16 15:00:45 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbae2627 dev-python/pyGPG: Add py3.7 Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: David Seifert gentoo.org> dev-python/pyGPG/pyGPG-0.2.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild index a6a797b30f4..e3d575a7cd7 100644 --- a/dev-python/pyGPG/pyGPG-0.2.ebuild +++ b/dev-python/pyGPG/pyGPG-0.2.ebuild @@ -1,24 +1,28 @@ # Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 -PYTHON_COMPAT=(python{2_7,3_5,3_6}) +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) inherit distutils-r1 -EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git" +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git" + EGIT_BRANCH="master" +else + SRC_URI="https://dev.gentoo.org/~dolsen/releases/pyGPG/${P}.tar.gz" + KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86" +fi DESCRIPTION="A python interface wrapper for gnupg's gpg command" HOMEPAGE="https://github.com/dol-sen/pyGPG" -SRC_URI="https://dev.gentoo.org/~dolsen/releases/pyGPG/${P}.tar.gz" LICENSE="BSD" SLOT="0" IUSE="" -KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86" - DEPEND="" RDEPEND="${DEPEND} app-crypt/gnupg