1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-22 02:35:23 +03:00
aports/community/py3-twisted/APKBUILD
psykose aa528d2a76 */*: unify gpep517 use to output to fd 3
outputting to 3 then redirecting all to stderr prevents clobbering of
wrapped build fds
2023-01-18 12:58:53 +01:00

107 lines
3.1 KiB
Text

# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=py3-twisted
pkgver=22.10.0
pkgrel=1
pkgdesc="Asynchronous networking framework written in Python3"
url="https://twistedmatrix.com/"
arch="all"
license="MIT"
depends="
py3-cryptography
py3-zope-interface
py3-constantly
py3-incremental
py3-automat
py3-hyperlink
py3-attrs
py3-typing-extensions
py3-pyhamcrest
py3-service_identity
py3-idna
py3-pyserial
py3-h2
"
makedepends="libtirpc-dev py3-gpep517 py3-wheel py3-setuptools python3-dev cython"
checkdepends="xvfb-run py3-appdirs tzdata py3-asn1 py3-bcrypt"
subpackages="$pkgname-doc"
source="https://github.com/twisted/twisted/archive/twisted-$pkgver.tar.gz
disable-test-missing-ckeygen.patch
fix-test-import.patch
hanging-test.patch
"
builddir="$srcdir"/twisted-twisted-$pkgver
options="!check" # bunch of random failures
replaces="py-twisted" # Backwards compatibility
provides="py-twisted=$pkgver-r$pkgrel" # Backwards compatibility
case "$CARCH" in
s390x) options="$options !check" # Builders don't have IPV6 ;;
esac
# secfixes:
# 22.4.0-r0:
# - CVE-2022-24801
# 22.2.0-r0:
# - CVE-2022-21716
# 22.1.0-r0:
# - CVE-2022-21712
# 20.3.0-r0:
# - CVE-2020-10108
# - CVE-2020-10109
# 19.10.0-r0:
# - CVE-2019-9512
# - CVE-2019-9514
# - CVE-2019-9515
# 19.7.0-r0:
# - CVE-2019-12387
# - CVE-2019-12855
# 16.4.0-r0:
# - CVE-2016-1000111
prepare() {
default_prepare
# Remove tests that always fail due to our not-upstream testing procedure
# these tests if invoking the Twisted binary and twisted.trial tests work
rm -f src/twisted/test/test_main.py
}
build() {
gpep517 build-wheel \
--wheel-dir dist \
--output-fd 3 3>&1 >&2
# find . -name '*.pyx' -exec cython {} \;
# CFLAGS="$CFLAGS $(pkgconf --cflags libtirpc)" python3 setup.py build
}
check() {
PYTHONPATH="$(echo $PWD/build/lib*)" xvfb-run -a python3 \
-c 'from twisted.scripts.trial import run; run()' twisted
}
package() {
python3 -m installer -d "$pkgdir" \
dist/Twisted*.whl
# python3 setup.py install --skip-build --root="$pkgdir"
# Do not remove the test as it is a legitimate module and not
# a (common) packaging mistake by upstream
# rm -rf "$pkgdir"/usr/lib/python3*/site-packages/twisted/test
_mans="pyhtmlizer.1 trial.1 twistd.1"
for _man in $_mans; do
install -m644 -D "$builddir"/docs/core/man/$_man \
"$pkgdir"/usr/share/man/man1/$_man
done
}
doc() {
replaces="py-twisted-doc" # Backwards compatibility
default_doc
}
sha512sums="
cf9ed96430376d499ae9627a7d0656c05cb99bc9e9b15a8f4166355363818f090bc3c2b383ed4cf19e1e38fb569e8618d35a0ddde2a90a06f3c9a4ea769837e4 twisted-22.10.0.tar.gz
c432bbc2098bf7e36aaa51a548a5d60de4f790caf10fc9dfa04e11e88b4fbea4c4245106c1152ce4f450082dd8111d5f72b65c5c99ee2d0e5c8e0511ae821b6c disable-test-missing-ckeygen.patch
a8e073ff8a35ad8faa95d023e9cf72dc3af0f0e4386fc0e66e57552eb9ff9ae1648b7c0809a5fbb6dca5799db7983280aefcabad1b52bf1187f25b62a4fe39a1 fix-test-import.patch
523a4d89343cc2c9914e15fdfd25b9f89c9bee2a00d6b10c808ad4af4dd46689f5f0ebe529bd2ba4855dc7d80192e79f829192bc9171a5b2ae13dc04a181e352 hanging-test.patch
"