upgpkg: 1.2.0-1

This commit is contained in:
Christian Rebischke 2019-08-05 20:30:26 +00:00
parent 05dd0c4247
commit 62adfd303f
2 changed files with 4284 additions and 3 deletions

4275
CHANGELOG.md Normal file

File diff suppressed because it is too large Load Diff

View File

@ -4,16 +4,16 @@
pkgname='vault' pkgname='vault'
pkgdesc='A tool for managing secrets' pkgdesc='A tool for managing secrets'
pkgver='1.1.4' pkgver='1.2.0'
pkgrel='1' pkgrel='1'
url="https://vaultproject.io/" url="https://vaultproject.io/"
license=('MPL') license=('MPL')
arch=('x86_64') arch=('x86_64')
makedepends=('go-pie' 'git' 'yarn' 'python2' 'bower' 'npm' 'zip') makedepends=('go-pie' 'git' 'yarn' 'python2' 'bower' 'nodejs-lts-dubnium' 'npm' 'zip')
depends=('glibc') depends=('glibc')
install='vault.install' install='vault.install'
backup=('etc/vault.hcl') backup=('etc/vault.hcl')
_vault_commit='bbaaf165d317a1a64abc3c606a6d04793d571e91' _vault_commit='33d368eac2d24501209d6874379c8cc4d4736e3d'
source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit}" source=("git+https://github.com/hashicorp/vault#commit=${_vault_commit}"
'vault.service' 'vault.service'
'vault.sysusers' 'vault.sysusers'
@ -24,6 +24,7 @@ sha512sums=('SKIP'
'92616ccf83fa5ca9f8b0d022cf8ceb1f3549e12b66bf21d9f77f3eb26bd75ec1dc36c155948ec987c642067b85fbfc30a9217d6c503d952a402aa5ef63e50928' '92616ccf83fa5ca9f8b0d022cf8ceb1f3549e12b66bf21d9f77f3eb26bd75ec1dc36c155948ec987c642067b85fbfc30a9217d6c503d952a402aa5ef63e50928'
'073f0f400cba78521cd2709ce86d88fbb14125117f9f3beca657f625d04eab8e00f7a01b5d9a1cfc03e9038844f5732bdbb1a85dd65a803d3f0b90f8bf87880e' '073f0f400cba78521cd2709ce86d88fbb14125117f9f3beca657f625d04eab8e00f7a01b5d9a1cfc03e9038844f5732bdbb1a85dd65a803d3f0b90f8bf87880e'
'46106cc76151eef2dd5e4b2caa6a96aae4d6ce1ecbf977dcc8667a3f6c829cbea95133622adafcb15cdfaa066ecc94c73c983e7613ee2f6573694981569729fe') '46106cc76151eef2dd5e4b2caa6a96aae4d6ce1ecbf977dcc8667a3f6c829cbea95133622adafcb15cdfaa066ecc94c73c983e7613ee2f6573694981569729fe')
changelog=CHANGELOG.md
prepare () { prepare () {
export GOPATH="${srcdir}" export GOPATH="${srcdir}"
@ -42,6 +43,7 @@ build () {
govendor fetch github.com/mitchellh/gox govendor fetch github.com/mitchellh/gox
govendor fetch github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs govendor fetch github.com/elazarl/go-bindata-assetfs/go-bindata-assetfs
govendor fetch github.com/hashicorp/go-bindata/go-bindata govendor fetch github.com/hashicorp/go-bindata/go-bindata
govendor fetch golang.org/x/tools/cmd/goimports
cd $PACKAGE_ROOT/vendor/github.com/hashicorp/go-bindata/go-bindata cd $PACKAGE_ROOT/vendor/github.com/hashicorp/go-bindata/go-bindata
go build go build
@ -55,6 +57,10 @@ build () {
go build go build
go install go install
cd $PACKAGE_ROOT/vendor/golang.org/x/tools/cmd/goimports
go build
go install
cd $PACKAGE_ROOT cd $PACKAGE_ROOT
XC_OSARCH='linux/amd64' make static-dist bin XC_OSARCH='linux/amd64' make static-dist bin
} }