Commit Graph

29 Commits

Author SHA1 Message Date
R. Ryantm
98b03cbf9e jfrog-cli: 2.118.0 -> 2.120.0 2026-08-15 17:13:33 +00:00
R. Ryantm
461926520a jfrog-cli: 2.116.0 -> 2.118.0 2026-08-06 23:01:00 +00:00
R. Ryantm
8b9856d290 jfrog-cli: 2.113.0 -> 2.116.0 2026-07-28 17:39:20 +00:00
R. Ryantm
5476d74d9d jfrog-cli: 2.112.0 -> 2.113.0 2026-07-10 16:42:55 +00:00
R. Ryantm
912907b3fe jfrog-cli: 2.109.0 -> 2.112.0 2026-07-01 16:03:32 +00:00
R. Ryantm
c31990966a jfrog-cli: 2.108.0 -> 2.109.0 2026-06-23 02:36:51 +00:00
R. Ryantm
086bc16bbf jfrog-cli: 2.107.0 -> 2.108.0 2026-06-14 10:07:14 +00:00
R. Ryantm
d55bfd140f jfrog-cli: 2.104.1 -> 2.107.0 2026-06-05 10:44:52 +00:00
R. Ryantm
ea315fd790 jfrog-cli: 2.103.0 -> 2.104.1 2026-05-30 15:16:26 +04:00
Matt Whiteley
f6c72135a9 jfrog-cli: 2.78.10 -> 2.103.0
https://github.com/jfrog/jfrog-cli/releases/tag/v2.103.0
2026-05-01 11:45:11 -07:00
quantenzitrone
9380e05c3c various: switch buildGoModule packages to use finalAttrs
this shouldn't create any rebuilds

the following script was used to generate this:
```fish
#!/usr/bin/env fish

# nix shell .#nixfmt nixpkgs#{nixf-diagnose,ripgrep,sd}

set base (git rev-parse HEAD)

set scope pkgs/by-name
set builder buildGoModule

set files (rg --files-with-matches -F "$builder rec {" $scope | sort -u)

for file in $files
    echo $file
    sd -F "$builder rec {" "$builder (finalAttrs: {" $file
    # version
    sd -F 'version}' 'finalAttrs.version}' $file
    sd -F '${version' '${finalAttrs.version' $file
    sd -F '= version' '= finalAttrs.version' $file
    sd -F 'inherit version;' 'inherit (finalAttrs) version;' $file
    sd -F ' + version;' ' + finalAttrs.version;' $file
    sd 'replaceStrings (.*) version' 'replaceStrings $1 finalAttrs.version' $file
    sd -F 'splitVersion version' 'splitVersion finalAttrs.version' $file
    sd -F 'versionAtLeast version' 'versionAtLeast finalAttrs.version' $file
    sd 'versions\.([a-z]+) version' 'versions.$1 finalAttrs.version' $file
    # src
    sd -F 'src}' 'finalAttrs.src}' $file
    sd -F '${src' '${finalAttrs.src' $file
    sd -F '= src' '= finalAttrs.src' $file
    sd -F 'inherit src;' 'inherit (finalAttrs) src;' $file
    sd -F 'inherit (src' 'inherit (finalAttrs.src' $file
    # meta
    sd -F '${meta' '${finalAttrs.meta' $file
    sd -F '= meta' '= finalAttrs.meta' $file
    sd -F 'inherit (meta' 'inherit (finalAttrs.meta' $file
    # other
    sd -F 'inherit version src;' 'inherit (finalAttrs) version src;' $file
    sd -F 'inherit src version;' 'inherit (finalAttrs) src version;' $file
    sd -F 'makeLibraryPath buildInputs' 'makeLibraryPath finalAttrs.buildInputs' $file
    sd -F 'buildInputs}' 'finalAttrs.buildInputs}' $file
    sd -F 'desktopItem}' 'finalAttrs.desktopItem}' $file
    sd -F 'runtimeLibs}' 'finalAttrs.runtimeLibs}' $file
    sd -F 'libPath}' 'finalAttrs.libPath}' $file
    sd -F 'runtimeDependencies}' 'finalAttrs.runtimeDependencies}' $file
    sd -F 'nativeRuntimeInputs}' 'finalAttrs.nativeRuntimeInputs}' $file
    sd -F '(!doCheck)' '(!finalAttrs.doCheck)' $file
    sd -F 'optional doCheck' 'optional finalAttrs.doCheck' $file
    sd -F 'optionals doCheck' 'optionals finalAttrs.doCheck' $file
    sd -F '++ runtimeDependencies' '++ finalAttrs.runtimeDependencies' $file
    # pname (restored afterwards)
    sd -F 'pname}' 'finalAttrs.pname}' $file
    sd -F '${pname' '${finalAttrs.pname' $file
    sd -F '= pname' '= finalAttrs.pname' $file
    # close finalAttrs lambda
    echo ')' >>$file
    # catch some errors early
    if ! nixfmt $file
        git restore $file
        continue
    end
    if ! nixf-diagnose -i sema-primop-overridden $file
        git restore $file
        continue
    end
end

set torestore (rg -F .finalAttrs --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end
set torestore (rg -F finalAttrs.pname --files-with-matches $scope)
if test (count $torestore) -gt 0
    git restore $torestore
end

# commit for faster eval times
git add pkgs
git commit --no-gpg-sign -m temp
set torestore

for file in $files
    # file hasn't changed
    if git diff --quiet $base $file
        continue
    end
    # try to eval the package to definitely catch all errors
    echo $file
    set pname (string split / $file -f 4)
    if ! nix eval .#$pname
        set torestore $torestore $file
    end
end

# restore files that don't eval
git reset --soft $base
git restore --staged .
if test (count $torestore) -gt 0
    git restore $torestore
end
```

after that some manual cleanup was done:
- restoring files that cause changes in the number of lines
- restoring files that cause rebuilds
- restoring files that cause merge conflicts with staging
2026-02-07 09:28:59 +01:00
Aidan Gauland
9bf50ebcdf treewide: remove aidalgol
- Remove aidalgol from maintainers and all packages.
- Add maintainers to tests from their corresponding packages.
- Remove package 'heroic' because this will quickly bitrot without a
  maintainer.
2025-10-02 17:42:00 +13:00
R. Ryantm
19c8e1b5e4 jfrog-cli: 2.78.8 -> 2.78.10 2025-09-13 12:11:20 +00:00
R. Ryantm
46a41da4d8 jfrog-cli: 2.78.3 -> 2.78.8 2025-09-02 05:01:26 +00:00
R. Ryantm
94e77bbf94 jfrog-cli: 2.78.2 -> 2.78.3 2025-08-14 04:50:35 +00:00
R. Ryantm
db1b4d1ca3 jfrog-cli: 2.78.1 -> 2.78.2 2025-08-05 00:30:43 +00:00
R. Ryantm
095f69f1d9 jfrog-cli: 2.77.0 -> 2.78.1 2025-07-27 06:40:52 +00:00
R. Ryantm
3a6064bfe3 jfrog-cli: 2.76.1 -> 2.77.0 2025-06-21 02:11:44 +00:00
liberodark
c6729488de treewide: remove with lib Part 4 2025-06-07 00:48:50 +02:00
R. Ryantm
faab36379d jfrog-cli: 2.76.0 -> 2.76.1 2025-06-01 10:36:23 +00:00
R. Ryantm
cd79f7beae jfrog-cli: 2.75.1 -> 2.76.0 2025-05-22 02:50:38 +00:00
Adrian Grucza
e51aae434d jfrog-cli: 2.73.0 -> 2.75.1 2025-05-15 17:03:51 +10:00
R. Ryantm
1fa6b56828 jfrog-cli: 2.72.5 -> 2.73.0 2025-01-19 13:48:09 +00:00
Peder Bergebakken Sundt
0cd04d3036 treewide: migrate fetchgit rev = "refs/tags/..." to tag 2025-01-04 00:19:17 +01:00
R. Ryantm
2bf72a07cf jfrog-cli: 2.72.2 -> 2.72.5 2024-12-28 06:13:17 +00:00
Silvan Mosberger
4f0dadbf38 treewide: format all inactive Nix files
After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.

Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.

A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.

This commit was automatically created and can be verified using

    nix-build a08b3a4d19.tar.gz \
      --argstr baseRev b32a094368
    result/bin/apply-formatting $NIXPKGS_PATH
2024-12-10 20:26:33 +01:00
Benjamin Manuel
921d401026 jfrog-cli: 2.71.4 -> 2.72.2 2024-12-06 11:08:32 -06:00
Benjamin Manuel
ab95b3badf jfrog-cli: 2.71.0 -> 2.71.4 2024-11-18 14:41:18 -06:00
aleksana
571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00