summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkj-sh6042025-08-10 01:56:29 -0400
committerkj-sh6042025-08-10 01:56:29 -0400
commit3e838120ba436bdb981026713770f9cdaff2fbe9 (patch)
tree15fa1f037a19ee2fe4c112cc159ba86b98b09ec5
parentceade587a6cabcecdd459e27119051bfee8bfbc8 (diff)
upgpkg: `2.75.0
-rw-r--r--azure-cli-kj_sh604/.SRCINFO12
-rw-r--r--azure-cli-kj_sh604/PKGBUILD15
-rwxr-xr-xazure-cli-kj_sh604/az2
3 files changed, 15 insertions, 14 deletions
diff --git a/azure-cli-kj_sh604/.SRCINFO b/azure-cli-kj_sh604/.SRCINFO
index 5a4e8c4..c111abb 100644
--- a/azure-cli-kj_sh604/.SRCINFO
+++ b/azure-cli-kj_sh604/.SRCINFO
@@ -1,6 +1,6 @@
pkgbase = azure-cli-kj_sh604
- pkgdesc = Command-line tools for Microsoft Azure (uses python3.11)
- pkgver = 2.74.0
+ pkgdesc = Command-line tools for Microsoft Azure (uses python3.12)
+ pkgver = 2.75.0
pkgrel = 1
url = https://github.com/Azure/azure-cli
arch = any
@@ -9,14 +9,14 @@ pkgbase = azure-cli-kj_sh604
depends = gcc-libs
depends = glibc
depends = libsecret
- depends = python311
+ depends = python312
provides = azure-cli
conflicts = azure-cli
options = !debug
options = !strip
- source = git+https://github.com/Azure/azure-cli.git#tag=azure-cli-2.74.0
+ source = git+https://github.com/Azure/azure-cli.git#tag=azure-cli-2.75.0
source = az
- sha256sums = 0892dcddb3e520f417f267b4ccf2b0fa6c86d6629843bef3efb4a8c60e14c93e
- sha256sums = 990f70efec828c1e1f3f57748fc6e40f9705f2223dc96683e8e29d118daac116
+ sha256sums = 2092aabd27a064df4ebb070320c08b57f6cbe6202ca0959217dbcf7408e741ba
+ sha256sums = beba4c6b852bd4f3b2bfaa26cec9318b19b677a937c3e9ce239c21b13ec00b07
pkgname = azure-cli-kj_sh604
diff --git a/azure-cli-kj_sh604/PKGBUILD b/azure-cli-kj_sh604/PKGBUILD
index 04d710a..f0d8600 100644
--- a/azure-cli-kj_sh604/PKGBUILD
+++ b/azure-cli-kj_sh604/PKGBUILD
@@ -1,9 +1,9 @@
_pkgname=azure-cli
pkgname=azure-cli-kj_sh604
-pkgver=2.74.0
+pkgver=2.75.0
pkgrel=1
-pkgdesc="Command-line tools for Microsoft Azure (uses python3.11)"
-# Microsoft has not updated `az` to support python 3.12 or 3.13 yet: https://learn.microsoft.com/en-us/cli/azure/azure-cli-support-lifecycle?view=azure-cli-latest#python-dependency
+pkgdesc="Command-line tools for Microsoft Azure (uses python3.12)"
+# Microsoft has not updated `az` to support python 3.13 yet: https://learn.microsoft.com/en-us/cli/azure/azure-cli-support-lifecycle?view=azure-cli-latest#python-dependency
arch=('any')
url="https://github.com/Azure/azure-cli"
license=('MIT')
@@ -13,14 +13,14 @@ depends=(
"gcc-libs"
"glibc"
"libsecret"
- "python311"
+ "python312"
)
makedepends=("git")
options=('!debug' '!strip')
source=("git+https://github.com/Azure/azure-cli.git#tag=azure-cli-${pkgver}"
"az")
-sha256sums=('0892dcddb3e520f417f267b4ccf2b0fa6c86d6629843bef3efb4a8c60e14c93e'
- '990f70efec828c1e1f3f57748fc6e40f9705f2223dc96683e8e29d118daac116')
+sha256sums=('2092aabd27a064df4ebb070320c08b57f6cbe6202ca0959217dbcf7408e741ba'
+ 'beba4c6b852bd4f3b2bfaa26cec9318b19b677a937c3e9ce239c21b13ec00b07')
prepare() {
cd azure-cli
@@ -29,11 +29,12 @@ prepare() {
package() {
cd azure-cli
mkdir -v "$pkgdir/opt"
- python3.11 -m venv "$pkgdir/opt/azure-cli"
+ python3.12 -m venv "$pkgdir/opt/azure-cli"
# shellcheck disable=SC1091
source "$pkgdir/opt/azure-cli/bin/activate"
export PYTHONDONTWRITEBYTECODE=1
export PYTHONUNBUFFERED=1
+ pip install --upgrade pip
scripts/install_full.sh
install -vDm755 "$srcdir/az" "$pkgdir/usr/bin/az"
install -vDm644 az.completion "$pkgdir/usr/share/bash-completion/completions/az"
diff --git a/azure-cli-kj_sh604/az b/azure-cli-kj_sh604/az
index 575f87a..8c07124 100755
--- a/azure-cli-kj_sh604/az
+++ b/azure-cli-kj_sh604/az
@@ -1,2 +1,2 @@
-#!/usr/bin/env bash
+#!/bin/sh
/opt/azure-cli/bin/python -m azure.cli "$@"