diff options
author | Marcell Meszaros | 2022-05-01 13:46:42 +0200 |
---|---|---|
committer | Marcell Meszaros | 2022-05-01 13:46:42 +0200 |
commit | eb0b6f65cedea61344d930c8cae3575bb3bd57b9 (patch) | |
tree | fa2e59a6d759a1d2f5d5eda2dab2f9d6a2c7ac3d | |
parent | e5003a74dec379e75a7b996c59a586bb2557c415 (diff) | |
download | aur-eb0b6f65cedea61344d930c8cae3575bb3bd57b9.tar.gz |
update PKGBUILD: remove unneeded dep tool
-rw-r--r-- | .SRCINFO | 4 | ||||
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | PKGBUILD | 14 |
3 files changed, 11 insertions, 11 deletions
@@ -1,15 +1,13 @@ pkgbase = conoha-iso-git pkgdesc = ISO image management tool for ConoHa - pkgver = 0.4.3.r78.g94c2ee6 + pkgver = 0.4.4.r80.g0bf6cca pkgrel = 1 url = https://github.com/hironobu-s/conoha-iso arch = x86_64 license = MIT makedepends = go makedepends = git - makedepends = dep source = git+https://github.com/hironobu-s/conoha-iso.git md5sums = SKIP pkgname = conoha-iso-git - diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000000..05c6d4d4c97b --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +* +!.gitignore +!.SRCINFO +!PKGBUILD @@ -1,29 +1,27 @@ -# Maintainer: Jiachen YANG <farseerfc@gmail.com> +# Contributor: Marcell Meszaros < marcell.meszaros AT runbox.eu > +# Contributor: lilac <lilac@build.archlinuxcn.org> +# Contributor: Jiachen YANG <farseerfc@gmail.com> + _pkgname=conoha-iso pkgname=${_pkgname}-git -pkgver=0.4.3.r78.g94c2ee6 +pkgver=0.4.4.r80.g0bf6cca pkgrel=1 pkgdesc="ISO image management tool for ConoHa" arch=(x86_64) url="https://github.com/hironobu-s/conoha-iso" license=('MIT') -makedepends=(go git dep) +makedepends=(go git) source=("git+https://github.com/hironobu-s/conoha-iso.git") md5sums=('SKIP') pkgver() { cd "$_pkgname" git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g' | sed "s/current/$(grep -oP 'APP_VERSION.*"\K([.0-9]*)(?=")' app.go)/g" -# printf "0.4.3.r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)" } prepare() { mkdir -p gopath/src/github.com/$_pkgname ln -rTsf $_pkgname gopath/src/github.com/$_pkgname/$_pkgname - export GOPATH="$srcdir"/gopath - cd gopath/src/github.com/$_pkgname/$_pkgname - dep init - dep ensure } build() { |