diff options
author | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 22:32:19 +0100 |
---|---|---|
committer | Conrad Kostecki <conikost@gentoo.org> | 2022-02-09 23:56:36 +0100 |
commit | 4e5270c04f2cdea4cbb241c7379dd4949e15d176 (patch) | |
tree | e342f38b0807af97dfa58f3b2e9821977e867c46 /sys-apps/onerng | |
parent | sys-apps/lcdutils: drop 0.2-r1 (diff) | |
download | gentoo-4e5270c04f2cdea4cbb241c7379dd4949e15d176.tar.gz gentoo-4e5270c04f2cdea4cbb241c7379dd4949e15d176.tar.bz2 gentoo-4e5270c04f2cdea4cbb241c7379dd4949e15d176.zip |
sys-apps/onerng: update EAPI 7 -> 8
Signed-off-by: Conrad Kostecki <conikost@gentoo.org>
Diffstat (limited to 'sys-apps/onerng')
-rw-r--r-- | sys-apps/onerng/onerng-3.6-r4.ebuild | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/sys-apps/onerng/onerng-3.6-r4.ebuild b/sys-apps/onerng/onerng-3.6-r4.ebuild new file mode 100644 index 000000000000..1a720e2d385d --- /dev/null +++ b/sys-apps/onerng/onerng-3.6-r4.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit python-single-r1 udev + +MY_P="${P/-/_}" + +DESCRIPTION="Software for the Open Hardware Random Number Generator called OneRNG" +HOMEPAGE="https://www.onerng.info/" +SRC_URI="https://github.com/OneRNG/onerng.github.io/raw/master/sw/${MY_P}.orig.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${MY_P}" + +LICENSE="|| ( LGPL-2.1 LGPL-3 )" +SLOT="0" +KEYWORDS="amd64 x86" +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +BDEPEND="virtual/pkgconfig" + +DEPEND="virtual/udev" + +RDEPEND=" + ${DEPEND} + ${PYTHON_DEPS} + app-crypt/gnupg + $(python_gen_cond_dep 'dev-python/python-gnupg[${PYTHON_USEDEP}]') + sys-apps/rng-tools + sys-process/at +" + +pkg_postinst() { + udev_reload +} + +pkg_postrm() { + udev_reload +} |