diff options
author | jakob | 2025-01-20 18:43:27 +0100 |
---|---|---|
committer | jakob | 2025-01-20 18:43:46 +0100 |
commit | 8bd6dc85757cf1ef8640301c5422fc151be94015 (patch) | |
tree | d1e825ca2e0ac89e1bf533496c94f304c84b71cf | |
parent | 260a05aaccaffeb62457edf55675ecdc4b431963 (diff) | |
download | aur-servefile.tar.gz |
Add python-cgi dependency for Python 3.13
The cgi module was removed [1] in Python 3.13 and is now provided in
the python-cgi Arch package via the python-deadlib [2] project.
[1] https://docs.python.org/3.13/library/cgi.html
[2] https://github.com/youknowone/python-deadlib
-rw-r--r-- | .SRCINFO | 3 | ||||
-rw-r--r-- | PKGBUILD | 4 |
2 files changed, 4 insertions, 3 deletions
@@ -1,7 +1,7 @@ pkgbase = servefile pkgdesc = Serve or receive files from shell via a small HTTP server pkgver = 0.5.4 - pkgrel = 5 + pkgrel = 6 url = https://github.com/sebageek/servefile arch = any license = GPL3 @@ -10,6 +10,7 @@ pkgbase = servefile makedepends = git makedepends = python-pip depends = python + depends = python-cgi optdepends = python-pyopenssl: HTTPS support provides = servefile conflicts = servefile @@ -3,12 +3,12 @@ pkgname=servefile pkgver=0.5.4 -pkgrel=5 +pkgrel=6 pkgdesc="Serve or receive files from shell via a small HTTP server" arch=('any') url="https://github.com/sebageek/servefile" license=('GPL3') -depends=('python') +depends=('python' 'python-cgi') optdepends=('python-pyopenssl: HTTPS support') makedepends=('git' 'python-pip') checkdepends=('python-pytest' 'python-pyopenssl') |