upgpkg: hide-client 0.9.2-1

upstream release
This commit is contained in:
2022-09-08 02:50:25 +02:00
parent c86febd72c
commit c28d02ce2e
6 changed files with 59 additions and 222 deletions

View File

@@ -1,71 +1,60 @@
# Maintainer: Leonard Janis Robert König <ljrk at ljrk dot org>
# Maintainer: Giovanni Harting <539@idlegandalf.com>
# Contributor: Leonard Janis Robert König <ljrk at ljrk dot org>
pkgname=hide-client
_pkgname=hide.client.linux
pkgver=0.9.1
pkgrel=4
epoch=
pkgver=0.9.2
pkgrel=1
pkgdesc="Hide.me CLI VPN client for Linux"
arch=('any')
url="hide.me"
arch=(x86_64 aarch64 armv7h armv6h)
url="https://github.com/eventure/hide.client.linux"
license=('GPL2')
groups=()
depends=()
makedepends=()
checkdepends=()
optdepends=()
provides=()
conflicts=()
replaces=()
backup=()
options=()
install=
changelog=
#XXX go.sum is created by `go mod tidy` as a workaround for repo not containing
# a go.sum file, which is required for go 1.16 compatibility.
source=("https://github.com/eventure/$_pkgname/archive/$pkgver.zip"
"go-sum.patch"
"config_sysdirs.patch"
"systemd-config.patch"
"service_sysdirs.patch")
noextract=()
md5sums=('9346e79e8e1c98b5457a03e02febca9c'
'3cca85f964053529bc7d6581ceb3abd7'
'07d59ac194c4aa8ee0de284283796461'
'cdd99adb78a8d0a5212e7f900fd53a6d'
'ea50b6e6df86da7031cf72d8eaaf46a4')
validpgpkeys=()
depends=(glibc)
makedepends=(go)
backup=("etc/hide.me/config")
source=("https://github.com/eventure/$_pkgname/archive/$pkgver.zip")
b2sums=('cc37592bf3b7795caf4e08022518c91251f71d7d68624fdaf4c2f05702c326672c8fd402ccbfcdf2a3776e8dc6d67dc37cef89b3e58f3e2e91b7df85cbf2f578')
prepare() {
cd "$_pkgname-$pkgver"
patch -p1 -i "$srcdir/systemd-config.patch"
patch -p1 -i "$srcdir/config_sysdirs.patch"
patch -p1 -i "$srcdir/service_sysdirs.patch"
patch -p1 -i "$srcdir/go-sum.patch"
cd "$_pkgname-$pkgver"
sed -e "s|CA.pem|/usr/share/hide.me/CA.pem|" \
-e "s|accessToken.txt|/etc/hide.me/accessToken.txt|" \
-i configuration/configuration.go
sed -e "s|/opt/hide.me/hide.me|/usr/bin/hide.me|" \
-e "s|WorkingDirectory=/opt/hide.me|WorkingDirectory=/etc/hide.me|" \
-e "s|ReadWritePaths=/opt/hide.me /etc|ReadWritePaths=/etc/hide.me|" \
-e "s|/opt/hide.me/config|/etc/hide.me/config|" \
-i 'hide.me@.service'
}
build() {
cd "$_pkgname-$pkgver"
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
# readonly breaks build
# export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -mod=readonly -modcacherw"
export GOFLAGS="-buildmode=pie -trimpath -ldflags=-linkmode=external -modcacherw"
go build -o hide.me .
}
cd "$_pkgname-$pkgver"
#check() {
# cd "$_pkgname-$pkgver"
# go test .
#}
export CGO_CPPFLAGS="${CPPFLAGS}"
export CGO_CFLAGS="${CFLAGS}"
export CGO_CXXFLAGS="${CXXFLAGS}"
export CGO_LDFLAGS="${LDFLAGS}"
go build \
-trimpath \
-buildmode=pie \
-mod=readonly \
-modcacherw \
-ldflags "-linkmode external -extldflags \"${LDFLAGS}\"" \
-o hide.me \
.
}
package() {
cd "$_pkgname-$pkgver"
install -Dm755 -t "$pkgdir"/usr/bin/ hide.me
install -Dm644 -t "$pkgdir"/usr/share/hide.me/ CA.pem
# For (system-wide) accessToken.txt
install -dm750 "$pkgdir"/etc/hide.me/
install -Dm644 -t "$pkgdir"/etc/hide.me config
install -Dm644 -t "$pkgdir"/usr/lib/systemd/system/ hide.me@.service
cd "$_pkgname-$pkgver"
install -Dm755 -t "$pkgdir"/usr/bin hide.me
install -Dm644 -t "$pkgdir"/usr/share/hide.me CA.pem
# For (system-wide) accessToken.txt
install -dm750 "$pkgdir"/etc/hide.me
install -Dm644 -t "$pkgdir"/etc/hide.me config
install -Dm644 -t "$pkgdir"/usr/lib/systemd/system hide.me@.service
}