Ryan Fox
123c810acc
Package-Manager: Portage-3.0.28, Repoman-3.0.3 Signed-off-by: Ryan Fox <flewkey@2a03.party>
32 lines
732 B
Bash
32 lines
732 B
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
PYTHON_COMPAT=( python3_{6..10} )
|
|
DISTUTILS_USE_SETUPTOOLS=bdepend
|
|
|
|
inherit distutils-r1
|
|
|
|
if [[ ${PV} != *9999* ]]; then
|
|
MY_PN="py-${PN}"
|
|
MY_P="${MY_PN}-${PV}"
|
|
S="${WORKDIR}/${MY_P}"
|
|
SRC_URI="https://github.com/repology/${MY_PN}/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
|
|
KEYWORDS="~amd64"
|
|
else
|
|
inherit git-r3
|
|
EGIT_REPO_URI="https://github.com/repology/py-libversion.git"
|
|
fi
|
|
|
|
DESCRIPTION="Python bindings for libversion"
|
|
HOMEPAGE="https://github.com/repology/py-libversion"
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
|
|
DEPEND="dev-libs/libversion"
|
|
RDEPEND="${DEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
distutils_enable_tests setup.py
|