diff --git a/.SRCINFO b/.SRCINFO index 43101145b0ea..64bfacdaf568 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,15 +1,14 @@ pkgbase = n8n pkgdesc = Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services. pkgver = 2.0.3 - pkgrel = 1 + pkgrel = 2 url = https://n8n.io arch = x86_64 license = custom:Sustainable Use License makedepends = npm - makedepends = jq makedepends = curl - depends = nodejs>=22.16 - depends = nodejs<26 + depends = nodejs>=20.19 + depends = nodejs<25 backup = etc/default/n8n source = n8n.env source = n8n.service diff --git a/PKGBUILD b/PKGBUILD index f02b80b7ffd3..9cc52ef804f6 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -3,7 +3,7 @@ pkgname="n8n" pkgver=2.0.3 -pkgrel=1 +pkgrel=2 pkgdesc="Free and source-available fair-code licensed workflow automation tool. Easily automate tasks across different services." arch=('x86_64') url="https://n8n.io" @@ -12,8 +12,8 @@ backup=("etc/default/${pkgname}") # Check upstream nodejs version constraints with: # curl -s "https://registry.npmjs.org/n8n/${pkgver}" | jq -r '.engines.node' # Example output: ">=20.19 <= 24.x" means nodejs>=20.19.0 and nodejs<25 -depends=("nodejs>=22.16" "nodejs<26") -makedepends=("npm" "jq" "curl") +depends=("nodejs>=20.19" "nodejs<25") +makedepends=("npm" "curl") source=("${pkgname}.env" "${pkgname}.service" "${pkgname}.sysusers"