gentoo/dev-python/mechanize/mechanize-0.4.10.ebuild
Fabian Groffen 2d25fad95c
*/*: drop *-linux keywords
Bug: https://bugs.gentoo.org/473598
Bug: https://bugs.gentoo.org/720224
Signed-off-by: Fabian Groffen <grobian@gentoo.org>
2025-12-19 10:51:55 +01:00

40 lines
769 B
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..14} )
inherit distutils-r1 pypi
DESCRIPTION="Stateful programmatic web browsing in Python"
HOMEPAGE="
https://github.com/python-mechanize/mechanize/
https://pypi.org/project/mechanize/
"
LICENSE="|| ( BSD ZPL )"
SLOT="0"
KEYWORDS="~alpha amd64 ~arm arm64 ~ppc ~sparc x86 ~x64-macos"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND="
>=dev-python/html5lib-0.999999999[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
${RDEPEND}
)
"
PATCHES=(
# https://github.com/python-mechanize/mechanize/pull/102
"${FILESDIR}"/${P}-py314-tests.patch
)
python_test() {
"${EPYTHON}" run_tests.py -v || die
}