Package Details: azure-vhd-utils-git r38.44cbada-1

Git Clone URL: https://aur.archlinux.org/azure-vhd-utils-git.git (read-only, click to copy)
Package Base: azure-vhd-utils-git
Description: Azure VHD utilities for Go.
Upstream URL: https://github.com/Microsoft/azure-vhd-utils
Licenses: MIT
Submitter: arnottcr
Maintainer: arnottcr
Last Packager: arnottcr
Votes: 2
Popularity: 0.000000
First Submitted: 2017-04-16 23:53 (UTC)
Last Updated: 2021-04-08 11:44 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

rageltman commented on 2021-04-06 00:40 (UTC)

The pkgver() function appears to be producing illegal output:

[2021-04-05T21:32:24.468Z] ==> Starting pkgver()...
[2021-04-05T21:32:24.468Z] ==> ERROR: A failure occurred in pkgver().
[2021-04-05T21:32:24.468Z]     Aborting...
script returned exit code 255

arnottcr commented on 2016-08-07 18:17 (UTC)

I am happy to adopt and maintain this package; thanks.

z3ntu commented on 2016-08-07 17:33 (UTC)

I have disowned the package as I am not using it. You can adopt it if you want.

arnottcr commented on 2016-08-05 12:12 (UTC) (edited on 2016-08-05 12:12 (UTC) by arnottcr)

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 (UTC)

@axolotl Thanks. :)

arnottcr commented on 2016-06-21 14:31 (UTC)

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" }