I have disowned the package as I am not using it. You can adopt it if you want.
Search Criteria
Package Details: azure-vhd-utils-git r7.d206e6d-1
Git Clone URL: | https://aur.archlinux.org/azure-vhd-utils-git.git (read-only) |
---|---|
Package Base: | azure-vhd-utils-git |
Description: | Azure VHD utilities for Go. |
Upstream URL: | https://github.com/Microsoft/azure-vhd-utils |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | axolotl |
Maintainer: | axolotl |
Last Packager: | axolotl |
Votes: | 3 |
Popularity: | 0.000539 |
First Submitted: | 2017-04-16 23:53 |
Last Updated: | 2017-12-10 05:42 |
Dependencies (2)
- git (git-git) (make)
- go (go-cross-all-platforms, go-cross-major-platforms, go-cross, go-bin, gcc-go, go-pie) (make)
Required by (0)
Sources (0)
Latest Comments
axolotl commented on 2016-08-07 18:17
z3ntu commented on 2016-08-07 17:33
axolotl commented on 2016-08-05 12:12
There was a recent issue with special characters in vhd blob names that was resolved by a fix to a dependency sdk: https://github.com/Microsoft/azure-vhd-utils/issues/33
As such, there is no version bump to this git repo, and I would suggest incrementing pkgrel and making changes to the PKGBUILD to completly remove $srcdir if it exists, (as this was required for me in order to have `go get` to fetch the latest version of the azure-sdk-for-go, and actually include those changes in the tar.xz output).
z3ntu commented on 2016-06-25 12:04
@axolotl Thanks. :)
axolotl commented on 2016-06-21 14:31
I had some serious trouble getting this package to build on my system, the following modifications were required, and I would suggest you merge them into your PKGBUILD:
diff --git a/PKGBUILD b/PKGBUILD
index 5af356b..cd840ab 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -13,18 +13,18 @@ options=('!strip' '!emptydirs')
_gourl=github.com/Microsoft/azure-vhd-utils-for-go
pkgver() {
- cd $srcdir/build/src/$_gourl/
+ cd $srcdir/src/$_gourl/
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}
-build() {
- export GOPATH="$srcdir/build"
+prepare() {
+ export GOPATH="$srcdir"
go get -fix -v -x ${_gourl}
}
package() {
- install -Dm755 $srcdir/build/bin/azure-vhd-utils-for-go "$pkgdir/usr/bin/vhd"
- install -Dm644 $srcdir/build/src/${_gourl}/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+ install -Dm755 $srcdir/bin/azure-vhd-utils-for-go "$pkgdir/usr/bin/vhd"
+ install -Dm644 $srcdir/src/${_gourl}/LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}
I am happy to adopt and maintain this package; thanks.