blob: efe7e098b5f593225fc704d6e79b02bf0a8ab72f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
# Maintainer: Raphael Nestler <raphael.nestler@gmail.com>
# Contributor: Chloe Colman <chloe.colman7@gmail.com>
# Contributor: Sampson Crowley <sampsonsprojects@gmail.com>
# Contributor: Rhys Kenwell <redrield+aur@gmail.com>
# Github Contributors: https://github.com/SampsonCrowley/arch_packages/contributors.md
pkgname=heroku-cli
pkgver=9.5.0
pkgrel=1
pkgdesc="CLI to manage Heroku apps and services with forced auto-update removed"
arch=('any')
url="https://devcenter.heroku.com/articles/heroku-cli"
license=('custom' 'ISC')
depends=('nodejs')
makedepends=('yarn' 'git' 'npm')
optdepends=('git: Deploying to Heroku')
conflicts=('heroku-cli-bin' 'heroku-client-standalone' 'heroku-toolbelt' 'ruby-heroku')
source=("git+https://github.com/heroku/cli.git#commit=v${pkgver}")
sha256sums=('12482e942e56f4bd5e97abecfcc0fa58bb4b11a3bffb5d49679dce5fb46faf79')
sha512sums=('2bc901da58e9f3ff144e6f338dc1cb28b381431501e17f5eb12b070017f372083b7b306a53f4e18a94d5b297dd77ec29db73b52b5859aa64733796661d41fc59')
options=('!strip')
provides=('heroku' 'heroku-cli')
prepare() {
pushd "$srcdir"
pushd "cli"
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
# create base package
yarn pack --filename "heroku-v$VERSION-linux-x64.tar.xz"
tar -xzvf "heroku-v$VERSION-linux-x64.tar.xz" -C "$srcdir/"
popd
popd
# Remove any existing package
rm -rf heroku/
# final installation
mv package heroku
pushd heroku
yarn --prod
popd
# unneeded compilation files
for file in *; do
if [[ "$file" = "heroku" ]]; then
continue
else
rm -rf "$file"
fi
done
popd
}
package() {
install -dm755 "$pkgdir/usr/lib/heroku"
install -dm755 "$pkgdir/usr/bin"
install -dm755 "$pkgdir/usr/share/licenses/$pkgname"
cp -a "$srcdir/heroku" "$pkgdir/usr/lib"
# completions
local autocompletedir="$srcdir/heroku/autocomplete-scripts"
install -Dm644 "$autocompletedir/bash/heroku.bash" "$pkgdir/usr/share/bash-completion/completions/heroku"
install -Dm644 "$autocompletedir/zsh/_heroku" "$pkgdir/usr/share/zsh/site-functions/_heroku"
ln -sf "../../../lib/heroku/LICENSE" "$pkgdir/usr/share/licenses/$pkgname"
ln -sf "../lib/heroku/bin/run" "$pkgdir/usr/bin/heroku"
# Remove empty directories
find "${pkgdir}" -type d -empty -delete
}
|