forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app-portage/gander: enable python3.9 (tested)
Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Marco Scardovi <[email protected]> Closes: gentoo#20713 Signed-off-by: Michał Górny <[email protected]>
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# Copyright 1999-2021 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
PYTHON_COMPAT=( python3_{8..9} ) | ||
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}" | ||
} |