blob: 70a6287cc9aecb9f7744bb6af47ed6466992cf0d (
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
67
68
69
70
71
72
73
74
75
76
|
# Maintainer: envolution
# Contributor: Mark Wagie <mark dot wagie at proton dot me>
# Contributor: Sam <dev at samarthj dot com>
# Contributor: Mehmet Ozgur Bayhan <mozgurbayhan at gmail.com>
# Contributor: Thomas Quillan <tjquillan at gmail.com>
# Contributor: iboyperson <tjquillan at gmail dot com>
# Contributor: Alessandro Pazzaglia <jackdroido at gmail dot com>
pkgname=pyinstaller
pkgver=6.11.1
pkgrel=2
pkgdesc="Bundles a Python application and all its dependencies into a single package"
arch=('x86_64')
url="https://www.pyinstaller.org"
license=('LicenseRef-custom')
depends=(
'binutils'
'pyinstaller-hooks-contrib'
'python-altgraph'
'python-setuptools'
)
makedepends=(
'python-build'
'python-installer'
'python-wheel'
)
#checkdepends=(
# 'python-pillow'
# 'python-psutil'
# 'python-pytest'
# 'python-pytest-xdist'
# 'xmldiff'
#)
optdepends=('python-argcomplete: tab completion for CLI tools')
source=("$pkgname-$pkgver.tar.gz::https://github.com/pyinstaller/pyinstaller/archive/refs/tags/v$pkgver.tar.gz"
'fortify-source-fix.diff')
sha256sums=('e0a46e918325b65349beaec43a760f9b0b6270a838fb24cd585d5ddbd4232f58'
'46f7cfd082570a3f4c138a868e55dc39deacccbff602ce7e70d033236566fa1b')
prepare() {
cd "$pkgname-$pkgver"
# Force bootloader build for the current platform
# and remove the unnecessary binaries
rm -rvf PyInstaller/bootloader/{Darwin,Linux,Windows}*
# Apply patch to bootloader build script to avoid redefining _FORTIFY_SOURCE if
# default makepkg CFLAGS are used, which contain `-Wp,-D_FORTIFY_SOURCE=3`:
patch -Np1 -i "${srcdir}/fortify-source-fix.diff"
}
build() {
ls
cd "$pkgname-$pkgver"
python -m build --wheel --no-isolation
}
#check() {
# cd "$pkgname-$pkgver"
# # run only the unit tests
# pytest tests/unit \
# -m 'not darwin and not win32' \
# -n=auto --maxprocesses="${PYTEST_XDIST_AUTO_NUM_WORKERS:-2}" --dist='load'
#}
package() {
cd "$pkgname-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
install -Dm644 doc/{"$pkgname.1",pyi-makespec.1} -t \
"$pkgdir/usr/share/man/man1/"
install -Dm644 COPYING.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 README.rst -t "$pkgdir/usr/share/doc/$pkgname/"
}
# vim: ts=2 sw=2 et:
|