diff options
author | Julien Roy <julien@jroy.ca> | 2022-12-21 22:33:46 -0500 |
---|---|---|
committer | Julien Roy <julien@jroy.ca> | 2022-12-21 22:33:46 -0500 |
commit | ba2699366954dba1fcbb3cfa48e351cfb4b025df (patch) | |
tree | a9bc26adc2200d28b2d8aeb3536fcca3c1fc0d33 | |
parent | 0222fad7ff80a9ab02df1b916a5df72661161134 (diff) | |
download | MrRoy-Overlay-ba2699366954dba1fcbb3cfa48e351cfb4b025df.tar.gz MrRoy-Overlay-ba2699366954dba1fcbb3cfa48e351cfb4b025df.tar.bz2 MrRoy-Overlay-ba2699366954dba1fcbb3cfa48e351cfb4b025df.zip |
dev-python/PGPy: new package, add 0.6.0
Signed-off-by: Julien Roy <julien@jroy.ca>
-rw-r--r-- | dev-python/PGPy/Manifest | 1 | ||||
-rw-r--r-- | dev-python/PGPy/PGPy-0.6.0.ebuild | 20 | ||||
-rw-r--r-- | dev-python/PGPy/metadata.xml | 15 |
3 files changed, 36 insertions, 0 deletions
diff --git a/dev-python/PGPy/Manifest b/dev-python/PGPy/Manifest new file mode 100644 index 0000000..9fe7295 --- /dev/null +++ b/dev-python/PGPy/Manifest @@ -0,0 +1 @@ +DIST PGPy-0.6.0.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 0000000..a28d977 --- /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}.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 0000000..7148a75 --- /dev/null +++ b/dev-python/PGPy/metadata.xml @@ -0,0 +1,15 @@ +<?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> + </upstream> +</pkgmetadata> |