diff options
author | Michał Górny <mgorny@gentoo.org> | 2017-12-10 10:54:34 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2017-12-10 11:09:57 +0100 |
commit | 36ded3f4dcede9d0a7290dd35d287fa243e8cc12 (patch) | |
tree | 4661a0b3b74813ecf7106bf752b7fa7ff0595da3 /app-portage | |
parent | app-portage/gemato: Split dependencies more correctly (diff) | |
download | gentoo-36ded3f4dcede9d0a7290dd35d287fa243e8cc12.tar.gz gentoo-36ded3f4dcede9d0a7290dd35d287fa243e8cc12.tar.bz2 gentoo-36ded3f4dcede9d0a7290dd35d287fa243e8cc12.zip |
app-portage/gemato: Bump to 9.2
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/gemato/Manifest | 1 | ||||
-rw-r--r-- | app-portage/gemato/gemato-9.2.ebuild | 44 |
2 files changed, 45 insertions, 0 deletions
diff --git a/app-portage/gemato/Manifest b/app-portage/gemato/Manifest index 10045397b4a5..d51d42d9efa5 100644 --- a/app-portage/gemato/Manifest +++ b/app-portage/gemato/Manifest @@ -1,2 +1,3 @@ DIST gemato-8.tar.gz 57379 BLAKE2B e83cba508ed781667abab3e18059f838c99e92217a7f1dde90b2cc4200a0ab83baabf789bc6bc978b4f080bf285ab9b7ea62e86a98c272abf3889093d780eac3 SHA512 9e5e7c304166d311b7101330b36c3d781e5d3901feb5247235ed04a8aa316416f6045658fab176e34ca6c2d6653eda66ef19789b39a60cb316add9985c9a8040 DIST gemato-9.1.tar.gz 59352 BLAKE2B e2e2d02de29856a91c2432496101589fbe1a87456d46071c03ae5b999a46356f144c6d5831d42896ee15d1bdede32cdcc6b02c412b427f7878d8fc9ecaef84c1 SHA512 cf7bec8ccf7eab75bdbaf0e9a701c7b0fa1a8f2f329f4ba7ef3399898997a6bb3f53c6dfe49cd054ce12baf1f4490e2b7610f5964ff7e6053ae7dd53dd34900e +DIST gemato-9.2.tar.gz 60217 BLAKE2B f46cb35b5ae71fe1743c7a43bfeff42a9d77517ef48dca1dd05c5c8cd569d5dcd9bdb0c0957d81d2db6b8d873099463fd6132121be04e0fd6f55bb130df48c2e SHA512 bb40abb910b528e455bdc01ed528071ca6f1390a8a5ae670692c93e6c3fc8fd7fc7e95d7321c81ad5144fc8a042676a8dac634c7b3f68e7f725edc98edd30c94 diff --git a/app-portage/gemato/gemato-9.2.ebuild b/app-portage/gemato/gemato-9.2.ebuild new file mode 100644 index 000000000000..e5d5e0fa57e5 --- /dev/null +++ b/app-portage/gemato/gemato-9.2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +# backports.lzma is broken with pypy +# pyblake2 & pysha3 are broken with pypy3 +PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} ) +inherit distutils-r1 + +DESCRIPTION="Stand-alone Manifest generation & verification tool" +HOMEPAGE="https://github.com/mgorny/gemato" +SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ia64 ~ppc ~ppc64 ~x86" +IUSE="+blake2 bzip2 +gpg lzma +portage-postsync sha3 test" + +MODULE_RDEPEND=" + blake2? ( $(python_gen_cond_dep 'dev-python/pyblake2[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) ) + bzip2? ( $(python_gen_cond_dep 'dev-python/bz2file[${PYTHON_USEDEP}]' python2_7 pypy) ) + gpg? ( app-crypt/gnupg ) + lzma? ( $(python_gen_cond_dep 'dev-python/backports-lzma[${PYTHON_USEDEP}]' python2_7 pypy) ) + sha3? ( $(python_gen_cond_dep 'dev-python/pysha3[${PYTHON_USEDEP}]' python{2_7,3_4,3_5} pypy{,3}) )" + +RDEPEND="${MODULE_RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + portage-postsync? ( app-crypt/gentoo-keys )" +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}] + test? ( ${MODULE_RDEPEND} )" + +python_test() { + esetup.py test +} + +python_install_all() { + distutils-r1_python_install_all + + if use portage-postsync; then + exeinto /etc/portage/repo.postsync.d + doexe utils/repo.postsync.d/00gemato + fi +} |