diff options
| author | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
|---|---|---|
| committer | Palica <palica+gitlab@liguros.net> | 2020-06-23 22:35:08 +0200 |
| commit | ecdac123787b96ce6649f0f91da12ea6458cc2b1 (patch) | |
| tree | b89c74d9e6fe6e8aebc4c77bcbeb4ab73214127d /dev-python/pyGPG | |
| parent | 1be72aa41cf41dedadeecf59dca9f01de6381f5e (diff) | |
| download | baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.gz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.tar.xz baldeagleos-repo-ecdac123787b96ce6649f0f91da12ea6458cc2b1.zip | |
Updating liguros repo
Diffstat (limited to 'dev-python/pyGPG')
| -rw-r--r-- | dev-python/pyGPG/Manifest | 1 | ||||
| -rw-r--r-- | dev-python/pyGPG/metadata.xml | 16 | ||||
| -rw-r--r-- | dev-python/pyGPG/pyGPG-0.2.ebuild | 43 | ||||
| -rw-r--r-- | dev-python/pyGPG/pyGPG-9999.ebuild | 43 |
4 files changed, 103 insertions, 0 deletions
diff --git a/dev-python/pyGPG/Manifest b/dev-python/pyGPG/Manifest new file mode 100644 index 000000000000..b05cbd55dc19 --- /dev/null +++ b/dev-python/pyGPG/Manifest @@ -0,0 +1 @@ +DIST pyGPG-0.2.tar.gz 15439 BLAKE2B 92c82b8b23c279461a872f118c636fa9cdae3f44910fc34a357983b0b4afea2a7b13c6400499a0fdbb4365357ade64294642178ca07a79ab3b7df89e60146e73 SHA512 93d892a57a27b254bfdc9778b73d341dfec654c2104c578014628df78c43beaf93eafb571ac544d52f334e63f6e5b8c0cfad7c8a0d585ee7211e8649efce8c67 diff --git a/dev-python/pyGPG/metadata.xml b/dev-python/pyGPG/metadata.xml new file mode 100644 index 000000000000..bab6b1f4ad7c --- /dev/null +++ b/dev-python/pyGPG/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="project"> + <email>tools-portage@gentoo.org</email> + <name>Gentoo Portage tools team</name> + </maintainer> + <longdescription>A python interface library for wrapping gnupg's gpg command. + It also connects to gpg's status-fd output and makes all the status data + available as subclassed namedtuple instances. + </longdescription> + <upstream> + <remote-id type="github">dol-sen/pyGPG</remote-id> + </upstream> + <origin>gentoo-staging</origin> +</pkgmetadata> diff --git a/dev-python/pyGPG/pyGPG-0.2.ebuild b/dev-python/pyGPG/pyGPG-0.2.ebuild new file mode 100644 index 000000000000..c14d0e4c2a22 --- /dev/null +++ b/dev-python/pyGPG/pyGPG-0.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +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 ~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-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." +} diff --git a/dev-python/pyGPG/pyGPG-9999.ebuild b/dev-python/pyGPG/pyGPG-9999.ebuild new file mode 100644 index 000000000000..0c59304be28f --- /dev/null +++ b/dev-python/pyGPG/pyGPG-9999.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python3_{6,7,8} ) + +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 ~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-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." +} |
