summaryrefslogtreecommitdiff
path: root/dev-python/etoolkit/etoolkit-1.2.0.ebuild
diff options
context:
space:
mode:
authorSimeon Simeonov2024-06-30 19:06:22 +0200
committerSimeon Simeonov2024-06-30 19:06:22 +0200
commit991d0d96e5e079dae7feef4fc9c4736c306f6e57 (patch)
treee5ef1df00ea2b872f74a3c475bc17db400e37a30 /dev-python/etoolkit/etoolkit-1.2.0.ebuild
parent8459629cd213b551f3ccb6a519247594fa137425 (diff)
Fix legacy ebuilds and fix pkgcheck issues
Diffstat (limited to 'dev-python/etoolkit/etoolkit-1.2.0.ebuild')
-rw-r--r--dev-python/etoolkit/etoolkit-1.2.0.ebuild44
1 files changed, 0 insertions, 44 deletions
diff --git a/dev-python/etoolkit/etoolkit-1.2.0.ebuild b/dev-python/etoolkit/etoolkit-1.2.0.ebuild
deleted file mode 100644
index df53f69..0000000
--- a/dev-python/etoolkit/etoolkit-1.2.0.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
1# Copyright 1999-2023 Gentoo Authors
2# Distributed under the terms of the GNU General Public License v2
3
4EAPI=8
5
6DISTUTILS_USE_PEP517=setuptools
7PYTHON_COMPAT=( python3_{8..12} )
8
9inherit distutils-r1 verify-sig
10
11DESCRIPTION="A simple toolkit for setting environment variables in a flexible way"
12HOMEPAGE="https://github.com/blackm0re/etoolkit"
13MY_PN="etoolkit"
14MY_P="${MY_PN}-${PV}"
15
16SRC_URI="
17 https://github.com/blackm0re/etoolkit/releases/download/${PV}/${MY_P}.tar.gz
18 verify-sig? ( https://github.com/blackm0re/etoolkit/releases/download/${PV}/${MY_P}.tar.gz.asc )
19"
20
21KEYWORDS="amd64 arm arm64 ppc ppc64 sparc x86"
22S="${WORKDIR}/${MY_P}"
23
24LICENSE="GPL-3+"
25SLOT="0"
26
27RDEPEND="
28 >=dev-python/cryptography-3.2.0[${PYTHON_USEDEP}]
29"
30BDEPEND="
31 verify-sig? ( sec-keys/openpgp-keys-simeonsimeonov )
32"
33
34distutils_enable_tests pytest
35
36VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/simeonsimeonov.asc
37
38python_test() {
39 epytest -s
40}
41
42python_install_all() {
43 distutils-r1_python_install_all
44}