[arch-commits] Commit in python-quart/repos (2 files)
Felix Yan
felixonmars at archlinux.org
Sat Oct 26 04:32:07 UTC 2019
Date: Saturday, October 26, 2019 @ 04:32:07
Author: felixonmars
Revision: 520027
archrelease: copy trunk to community-staging-any
Added:
python-quart/repos/community-staging-any/
python-quart/repos/community-staging-any/PKGBUILD
(from rev 520026, python-quart/trunk/PKGBUILD)
----------+
PKGBUILD | 55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 55 insertions(+)
Copied: python-quart/repos/community-staging-any/PKGBUILD (from rev 520026, python-quart/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2019-10-26 04:32:07 UTC (rev 520027)
@@ -0,0 +1,55 @@
+# Maintainer: Maxime Gauduin <alucryd at archlinux.org>
+
+pkgname=python-quart
+pkgver=0.10.0
+pkgrel=2
+pkgdesc='A Python ASGI web microframework with the same API as Flask'
+url=https://gitlab.com/pgjones/quart
+arch=(any)
+license=(MIT)
+depends=(
+ hypercorn
+ python-aiofiles
+ python-blinker
+ python-click
+ python-itsdangerous
+ python-jinja
+ python-multidict
+ python-sortedcontainers
+)
+makedepends=(
+ git
+ python-setuptools
+)
+checkdepends=(
+ python-asynctest
+ python-hypothesis
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-cov
+ python-pytest-sugar
+ python-tox
+)
+source=(git+https://gitlab.com/pgjones/quart.git#tag=${pkgver})
+sha256sums=(SKIP)
+
+build() {
+ cd quart
+
+ python setup.py build
+}
+
+check() {
+ cd quart
+
+ tox -e py37
+}
+
+package() {
+ cd quart
+
+ python setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1
+ install -Dm 644 LICENSE -t "${pkgdir}"/usr/share/licenses/python-quart/
+}
+
+# vim: ts=2 sw=2 et:
More information about the arch-commits
mailing list