blob: 0dca62f0a5578d2bfb59f634653ed81ec8fcfecc (
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
|
# Maintainer: Claudia Pellegrino <aur ät cpellegrino.de>
pkgname=python-xlsx2csv
_gitpkgname=xlsx2csv
pkgver=0.8.3
pkgrel=1
pkgdesc="XSLX to CSV converter"
arch=(any)
url="https://github.com/dilshod/xlsx2csv"
license=('MIT')
depends=('python')
makedepends=(
'python-build'
'python-installer'
'python-setuptools-scm'
'python-wheel'
)
source=(
"${_gitpkgname}-${pkgver}.tar.gz::https://github.com/dilshod/xlsx2csv/archive/${pkgver}.tar.gz"
)
sha512sums=('735fba902d110a613a87758a8b988b266751c202ce6b836b4011d33b2dc0e35140253f5841cc64c78648f9ed3423ac36adb7e78e33c9ab439350eea528aa7a73')
prepare() {
# Disable Python 2 tests
sed -i -e 's/^\(PYTHON_VERSIONS =\).*/\1 ["3"]/' \
"${_gitpkgname}-${pkgver}/test/run"
}
build() {
cd "${_gitpkgname}-${pkgver}"
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
echo >&2 'Building wheel'
python -m build --wheel --no-isolation
echo >&2 'Generating man page'
make -C man
}
check() {
cd "${_gitpkgname}-${pkgver}"
echo >&2 'Running unit tests'
test/run
echo >&2 'Testing the executable'
./"${_gitpkgname}.py" --version > actual.txt
if ! grep -qF "${pkgver}" actual.txt; then
printf >&2 '%s\n' 'Unexpected test output:' '==='
cat >&2 actual.txt
printf >&2 '\n%s\n' '==='
exit 1
fi
}
package() {
cd "${_gitpkgname}-${pkgver}"
echo >&2 'Packaging the wheel'
python -I -m installer --destdir="${pkgdir}" dist/*.whl
echo >&2 'Packaging the documentation'
install -D -m 644 -t "${pkgdir}/usr/share/doc/${pkgname}" \
README.md
install -D -m 644 -t "${pkgdir}/usr/share/man/man1" \
man/*.1
echo >&2 'Packaging the license'
install -D -m 644 -t "${pkgdir}/usr/share/licenses/${pkgname}" \
LICENSE.txt
}
|