mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-16 07:01:08 +00:00
Result of running the command: grep --include="*.ebuild" -r . -e 'KEYWORDS=.*[" ]sparc' -l | xargs ekeyword ~sparc Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
58 lines
1.4 KiB
Bash
58 lines
1.4 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
DISTUTILS_EXT=1
|
|
DISTUTILS_USE_PEP517=setuptools
|
|
PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
|
|
|
|
inherit distutils-r1
|
|
|
|
MY_P=ccs-pykerberos-PyKerberos-${PV}
|
|
DESCRIPTION="A high-level Python wrapper for Kerberos/GSSAPI operations"
|
|
HOMEPAGE="
|
|
https://www.calendarserver.org/PyKerberos.html
|
|
https://github.com/apple/ccs-pykerberos/
|
|
https://pypi.org/project/kerberos/
|
|
"
|
|
SRC_URI="
|
|
https://github.com/apple/ccs-pykerberos/archive/PyKerberos-${PV}.tar.gz
|
|
-> ${MY_P}.gh.tar.gz
|
|
"
|
|
S=${WORKDIR}/${MY_P}
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
# test environment is non-trivial to set up, so just use docker
|
|
# (see python_test below)
|
|
# also for alpha/beta Python releases support:
|
|
# https://github.com/apple/ccs-pykerberos/pull/83/commits/5f1130a1305b5f6e7d7d8b41067c4713f0c8950f
|
|
RESTRICT="test"
|
|
|
|
DEPEND="
|
|
app-crypt/mit-krb5
|
|
"
|
|
RDEPEND="
|
|
${DEPEND}
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.3.1-python3.10.patch
|
|
)
|
|
|
|
python_test() {
|
|
set -- docker run \
|
|
-v "${PWD}:/app" \
|
|
-w /app \
|
|
-e PYENV=$("${EPYTHON}" -c 'import sys; print(sys.version.split()[0])') \
|
|
-e KERBEROS_USERNAME=administrator \
|
|
-e KERBEROS_PASSWORD=Password01 \
|
|
-e KERBEROS_REALM=example.com \
|
|
-e KERBEROS_PORT=80 \
|
|
ubuntu:16.04 \
|
|
/bin/bash .travis.sh
|
|
echo "${@}" >&2
|
|
"${@}" || die "Tests failed with ${EPYTHON}"
|
|
}
|