Date: Wednesday, April 5, 2023 @ 17:47:16
Author: felixonmars
Revision: 1437835
archrelease: copy trunk to community-staging-any
Added:
python-jinja/repos/community-staging-any/
python-jinja/repos/community-staging-any/PKGBUILD
(from rev 1437834, python-jinja/trunk/PKGBUILD)
----------+
PKGBUILD | 44 ++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
Copied: python-jinja/repos/community-staging-any/PKGBUILD (from rev 1437834,
python-jinja/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-05 17:47:16 UTC (rev 1437835)
@@ -0,0 +1,44 @@
+# Maintainer: Evangelos Foutras <[email protected]>
+# Contributor: David Runge <[email protected]>
+# Contributor: Peter Baldwin <[email protected]>
+
+pkgname=python-jinja
+pkgver=3.1.2
+pkgrel=3
+epoch=1
+pkgdesc="A simple pythonic template language written in Python"
+arch=('any')
+url="https://palletsprojects.com/p/jinja/"
+license=('BSD')
+depends=('python-markupsafe')
+makedepends=('python-setuptools')
+optdepends=('python-babel: for i18n support')
+checkdepends=('python-pytest')
+source=(https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-$pkgver.tar.gz)
+sha256sums=('31351a702a408a9e7595a8fc6150fc3f43bb6bf7e319770cbc0db9df9437e852')
+
+build() {
+ cd Jinja2-$pkgver
+ python3 setup.py build
+}
+
+check() {
+ cd Jinja2-$pkgver
+ # https://github.com/pypa/setuptools/issues/2466
+ PYTHONDONTWRITEBYTECODE=1 PYTHONPATH=build/lib pytest \
+ --deselect tests/test_loader.py::test_package_dir_list \
+ --deselect tests/test_loader.py::test_package_dir_source \
+ --deselect tests/test_loader.py::test_package_file_list \
+ --deselect tests/test_loader.py::test_package_file_source \
+ --deselect tests/test_loader.py::test_package_zip_list \
+ --deselect tests/test_loader.py::test_package_zip_omit_curdir \
+ --deselect tests/test_loader.py::test_package_zip_source
+}
+
+package() {
+ cd Jinja2-$pkgver
+ python3 setup.py install --root="$pkgdir" --optimize=1 --skip-build
+ install -Dm644 LICENSE.rst -t "$pkgdir/usr/share/licenses/$pkgname"
+}
+
+# vim:set ts=2 sw=2 et: