diff options
author | Marco Scardovi <marco@scardovi.com> | 2021-12-12 14:18:39 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-12-12 23:04:05 +0100 |
commit | 237ac58d1aefdb0569de9ffe11b135ff60677905 (patch) | |
tree | 90ef9cebd44f996ed1fa90083c6d07ba423c44b5 /app-portage | |
parent | sys-devel/clang: Pass LLVM_EXTERNAL_LIT in 14.x to fix tests (diff) | |
download | gentoo-237ac58d1aefdb0569de9ffe11b135ff60677905.tar.gz gentoo-237ac58d1aefdb0569de9ffe11b135ff60677905.tar.bz2 gentoo-237ac58d1aefdb0569de9ffe11b135ff60677905.zip |
app-portage/gander: bump to EAPI 8 and python 3.10
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Marco Scardovi <marco@scardovi.com>
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/gander/gander-0.0.1-r2.ebuild | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/app-portage/gander/gander-0.0.1-r2.ebuild b/app-portage/gander/gander-0.0.1-r2.ebuild new file mode 100644 index 000000000000..b2903319f0c2 --- /dev/null +++ b/app-portage/gander/gander-0.0.1-r2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="Statistic submission client for Goose (anser.gentoo.org)" +HOMEPAGE="https://github.com/mgorny/gander/" +SRC_URI="https://github.com/mgorny/gander/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=" + dev-python/requests[${PYTHON_USEDEP}] + sys-apps/portage[${PYTHON_USEDEP}] +" + +BDEPEND="test? ( dev-python/responses[${PYTHON_USEDEP}] )" + +distutils_enable_tests pytest + +python_test() { + # Portage exports random configuration options *overriding* its own + # behavior into the build environment. + env -u PORTAGE_REPOSITORIES pytest -vv || die "Tests fail with ${EPYTHON}" +} |