pentoo-overlay/dev-python/pyminifier/pyminifier-2.1_p20150625.ebuild
Yury Martynov 25cf8b74ce
dev-python/pyminifier: drop python2_7
Package-Manager: Portage-2.3.89, Repoman-2.3.20
Signed-off-by: Yury Martynov <email@linxon.ru>
2020-04-12 18:22:23 +03:00

37 lines
805 B
Bash

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Pyminifier is a Python code minifier, obfuscator, and compressor."
HOMEPAGE="https://github.com/liftoff/pyminifier"
if [[ ${PV} = *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/liftoff/pyminifier.git"
else
HASH_COMMIT="087ea7b0c8c964f1f907c3f350f5ce281798db86"
SRC_URI="https://github.com/liftoff/pyminifier/archive/${HASH_COMMIT}.tar.gz -> ${P}.tar.gz"
fi
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="${PYTHON_DEPS}"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}-${HASH_COMMIT}"
pkg_setup() {
python_setup
}
python_install() {
distutils-r1_python_install
python_optimize "${ED}/usr"
}