Skip to content

Commit 4fcc2df

Browse files
author
sapcc-bot
committed
Run go-makefile-maker and autoupdate dependencies
go: upgraded github.com/sapcc/go-bits v0.0.0-20251016133802-c2d049e762e6 => v0.0.0-20251023170348-b4bcd3ab3925
1 parent 30d73e6 commit 4fcc2df

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ install-addlicense: FORCE
5555
@if ! hash addlicense 2>/dev/null; then printf "\e[1;36m>> Installing addlicense (this may take a while)...\e[0m\n"; go install github.com/google/addlicense@latest; fi
5656

5757
install-reuse: FORCE
58-
@if ! hash reuse 2>/dev/null; then if ! hash pip3 2>/dev/null; then printf "\e[1;31m>> Cannot install reuse because no pip3 was found. Either install it using your package manager or install pip3\e[0m\n"; else printf "\e[1;36m>> Installing reuse...\e[0m\n"; pip3 install --user reuse; fi; fi
58+
@if ! hash reuse 2>/dev/null; then if ! hash pipx 2>/dev/null; then printf "\e[1;31m>> You are required to manually intervene to install reuse as go-makefile-maker cannot automatically resolve installing reuse on all setups.\e[0m\n"; printf "\e[1;31m>> The preferred way for go-makefile-maker to install python tools after nix-shell is pipx which could not be found. Either install pipx using your package manager or install reuse using your package manager if at least version 6 is available.\e[0m\n"; printf "\e[1;31m>> As your Python was likely installed by your package manager, just doing pip install --user sadly does no longer work as pip issues a warning about breaking your system. Generally running --break-system-packages with --user is safe to do but you should only run this command if you can resolve issues with it yourself: pip3 install --user --break-system-packages reuse\e[0m\n"; else printf "\e[1;36m>> Installing reuse...\e[0m\n"; pipx install reuse; fi; fi
5959

6060
prepare-static-check: FORCE install-golangci-lint install-modernize install-shellcheck install-go-licence-detector install-addlicense install-reuse
6161

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/gorilla/mux v1.8.1
77
github.com/prometheus/client_golang v1.23.2
88
github.com/sapcc/go-api-declarations v1.17.4
9-
github.com/sapcc/go-bits v0.0.0-20251016133802-c2d049e762e6
9+
github.com/sapcc/go-bits v0.0.0-20251023170348-b4bcd3ab3925
1010
github.com/spf13/pflag v1.0.10
1111
go.uber.org/automaxprocs v1.6.0
1212
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ github.com/rogpeppe/go-internal v1.10.0 h1:TMyTOH3F/DB16zRVcYyreMH6GnZZrwQVAoYjR
4141
github.com/rogpeppe/go-internal v1.10.0/go.mod h1:UQnix2H7Ngw/k4C5ijL5+65zddjncjaFoBhdsK/akog=
4242
github.com/sapcc/go-api-declarations v1.17.4 h1:F4smuE9x1NJ/7NAdytJ1wekeXT3QeRaYu3L/HyWKqqo=
4343
github.com/sapcc/go-api-declarations v1.17.4/go.mod h1:MWmLjmvjftgyAugNUfIhsDsHIzXH1pn32cWLZpiluKg=
44-
github.com/sapcc/go-bits v0.0.0-20251016133802-c2d049e762e6 h1:lcNgD4Hs6TOxfvHDk0NSO8hslhhPQzjQCq5iBVDu7TA=
45-
github.com/sapcc/go-bits v0.0.0-20251016133802-c2d049e762e6/go.mod h1:NBw3A0I60Y6dntj1oMMuU0GHxApVP14A/2Srgj5h3gE=
44+
github.com/sapcc/go-bits v0.0.0-20251023170348-b4bcd3ab3925 h1:SB5ySjieq4WKN5HiZAysOWqjm3dqaMM/aocNJ0Kxt1w=
45+
github.com/sapcc/go-bits v0.0.0-20251023170348-b4bcd3ab3925/go.mod h1:NBw3A0I60Y6dntj1oMMuU0GHxApVP14A/2Srgj5h3gE=
4646
github.com/sergi/go-diff v1.4.0 h1:n/SP9D5ad1fORl+llWyN+D6qoUETXNZARKjyY2/KVCw=
4747
github.com/sergi/go-diff v1.4.0/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4=
4848
github.com/spf13/pflag v1.0.10 h1:4EBh2KAYBwaONj6b2Ye1GiHfwjqyROoF4RwYO+vPwFk=

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ github.com/prometheus/procfs/internal/util
3333
# github.com/sapcc/go-api-declarations v1.17.4
3434
## explicit; go 1.24
3535
github.com/sapcc/go-api-declarations/bininfo
36-
# github.com/sapcc/go-bits v0.0.0-20251016133802-c2d049e762e6
36+
# github.com/sapcc/go-bits v0.0.0-20251023170348-b4bcd3ab3925
3737
## explicit; go 1.25
3838
github.com/sapcc/go-bits/assert
3939
github.com/sapcc/go-bits/httpapi

0 commit comments

Comments
 (0)