Date: Monday, October 24, 2022 @ 09:15:28
Author: alucryd
Revision: 1334530
archrelease: copy trunk to community-any
Added:
hypercorn/repos/community-any/PKGBUILD
(from rev 1334529, hypercorn/trunk/PKGBUILD)
Deleted:
hypercorn/repos/community-any/PKGBUILD
----------+
PKGBUILD | 117 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 59 insertions(+), 58 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2022-10-24 09:15:18 UTC (rev 1334529)
+++ PKGBUILD 2022-10-24 09:15:28 UTC (rev 1334530)
@@ -1,58 +0,0 @@
-# Maintainer: Maxime Gauduin <[email protected]>
-
-pkgname=hypercorn
-pkgver=0.13.2
-pkgrel=2
-pkgdesc='An ASGI Server based on Hyper libraries and inspired by Gunicorn'
-url=https://gitlab.com/pgjones/hypercorn
-arch=(any)
-license=(MIT)
-depends=(
- python-h11
- python-h2
- python-priority
- python-toml
- python-typing_extensions
- python-wsproto
-)
-makedepends=(
- git
- python-pip
- python-poetry
-)
-checkdepends=(
- python-distlib
- python-hypothesis
- python-pytest
- python-pytest-asyncio
- python-pytest-sugar
- python-pytest-trio
- python-tox
- python-trio
-)
-optdepends=('python-trio: trio support')
-_tag=0ff11ac1eab5e0190a8b45a44c03f6f116460e64
-source=(git+https://gitlab.com/pgjones/hypercorn.git#tag=${_tag})
-sha256sums=(SKIP)
-
-pkgver() {
- cd hypercorn
- git describe --tags
-}
-
-build() {
- cd hypercorn
- poetry build --format wheel
-}
-
-check() {
- cd hypercorn
- # tox -e py310
-}
-
-package() {
- PIP_CONFIG_FILE=/dev/null pip install --isolated --root="${pkgdir}"
--ignore-installed --no-deps hypercorn/dist/*.whl
- install -Dm 644 hypercorn/LICENSE -t
"${pkgdir}"/usr/share/licenses/hypercorn/
-}
-
-# vim: ts=2 sw=2 et:
Copied: hypercorn/repos/community-any/PKGBUILD (from rev 1334529,
hypercorn/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2022-10-24 09:15:28 UTC (rev 1334530)
@@ -0,0 +1,59 @@
+# Maintainer: Maxime Gauduin <[email protected]>
+
+pkgname=hypercorn
+pkgver=0.14.3
+pkgrel=1
+pkgdesc='An ASGI Server based on Hyper libraries and inspired by Gunicorn'
+url=https://github.com/pgjones/hypercorn
+arch=(any)
+license=(MIT)
+depends=(
+ python-h11
+ python-h2
+ python-priority
+ python-toml
+ python-typing_extensions
+ python-wsproto
+)
+makedepends=(
+ git
+ python-build
+ python-installer
+ python-poetry-core
+)
+checkdepends=(
+ python-distlib
+ python-hypothesis
+ python-pytest
+ python-pytest-asyncio
+ python-pytest-sugar
+ python-pytest-trio
+ python-tox
+ python-trio
+)
+optdepends=('python-trio: trio support')
+_tag=8c3fc86e7f48285d69b2f3ddc676b108d78d3f6e
+source=(git+https://github.com/pgjones/hypercorn.git#tag=${_tag})
+sha256sums=(SKIP)
+
+pkgver() {
+ cd hypercorn
+ git describe --tags
+}
+
+build() {
+ cd hypercorn
+ python -m build --wheel --no-isolation
+}
+
+check() {
+ cd hypercorn
+ tox -e py310
+}
+
+package() {
+ python -m installer --destdir="${pkgdir}" hypercorn/dist/*.whl
+ install -Dm 644 hypercorn/LICENSE -t
"${pkgdir}"/usr/share/licenses/hypercorn/
+}
+
+# vim: ts=2 sw=2 et: