Felix Yan pushed to branch main at Arch Linux / Packaging / Packages /
python-tornado
Commits:
b3ddcdd7 by Felix Yan at 2026-03-17T16:56:51+00:00
upgpkg: 6.5.4-1
- - - - -
2 changed files:
- .SRCINFO
- PKGBUILD
Changes:
=====================================
.SRCINFO
=====================================
@@ -1,6 +1,6 @@
pkgbase = python-tornado
pkgdesc = open source version of the scalable, non-blocking web server
and tools
- pkgver = 6.5.3
+ pkgver = 6.5.4
pkgrel = 1
url = https://www.tornadoweb.org/
arch = x86_64
@@ -8,6 +8,7 @@ pkgbase = python-tornado
checkdepends = python-pycares
checkdepends = python-pycurl
checkdepends = python-twisted
+ makedepends = git
makedepends = python-build
makedepends = python-installer
makedepends = python-setuptools
@@ -16,7 +17,7 @@ pkgbase = python-tornado
depends = python
optdepends = python-pycurl: for tornado.curl_httpclient
optdepends = python-twisted: for tornado.platform.twisted
- source =
python-tornado-6.5.3.tar.gz::https://github.com/tornadoweb/tornado/archive/v6.5.3.tar.gz
- sha512sums =
92e2feb5038411b6f468f174139ec77568b7e828f56be7a1eb960096fd8b42e88d235b0349d52fef17ddca6c4c522eec8ebaefa166ff3c2e0476a6e697716764
+ source = git+https://github.com/tornadoweb/tornado.git#tag=v6.5.4
+ sha512sums =
b449fbfeac5faba43a6024ddfd9ff6f9b543f1236e935e0bb54ffac7f2039d2b5aee10abe501633d1912f515e491d49ddfc9fd03be3aa76f0d39c2a974bbff1c
pkgname = python-tornado
=====================================
PKGBUILD
=====================================
@@ -2,7 +2,7 @@
# Contributor: Thomas Dziedzic < gostrc at gmail >
pkgname=python-tornado
-pkgver=6.5.3
+pkgver=6.5.4
pkgrel=1
pkgdesc='open source version of the scalable, non-blocking web server and
tools'
arch=('x86_64')
@@ -11,22 +11,22 @@ license=('Apache-2.0')
depends=('glibc' 'python')
optdepends=('python-pycurl: for tornado.curl_httpclient'
'python-twisted: for tornado.platform.twisted')
-makedepends=('python-build' 'python-installer' 'python-setuptools'
'python-wheel')
+makedepends=('git' 'python-build' 'python-installer' 'python-setuptools'
'python-wheel')
checkdepends=('python-pycares' 'python-pycurl' 'python-twisted')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/tornadoweb/tornado/archive/v$pkgver.tar.gz")
-sha512sums=('92e2feb5038411b6f468f174139ec77568b7e828f56be7a1eb960096fd8b42e88d235b0349d52fef17ddca6c4c522eec8ebaefa166ff3c2e0476a6e697716764')
+source=("git+https://github.com/tornadoweb/tornado.git#tag=v$pkgver")
+sha512sums=('b449fbfeac5faba43a6024ddfd9ff6f9b543f1236e935e0bb54ffac7f2039d2b5aee10abe501633d1912f515e491d49ddfc9fd03be3aa76f0d39c2a974bbff1c')
export TORNADO_EXTENSION=1
build() {
- cd tornado-$pkgver
+ cd tornado
python -m build --wheel --no-isolation
}
check() {
# As of 4.5.3, ignoring test failures about resolving "localhost"
(
- cd tornado-$pkgver
+ cd tornado
python -m installer --destdir=tmp_install dist/*.whl
local python_version=$(python -c 'import sys; print(".".join(map(str,
sys.version_info[:2])))')
export
PYTHONPATH="$PWD/tmp_install/usr/lib/python${python_version}/site-packages:$PYTHONPATH"
@@ -42,6 +42,6 @@ check() {
}
package() {
- cd tornado-$pkgver
+ cd tornado
python -m installer --destdir="$pkgdir" dist/*.whl
}
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-tornado/-/commit/b3ddcdd779eba9f700a8fbf674d76e7537b6419d
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/python-tornado/-/commit/b3ddcdd779eba9f700a8fbf674d76e7537b6419d
You're receiving this email because of your account on gitlab.archlinux.org.