summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDj Isaac2023-10-11 12:41:31 -0500
committerDj Isaac2023-10-11 12:43:12 -0500
commitd15ce068dd6f414b7a3fe2c34bf6d0bd9ab72b27 (patch)
treee386b1a6007b41cbe3008c8a4fef56955fee0778
parente4ac29c54a333510f6016c4a2df7df4a52faa4c9 (diff)
downloadaur-d15ce068dd6f414b7a3fe2c34bf6d0bd9ab72b27.tar.gz
strict depends checks
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b72cd004f717..3333d6fad609 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = bruno-electron
pkgdesc = Bruno, an opensource API Client for Exploring and Testing APIs using the system provided Electron
pkgver = 0.23.0
- pkgrel = 2
+ pkgrel = 3
url = https://www.usebruno.com/
arch = x86_64
license = MIT
makedepends = asar
- depends = electron
- depends = nodejs
+ depends = electron>=21.0.0
+ depends = nodejs>=18.13.0
conflicts = bruno
conflicts = bruno-bin
conflicts = bruno-git
diff --git a/PKGBUILD b/PKGBUILD
index 93fc6087f56e..3112cf350320 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -5,15 +5,15 @@ pkgname=bruno-electron
_pkgname=bruno
pkgdesc="Bruno, an opensource API Client for Exploring and Testing APIs using the system provided Electron"
pkgver=0.23.0
-pkgrel=2
+pkgrel=3
conflicts=('bruno' 'bruno-bin' 'bruno-git')
arch=('x86_64')
url="https://www.usebruno.com/"
license=('MIT')
_electron=electron
depends=(
- "${_electron}"
- "nodejs"
+ "${_electron}>=21.0.0"
+ "nodejs>=18.13.0"
)
makedepends=(
'asar'