summaryrefslogtreecommitdiff
path: root/dev-python/etoolkit/etoolkit-1.1.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.1.0.ebuild
parent8459629cd213b551f3ccb6a519247594fa137425 (diff)
Fix legacy ebuilds and fix pkgcheck issues
Diffstat (limited to 'dev-python/etoolkit/etoolkit-1.1.0.ebuild')
-rw-r--r--dev-python/etoolkit/etoolkit-1.1.0.ebuild34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/etoolkit/etoolkit-1.1.0.ebuild b/dev-python/etoolkit/etoolkit-1.1.0.ebuild
deleted file mode 100644
index 0d3de77..0000000
--- a/dev-python/etoolkit/etoolkit-1.1.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
1# Copyright 1999-2022 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..10} )
8
9inherit distutils-r1
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="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
17KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86"
18S="${WORKDIR}/${MY_P}"
19
20LICENSE="GPL-3+"
21SLOT="0"
22
23RDEPEND="
24 >=dev-python/cryptography-3.2.0[${PYTHON_USEDEP}]"
25
26distutils_enable_tests pytest
27
28python_test() {
29 epytest -s
30}
31
32python_install_all() {
33 distutils-r1_python_install_all
34}