Commit Graph

27 Commits

Author SHA1 Message Date
William Fish
419dafc563 bootdev-cli: 1.29.6 -> 1.31.1
Update to latest upstream release. Patch TestGetLatestVersionHasOverallTimeout
to use store sleep so the suite passes in the Nix sandbox (fake go helper
resets PATH and hardcodes /bin/sleep).

https://github.com/bootdotdev/bootdev/releases/tag/v1.31.1
2026-08-12 09:47:16 +01:00
R. Ryantm
5b86405adc bootdev-cli: 1.29.5 -> 1.29.6 2026-06-07 13:21:18 +00:00
R. Ryantm
fc078bc5a0 bootdev-cli: 1.29.4 -> 1.29.5 2026-05-29 11:56:11 +00:00
R. Ryantm
84daf71900 bootdev-cli: 1.29.3 -> 1.29.4 2026-05-20 18:09:46 +00:00
R. Ryantm
547b48052d bootdev-cli: 1.29.2 -> 1.29.3 2026-05-03 23:37:35 +00:00
R. Ryantm
e3f432e5b1 bootdev-cli: 1.29.0 -> 1.29.2 2026-04-25 10:53:06 +00:00
R. Ryantm
2724cb36b7 bootdev-cli: 1.26.0 -> 1.29.0 2026-04-16 16:55:39 +00:00
Viena
6876b11837 bootdev-cli: fix build 2026-03-11 02:28:58 +05:30
Viena
2d69362f8a bootdev-cli : 1.24.0 -> 1.26.0 2026-03-10 14:02:11 +05:30
R. Ryantm
08c7eb7158 bootdev-cli: 1.22.1 -> 1.24.0 2026-02-18 13:44:07 +00: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
R. Ryantm
d4f05ea339 bootdev-cli: 1.22.0 -> 1.22.1 2026-01-08 02:03:06 +00:00
nixpkgs-ci[bot]
f64cb9db01 Merge master into staging-next 2025-12-25 00:18:14 +00:00
BoneWalk3r
975cf8e8e9 bootdev-cli: 1.21.1 -> 1.22.0 2025-12-24 14:56:41 -05:00
K900
8b56bf20bb Merge remote-tracking branch 'origin/staging-next' into staging 2025-12-07 23:38:37 +03:00
UrsusMortiferum
5e5a83403a Updated bootdev-cli to v1.21.1 2025-12-06 17:51:21 +01:00
Jonathan Davies
116036d574 treewide: Remove redundant versionCheckProgramArg = "--version"; with:
```shell
git grep -l -e 'versionCheckProgramArg = "--version";' -e 'versionCheckProgramArg = \[ "--version" \];' | while read f; do
  sed -i '/versionCheckProgramArg/d' "$f"
  sed -i '/^$/N;/\n$/D' "$f"
done
```
2025-11-20 10:39:02 +00:00
R. Ryantm
3f49175857 bootdev-cli: 1.20.5 -> 1.20.6 2025-11-17 19:17:57 +00:00
BoneWalk3r
94691b75fa bootdev-cli: 1.20.4 -> 1.20.5 2025-10-18 15:54:16 -04:00
R. Ryantm
b2f7f7166a bootdev-cli: 1.20.3 -> 1.20.4 2025-09-26 21:27:34 +00:00
R. Ryantm
0965be0ffe bootdev-cli: 1.20.2 -> 1.20.3 2025-09-15 12:32:12 +00:00
R. Ryantm
b313136f3c bootdev-cli: 1.20.1 -> 1.20.2 2025-09-04 18:02:23 +00:00
Andarii
43148f7e51 bootdev-cli: 1.20.0 -> 1.20.1 2025-08-15 00:08:20 +02:00
HeNeugier
692c0c26cc bootdev-cli: 1.19.2 -> 1.20.0 2025-08-11 14:13:44 +01:00
R. Ryantm
97e2238c00 bootdev-cli: 1.19.1 -> 1.19.2 2025-06-23 00:11:30 +00:00
R. Ryantm
4321b75a4c bootdev-cli: 1.19.0 -> 1.19.1 2025-05-13 20:10:38 +00:00
Vinny Meller
26a949d269 bootdev-cli: init at 1.19.0 2025-04-24 17:44:45 +00:00