2023-07-29 23:12:38 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
steps:
|
|
|
|
|
|
|
|
test:
|
|
|
|
image: python:3.11-bookworm
|
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- pip3 install -e .[test]
|
2023-07-29 23:15:07 +02:00
|
|
|
- python3 -m coverage run --rcfile=setup.cfg -m unittest discover matemat
|
|
|
|
- python3 -m coverage combine
|
|
|
|
- python3 -m coverage report --rcfile=setup.cfg
|
2023-07-29 23:12:38 +02:00
|
|
|
|
|
|
|
codestyle:
|
|
|
|
image: python:3.11-bookworm
|
|
|
|
group: test
|
|
|
|
commands:
|
|
|
|
- pip3 install -e .[test]
|
2023-07-29 23:15:07 +02:00
|
|
|
- pycodestyle matemat
|
2023-07-29 23:12:38 +02:00
|
|
|
|
|
|
|
build_wheel:
|
|
|
|
image: python:3.11-bookworm
|
|
|
|
group: package
|
|
|
|
when:
|
|
|
|
- event: tag
|
|
|
|
secrets:
|
|
|
|
- GITEA_API_REPOSITORY_PYPI
|
|
|
|
- GITEA_API_USERNAME
|
|
|
|
- GITEA_API_PASSWORD
|
|
|
|
commands:
|
|
|
|
- pip3 install -e .[test]
|
|
|
|
- python3 setup.py egg_info bdist_wheel
|
|
|
|
- |
|
|
|
|
cat > ~/.pypirc <<EOF
|
|
|
|
[distutils]
|
|
|
|
index-servers = gitea
|
|
|
|
|
|
|
|
[gitea]
|
|
|
|
repository = $${GITEA_API_REPOSITORY_PYPI}
|
|
|
|
username = $${GITEA_API_USERNAME}
|
|
|
|
password = $${GITEA_API_PASSWORD}
|
|
|
|
EOF
|
|
|
|
- python3 -m twine upload --repository gitea dist/*.whl
|
|
|
|
|
|
|
|
build_debian:
|
|
|
|
image: python:3.11-bookworm
|
|
|
|
group: package
|
|
|
|
when:
|
|
|
|
- event: tag
|
|
|
|
secrets:
|
|
|
|
- GITEA_API_REPOSITORY_DEB
|
|
|
|
- GITEA_API_USERNAME
|
|
|
|
- GITEA_API_PASSWORD
|
|
|
|
commands:
|
|
|
|
- apt update; apt install -y lintian rsync sudo curl
|
|
|
|
- export MATEMAT_VERSION=$(python -c 'import matemat; print(matemat.__version__)')
|
|
|
|
# The Python package name provided by the python3-magic Debian package is "python-magic" rather than "file-magic".
|
|
|
|
- sed -re 's/file-magic/python-magic/' -i setup.py
|
|
|
|
- |
|
|
|
|
(for version in "$(cat CHANGELOG.md | grep '<!-- BEGIN CHANGES' | cut -d ' ' -f 4)"; do
|
2023-09-09 18:38:59 +02:00
|
|
|
echo "matemat ($${version}-1) stable; urgency=medium\n"
|
|
|
|
cat CHANGELOG.md | grep -A 1000 "<"'!'"-- BEGIN CHANGES $${version} -->" | grep -B 1000 "<"'!'"-- END CHANGES $${version} -->" | tail -n +2 | head -n -1 | sed -re 's/^-/ */g'
|
|
|
|
echo "\n -- s3lph@kabelsalat.ch $(date -R)\n"
|
2023-07-29 23:12:38 +02:00
|
|
|
done) > package/debian/matemat/usr/share/doc/matemat/changelog
|
|
|
|
- gzip -9n package/debian/matemat/usr/share/doc/matemat/changelog
|
|
|
|
- cp -r static/ package/debian/matemat/usr/lib/matemat/static/
|
|
|
|
- cp -r templates/ package/debian/matemat/usr/lib/matemat/templates/
|
|
|
|
- mkdir -p package/debian/matemat/var/lib/matemat/themes/
|
|
|
|
- cp -r themes/ package/debian/matemat/usr/lib/matemat/themes/
|
|
|
|
- python3 setup.py egg_info install --root=package/debian/matemat/ --prefix=/usr --optimize=1
|
|
|
|
- cd package/debian
|
|
|
|
- mkdir -p matemat/usr/lib/python3/dist-packages/
|
|
|
|
- rsync -a matemat/usr/lib/python3.11/site-packages/ matemat/usr/lib/python3/dist-packages/
|
|
|
|
- rm -rf matemat/usr/lib/python3.11/
|
|
|
|
- find matemat/usr/lib/python3/dist-packages -name __pycache__ -exec rm -r {} \; 2>/dev/null || true
|
|
|
|
- find matemat/usr/lib/python3/dist-packages -name '*.pyc' -exec rm {} \;
|
|
|
|
- mv matemat/usr/bin/matemat matemat/usr/lib/matemat/matemat
|
|
|
|
- rm -rf matemat/usr/bin
|
2023-07-29 23:23:55 +02:00
|
|
|
- sed -re 's$#!/usr/local/bin/python3$#!/usr/bin/python3$' -i matemat/usr/lib/matemat/matemat
|
2023-07-29 23:12:38 +02:00
|
|
|
- find matemat -type f -exec chmod 0644 {} \;
|
|
|
|
- find matemat -type d -exec chmod 755 {} \;
|
|
|
|
- chmod +x matemat/usr/lib/matemat/matemat matemat/DEBIAN/postinst matemat/DEBIAN/prerm matemat/DEBIAN/postrm
|
|
|
|
- sed -re "s/__VERSION__/$${MATEMAT_VERSION}-1/g" -i matemat/DEBIAN/control
|
|
|
|
- dpkg-deb --build matemat
|
2023-09-09 18:38:59 +02:00
|
|
|
- mv matemat.deb "matemat_$${MATEMAT_VERSION}-1_all.deb"
|
|
|
|
- sudo -u nobody lintian "matemat_$${MATEMAT_VERSION}-1_all.deb" || true
|
2023-07-29 23:12:38 +02:00
|
|
|
- >-
|
|
|
|
curl
|
|
|
|
--user "$${GITEA_API_USERNAME}:$${GITEA_API_PASSWORD}"
|
2023-09-09 18:43:25 +02:00
|
|
|
--upload-file "matemat_$${MATEMAT_VERSION}-1_all.deb"
|
2023-07-29 23:12:38 +02:00
|
|
|
$${GITEA_API_REPOSITORY_DEB}
|