6971e190ad
Signed-off-by: Maciej Barć <xgqt@protonmail.com>
23 lines
470 B
Bash
23 lines
470 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
MY_PN="pyDes"
|
|
MY_P="${MY_PN}-${PV}"
|
|
|
|
DISTUTILS_USE_SETUPTOOLS=no
|
|
PYTHON_COMPAT=( python3_{7..9} )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Python implementation of DES and TRIPLE DES"
|
|
HOMEPAGE="https://twhiteman.netfirms.com/des.html"
|
|
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
S="${WORKDIR}/${MY_P}"
|