public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2016-01-23 19:28 Brian Dolbec
  0 siblings, 0 replies; 40+ messages in thread
From: Brian Dolbec @ 2016-01-23 19:28 UTC (permalink / raw
  To: gentoo-commits

commit:     bae965f73a2419319c8010cf528a963957a4880c
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 22 08:00:07 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Jan 23 19:23:04 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae965f7

dev-python/pyGPG: Version bump

Package-Manager: portage-2.2.27

 dev-python/pyGPG/Manifest         |  1 +
 dev-python/pyGPG/pyGPG-0.2.ebuild | 47 +++++++++++++++++++++++++++++++++++++++
 2 files changed, 48 insertions(+)

diff --git a/dev-python/pyGPG/Manifest b/dev-python/pyGPG/Manifest
index 9a89106..c050c3b 100644
--- a/dev-python/pyGPG/Manifest
+++ b/dev-python/pyGPG/Manifest
@@ -1 +1,2 @@
 DIST pyGPG-0.1.tar.gz 15441 SHA256 c699192606652ebe1a369770d00110baa490c74c3d858ad0513ec55f315e7735 SHA512 58a89fbee4311b89c5515ad1bc1d901057e8acdfdbcf36813f50a766374100a62efe456d52263711e5c2f46957791def9343d94f019e413506cfdbd353602060 WHIRLPOOL 24862897737516945cdc8e41ced589f4ef4b64cdd4a92ddae22c07e9252c0cf8779b685b6cd35fac5b3244d0000d9bade98d661c67ac904639ebc142281551c1
+DIST pyGPG-0.2.tar.gz 15439 SHA256 0c45b408b080c725832463d15a2227da48c4dbd9fa918c8662631adec5b0a08f SHA512 93d892a57a27b254bfdc9778b73d341dfec654c2104c578014628df78c43beaf93eafb571ac544d52f334e63f6e5b8c0cfad7c8a0d585ee7211e8649efce8c67 WHIRLPOOL 81e2bb285b9aef73edbef91b5ac460c048f8826fe480b356d39ba66105905aa02bf73f56b49918fd45b0765bad03361a11c6684303b37df20fb2d23113a3f7e7

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
new file mode 100644
index 0000000..f2fb381
--- /dev/null
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
+
+inherit distutils-r1
+
+EGIT_REPO_URI="git://github.com/dol-sen/pyGPG.git"
+
+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 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+	app-crypt/gnupg
+	"
+
+pkg_postinst() {
+	einfo
+	einfo "This is experimental software."
+	einfo "The API's it installs should be considered unstable"
+	einfo "and are subject to change."
+	einfo
+	einfo "This version includes a new gkeys-gpg command"
+	einfo "It can be used as an alternate gpg command for git"
+	einfo "It will set the correct keyring to verify signed commits"
+	einfo "provided the key it needs to verify against is part of the gkeys"
+	einfo "keyring system.   It only works for verification, any other call "
+	einfo "to it will re-direct directly to the normal gpg command."
+	einfo
+	einfo "Please file any enhancement requests, or bugs"
+	einfo "at https://github.com/dol-sen/pyGPG/issues"
+	einfo "I am also on IRC @ #gentoo-keys of the freenode network"
+	einfo
+	ewarn "There may be some python 3 compatibility issues still."
+	ewarn "Please help debug/fix/report them in github or bugzilla."
+}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2016-02-22  0:43 Stephen Klimaszewski
  0 siblings, 0 replies; 40+ messages in thread
From: Stephen Klimaszewski @ 2016-02-22  0:43 UTC (permalink / raw
  To: gentoo-commits

commit:     933435ce5ba191bfb68cb3daf6751dd8a96b65c1
Author:     Steev Klimaszewski <steev <AT> gentoo <DOT> org>
AuthorDate: Mon Feb 22 00:38:43 2016 +0000
Commit:     Stephen Klimaszewski <steev <AT> gentoo <DOT> org>
CommitDate: Mon Feb 22 00:38:43 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=933435ce

dev-python/pyGPG: add ~arm64 keyword

Tested on Cortex A53

Package-Manager: portage-2.2.27

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index f2fb381..57a1f06 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -18,7 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2016-10-09  7:47 Pacho Ramos
  0 siblings, 0 replies; 40+ messages in thread
From: Pacho Ramos @ 2016-10-09  7:47 UTC (permalink / raw
  To: gentoo-commits

commit:     3dc2c6139bb362755d60946e5f661a97008dd995
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sun Oct  9 07:42:39 2016 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sun Oct  9 07:46:51 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dc2c613

dev-python/pyGPG: Support python 3.5

Package-Manager: portage-2.3.1

 dev-python/pyGPG/pyGPG-9999.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 1554e4d..b8d5450 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI="5"
 
-PYTHON_COMPAT=(python{2_7,3_3,3_4})
+PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
 
 EGIT_BRANCH="master"
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2016-12-24 21:54 Brian Dolbec
  0 siblings, 0 replies; 40+ messages in thread
From: Brian Dolbec @ 2016-12-24 21:54 UTC (permalink / raw
  To: gentoo-commits

commit:     22712d2053b66e88670bed27e86a974fc5855d87
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 24 20:20:19 2016 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Dec 24 21:16:58 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22712d20

dev-python/pyGPG: Remove einfos belonging to another pkg

Package-Manager: Portage-2.3.3_p7, Repoman-2.3.1

 dev-python/pyGPG/pyGPG-0.2.ebuild | 7 -------
 1 file changed, 7 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 7deaf48..df51643 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -31,13 +31,6 @@ pkg_postinst() {
 	einfo "The API's it installs should be considered unstable"
 	einfo "and are subject to change."
 	einfo
-	einfo "This version includes a new gkeys-gpg command"
-	einfo "It can be used as an alternate gpg command for git"
-	einfo "It will set the correct keyring to verify signed commits"
-	einfo "provided the key it needs to verify against is part of the gkeys"
-	einfo "keyring system.   It only works for verification, any other call "
-	einfo "to it will re-direct directly to the normal gpg command."
-	einfo
 	einfo "Please file any enhancement requests, or bugs"
 	einfo "at https://github.com/dol-sen/pyGPG/issues"
 	einfo "I am also on IRC @ #gentoo-keys of the freenode network"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-02-14 14:52 Agostino Sarubbo
  0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2017-02-14 14:52 UTC (permalink / raw
  To: gentoo-commits

commit:     43bc515b9985d40a57e51458940a2e1c6828cae4
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 14:52:24 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 14:52:24 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43bc515b

dev-python/pyGPG: amd64 stable wrt bug #603108

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index df5164339d..c909881491 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,7 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-02-14 15:39 Agostino Sarubbo
  0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2017-02-14 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     27b9fedda204c0196c60226a8c9dbf111cbb70a4
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Tue Feb 14 15:39:25 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Tue Feb 14 15:39:25 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27b9fedd

dev-python/pyGPG: x86 stable wrt bug #603108

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index c909881491..1a30e8868d 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -18,7 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-02-16 20:34 Michael Weber
  0 siblings, 0 replies; 40+ messages in thread
From: Michael Weber @ 2017-02-16 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     642047465bde9838c204de4337c7be219c98863f
Author:     Michael Weber <xmw <AT> gentoo <DOT> org>
AuthorDate: Thu Feb 16 20:31:53 2017 +0000
Commit:     Michael Weber <xmw <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 20:34:10 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64204746

dev-python/pyGPG: ppc ppc64 stable (bug 603108).

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 1a30e8868d..03cf308a80 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -18,7 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-02-17  6:03 Markus Meier
  0 siblings, 0 replies; 40+ messages in thread
From: Markus Meier @ 2017-02-17  6:03 UTC (permalink / raw
  To: gentoo-commits

commit:     1a3e63a9ac35d235cc76cc8093a59cbc2fb8fb8e
Author:     Markus Meier <maekke <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 17 06:02:21 2017 +0000
Commit:     Markus Meier <maekke <AT> gentoo <DOT> org>
CommitDate: Fri Feb 17 06:02:21 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3e63a9

dev-python/pyGPG: arm stable, bug #603108

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 03cf308a80..de5210dea2 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -18,7 +18,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-03-04 14:02 Agostino Sarubbo
  0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2017-03-04 14:02 UTC (permalink / raw
  To: gentoo-commits

commit:     bf39083542c42f7766edef2271ccaeba65aa4fe1
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar  4 14:01:31 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar  4 14:01:31 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf390835

dev-python/pyGPG: sparc stable wrt bug #603108

Package-Manager: portage-2.3.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index cc632cf371a..7daa96105cf 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -17,7 +17,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 sparc x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-03-11 17:07 Agostino Sarubbo
  0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2017-03-11 17:07 UTC (permalink / raw
  To: gentoo-commits

commit:     d66965f948ede4006b438c1730572f7f5fe57d21
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 17:05:14 2017 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 17:05:14 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d66965f9

dev-python/pyGPG: ia64 stable wrt bug #603108

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --include-arches="ia64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 7daa96105cf..e5ef834eff0 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -17,7 +17,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-04-29 11:39 Jeroen Roovers
  0 siblings, 0 replies; 40+ messages in thread
From: Jeroen Roovers @ 2017-04-29 11:39 UTC (permalink / raw
  To: gentoo-commits

commit:     0e3687ad684a6ff9beba42ee4f5f45a3d8ff976c
Author:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 29 11:39:19 2017 +0000
Commit:     Jeroen Roovers <jer <AT> gentoo <DOT> org>
CommitDate: Sat Apr 29 11:39:19 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e3687ad

dev-python/pyGPG: Stable for HPPA (bug #603108).

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --ignore-arches

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index df0d0631c8b..e4272e25270 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -17,7 +17,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
 
 DEPEND=""
 RDEPEND="${DEPEND}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-05-12 15:19 Manuel Rüger
  0 siblings, 0 replies; 40+ messages in thread
From: Manuel Rüger @ 2017-05-12 15:19 UTC (permalink / raw
  To: gentoo-commits

commit:     18e55493790bb72aafe91de6eeed76e5b14b476d
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Fri May 12 15:19:40 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Fri May 12 15:19:40 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18e55493

dev-python/pyGPG: Add python3_6

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index e4272e25270..9b20ebf883b 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
 
 inherit distutils-r1
 

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 9ed106488f1..3d24750a4b8 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-PYTHON_COMPAT=(python{2_7,3_4,3_5})
+PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
 
 EGIT_BRANCH="master"
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2017-07-30  9:15 Michał Górny
  0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2017-07-30  9:15 UTC (permalink / raw
  To: gentoo-commits

commit:     76d539763aff0e570dc631fa0e61d9cd1cfd5b04
Author:     David Hicks <david <AT> hicks <DOT> id <DOT> au>
AuthorDate: Sat Jul 29 10:33:03 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Jul 30 09:15:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76d53976

dev-python/pyGPG: use HTTPS for GitHub

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/pyGPG/pyGPG-0.1.ebuild  | 4 ++--
 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.1.ebuild b/dev-python/pyGPG/pyGPG-0.1.ebuild
index 08385337a01..73ab8a86e64 100644
--- a/dev-python/pyGPG/pyGPG-0.1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -7,7 +7,7 @@ PYTHON_COMPAT=(python{2_7,3_4})
 
 inherit distutils-r1
 
-EGIT_REPO_URI="git://github.com/dol-sen/pyGPG.git"
+EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"
 HOMEPAGE="https://github.com/dol-sen/pyGPG"

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 9b20ebf883b..46854436ed5 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -7,7 +7,7 @@ PYTHON_COMPAT=(python{2_7,3_4,3_5,3_6})
 
 inherit distutils-r1
 
-EGIT_REPO_URI="git://github.com/dol-sen/pyGPG.git"
+EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"
 HOMEPAGE="https://github.com/dol-sen/pyGPG"

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 3d24750a4b8..1ccf96a3fe5 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -9,7 +9,7 @@ EGIT_BRANCH="master"
 
 inherit distutils-r1 python-r1 git-2
 
-EGIT_REPO_URI="git://github.com/dol-sen/pyGPG.git"
+EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"
 HOMEPAGE="https://github.com/dol-sen/pyGPG"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2019-06-16 15:01 David Seifert
  0 siblings, 0 replies; 40+ messages in thread
From: David Seifert @ 2019-06-16 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     4096bc9a5c2e2fb3cc2510894ae2321cafa85294
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 15:00:49 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 15:00:49 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4096bc9a

dev-python/pyGPG: Remove old

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/pyGPG/Manifest         |  1 -
 dev-python/pyGPG/pyGPG-0.1.ebuild | 39 ---------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/dev-python/pyGPG/Manifest b/dev-python/pyGPG/Manifest
index 89b462aa8df..b05cbd55dc1 100644
--- a/dev-python/pyGPG/Manifest
+++ b/dev-python/pyGPG/Manifest
@@ -1,2 +1 @@
-DIST pyGPG-0.1.tar.gz 15441 BLAKE2B 5f14788d17ecdf9459a3332fab050892273adac75c7adb5c82c5770956017c3336385e35d4e2827cd070162efeacd4f4e3b2f2fa2cf17837826913fdced89875 SHA512 58a89fbee4311b89c5515ad1bc1d901057e8acdfdbcf36813f50a766374100a62efe456d52263711e5c2f46957791def9343d94f019e413506cfdbd353602060
 DIST pyGPG-0.2.tar.gz 15439 BLAKE2B 92c82b8b23c279461a872f118c636fa9cdae3f44910fc34a357983b0b4afea2a7b13c6400499a0fdbb4365357ade64294642178ca07a79ab3b7df89e60146e73 SHA512 93d892a57a27b254bfdc9778b73d341dfec654c2104c578014628df78c43beaf93eafb571ac544d52f334e63f6e5b8c0cfad7c8a0d585ee7211e8649efce8c67

diff --git a/dev-python/pyGPG/pyGPG-0.1.ebuild b/dev-python/pyGPG/pyGPG-0.1.ebuild
deleted file mode 100644
index c73c9a74989..00000000000
--- a/dev-python/pyGPG/pyGPG-0.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=(python2_7)
-
-inherit distutils-r1
-
-EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
-
-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 ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
-
-DEPEND=""
-RDEPEND="${DEPEND}
-	app-crypt/gnupg
-	"
-
-pkg_postinst() {
-	einfo
-	einfo "This is experimental software."
-	einfo "The API's it installs should be considered unstable"
-	einfo "and are subject to change."
-	einfo
-	einfo "Please file any enhancement requests, or bugs"
-	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-keys of the freenode network"
-	einfo
-	ewarn "There may be some python 3 compatibility issues still."
-	ewarn "Please help debug/fix/report them in github or bugzilla."
-}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2019-06-16 15:01 David Seifert
  0 siblings, 0 replies; 40+ messages in thread
From: David Seifert @ 2019-06-16 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     09a9b86175307c3aa3054f4466c56eb0c0d765a2
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 15:00:42 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sun Jun 16 15:00:42 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09a9b861

dev-python/pyGPG: Update live ebuild

Package-Manager: Portage-2.3.67, Repoman-2.3.14
Signed-off-by: David Seifert <soap <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-9999.ebuild | 24 +++++++++++-------------
 1 file changed, 11 insertions(+), 13 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index d1140338e37..a5839bdc60d 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -1,35 +1,33 @@
 # 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} )
 
-EGIT_BRANCH="master"
+inherit distutils-r1
 
-inherit distutils-r1 python-r1 git-2
-
-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=""
 
 LICENSE="BSD"
 SLOT="0"
 IUSE=""
 
-KEYWORDS=""
-
 DEPEND=""
 RDEPEND="${DEPEND}
 	app-crypt/gnupg
 	"
 
-python_install_all() {
-	distutils-r1_python_install_all
-}
-
 pkg_postinst() {
 	einfo
 	einfo "This is experimental software."


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2019-06-16 15:01 David Seifert
  0 siblings, 0 replies; 40+ messages in thread
From: David Seifert @ 2019-06-16 15:01 UTC (permalink / raw
  To: gentoo-commits

commit:     bbae26277dd01e34f6b6cf2bd0f2902a69132d92
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sun Jun 16 15:00:45 2019 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> 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 <soap <AT> 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


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2019-07-26 22:21 Aaron Bauman
  0 siblings, 0 replies; 40+ messages in thread
From: Aaron Bauman @ 2019-07-26 22:21 UTC (permalink / raw
  To: gentoo-commits

commit:     1c4e805241130db4e56f4d31ff3e3828aecb7185
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Fri Jul 26 22:20:56 2019 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Jul 26 22:21:31 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c4e8052

dev-python/pyGPG: arm64 stable

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
Package-Manager: Portage-2.3.69, Repoman-2.3.16
RepoMan-Options: --include-arches="arm64"

 dev-python/pyGPG/pyGPG-0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index e3d575a7cd7..f447e9fb611 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == *9999 ]]; then
 	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"
+	KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 ~s390 sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2020-02-26 12:18 Michał Górny
  0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2020-02-26 12:18 UTC (permalink / raw
  To: gentoo-commits

commit:     efe2f3062ecbd62ec5064db6755a9d4313f322ac
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 26 12:15:10 2020 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Feb 26 12:17:58 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe2f306

dev-python/pyGPG: Remove py2

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index eeff26977f7..24cd5e76b7e 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index c62035eebd3..ed59d0da036 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2020-04-18 17:55 Craig Andrews
  0 siblings, 0 replies; 40+ messages in thread
From: Craig Andrews @ 2020-04-18 17:55 UTC (permalink / raw
  To: gentoo-commits

commit:     95c9f7afa0e3b214890a3b794f47cc77e8693d16
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 18 17:50:14 2020 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Sat Apr 18 17:55:16 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95c9f7af

dev-python/pyGPG: Python 3.i compatibility

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index d207389aa3a..c14d0e4c2a2 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index ed59d0da036..0c59304be28 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2021-02-13 21:27 Brian Dolbec
  0 siblings, 0 replies; 40+ messages in thread
From: Brian Dolbec @ 2021-02-13 21:27 UTC (permalink / raw
  To: gentoo-commits

commit:     fbdeb4d2475ebcdff9691c124ed5c58d4a1c76a7
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 13 21:16:39 2021 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sat Feb 13 21:27:08 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbdeb4d2

dev-python/pyGPG: Fix DISTUTILS_USE_SETUPTOOLS

Closes: https://bugs.gentoo.org/748474
Package-Manager: Portage-3.0.10, Repoman-3.0.2
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 4 +++-
 dev-python/pyGPG/pyGPG-9999.ebuild | 4 +++-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 28a2dff1e5c..49a6a7efaf2 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8} )
 
+DISTUTILS_USE_SETUPTOOLS=no
+
 inherit distutils-r1
 
 if [[ ${PV} == *9999 ]]; then

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index f5467923e98..a857c473d66 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8} )
 
+DISTUTILS_USE_SETUPTOOLS=no
+
 inherit distutils-r1
 
 if [[ ${PV} == *9999 ]]; then


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2021-06-01 10:44 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2021-06-01 10:44 UTC (permalink / raw
  To: gentoo-commits

commit:     cd5c294c41e586e8c0fe3a68d084253a4cd84b82
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jun  1 10:42:34 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jun  1 10:42:34 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd5c294c

dev-python/pyGPG: add Python 3.9

Closes: https://bugs.gentoo.org/789018
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 49a6a7efaf2..157046f2edb 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=no
 

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index a857c473d66..23bcb956dd2 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=no
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2021-07-11 13:00 Brian Dolbec
  0 siblings, 0 replies; 40+ messages in thread
From: Brian Dolbec @ 2021-07-11 13:00 UTC (permalink / raw
  To: gentoo-commits

commit:     7f890e5ef1af2e101f991198ee130023da2c5d51
Author:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
AuthorDate: Sun Jul 11 12:55:41 2021 +0000
Commit:     Brian Dolbec <dolsen <AT> gentoo <DOT> org>
CommitDate: Sun Jul 11 12:55:41 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f890e5e

dev-python/pyGPG: Update irc info

Closes: https://bugs.gentoo.org/801337
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Brian Dolbec <dolsen <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 157046f2edb..44d04fd10d3 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -38,7 +38,7 @@ pkg_postinst() {
 	einfo
 	einfo "Please file any enhancement requests, or bugs"
 	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-keys of the freenode network"
+	einfo "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
 	einfo
 	ewarn "There may be some python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 23bcb956dd2..8ad518987da 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -38,7 +38,7 @@ pkg_postinst() {
 	einfo
 	einfo "Please file any enhancement requests, or bugs"
 	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-keys of the freenode network"
+	einfo "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
 	einfo
 	ewarn "There may be some python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2021-09-14 14:15 Yixun Lan
  0 siblings, 0 replies; 40+ messages in thread
From: Yixun Lan @ 2021-09-14 14:15 UTC (permalink / raw
  To: gentoo-commits

commit:     2c792ec73274989f590bdaa7379cb775d4be4484
Author:     Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Mon Sep 13 10:07:15 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Sep 14 14:13:46 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c792ec7

dev-python/pyGPG: keyword 0.2 for ~riscv

Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild  | 2 +-
 dev-python/pyGPG/pyGPG-9999.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index 44d04fd10d3..bb3ede2f379 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]]; then
 	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"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 8ad518987da..fc4ad1900dc 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == *9999 ]]; then
 	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"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-01-29 21:19 Michał Górny
  0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-01-29 21:19 UTC (permalink / raw
  To: gentoo-commits

commit:     187f42feb48e159c00337e766e29b11bd6e685e9
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Jan 29 21:13:55 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Jan 29 21:13:55 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187f42fe

dev-python/pyGPG: Switch to PEP 517 build

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 .../{pyGPG-9999.ebuild => pyGPG-0.2-r1.ebuild}     | 25 +++++++++++-----------
 dev-python/pyGPG/pyGPG-9999.ebuild                 | 25 +++++++++++-----------
 2 files changed, 24 insertions(+), 26 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
similarity index 65%
copy from dev-python/pyGPG/pyGPG-9999.ebuild
copy to dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index fc4ad1900dce..1649f810972a 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-DISTUTILS_USE_SETUPTOOLS=no
-
 inherit distutils-r1
 
 if [[ ${PV} == *9999 ]]; then
@@ -31,15 +30,15 @@ RDEPEND="${DEPEND}
 	"
 
 pkg_postinst() {
-	einfo
-	einfo "This is experimental software."
-	einfo "The API's it installs should be considered unstable"
-	einfo "and are subject to change."
-	einfo
-	einfo "Please file any enhancement requests, or bugs"
-	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
-	einfo
+	elog
+	elog "This is experimental software."
+	elog "The API's it installs should be considered unstable"
+	elog "and are subject to change."
+	elog
+	elog "Please file any enhancement requests, or bugs"
+	elog "at https://github.com/dol-sen/pyGPG/issues"
+	elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
+	elog
 	ewarn "There may be some python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."
 }

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index fc4ad1900dce..1649f810972a 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -1,12 +1,11 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{7,8,9} )
 
-DISTUTILS_USE_SETUPTOOLS=no
-
 inherit distutils-r1
 
 if [[ ${PV} == *9999 ]]; then
@@ -31,15 +30,15 @@ RDEPEND="${DEPEND}
 	"
 
 pkg_postinst() {
-	einfo
-	einfo "This is experimental software."
-	einfo "The API's it installs should be considered unstable"
-	einfo "and are subject to change."
-	einfo
-	einfo "Please file any enhancement requests, or bugs"
-	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
-	einfo
+	elog
+	elog "This is experimental software."
+	elog "The API's it installs should be considered unstable"
+	elog "and are subject to change."
+	elog
+	elog "Please file any enhancement requests, or bugs"
+	elog "at https://github.com/dol-sen/pyGPG/issues"
+	elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
+	elog
 	ewarn "There may be some python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."
 }


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-02-02 15:22 Craig Andrews
  0 siblings, 0 replies; 40+ messages in thread
From: Craig Andrews @ 2022-02-02 15:22 UTC (permalink / raw
  To: gentoo-commits

commit:     3eb1261ed6a14a2f604067de35a8e408c12f3821
Author:     Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Wed Feb  2 15:22:19 2022 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Wed Feb  2 15:22:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3eb1261e

dev-python/pyGPG: Python 3.10 compatibility

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 dev-python/pyGPG/pyGPG-0.2.ebuild    | 4 ++--
 dev-python/pyGPG/pyGPG-9999.ebuild   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 1649f810972a..f318c1346320 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 
 inherit distutils-r1
 

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
index bb3ede2f3797..3fd4d48d6b65 100644
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 
 DISTUTILS_USE_SETUPTOOLS=no
 

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 1649f810972a..f318c1346320 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{7,8,9,10} )
 
 inherit distutils-r1
 


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-15 11:27 Jakov Smolić
  0 siblings, 0 replies; 40+ messages in thread
From: Jakov Smolić @ 2022-03-15 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     562230202406516a1fbfa155e820d9069eaf278d
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 11:25:49 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 11:25:49 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56223020

dev-python/pyGPG: Stabilize 0.2-r1 x86, #835249

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index f318c1346320..6a1d4a0dfe2c 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 ~sparc ~x86"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-15 11:27 Jakov Smolić
  0 siblings, 0 replies; 40+ messages in thread
From: Jakov Smolić @ 2022-03-15 11:27 UTC (permalink / raw
  To: gentoo-commits

commit:     8995812d4e18debfc93a06afaaaf2da147843c88
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 11:26:46 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 11:26:46 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8995812d

dev-python/pyGPG: Stabilize 0.2-r1 amd64, #835249

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 6a1d4a0dfe2c..610c73d20079 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-15 17:56 Jakov Smolić
  0 siblings, 0 replies; 40+ messages in thread
From: Jakov Smolić @ 2022-03-15 17:56 UTC (permalink / raw
  To: gentoo-commits

commit:     9200f6ca86b07d547a246778c9c44f641ad04ff9
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Mar 15 17:54:28 2022 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Mar 15 17:54:28 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9200f6ca

dev-python/pyGPG: Stabilize 0.2-r1 arm64, #835249

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 610c73d20079..b3568f94b453 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-16 23:53 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2022-03-16 23:53 UTC (permalink / raw
  To: gentoo-commits

commit:     dcff34b12eae29573019f55cd282456d2340d8c6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 16 23:50:32 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Mar 16 23:50:32 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcff34b1

dev-python/pyGPG: Stabilize 0.2-r1 ppc, #835249

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 257faf7a8a30..b7425881c087 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-17  7:45 Agostino Sarubbo
  0 siblings, 0 replies; 40+ messages in thread
From: Agostino Sarubbo @ 2022-03-17  7:45 UTC (permalink / raw
  To: gentoo-commits

commit:     43c490a7801803e0116c6d9e855e97b5a0069b4c
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Thu Mar 17 07:44:53 2022 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Thu Mar 17 07:44:53 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43c490a7

dev-python/pyGPG: sparc stable wrt bug #835249

Package-Manager: Portage-3.0.30, Repoman-3.0.3
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index b7425881c087..1bad4be90478 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-18  9:02 Arthur Zamarin
  0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2022-03-18  9:02 UTC (permalink / raw
  To: gentoo-commits

commit:     e25d1382d8500f3da941c960eb337edf0a14f903
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 09:02:36 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 09:02:40 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e25d1382

dev-python/pyGPG: Stabilize 0.2-r1 arm, #835249

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 1bad4be90478..44a378fc31eb 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == *9999 ]]; then
 	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 ~riscv ~s390 sparc x86"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2022-03-18 11:41 Michał Górny
  0 siblings, 0 replies; 40+ messages in thread
From: Michał Górny @ 2022-03-18 11:41 UTC (permalink / raw
  To: gentoo-commits

commit:     8e6a19ad28fd2f3133cffc166f9fe2355973dcfd
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Mar 18 11:33:44 2022 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Mar 18 11:33:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e6a19ad

dev-python/pyGPG: Remove old

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2.ebuild | 45 ---------------------------------------
 1 file changed, 45 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild
deleted file mode 100644
index 3fd4d48d6b65..000000000000
--- a/dev-python/pyGPG/pyGPG-0.2.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8,9,10} )
-
-DISTUTILS_USE_SETUPTOOLS=no
-
-inherit distutils-r1
-
-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 ~riscv ~s390 sparc x86"
-fi
-
-DESCRIPTION="A python interface wrapper for gnupg's gpg command"
-HOMEPAGE="https://github.com/dol-sen/pyGPG"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-DEPEND=""
-RDEPEND="${DEPEND}
-	app-crypt/gnupg
-	"
-
-pkg_postinst() {
-	einfo
-	einfo "This is experimental software."
-	einfo "The API's it installs should be considered unstable"
-	einfo "and are subject to change."
-	einfo
-	einfo "Please file any enhancement requests, or bugs"
-	einfo "at https://github.com/dol-sen/pyGPG/issues"
-	einfo "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
-	einfo
-	ewarn "There may be some python 3 compatibility issues still."
-	ewarn "Please help debug/fix/report them in github or bugzilla."
-}


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-02-16  3:29 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-02-16  3:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b6563ac325c6f8b9639fdfc8f50ba79a6e87fe67
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 15 23:04:57 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Feb 16 03:26:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6563ac3

dev-python/pyGPG: sync live, wire up tests for live

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2-r1.ebuild | 11 +++--------
 dev-python/pyGPG/pyGPG-9999.ebuild   | 13 +++++--------
 2 files changed, 8 insertions(+), 16 deletions(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
index 75d7cff0e204..43eeb1b5b61b 100644
--- a/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2-r1.ebuild
@@ -22,23 +22,18 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}
-	app-crypt/gnupg
-	"
+RDEPEND="app-crypt/gnupg"
 
 pkg_postinst() {
-	elog
 	elog "This is experimental software."
-	elog "The API's it installs should be considered unstable"
+	elog "The APIs it installs should be considered unstable"
 	elog "and are subject to change."
 	elog
 	elog "Please file any enhancement requests, or bugs"
 	elog "at https://github.com/dol-sen/pyGPG/issues"
 	elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
 	elog
-	ewarn "There may be some python 3 compatibility issues still."
+	ewarn "There may be some Python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."
 }

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 3cabe1085532..337db049369c 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -22,23 +22,20 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 
 LICENSE="BSD"
 SLOT="0"
-IUSE=""
 
-DEPEND=""
-RDEPEND="${DEPEND}
-	app-crypt/gnupg
-	"
+RDEPEND="app-crypt/gnupg"
+
+distutils_enable_tests pytest
 
 pkg_postinst() {
-	elog
 	elog "This is experimental software."
-	elog "The API's it installs should be considered unstable"
+	elog "The APIs it installs should be considered unstable"
 	elog "and are subject to change."
 	elog
 	elog "Please file any enhancement requests, or bugs"
 	elog "at https://github.com/dol-sen/pyGPG/issues"
 	elog "I am also on IRC @ #gentoo-ci of the Libera.Chat network"
 	elog
-	ewarn "There may be some python 3 compatibility issues still."
+	ewarn "There may be some Python 3 compatibility issues still."
 	ewarn "Please help debug/fix/report them in github or bugzilla."
 }


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-01 15:00 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-01 15:00 UTC (permalink / raw
  To: gentoo-commits

commit:     c46540c9fbae4300ce29a90b71b2c20e0d51685a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon May  1 14:52:28 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon May  1 14:52:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46540c9

dev-python/pyGPG: add 0.2_p20220808

Snapshot which has tests so let's add Python 3.11 to it as well.

Closes: https://bugs.gentoo.org/896822
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/Manifest                              |  1 +
 .../{pyGPG-9999.ebuild => pyGPG-0.2_p20220808.ebuild}  | 18 ++++++++++++++++--
 dev-python/pyGPG/pyGPG-9999.ebuild                     | 18 ++++++++++++++++--
 3 files changed, 33 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyGPG/Manifest b/dev-python/pyGPG/Manifest
index b05cbd55dc19..9f6ec7e8ff54 100644
--- a/dev-python/pyGPG/Manifest
+++ b/dev-python/pyGPG/Manifest
@@ -1 +1,2 @@
 DIST pyGPG-0.2.tar.gz 15439 BLAKE2B 92c82b8b23c279461a872f118c636fa9cdae3f44910fc34a357983b0b4afea2a7b13c6400499a0fdbb4365357ade64294642178ca07a79ab3b7df89e60146e73 SHA512 93d892a57a27b254bfdc9778b73d341dfec654c2104c578014628df78c43beaf93eafb571ac544d52f334e63f6e5b8c0cfad7c8a0d585ee7211e8649efce8c67
+DIST pyGPG-0.2_p20220808.gh.tar.gz 31955 BLAKE2B ae671b7bf685b1072364dbfcf79bca8fa2dadd034fbdf7a721d7a2cfec44e8d8ffa22b08c14414c8774422b6a62af8d511bd31bd15bd68d89632cde031ec0906 SHA512 85c8d67e71e91cfb26b1e0087889d7cd4fccae9ddcffcd3e3f9d208da7fd352c3273c580e3b7c284c5ab4c2a53c56f4530e5587dc22869098a408a1dfcd1e257

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
similarity index 70%
copy from dev-python/pyGPG/pyGPG-9999.ebuild
copy to dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index 337db049369c..6749e63d1904 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 
@@ -12,9 +12,12 @@ if [[ ${PV} == *9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
 	EGIT_BRANCH="master"
+elif [[ ${PV} == *_p* ]] ; then
+	MY_COMMIT="eb44ec69978044809325a0a9c8972d1d4f573b47"
+	SRC_URI="https://github.com/dol-sen/pyGPG/archive/${MY_COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}"/${PN}-${MY_COMMIT}
 else
 	SRC_URI="https://dev.gentoo.org/~dolsen/releases/pyGPG/${P}.tar.gz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"
@@ -22,9 +25,20 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 
 LICENSE="BSD"
 SLOT="0"
+if [[ ${PV} != *9999 ]] ; then
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
 
 RDEPEND="app-crypt/gnupg"
 
+EPYTEST_DESELECT=(
+	# Expired keys
+	test/pyGPG/test_gpg.py::test_listkeys2
+	test/pyGPG/test_gpg.py::test_listkey2
+	test/pyGPG/test_gpg.py::test_listkey
+	test/pyGPG/test_gpg.py::test_fingerprint2
+)
+
 distutils_enable_tests pytest
 
 pkg_postinst() {

diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild
index 337db049369c..6749e63d1904 100644
--- a/dev-python/pyGPG/pyGPG-9999.ebuild
+++ b/dev-python/pyGPG/pyGPG-9999.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9,10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1
 
@@ -12,9 +12,12 @@ if [[ ${PV} == *9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/dol-sen/pyGPG.git"
 	EGIT_BRANCH="master"
+elif [[ ${PV} == *_p* ]] ; then
+	MY_COMMIT="eb44ec69978044809325a0a9c8972d1d4f573b47"
+	SRC_URI="https://github.com/dol-sen/pyGPG/archive/${MY_COMMIT}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}"/${PN}-${MY_COMMIT}
 else
 	SRC_URI="https://dev.gentoo.org/~dolsen/releases/pyGPG/${P}.tar.gz"
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 fi
 
 DESCRIPTION="A python interface wrapper for gnupg's gpg command"
@@ -22,9 +25,20 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 
 LICENSE="BSD"
 SLOT="0"
+if [[ ${PV} != *9999 ]] ; then
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+fi
 
 RDEPEND="app-crypt/gnupg"
 
+EPYTEST_DESELECT=(
+	# Expired keys
+	test/pyGPG/test_gpg.py::test_listkeys2
+	test/pyGPG/test_gpg.py::test_listkey2
+	test/pyGPG/test_gpg.py::test_listkey
+	test/pyGPG/test_gpg.py::test_fingerprint2
+)
+
 distutils_enable_tests pytest
 
 pkg_postinst() {


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-02 20:26 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-02 20:26 UTC (permalink / raw
  To: gentoo-commits

commit:     4c34d31c4f7d1868f1f1dfb545cd473a780d377b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 20:26:06 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May  2 20:26:06 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c34d31c

dev-python/pyGPG: Stabilize 0.2_p20220808 x86, #905424

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index 6749e63d1904..038c768ac86b 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != *9999 ]] ; then
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-02 20:50 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-02 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     47c41c1cb59d70cae1896c0e90543f70ba61ab4f
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 20:31:10 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May  2 20:46:54 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47c41c1c

dev-python/pyGPG: Stabilize 0.2_p20220808 ppc, #905424

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index 038c768ac86b..afd9cbdb0542 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != *9999 ]] ; then
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-02 20:50 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-02 20:50 UTC (permalink / raw
  To: gentoo-commits

commit:     07bbb20cdc07c4abab5523ad684842df7f5517d9
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May  2 20:49:40 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May  2 20:49:40 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07bbb20c

dev-python/pyGPG: Stabilize 0.2_p20220808 arm, #905424

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index afd9cbdb0542..a36ee0cbe0ff 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != *9999 ]] ; then
-	KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-03  5:25 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-03  5:25 UTC (permalink / raw
  To: gentoo-commits

commit:     cbb692ee13943db034a9fd0d07bbf436cd7fbda8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 05:25:35 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May  3 05:25:35 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbb692ee

dev-python/pyGPG: Stabilize 0.2_p20220808 ppc64, #905424

Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index a36ee0cbe0ff..1b5fc28fb358 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != *9999 ]] ; then
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-03  5:35 Sam James
  0 siblings, 0 replies; 40+ messages in thread
From: Sam James @ 2023-05-03  5:35 UTC (permalink / raw
  To: gentoo-commits

commit:     8da0d0ba21eef81ca711698918268ab721d1126a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 05:35:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May  3 05:35:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8da0d0ba

dev-python/pyGPG: mark ALLARCHES

Bug: https://bugs.gentoo.org/905424
Signed-off-by: Sam James <sam <AT> gentoo.org>

 dev-python/pyGPG/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pyGPG/metadata.xml b/dev-python/pyGPG/metadata.xml
index 9f215a16d869..b04f3dcc2151 100644
--- a/dev-python/pyGPG/metadata.xml
+++ b/dev-python/pyGPG/metadata.xml
@@ -9,6 +9,7 @@
 		It also connects to gpg's status-fd output and makes all the status data
 		available as subclassed namedtuple instances.
 	</longdescription>
+	<stabilize-allarches/>
 	<upstream>
 		<remote-id type="github">dol-sen/pyGPG</remote-id>
 	</upstream>


^ permalink raw reply related	[flat|nested] 40+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/
@ 2023-05-03  6:33 Arthur Zamarin
  0 siblings, 0 replies; 40+ messages in thread
From: Arthur Zamarin @ 2023-05-03  6:33 UTC (permalink / raw
  To: gentoo-commits

commit:     43769e0110f7da4e4fa0938d07f847273a5c41fc
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May  3 06:30:50 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May  3 06:32:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43769e01

dev-python/pyGPG: Stabilize 0.2_p20220808 ALLARCHES, #905424

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
index 1b5fc28fb358..78f1b9b5f5db 100644
--- a/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
+++ b/dev-python/pyGPG/pyGPG-0.2_p20220808.ebuild
@@ -26,7 +26,7 @@ HOMEPAGE="https://github.com/dol-sen/pyGPG"
 LICENSE="BSD"
 SLOT="0"
 if [[ ${PV} != *9999 ]] ; then
-	KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
+	KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
 fi
 
 RDEPEND="app-crypt/gnupg"


^ permalink raw reply related	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2023-05-03  6:33 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-29 11:39 [gentoo-commits] repo/gentoo:master commit in: dev-python/pyGPG/ Jeroen Roovers
  -- strict thread matches above, loose matches on Subject: below --
2023-05-03  6:33 Arthur Zamarin
2023-05-03  5:35 Sam James
2023-05-03  5:25 Sam James
2023-05-02 20:50 Sam James
2023-05-02 20:50 Sam James
2023-05-02 20:26 Sam James
2023-05-01 15:00 Sam James
2023-02-16  3:29 Sam James
2022-03-18 11:41 Michał Górny
2022-03-18  9:02 Arthur Zamarin
2022-03-17  7:45 Agostino Sarubbo
2022-03-16 23:53 Sam James
2022-03-15 17:56 Jakov Smolić
2022-03-15 11:27 Jakov Smolić
2022-03-15 11:27 Jakov Smolić
2022-02-02 15:22 Craig Andrews
2022-01-29 21:19 Michał Górny
2021-09-14 14:15 Yixun Lan
2021-07-11 13:00 Brian Dolbec
2021-06-01 10:44 Sam James
2021-02-13 21:27 Brian Dolbec
2020-04-18 17:55 Craig Andrews
2020-02-26 12:18 Michał Górny
2019-07-26 22:21 Aaron Bauman
2019-06-16 15:01 David Seifert
2019-06-16 15:01 David Seifert
2019-06-16 15:01 David Seifert
2017-07-30  9:15 Michał Górny
2017-05-12 15:19 Manuel Rüger
2017-03-11 17:07 Agostino Sarubbo
2017-03-04 14:02 Agostino Sarubbo
2017-02-17  6:03 Markus Meier
2017-02-16 20:34 Michael Weber
2017-02-14 15:39 Agostino Sarubbo
2017-02-14 14:52 Agostino Sarubbo
2016-12-24 21:54 Brian Dolbec
2016-10-09  7:47 Pacho Ramos
2016-02-22  0:43 Stephen Klimaszewski
2016-01-23 19:28 Brian Dolbec

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox