summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarkus Richter2019-09-14 01:15:45 +0200
committerMarkus Richter2019-09-14 01:15:45 +0200
commit87f707791397f41b63463c573d205280bc745ed8 (patch)
treec5284dd119f368747e9dcd04b97812d45f6397fb
parent04720010ea79bc12ed22b297cd4f31cbd89a2ca9 (diff)
downloadaur-87f707791397f41b63463c573d205280bc745ed8.tar.gz
fix dependency issues
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD7
2 files changed, 8 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6d42b2f305cd..25d4486546c8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,14 @@
pkgbase = bitwarden_rs-vault
pkgdesc = Integrates the Vault Web-Interface into bitwarden_rs.
pkgver = 2.11.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/bitwarden/web
install = bitwarden_rs-vault.install
arch = any
license = AGPL3
makedepends = npm
+ makedepends = nodejs-lts-dubnium
+ makedepends = python2
depends = bitwarden_rs
conflicts = bitwarden_rs-vault-git
source = https://github.com/bitwarden/web/archive/v2.11.0.tar.gz
diff --git a/PKGBUILD b/PKGBUILD
index e39f31679605..3dd98665a550 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,15 @@
_jslib_commit="692d1ec20163edaa404b52888af2ea45b13b59cd"
pkgname=bitwarden_rs-vault
pkgver=2.11.0
-pkgrel=1
+pkgrel=2
pkgdesc="Integrates the Vault Web-Interface into bitwarden_rs."
arch=('any')
url="https://github.com/bitwarden/web"
license=('AGPL3')
-makedepends=('npm')
+
+# nodejs-lts-dubnium is included because nodejs>=12 doesn't work. otherwise this would be covered by npm.
+# python2 is included because the used npm package node-sass depends on node-gyp (and therefore python2) transitively. This should be covered by the official node-gyp package (https://bugs.archlinux.org/task/62277?project=5&string=node-gyp ) which is pulled in by npm.
+makedepends=('npm' 'nodejs-lts-dubnium' 'python2')
depends=('bitwarden_rs')
conflicts=("bitwarden_rs-vault-git")
install=bitwarden_rs-vault.install