Package Details: nodejs-azure-cli 0.10.20-1

Git Clone URL: https://aur.archlinux.org/nodejs-azure-cli.git (read-only, click to copy)
Package Base: nodejs-azure-cli
Description: Windows Azure Cross Platform Command Line tool
Upstream URL: https://github.com/Azure/azure-xplat-cli
Licenses: Apache
Submitter: alub
Maintainer: None
Last Packager: alub
Votes: 7
Popularity: 0.000000
First Submitted: 2015-09-15 13:30 (UTC)
Last Updated: 2018-11-05 14:32 (UTC)

Latest Comments

papanito commented on 2016-12-01 17:51 (UTC)

You were right, was a problem with nodejs. Latest update of nodejs fixed the problem so I could update this package

alub commented on 2016-11-29 15:42 (UTC)

@papanito : I don’t think it’s related to this package. You may need to update your packages. Can you run node by itself?

papanito commented on 2016-11-29 15:28 (UTC)

last update gives me the following error: node: error while loading shared libraries: libicui18n.so.57: cannot open shared object file: No such file or directory

colemickens commented on 2016-10-14 06:07 (UTC)

Does anyone want to package the new Azure CLI? https://github.com/Azure/azure-cli

arnottcr commented on 2016-09-19 14:27 (UTC)

alub, you bumped the version without adding the bash completion fix. can you correct this? I can provide another diff if requested.

colemickens commented on 2016-08-22 04:01 (UTC)

v0.10.3 is out: https://github.com/Azure/azure-xplat-cli/releases/tag/v0.10.3-August2016

arnottcr commented on 2016-06-24 03:01 (UTC)

alub, thanks for the quick turnaround, but there is a quirk with bash-completion; you need to have the completion file (/usr/share/bash-completion/completions/$file) match the binary that it targets (/usr/bin/$file). In this case /usr/share/bash-completion/completions/azure /usr/bin/azure Does 0.10.1-2 work for you, because it does not tab complete for me?

arnottcr commented on 2016-06-21 15:33 (UTC) (edited on 2016-06-21 15:40 (UTC) by arnottcr)

this diff should allow you to add bash completion to this package, (it is already built into the tool): diff --git a/PKGBUILD b/PKGBUILD index 539da4d..8c63b83 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -1,6 +1,7 @@ # Maintainer: Antoine Lubineau <antoine@lubignon.info> # Contributor: Philipp Wolfer <ph.wolfer@gmail.com> +_binname=azure _npmname=azure-cli _npmver=0.10.1 pkgname=nodejs-${_npmname} # All lowercase @@ -22,6 +23,10 @@ package() { mkdir -p $_npmdir cd $_npmdir npm install -g --prefix "$pkgdir/usr" $_npmname@$_npmver + cd $srcdir + mkdir -p $pkgdir/usr/share/bash-completion/completions + $pkgdir/usr/bin/azure --completion > ./bash.completion + install -D -m644 ./bash.completion $pkgdir/usr/share/bash-completion/completions/$_binname }

colemickens commented on 2015-10-13 00:46 (UTC)

v0.9.10 is out: https://github.com/Azure/azure-xplat-cli/releases/tag/v0.9.10-October2015