summaryrefslogtreecommitdiff
path: root/python-msrestazure
diff options
context:
space:
mode:
authorErich Eckner <erich.eckner.ext@bestsecret.com>2023-01-02 12:47:06 +0100
committerErich Eckner <erich.eckner.ext@bestsecret.com>2023-01-02 16:40:56 +0100
commitf42272aaa280956d77891d40039c9ba67bfb8882 (patch)
treead828671dc0139f23800574fe7a2ba88539b3ea4 /python-msrestazure
parent33271ea04d8b2dd02000aefb477bd207475b441a (diff)
downloadarchlinuxewe-f42272aaa280956d77891d40039c9ba67bfb8882.tar.xz
try to fix azure-cli packages
Diffstat (limited to 'python-msrestazure')
-rw-r--r--python-msrestazure/PKGBUILD26
1 files changed, 26 insertions, 0 deletions
diff --git a/python-msrestazure/PKGBUILD b/python-msrestazure/PKGBUILD
new file mode 100644
index 000000000..f79106d2d
--- /dev/null
+++ b/python-msrestazure/PKGBUILD
@@ -0,0 +1,26 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+# Contributor: Lukas Zimmermann <luk.zim91 at gmail dot com>
+# Contributor: Kelsey Maes <kelseymaes at outlook dot com>
+
+pkgname=python-msrestazure
+pkgver=0.6.4
+pkgrel=1
+pkgdesc="The runtime library \"msrestazure\" for AutoRest generated Python clients."
+arch=('any')
+url="https://github.com/Azure/msrestazure-for-python"
+license=('MIT')
+depends=('python-adal' 'python-keyring' 'python-msrest')
+makedepends=('python-setuptools')
+source=("https://github.com/Azure/msrestazure-for-python/archive/v${pkgver}.tar.gz")
+sha256sums=('7e9ca8fccf8fc24286f8aaef90e69534c92989d3f2eaebc83fd59523f30d7a4a')
+
+build() {
+ cd "msrestazure-for-python-${pkgver}"
+ python setup.py build
+}
+
+package() {
+ cd "msrestazure-for-python-${pkgver}"
+ python setup.py install --root="${pkgdir}" --optimize=1
+}
+