summaryrefslogtreecommitdiff
path: root/dev-python/pyotp2289/pyotp2289-1.2.1.ebuild
diff options
context:
space:
mode:
authorSimeon Simeonov2023-01-09 00:01:27 +0100
committerSimeon Simeonov2023-01-09 00:01:27 +0100
commit02d9417ec4d07260596f83a28a2452192be13e41 (patch)
tree8d23c847e4faf19f56fe8b95edf7eece07445747 /dev-python/pyotp2289/pyotp2289-1.2.1.ebuild
parent97639e35510beb2a94bcb42a03cf4b9a160b22a3 (diff)
Release dev-python/pyotp2289/pyotp2289-1.2.1.ebuild
Diffstat (limited to 'dev-python/pyotp2289/pyotp2289-1.2.1.ebuild')
-rw-r--r--dev-python/pyotp2289/pyotp2289-1.2.1.ebuild27
1 files changed, 27 insertions, 0 deletions
diff --git a/dev-python/pyotp2289/pyotp2289-1.2.1.ebuild b/dev-python/pyotp2289/pyotp2289-1.2.1.ebuild
new file mode 100644
index 0000000..5996de2
--- /dev/null
+++ b/dev-python/pyotp2289/pyotp2289-1.2.1.ebuild
@@ -0,0 +1,27 @@
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..11} )
8
9inherit distutils-r1
10
11DESCRIPTION="A pure Python 3 implementation of RFC-2289 - 'A One-Time Password System'"
12HOMEPAGE="https://github.com/blackm0re/pyotp2289"
13MY_PN="pyotp2289"
14MY_P="${MY_PN}-${PV}"
15
16SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
17KEYWORDS="amd64 arm arm64 ppc ppc64 x86"
18S="${WORKDIR}/${MY_P}"
19
20LICENSE="BSD"
21SLOT="0"
22
23distutils_enable_tests pytest
24
25python_install_all() {
26 distutils-r1_python_install_all
27}