diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-07-21 11:21:55 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-07-21 11:22:33 +0200 |
commit | 91b09274c4474533c939ba029722b66771fc6f92 (patch) | |
tree | b430e43b7a861da9e5125709f1cf6ba5e280b420 /app-crypt | |
parent | www-client/opera-beta: Version 55.0.2994.20. (diff) | |
download | gentoo-91b09274c4474533c939ba029722b66771fc6f92.tar.gz gentoo-91b09274c4474533c939ba029722b66771fc6f92.tar.bz2 gentoo-91b09274c4474533c939ba029722b66771fc6f92.zip |
app-crypt/glep63-check: Bump to v2
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/glep63-check/Manifest | 1 | ||||
-rw-r--r-- | app-crypt/glep63-check/glep63-check-2.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/app-crypt/glep63-check/Manifest b/app-crypt/glep63-check/Manifest index b1a03691cde1..fcddb1e3e08e 100644 --- a/app-crypt/glep63-check/Manifest +++ b/app-crypt/glep63-check/Manifest @@ -1 +1,2 @@ DIST glep63-check-1.tar.gz 4632 BLAKE2B 3632199ca9ca8516a833aa6d93885f40a761c47ab5bc5685582c6c8e294af0d5a6e258656208c9a65c1c5d4852d5e32374a77b39a0dcf491605df4b733d2c162 SHA512 16e3031b9b04af09ba446c76e8776d802d197d2d1f934c9a409509a81fd299306b451ea3e52d1ac5b75c9d0c9a0d7f93b73e26732ecf51c5c3afe53f0c0868aa +DIST glep63-check-2.tar.gz 5818 BLAKE2B 4cb99945e5bf3067e579feb630c8c5e3a33abdbc66cbdc90f00104a926880b29b61b22a8e151d1a35765787b80a1567fc6823259e94df0ab72810e9d76ea61a3 SHA512 bc3029e3886ad881f134da0e0821ed5bc908f7583d8031f76000827640d60e85adc182555163e6ef4138c1d1c9abb3e314ae5548acf82e384d66eac6d1e1b8c7 diff --git a/app-crypt/glep63-check/glep63-check-2.ebuild b/app-crypt/glep63-check/glep63-check-2.ebuild new file mode 100644 index 000000000000..1ffa43933fbc --- /dev/null +++ b/app-crypt/glep63-check/glep63-check-2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,6} ) + +inherit python-single-r1 + +DESCRIPTION="GLEP 63 compliance checker for OpenPGP keys" +HOMEPAGE="https://github.com/mgorny/glep63-check/" +SRC_URI="https://github.com/mgorny/glep63-check/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + app-crypt/gnupg" + +src_compile() { + python_fix_shebang glep63-check +} + +src_install() { + dobin glep63-check +} |