* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/
@ 2022-12-22 3:39 Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2022-12-22 3:39 UTC (permalink / raw
To: gentoo-commits
commit: cd32835a6e36ce76300f47ac48d28e7edc5d8e1a
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Dec 22 03:39:29 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Dec 22 03:39:29 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=cd32835a
dev-python/PGPy: new package, add 0.6.0
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/PGPy/Manifest | 1 +
dev-python/PGPy/PGPy-0.6.0.ebuild | 20 ++++++++++++++++++++
dev-python/PGPy/metadata.xml | 16 ++++++++++++++++
3 files changed, 37 insertions(+)
diff --git a/dev-python/PGPy/Manifest b/dev-python/PGPy/Manifest
new file mode 100644
index 000000000..ae1417df1
--- /dev/null
+++ b/dev-python/PGPy/Manifest
@@ -0,0 +1 @@
+DIST PGPy-0.6.0.gh.tar.gz 602228 BLAKE2B d40aeb74503ff81d68764e89c7331e99128e047b92156abc4b35d32f99f386c2043065ff98445b24bcf38aeedbdfb35a4a2ceffc485e538a7285f432d67c69c4 SHA512 6d20c1a8fe225de49196f0a5d3cd823ec5988b68f0ca9e255acdf3700356bec5fdfb6963d4d4f93da41a008b5fb15ab7df3ce8cd77ffdfb69766320211ad0d6b
diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild
new file mode 100644
index 000000000..efa463d42
--- /dev/null
+++ b/dev-python/PGPy/PGPy-0.6.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Pretty Good Privacy for Python"
+HOMEPAGE="https://github.com/SecurityInnovation/PGPy
+ https://pypi.org/project/PGPy/"
+SRC_URI="https://github.com/SecurityInnovation/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=""
+DEPEND="${RDEPEND}"
diff --git a/dev-python/PGPy/metadata.xml b/dev-python/PGPy/metadata.xml
new file mode 100644
index 000000000..de18ecbca
--- /dev/null
+++ b/dev-python/PGPy/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer type="person">
+ <email>julien@jroy.ca</email>
+ <name>Julien Roy</name>
+ </maintainer>
+ <longdescription>PGPy is a Python library for implementing Pretty Good Privacy into Python programs, conforming to the OpenPGP specification per RFC 4880.</longdescription>
+ <upstream>
+ <changelog>https://github.com/SecurityInnovation/PGPy/releases</changelog>
+ <doc>https://pgpy.readthedocs.io/en/latest/</doc>
+ <bugs-to>https://github.com/SecurityInnovation/PGPy/issues</bugs-to>
+ <remote-id type="github">SecurityInnovation/PGPy</remote-id>
+ <remote-id type="pypi">PGPy</remote-id>
+ </upstream>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/
@ 2022-12-22 4:41 Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2022-12-22 4:41 UTC (permalink / raw
To: gentoo-commits
commit: 2333a937a3b1c0f5a584856457db10e99c20b362
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Dec 22 04:41:19 2022 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Thu Dec 22 04:41:19 2022 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2333a937
dev-python/PGPy: disable py3.11
update DEPEND
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/PGPy/PGPy-0.6.0.ebuild | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild
index efa463d42..8f9fd8f18 100644
--- a/dev-python/PGPy/PGPy-0.6.0.ebuild
+++ b/dev-python/PGPy/PGPy-0.6.0.ebuild
@@ -3,7 +3,7 @@
EAPI=8
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
@@ -17,4 +17,8 @@ SLOT="0"
KEYWORDS="~amd64"
RDEPEND=""
-DEPEND="${RDEPEND}"
+DEPEND="${RDEPEND}
+ dev-python/cryptography[${PYTHON_USEDEP}]
+ dev-python/pyasn1[${PYTHON_USEDEP}]
+ dev-python/six[${PYTHON_USEDEP}]
+"
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/
@ 2023-01-02 21:14 Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2023-01-02 21:14 UTC (permalink / raw
To: gentoo-commits
commit: 2ebe61bbf7a443b78414cc8ab41a9350ad17bc0e
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Mon Jan 2 20:53:42 2023 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Mon Jan 2 21:14:39 2023 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2ebe61bb
dev-python/PGPy: fix python tests
Closes: https://bugs.gentoo.org/888743
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/PGPy/PGPy-0.6.0.ebuild | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild
index b9079c6ab..7b883db63 100644
--- a/dev-python/PGPy/PGPy-0.6.0.ebuild
+++ b/dev-python/PGPy/PGPy-0.6.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -22,3 +22,5 @@ DEPEND="${RDEPEND}
dev-python/pyasn1[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
"
+
+distutils_enable_tests pytest
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/
2024-04-13 16:14 [gentoo-commits] repo/proj/guru:master " Julien Roy
@ 2024-04-13 16:10 ` Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-04-13 16:10 UTC (permalink / raw
To: gentoo-commits
commit: 86b51ce5ea9c91ee894f8aed3a20f98c4fd426ef
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Apr 13 16:07:33 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Apr 13 16:07:33 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=86b51ce5
dev-python/PGPy: enable py3.12
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/PGPy/PGPy-0.6.0.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild
index f84e0fa323..597c92ab04 100644
--- a/dev-python/PGPy/PGPy-0.6.0.ebuild
+++ b/dev-python/PGPy/PGPy-0.6.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
-PYTHON_COMPAT=( python3_{10..11} )
+PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/
@ 2024-04-13 17:26 Julien Roy
0 siblings, 0 replies; 5+ messages in thread
From: Julien Roy @ 2024-04-13 17:26 UTC (permalink / raw
To: gentoo-commits
commit: 3c4fc007e54642876f3ade41f2c675a3f66bd4a6
Author: Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sat Apr 13 17:25:38 2024 +0000
Commit: Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Sat Apr 13 17:25:51 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3c4fc007
dev-python/PGPy: treeclean
No reverse dependencies
Per bug 529902:
"For the record, last I've checked PGPy was pretty buggy and insecure,
and it doesn't look it is any better maintained now."
Bug: https://bugs.gentoo.org/529902
Signed-off-by: Julien Roy <julien <AT> jroy.ca>
dev-python/PGPy/Manifest | 1 -
dev-python/PGPy/PGPy-0.6.0.ebuild | 25 -------------------------
dev-python/PGPy/metadata.xml | 16 ----------------
3 files changed, 42 deletions(-)
diff --git a/dev-python/PGPy/Manifest b/dev-python/PGPy/Manifest
deleted file mode 100644
index ae1417df1f..0000000000
--- a/dev-python/PGPy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST PGPy-0.6.0.gh.tar.gz 602228 BLAKE2B d40aeb74503ff81d68764e89c7331e99128e047b92156abc4b35d32f99f386c2043065ff98445b24bcf38aeedbdfb35a4a2ceffc485e538a7285f432d67c69c4 SHA512 6d20c1a8fe225de49196f0a5d3cd823ec5988b68f0ca9e255acdf3700356bec5fdfb6963d4d4f93da41a008b5fb15ab7df3ce8cd77ffdfb69766320211ad0d6b
diff --git a/dev-python/PGPy/PGPy-0.6.0.ebuild b/dev-python/PGPy/PGPy-0.6.0.ebuild
deleted file mode 100644
index 597c92ab04..0000000000
--- a/dev-python/PGPy/PGPy-0.6.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 2022-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="Pretty Good Privacy for Python"
-HOMEPAGE="https://github.com/SecurityInnovation/PGPy
- https://pypi.org/project/PGPy/"
-SRC_URI="https://github.com/SecurityInnovation/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64"
-
-DEPEND="${RDEPEND}
- dev-python/cryptography[${PYTHON_USEDEP}]
- dev-python/pyasn1[${PYTHON_USEDEP}]
- dev-python/six[${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
diff --git a/dev-python/PGPy/metadata.xml b/dev-python/PGPy/metadata.xml
deleted file mode 100644
index de18ecbca6..0000000000
--- a/dev-python/PGPy/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>julien@jroy.ca</email>
- <name>Julien Roy</name>
- </maintainer>
- <longdescription>PGPy is a Python library for implementing Pretty Good Privacy into Python programs, conforming to the OpenPGP specification per RFC 4880.</longdescription>
- <upstream>
- <changelog>https://github.com/SecurityInnovation/PGPy/releases</changelog>
- <doc>https://pgpy.readthedocs.io/en/latest/</doc>
- <bugs-to>https://github.com/SecurityInnovation/PGPy/issues</bugs-to>
- <remote-id type="github">SecurityInnovation/PGPy</remote-id>
- <remote-id type="pypi">PGPy</remote-id>
- </upstream>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-13 17:26 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-13 17:26 [gentoo-commits] repo/proj/guru:dev commit in: dev-python/PGPy/ Julien Roy
-- strict thread matches above, loose matches on Subject: below --
2024-04-13 16:14 [gentoo-commits] repo/proj/guru:master " Julien Roy
2024-04-13 16:10 ` [gentoo-commits] repo/proj/guru:dev " Julien Roy
2023-01-02 21:14 Julien Roy
2022-12-22 4:41 Julien Roy
2022-12-22 3:39 Julien Roy
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox