summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorRaphael Nestler2024-02-13 14:30:47 +0100
committerRaphael Nestler2024-02-13 14:30:47 +0100
commit1e5d926c6e585fca0a7e4871083f07f519ffad62 (patch)
treee448e2c2c7009954bf6a4a349e04a64cd913c896
parent56cb921cfd727ea504e668f6a547d427d4386bb8 (diff)
downloadaur-1e5d926c6e585fca0a7e4871083f07f519ffad62.tar.gz
Update to 8.9.0
Needed to unpin the node version to make it buildable again.
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD4
2 files changed, 5 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 966a56e8ada2..70fbcda268e8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = heroku-cli
pkgdesc = CLI to manage Heroku apps and services with forced auto-update removed
- pkgver = 8.7.1
+ pkgver = 8.9.0
pkgrel = 1
url = https://devcenter.heroku.com/articles/heroku-cli
arch = any
@@ -18,7 +18,7 @@ pkgbase = heroku-cli
conflicts = heroku-toolbelt
conflicts = ruby-heroku
options = !strip
- source = git+https://github.com/heroku/cli.git#commit=v8.7.1
+ source = git+https://github.com/heroku/cli.git#commit=v8.9.0
sha256sums = SKIP
sha512sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 8142389ae069..0e20f2f51b7f 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -4,7 +4,7 @@
# Github Contributors: https://github.com/SampsonCrowley/arch_packages/contributors.md
pkgname=heroku-cli
-pkgver=8.7.1
+pkgver=8.9.0
pkgrel=1
pkgdesc="CLI to manage Heroku apps and services with forced auto-update removed"
arch=('any')
@@ -27,6 +27,8 @@ prepare() {
pushd packages/cli
# remove forced auto-update plugin
sed -i "/oclif\/plugin-update/d" ./package.json
+ # remove pin to node 16
+ sed -i 's/"node": "~16.20.0"/"node": ">=16"/g' ./package.json
# install dependencies, must be done with yarn as of 7.60
yarn install