summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Gamble2019-01-05 20:35:52 +1100
committerMatthew Gamble2019-01-05 20:35:52 +1100
commitdf75f1596a8c23908ed0489b9bdfec0429641bea (patch)
treeafb57174ece5a8990ada9419259e53f1b2c3b3f8
parent932b35d8eaaddffa2aae784a8321a7205bd6049e (diff)
downloadaur-df75f1596a8c23908ed0489b9bdfec0429641bea.tar.gz
Make dependencies that should be optional, non-optional
-rw-r--r--.SRCINFO10
-rw-r--r--PKGBUILD6
2 files changed, 7 insertions, 9 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 566320a1d2f7..777bf005f6c0 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,20 +1,20 @@
# Generated by mksrcinfo v8
-# Sat Jan 5 07:54:24 UTC 2019
+# Sat Jan 5 09:35:47 UTC 2019
pkgbase = python-wsgidav
pkgdesc = Generic WebDAV server based on WSGI
pkgver = 2.4.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/mar10/wsgidav
arch = any
license = MIT
makedepends = python-setuptools
depends = python
depends = python-defusedxml
- depends = python-entrypoints
+ depends = python-setuptools
+ depends = python-pyyaml
+ depends = python-jsmin
optdepends = python-lxml: for faster XML processing
optdepends = python-cheroot: to use the built-in webserver
- optdepends = python-pyyaml: to use the build-in server runner CLI
- optdepends = python-jsmin: to use the built-in server runner CLI
source = https://files.pythonhosted.org/packages/07/06/8952c1496a68db8d7571bfa4ddfbf0bcb0d155d23e64e3909752b9c6acfc/WsgiDAV-2.4.1.tar.gz
source = https://raw.githubusercontent.com/mar10/wsgidav/v2.4.1/LICENSE
source = uwsgi.py
diff --git a/PKGBUILD b/PKGBUILD
index 35989af483b8..177920b49aeb 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -2,18 +2,16 @@
pkgname=python-wsgidav
pkgver=2.4.1
-pkgrel=2
+pkgrel=3
pkgdesc="Generic WebDAV server based on WSGI"
arch=("any")
license=("MIT")
url="https://github.com/mar10/wsgidav"
-depends=("python" "python-defusedxml" "python-entrypoints")
+depends=("python" "python-defusedxml" "python-setuptools" "python-pyyaml" "python-jsmin")
makedepends=("python-setuptools")
optdepends=(
"python-lxml: for faster XML processing"
"python-cheroot: to use the built-in webserver"
- "python-pyyaml: to use the build-in server runner CLI"
- "python-jsmin: to use the built-in server runner CLI"
)
source=(
"https://files.pythonhosted.org/packages/07/06/8952c1496a68db8d7571bfa4ddfbf0bcb0d155d23e64e3909752b9c6acfc/WsgiDAV-${pkgver}.tar.gz"