summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorjakob2025-01-20 18:43:27 +0100
committerjakob2025-01-20 18:43:46 +0100
commit8bd6dc85757cf1ef8640301c5422fc151be94015 (patch)
treed1e825ca2e0ac89e1bf533496c94f304c84b71cf
parent260a05aaccaffeb62457edf55675ecdc4b431963 (diff)
downloadaur-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--.SRCINFO3
-rw-r--r--PKGBUILD4
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b8f438a50d1d..8997a458fff2 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -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
diff --git a/PKGBUILD b/PKGBUILD
index 48aed2362847..54ac74d559d8 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -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')