Commit Graph

33 Commits

Author SHA1 Message Date
Paul Meyer
2afbd79b44 azure-cli: 2.88.0 -> 2.89.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2026-08-04 08:52:33 +02:00
Paul Meyer
b7568dc6d9 azure-cli: 2.86.0 -> 2.87.0 (#528758) 2026-06-16 09:32:10 +00:00
Paul Meyer
5d06290ba0 azure-cli: 2.86.0 -> 2.87.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2026-06-06 13:31:15 +02:00
Harinn
e06edf949f azure-cli: add msrest to azure-mgmt-cdn 12.0.0 override 2026-06-05 15:32:34 +07:00
Paul Meyer
59adee2382 azure-cli: 2.83.0 -> 2.84.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2026-03-03 16:44:57 +01:00
Paul Meyer
4cfe8f23c9 azure-cli: 2.81.0 -> 2.82.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2026-02-23 14:24:03 +01:00
Michael Daniels
5ed07317e9 treewide: change 'format = "other";' to 'pyproject = false;'
Entirely find-and-replace based.

A few usages that would cause rebuilds if changed remain.

This PR should have 0 rebuilds.
2026-01-12 17:50:37 -05:00
Paul Meyer
df4db7cc67 azure-cli: 2.77.0 -> 2.78.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-10-14 11:50:51 +02:00
Ulrik Strid
286615174c azure-cli: 2.75.0 -> 2.77.0 2025-09-03 16:19:18 +02:00
Martin Weinelt
ae4a1a485a treewide: add explicit format attribute for Python packages
If a Python package does not come with either `format` or `pyproject` we
consider it a setuptools build, that calls `setup.py` directly, which is
deprecated.

This change, as a first step, migrates a large chunk of these packages to
set setuptools as their explicit format

This is so we can unify the problem space for the next step of the
migration.
2025-07-02 05:56:47 +02:00
Paul Meyer
11bae019cc azure-cli: 2.72.0 -> 2.73.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-05-19 08:37:55 +02:00
Paul Meyer
d3a5c757c9 azure-cli: override msal with 1.32.3 (#407286) 2025-05-16 12:13:35 +02:00
Paul Meyer
9bd5a772bc azure-cli: override msal with 1.32.3
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-05-15 08:47:10 +02:00
Paul Meyer
42b35e98c1 azure-cli: 2.71.0 -> 2.72.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-05-07 08:29:38 +02:00
Paul Meyer
ffb3badaae azure-cli: fix by pinning azure-mgmt-compute
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-04-14 11:43:31 +02:00
Paul Meyer
dca9738aac azure-cli: 2.69.0 -> 2.70.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-03-04 09:28:40 +01:00
Paul Meyer
fd4b29eac6 azure-cli: 2.68.0 -> 2.69.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-02-11 10:16:50 +01:00
Paul Meyer
16e832cd79 azure-cli: pin azure-mgmt-redhatopenshift
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-02-08 13:36:29 +01:00
Paul Meyer
7b2bfeb2fc azure-cli: 2.67.0 -> 2.68.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
2025-01-14 08:11:45 +01:00
Paul Meyer
9a04a63f7c azure-cli: 2.66.0 -> 2.67.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-11-19 13:05:35 +01:00
Paul Meyer
c1eb73280b azure-cli: 2.65.0 -> 2.66.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-11-11 10:27:32 +01:00
Vladimír Čunát
dcd94580b6 azure-cli: 2.64.0 -> 2.65.0 (#347241) 2024-10-28 11:17:12 +01:00
Fabian Affolter
b364b9fdcf azure-cli: override azure-mgmt-billing 2024-10-12 08:47:45 +02:00
Paul Meyer
bf480e41d2 azure-cli: 2.64.0 -> 2.65.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-10-08 08:30:45 +02:00
Artturin
e0464e4788 treewide: replace stdenv.is with stdenv.hostPlatform.is
In preparation for the deprecation of `stdenv.isX`.

These shorthands are not conducive to cross-compilation because they
hide the platforms.

Darwin might get cross-compilation for which the continued usage of `stdenv.isDarwin` will get in the way

One example of why this is bad and especially affects compiler packages
https://www.github.com/NixOS/nixpkgs/pull/343059

There are too many files to go through manually but a treewide should
get users thinking when they see a `hostPlatform.isX` in a place where it
doesn't make sense.

```
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv.is" "stdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenv'.is" "stdenv'.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "clangStdenv.is" "clangStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "gccStdenv.is" "gccStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "stdenvNoCC.is" "stdenvNoCC.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "inherit (stdenv) is" "inherit (stdenv.hostPlatform) is"
fd --type f "\.nix" | xargs sd --fixed-strings "buildStdenv.is" "buildStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "effectiveStdenv.is" "effectiveStdenv.hostPlatform.is"
fd --type f "\.nix" | xargs sd --fixed-strings "originalStdenv.is" "originalStdenv.hostPlatform.is"
```
2024-09-25 00:04:37 +03:00
Paul Meyer
5617035557 azure-cli: 2.63.0 -> 2.64.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-09-03 08:08:59 +02:00
Paul Meyer
ed12d2a631 azure-cli: add missing socks dependency
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-08-21 10:24:27 +02:00
Paul Meyer
92ceff55c9 azure-cli: 2.62.0 -> 2.63.0
Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
2024-08-06 09:17:43 +02:00
adisbladis
e0816431a2 treewide: Pass self when overriding Python
Otherwise references to the Python interpreter inside the set are wrong, as demonstrated by:
``` nix
with import <nixpkgs> { };
let
  python' = python3.override {
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the _non_ overriden requests.

And the same with `self`:
```
with import <nixpkgs> { };
let
  python' = python3.override {
    self = python';
    packageOverrides = final: prev: { requests = prev.requests.overridePythonAttrs(old: { version = "1337";  }); };
  };
in python'.pkgs.python.pkgs.requests
```
which returns the overriden requests.

This can manifest itself as file collisions when constructing environments or as subtly incorrect dependency graphs.
2024-08-03 12:18:56 +12:00
superherointj
c2596337f1 azure-cli: add meta.downloadPage to azure-cli-core and azure-cli-telemetry 2024-07-17 09:14:27 -03:00
superherointj
d34c37a069 azure-cli: remove unnecessary pins 2024-07-17 09:14:27 -03:00
superherointj
96cd538b68 azure-cli: nixfmt format 2024-07-10 06:29:38 -03:00
superherointj
cb9bbcdc82 azure-cli: move from top-level to by-name 2024-07-10 06:08:28 -03:00