blob: b447515fba4a913987e5b2a106af7b31b63b7825 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
# Maintainer: Marcell Meszaros < marcell.meszaros AT runbox.eu >
# Contributor: Felix Yan <felixonmars@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Sergej Pupykin <pupykin.s+arch@gmail.com>
pkgname='python2-pyopenssl'
_name="${pkgname#python2-}"
pkgver=21.0.0
pkgrel=6
pkgdesc='Wrapper module for OpenSSL (legacy Python 2 version)'
arch=('any')
url="https://pypi.org/project/${_name}/${pkgver}/"
_repourl="https://github.com/pyca/${_name}"
license=('Apache')
makedepends=('python2-setuptools')
checkdepends=(
'python2-cryptography>=3.3'
'python2-flaky'
'python2-pretend'
'python2-pytest-runner'
)
_tarname="${_name}-${pkgver}"
source=("${_tarname}.tar.gz::${_repourl}/archive/${pkgver}.tar.gz")
sha512sums=('bad555b8b8faa60992aad779e9c9af27b132a894d4d3e59fb65f423770b31f278f5966127ca7cdcf42184cefe0c7d6fa94b84482d0e97089031e4e508d77c424')
prepare() {
cd "${_tarname}"
printf "Changing hashbangs in *.py files to refer to 'python2'... "
sed -e '1s|#![ ]*/[a-zA-Z0-9./_ ]*python.*|#!/usr/bin/env python2|' \
-i $(find . -name '*.py')
echo 'done'
echo 'Disabling test_alpn_call_failure(self): fails because it calls the deprecated SSLv23_METHOD.'
sed -e 's/\( def test_alpn_call_failure(self):\)/ @pytest.mark.skip\n\1/' \
-i 'tests/test_ssl.py'
}
build() {
cd "${_tarname}"
python2 setup.py build
}
check() {
cd "${_tarname}"
(
echo '-- Using LC_ALL=C.UTF-8 locale to ensure UTF-8 filesystem encoding is used in Python 2'
export LC_ALL=C.UTF-8
export PYTHONDONTWRITEBYTECODE=1
export PYTHONPATH="${PWD}/build/lib:${PYTHONPATH}"
python2 setup.py pytest --addopts "$(cat <<-EOM
--verbose \
--cache-clear \
--deselect tests/test_ssl.py::TestContext::test_fallback_default_verify_paths
EOM
)"
)
}
package() {
depends=('python2-cryptography>=3.3')
cd "${_tarname}"
python2 setup.py install --root="${pkgdir}" --prefix='/usr' --optimize=1 --skip-build
}
|