summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Collins2024-01-12 10:29:58 +0100
committerMark Collins2024-01-12 10:29:58 +0100
commit919825288c8c9a43671bf4f694ce447e37c80881 (patch)
tree674747c9b9a023a9a00ed1b833525d639f394327
parent27ba66521c122615e7048ed0e6dc5c862647878e (diff)
downloadaur-919825288c8c9a43671bf4f694ce447e37c80881.tar.gz
Make python and python-websockets dependencies as namcap indicates those are always needed
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD7
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index deecae2cf401..c084264933c3 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -11,10 +11,11 @@ pkgbase = rompr
depends = php-sqlite
depends = php-gd
depends = php-intl
+ depends = python
+ depends = python-websockets
optdepends = apache: webserver to serve app
optdepends = nginx: webserver to serve app
optdepends = mysql: alternate database platform to sqlite
- optdepends = python: for websocket server
conflicts = rompr<2.00
options = emptydirs
backup = var/lib/rompr/albumart
diff --git a/PKGBUILD b/PKGBUILD
index 63e64235d9ca..5cc0935a02d0 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -12,12 +12,13 @@ depends=('imagemagick'
'php' # note that dependencies php-json, php-curl, php-xml and php-mbstring are included in php
'php-sqlite'
'php-gd'
- 'php-intl')
+ 'php-intl'
+ 'python'
+ 'python-websockets')
conflicts=('rompr<2.00')
optdepends=('apache: webserver to serve app'
'nginx: webserver to serve app'
- 'mysql: alternate database platform to sqlite'
- 'python: for websocket server')
+ 'mysql: alternate database platform to sqlite')
source=("https://github.com/fatg3erman/RompR/releases/download/${pkgver}/${pkgname}-${pkgver}.zip")
sha256sums=('f8fe95209af8fea7f93f8c6601b2be4c3197880e4250ebe5e763fd6aa9071493')
install="${pkgname}.install"