diff options
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/authentication.scm | 5 | ||||
| -rw-r--r-- | gnu/packages/bioinformatics.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/containers.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/databases.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/education.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/file-systems.scm | 10 | ||||
| -rw-r--r-- | gnu/packages/golang-check.scm | 52 | ||||
| -rw-r--r-- | gnu/packages/golang-crypto.scm | 12 | ||||
| -rw-r--r-- | gnu/packages/golang-maths.scm | 10 | ||||
| -rw-r--r-- | gnu/packages/golang-vcs.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/golang-web.scm | 150 | ||||
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 69 | ||||
| -rw-r--r-- | gnu/packages/irc.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/password-utils.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/text-editors.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/version-control.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/video.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/web-browsers.scm | 4 | ||||
| -rw-r--r-- | gnu/packages/web.scm | 5 |
19 files changed, 182 insertions, 175 deletions
diff --git a/gnu/packages/authentication.scm b/gnu/packages/authentication.scm index c7f7d819734..6e113bc91ee 100644 --- a/gnu/packages/authentication.scm +++ b/gnu/packages/authentication.scm | |||
| @@ -143,7 +143,6 @@ PSKC (RFC6030) to manage secret key data.") | |||
| 143 | (build-system go-build-system) | 143 | (build-system go-build-system) |
| 144 | (arguments | 144 | (arguments |
| 145 | (list | 145 | (list |
| 146 | #:go go-1.23 | ||
| 147 | #:install-source? #f | 146 | #:install-source? #f |
| 148 | #:import-path "github.com/google/oauth2l" | 147 | #:import-path "github.com/google/oauth2l" |
| 149 | #:test-flags | 148 | #:test-flags |
| @@ -161,7 +160,9 @@ PSKC (RFC6030) to manage secret key data.") | |||
| 161 | "TestServiceAccountImpersonationFlow/fetch._sso.*" | 160 | "TestServiceAccountImpersonationFlow/fetch._sso.*" |
| 162 | "TestStsFlow/fetch._2lo._sts" | 161 | "TestStsFlow/fetch._2lo._sts" |
| 163 | "TestStsFlow/fetch._sso._sts") | 162 | "TestStsFlow/fetch._sso._sts") |
| 164 | "|")) | 163 | "|") |
| 164 | ;; go 1.24 runs -vet by default, but oauth2l isn't ready | ||
| 165 | "-vet=off") | ||
| 165 | #:phases | 166 | #:phases |
| 166 | #~(modify-phases %standard-phases | 167 | #~(modify-phases %standard-phases |
| 167 | (add-before 'check 'pre-check | 168 | (add-before 'check 'pre-check |
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 534bf0a083a..1b7b848d3f8 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm | |||
| @@ -25317,9 +25317,9 @@ functions.") | |||
| 25317 | (build-system go-build-system) | 25317 | (build-system go-build-system) |
| 25318 | (arguments | 25318 | (arguments |
| 25319 | (list | 25319 | (list |
| 25320 | #:go go-1.23 | ||
| 25321 | #:skip-build? #t | 25320 | #:skip-build? #t |
| 25322 | #:import-path "github.com/biogo/store")) | 25321 | #:import-path "github.com/biogo/store" |
| 25322 | #:test-flags #~(list "-vet=off"))) | ||
| 25323 | (propagated-inputs | 25323 | (propagated-inputs |
| 25324 | (list go-gopkg-in-check-v1 | 25324 | (list go-gopkg-in-check-v1 |
| 25325 | go-github-com-kr-pretty)) | 25325 | go-github-com-kr-pretty)) |
diff --git a/gnu/packages/containers.scm b/gnu/packages/containers.scm index 227796b8eb5..a9c822845d9 100644 --- a/gnu/packages/containers.scm +++ b/gnu/packages/containers.scm | |||
| @@ -255,11 +255,11 @@ containers highly integrated with the hosts.") | |||
| 255 | (build-system go-build-system) | 255 | (build-system go-build-system) |
| 256 | (arguments | 256 | (arguments |
| 257 | (list | 257 | (list |
| 258 | #:go go-1.23 | ||
| 259 | #:install-source? #f | 258 | #:install-source? #f |
| 260 | #:build-flags | 259 | #:build-flags |
| 261 | #~(list (string-append "-ldflags=-X main.version=" #$version)) | 260 | #~(list (string-append "-ldflags=-X main.version=" #$version)) |
| 262 | #:import-path "github.com/wagoodman/dive")) | 261 | #:import-path "github.com/wagoodman/dive" |
| 262 | #:test-flags #~(list "-vet=off"))) | ||
| 263 | (native-inputs | 263 | (native-inputs |
| 264 | (list go-github-com-awesome-gocui-gocui | 264 | (list go-github-com-awesome-gocui-gocui |
| 265 | go-github-com-awesome-gocui-keybinding | 265 | go-github-com-awesome-gocui-keybinding |
diff --git a/gnu/packages/databases.scm b/gnu/packages/databases.scm index 9977fc581c6..4c3d3d208f8 100644 --- a/gnu/packages/databases.scm +++ b/gnu/packages/databases.scm | |||
| @@ -473,11 +473,11 @@ database later.") | |||
| 473 | (build-system go-build-system) | 473 | (build-system go-build-system) |
| 474 | (arguments | 474 | (arguments |
| 475 | (list | 475 | (list |
| 476 | #:go go-1.23 | ||
| 477 | #:build-flags #~(list "-tags" "external_libzstd") | 476 | #:build-flags #~(list "-tags" "external_libzstd") |
| 478 | #:test-flags #~(list "-tags" "external_libzstd" | 477 | #:test-flags #~(list "-tags" "external_libzstd" |
| 479 | ;; Skip tests requiring git in PATH. | 478 | ;; Skip tests requiring git in PATH. |
| 480 | "-skip" "TestLint") | 479 | "-skip" "TestLint" |
| 480 | "-vet=off") | ||
| 481 | ;; XXX: Maybe run more tests if possible. | 481 | ;; XXX: Maybe run more tests if possible. |
| 482 | #:test-subdirs #~(list "internal/...") | 482 | #:test-subdirs #~(list "internal/...") |
| 483 | #:import-path "github.com/cockroachdb/pebble")) | 483 | #:import-path "github.com/cockroachdb/pebble")) |
diff --git a/gnu/packages/education.scm b/gnu/packages/education.scm index 5a7f3076f31..6e31c6950b1 100644 --- a/gnu/packages/education.scm +++ b/gnu/packages/education.scm | |||
| @@ -718,7 +718,6 @@ machine, and more.") | |||
| 718 | (build-system go-build-system) | 718 | (build-system go-build-system) |
| 719 | (arguments | 719 | (arguments |
| 720 | (list | 720 | (list |
| 721 | #:go go-1.23 | ||
| 722 | #:install-source? #f | 721 | #:install-source? #f |
| 723 | #:import-path "github.com/exercism/cli/exercism" | 722 | #:import-path "github.com/exercism/cli/exercism" |
| 724 | #:unpack-path "github.com/exercism/cli" | 723 | #:unpack-path "github.com/exercism/cli" |
| @@ -756,7 +755,8 @@ machine, and more.") | |||
| 756 | (mkdir-p (dirname zsh)) | 755 | (mkdir-p (dirname zsh)) |
| 757 | (with-output-to-file zsh | 756 | (with-output-to-file zsh |
| 758 | (lambda () | 757 | (lambda () |
| 759 | (invoke exercism "completion" "zsh"))))))))) | 758 | (invoke exercism "completion" "zsh"))))))) |
| 759 | #:test-flags #~(list "-vet=off"))) | ||
| 760 | (native-inputs | 760 | (native-inputs |
| 761 | (list go-github-com-blang-semver | 761 | (list go-github-com-blang-semver |
| 762 | go-github-com-spf13-cobra | 762 | go-github-com-spf13-cobra |
diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm index 1713c4a03ac..5814bc6583f 100644 --- a/gnu/packages/file-systems.scm +++ b/gnu/packages/file-systems.scm | |||
| @@ -481,7 +481,6 @@ is corrupted you'll lose the affected file(s) but not the whole back-up.") | |||
| 481 | (build-system go-build-system) | 481 | (build-system go-build-system) |
| 482 | (arguments | 482 | (arguments |
| 483 | (list | 483 | (list |
| 484 | #:go go-1.23 | ||
| 485 | #:import-path "github.com/google/fscrypt" | 484 | #:import-path "github.com/google/fscrypt" |
| 486 | #:install-source? #f | 485 | #:install-source? #f |
| 487 | #:test-flags | 486 | #:test-flags |
| @@ -492,7 +491,9 @@ is corrupted you'll lose the affected file(s) but not the whole back-up.") | |||
| 492 | "TestLoadReadOnlyMount" | 491 | "TestLoadReadOnlyMount" |
| 493 | "TestReadWriteMountIsPreferredOverReadOnlyMount" | 492 | "TestReadWriteMountIsPreferredOverReadOnlyMount" |
| 494 | "TestLoadAmbiguousMounts" | 493 | "TestLoadAmbiguousMounts" |
| 495 | "TestRootSubtreeIsPreferred") "|")) | 494 | "TestRootSubtreeIsPreferred") "|") |
| 495 | ;; Disable go vet in go 1.24+ | ||
| 496 | "-vet=off") | ||
| 496 | #:phases | 497 | #:phases |
| 497 | #~(modify-phases %standard-phases | 498 | #~(modify-phases %standard-phases |
| 498 | (add-before 'build 'fix-version-detection | 499 | (add-before 'build 'fix-version-detection |
| @@ -625,7 +626,6 @@ significantly increases the risk of irreversible data loss!") | |||
| 625 | (build-system go-build-system) | 626 | (build-system go-build-system) |
| 626 | (arguments | 627 | (arguments |
| 627 | (list | 628 | (list |
| 628 | #:go go-1.23 | ||
| 629 | #:install-source? #f | 629 | #:install-source? #f |
| 630 | #:import-path "github.com/rfjakob/gocryptfs" | 630 | #:import-path "github.com/rfjakob/gocryptfs" |
| 631 | #:build-flags | 631 | #:build-flags |
| @@ -640,7 +640,9 @@ significantly increases the risk of irreversible data loss!") | |||
| 640 | (list "TestPrepareAtSyscall" | 640 | (list "TestPrepareAtSyscall" |
| 641 | "TestPrepareAtSyscallPlaintextnames" | 641 | "TestPrepareAtSyscallPlaintextnames" |
| 642 | "TestGetdents") | 642 | "TestGetdents") |
| 643 | "|")) | 643 | "|") |
| 644 | ;; disable go vet for go 1.24+ | ||
| 645 | "-vet=off") | ||
| 644 | ;; XXX: Test suit requires a root access to mount, limit to some unit | 646 | ;; XXX: Test suit requires a root access to mount, limit to some unit |
| 645 | ;; tests, figure out how to enable most of the them. | 647 | ;; tests, figure out how to enable most of the them. |
| 646 | #:test-subdirs #~(list "internal/...") | 648 | #:test-subdirs #~(list "internal/...") |
diff --git a/gnu/packages/golang-check.scm b/gnu/packages/golang-check.scm index c73e2f16eec..409c04fa6db 100644 --- a/gnu/packages/golang-check.scm +++ b/gnu/packages/golang-check.scm | |||
| @@ -472,8 +472,8 @@ test (using testing.TB's @code{TempDir}) and with a few helper methods.") | |||
| 472 | (build-system go-build-system) | 472 | (build-system go-build-system) |
| 473 | (arguments | 473 | (arguments |
| 474 | (list | 474 | (list |
| 475 | #:go go-1.23 | 475 | #:import-path "github.com/cheekybits/is" |
| 476 | #:import-path "github.com/cheekybits/is")) | 476 | #:test-flags #~(list "-vet=off"))) |
| 477 | (home-page "https://github.com/cheekybits/is") | 477 | (home-page "https://github.com/cheekybits/is") |
| 478 | (synopsis "Mini testing helper for Go") | 478 | (synopsis "Mini testing helper for Go") |
| 479 | (description "A mini testing helper for Go. | 479 | (description "A mini testing helper for Go. |
| @@ -563,8 +563,8 @@ writing and reading these tests.") | |||
| 563 | (build-system go-build-system) | 563 | (build-system go-build-system) |
| 564 | (arguments | 564 | (arguments |
| 565 | (list | 565 | (list |
| 566 | #:go go-1.23 | 566 | #:import-path "github.com/coder/quartz" |
| 567 | #:import-path "github.com/coder/quartz")) | 567 | #:test-flags #~(list "-vet=off"))) |
| 568 | (home-page "https://github.com/coder/quartz") | 568 | (home-page "https://github.com/coder/quartz") |
| 569 | (synopsis "Golang time testing library for writing deterministic unit tests") | 569 | (synopsis "Golang time testing library for writing deterministic unit tests") |
| 570 | (description | 570 | (description |
| @@ -616,14 +616,14 @@ strings which may be used in mock tests.") | |||
| 616 | (build-system go-build-system) | 616 | (build-system go-build-system) |
| 617 | (arguments | 617 | (arguments |
| 618 | (list | 618 | (list |
| 619 | #:go go-1.23 | ||
| 620 | #:import-path "github.com/DATA-DOG/go-sqlmock" | 619 | #:import-path "github.com/DATA-DOG/go-sqlmock" |
| 621 | #:phases | 620 | #:phases |
| 622 | #~(modify-phases %standard-phases | 621 | #~(modify-phases %standard-phases |
| 623 | (add-after 'unpack 'remove-examples | 622 | (add-after 'unpack 'remove-examples |
| 624 | (lambda* (#:key tests? import-path #:allow-other-keys) | 623 | (lambda* (#:key tests? import-path #:allow-other-keys) |
| 625 | (with-directory-excursion (string-append "src/" import-path) | 624 | (with-directory-excursion (string-append "src/" import-path) |
| 626 | (delete-file-recursively "examples"))))))) | 625 | (delete-file-recursively "examples"))))) |
| 626 | #:test-flags #~(list "-vet=off"))) | ||
| 627 | (propagated-inputs | 627 | (propagated-inputs |
| 628 | (list go-github-com-kisielk-sqlstruct)) | 628 | (list go-github-com-kisielk-sqlstruct)) |
| 629 | (home-page "https://github.com/DATA-DOG/go-sqlmock") | 629 | (home-page "https://github.com/DATA-DOG/go-sqlmock") |
| @@ -1282,10 +1282,10 @@ package, but can be used in other contexts too.") | |||
| 1282 | (build-system go-build-system) | 1282 | (build-system go-build-system) |
| 1283 | (arguments | 1283 | (arguments |
| 1284 | (list | 1284 | (list |
| 1285 | #:go go-1.23 | ||
| 1286 | #:import-path "github.com/google/gofuzz" | 1285 | #:import-path "github.com/google/gofuzz" |
| 1287 | ;; Tests fail on 32bit | 1286 | ;; Tests fail on 32bit |
| 1288 | #:tests? (target-64bit?))) | 1287 | #:tests? (target-64bit?) |
| 1288 | #:test-flags #~(list "-vet=off"))) | ||
| 1289 | (home-page "https://github.com/google/gofuzz") | 1289 | (home-page "https://github.com/google/gofuzz") |
| 1290 | (synopsis "Fuzz testing library for Go") | 1290 | (synopsis "Fuzz testing library for Go") |
| 1291 | (description | 1291 | (description |
| @@ -2023,8 +2023,8 @@ output capturing, mocking, and much more.") | |||
| 2023 | (build-system go-build-system) | 2023 | (build-system go-build-system) |
| 2024 | (arguments | 2024 | (arguments |
| 2025 | (list | 2025 | (list |
| 2026 | #:go go-1.23 | 2026 | #:import-path "github.com/matryer/is" |
| 2027 | #:import-path "github.com/matryer/is")) | 2027 | #:test-flags #~(list "-vet=off"))) |
| 2028 | (home-page "https://github.com/matryer/is") | 2028 | (home-page "https://github.com/matryer/is") |
| 2029 | (synopsis "Lightweight testing mini-framework for Golang") | 2029 | (synopsis "Lightweight testing mini-framework for Golang") |
| 2030 | (description | 2030 | (description |
| @@ -2166,9 +2166,9 @@ error messages, preserving the order of @code{have} (actual result) before | |||
| 2166 | (build-system go-build-system) | 2166 | (build-system go-build-system) |
| 2167 | (arguments | 2167 | (arguments |
| 2168 | (list | 2168 | (list |
| 2169 | #:go go-1.23 | ||
| 2170 | #:import-path "github.com/onsi/ginkgo" | 2169 | #:import-path "github.com/onsi/ginkgo" |
| 2171 | #:test-flags #~(list "-skip" "TestIntegration"))) | 2170 | #:test-flags #~(list "-skip" "TestIntegration" |
| 2171 | "-vet=off"))) | ||
| 2172 | (propagated-inputs | 2172 | (propagated-inputs |
| 2173 | (list go-github-com-go-task-slim-sprig | 2173 | (list go-github-com-go-task-slim-sprig |
| 2174 | go-github-com-nxadm-tail | 2174 | go-github-com-nxadm-tail |
| @@ -2199,12 +2199,12 @@ Gomega matcher library.") | |||
| 2199 | (base32 "01rmm0lx29bwl973qixx6avwa8m6yc1vkara52cbl0jxxwf1jf3d")))) | 2199 | (base32 "01rmm0lx29bwl973qixx6avwa8m6yc1vkara52cbl0jxxwf1jf3d")))) |
| 2200 | (arguments | 2200 | (arguments |
| 2201 | (list | 2201 | (list |
| 2202 | #:go go-1.23 | ||
| 2203 | #:import-path "github.com/onsi/ginkgo/v2" | 2202 | #:import-path "github.com/onsi/ginkgo/v2" |
| 2204 | #:test-subdirs | 2203 | #:test-subdirs |
| 2205 | ;; XXX: Most of the tests hang, find out why, keeping bare minimal | 2204 | ;; XXX: Most of the tests hang, find out why, keeping bare minimal |
| 2206 | ;; amount. | 2205 | ;; amount. |
| 2207 | #~(list "dsl/..." "extensions/globals" "."))) | 2206 | #~(list "dsl/..." "extensions/globals" ".") |
| 2207 | #:test-flags #~(list "-vet=off"))) | ||
| 2208 | (native-inputs | 2208 | (native-inputs |
| 2209 | (list go-go-uber-org-automaxprocs)) ; for the CLI | 2209 | (list go-go-uber-org-automaxprocs)) ; for the CLI |
| 2210 | (propagated-inputs | 2210 | (propagated-inputs |
| @@ -2245,14 +2245,14 @@ Gomega matcher library.") | |||
| 2245 | (build-system go-build-system) | 2245 | (build-system go-build-system) |
| 2246 | (arguments | 2246 | (arguments |
| 2247 | (list | 2247 | (list |
| 2248 | #:go go-1.23 | ||
| 2249 | #:import-path "github.com/onsi/gomega" | 2248 | #:import-path "github.com/onsi/gomega" |
| 2250 | #:phases | 2249 | #:phases |
| 2251 | #~(modify-phases %standard-phases | 2250 | #~(modify-phases %standard-phases |
| 2252 | (add-after 'unpack 'remove-failing-test-files | 2251 | (add-after 'unpack 'remove-failing-test-files |
| 2253 | (lambda* (#:key import-path #:allow-other-keys) | 2252 | (lambda* (#:key import-path #:allow-other-keys) |
| 2254 | (with-directory-excursion (string-append "src/" import-path) | 2253 | (with-directory-excursion (string-append "src/" import-path) |
| 2255 | (delete-file "gexec/build_test.go"))))))) | 2254 | (delete-file "gexec/build_test.go"))))) |
| 2255 | #:test-flags #~(list "-vet=off"))) | ||
| 2256 | (native-inputs | 2256 | (native-inputs |
| 2257 | (list go-github-com-onsi-ginkgo-v2-bootstrap)) | 2257 | (list go-github-com-onsi-ginkgo-v2-bootstrap)) |
| 2258 | (propagated-inputs | 2258 | (propagated-inputs |
| @@ -2285,8 +2285,8 @@ framework.") | |||
| 2285 | (build-system go-build-system) | 2285 | (build-system go-build-system) |
| 2286 | (arguments | 2286 | (arguments |
| 2287 | (list | 2287 | (list |
| 2288 | #:go go-1.23 | 2288 | #:import-path "github.com/otiai10/mint" |
| 2289 | #:import-path "github.com/otiai10/mint")) | 2289 | #:test-flags #~(list "-vet=off"))) |
| 2290 | (home-page "https://github.com/otiai10/mint") | 2290 | (home-page "https://github.com/otiai10/mint") |
| 2291 | (synopsis "Minimal assertion for Golang testing framework") | 2291 | (synopsis "Minimal assertion for Golang testing framework") |
| 2292 | (description | 2292 | (description |
| @@ -2500,8 +2500,8 @@ GIT_TRACE mechanism.") | |||
| 2500 | (build-system go-build-system) | 2500 | (build-system go-build-system) |
| 2501 | (arguments | 2501 | (arguments |
| 2502 | (list | 2502 | (list |
| 2503 | #:go go-1.23 | 2503 | #:import-path "github.com/smarty/assertions" |
| 2504 | #:import-path "github.com/smarty/assertions")) | 2504 | #:test-flags #~(list "-vet=off"))) |
| 2505 | (home-page "https://github.com/smarty/assertions") | 2505 | (home-page "https://github.com/smarty/assertions") |
| 2506 | (synopsis "Fluent assertion-style functions") | 2506 | (synopsis "Fluent assertion-style functions") |
| 2507 | (description | 2507 | (description |
| @@ -2529,8 +2529,8 @@ functions and even in applications.") | |||
| 2529 | (build-system go-build-system) | 2529 | (build-system go-build-system) |
| 2530 | (arguments | 2530 | (arguments |
| 2531 | (list | 2531 | (list |
| 2532 | #:go go-1.23 | 2532 | #:import-path "github.com/smarty/gunit" |
| 2533 | #:import-path "github.com/smarty/gunit")) | 2533 | #:test-flags #~(list "-vet=off"))) |
| 2534 | (home-page "https://github.com/smarty/gunit") | 2534 | (home-page "https://github.com/smarty/gunit") |
| 2535 | (synopsis "Golang xUnit-style test fixture test adapter") | 2535 | (synopsis "Golang xUnit-style test fixture test adapter") |
| 2536 | (description | 2536 | (description |
| @@ -2849,8 +2849,8 @@ customization | |||
| 2849 | (build-system go-build-system) | 2849 | (build-system go-build-system) |
| 2850 | (arguments | 2850 | (arguments |
| 2851 | (list | 2851 | (list |
| 2852 | #:go go-1.23 | 2852 | #:import-path "github.com/warpfork/go-testmark" |
| 2853 | #:import-path "github.com/warpfork/go-testmark")) | 2853 | #:test-flags #~(list "-vet=off"))) |
| 2854 | (propagated-inputs | 2854 | (propagated-inputs |
| 2855 | (list go-github-com-warpfork-go-fsx)) | 2855 | (list go-github-com-warpfork-go-fsx)) |
| 2856 | (home-page "https://github.com/warpfork/go-testmark") | 2856 | (home-page "https://github.com/warpfork/go-testmark") |
| @@ -3586,8 +3586,8 @@ thoroughly | |||
| 3586 | (build-system go-build-system) | 3586 | (build-system go-build-system) |
| 3587 | (arguments | 3587 | (arguments |
| 3588 | (list | 3588 | (list |
| 3589 | #:go go-1.23 | 3589 | #:import-path "sigs.k8s.io/randfill" |
| 3590 | #:import-path "sigs.k8s.io/randfill")) | 3590 | #:test-flags #~(list "-vet=off"))) |
| 3591 | (home-page "https://sigs.k8s.io/randfill") | 3591 | (home-page "https://sigs.k8s.io/randfill") |
| 3592 | (synopsis "Fuzz testing for Golang") | 3592 | (synopsis "Fuzz testing for Golang") |
| 3593 | (description | 3593 | (description |
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index f60be259544..efbb7032074 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm | |||
| @@ -219,7 +219,6 @@ primitives.") | |||
| 219 | (build-system go-build-system) | 219 | (build-system go-build-system) |
| 220 | (arguments | 220 | (arguments |
| 221 | (list | 221 | (list |
| 222 | #:go go-1.23 | ||
| 223 | #:import-path "github.com/99designs/keyring" | 222 | #:import-path "github.com/99designs/keyring" |
| 224 | #:test-flags | 223 | #:test-flags |
| 225 | #~(list "-skip" (string-join | 224 | #~(list "-skip" (string-join |
| @@ -229,7 +228,8 @@ primitives.") | |||
| 229 | "TestLibSecretGetWhenNotEmpty" | 228 | "TestLibSecretGetWhenNotEmpty" |
| 230 | "TestLibSecretRemoveWhenEmpty" | 229 | "TestLibSecretRemoveWhenEmpty" |
| 231 | "TestLibSecretRemoveWhenNotEmpty") | 230 | "TestLibSecretRemoveWhenNotEmpty") |
| 232 | "|")))) | 231 | "|") |
| 232 | "-vet=off"))) | ||
| 233 | (native-inputs | 233 | (native-inputs |
| 234 | (list gnupg go-github-com-stretchr-testify password-store)) | 234 | (list gnupg go-github-com-stretchr-testify password-store)) |
| 235 | (propagated-inputs | 235 | (propagated-inputs |
| @@ -367,9 +367,9 @@ with its management port enabled.") | |||
| 367 | (build-system go-build-system) | 367 | (build-system go-build-system) |
| 368 | (arguments | 368 | (arguments |
| 369 | (list | 369 | (list |
| 370 | #:go go-1.23 | ||
| 371 | #:skip-build? #t | 370 | #:skip-build? #t |
| 372 | #:import-path "github.com/blanu/Dust")) | 371 | #:import-path "github.com/blanu/Dust" |
| 372 | #:test-flags #~(list "-vet=off"))) | ||
| 373 | (propagated-inputs | 373 | (propagated-inputs |
| 374 | (list go-github-com-operatorfoundation-ed25519 | 374 | (list go-github-com-operatorfoundation-ed25519 |
| 375 | go-github-com-op-go-logging | 375 | go-github-com-op-go-logging |
| @@ -548,8 +548,8 @@ described at @url{https://xxhash.com/}.") | |||
| 548 | (build-system go-build-system) | 548 | (build-system go-build-system) |
| 549 | (arguments | 549 | (arguments |
| 550 | (list | 550 | (list |
| 551 | #:go go-1.23 | 551 | #:import-path "github.com/chmduquesne/rollinghash/" |
| 552 | #:import-path "github.com/chmduquesne/rollinghash/")) | 552 | #:test-flags #~(list "-vet=off"))) |
| 553 | (propagated-inputs | 553 | (propagated-inputs |
| 554 | (list go-code-cloudfoundry-org-bytefmt)) | 554 | (list go-code-cloudfoundry-org-bytefmt)) |
| 555 | (home-page "https://github.com/chmduquesne/rollinghash") | 555 | (home-page "https://github.com/chmduquesne/rollinghash") |
diff --git a/gnu/packages/golang-maths.scm b/gnu/packages/golang-maths.scm index 831af6cc6b7..207d9cd694e 100644 --- a/gnu/packages/golang-maths.scm +++ b/gnu/packages/golang-maths.scm | |||
| @@ -386,14 +386,16 @@ penalization.") | |||
| 386 | (build-system go-build-system) | 386 | (build-system go-build-system) |
| 387 | (arguments | 387 | (arguments |
| 388 | (list | 388 | (list |
| 389 | #:go go-1.23 | ||
| 390 | #:import-path "github.com/montanaflynn/stats" | 389 | #:import-path "github.com/montanaflynn/stats" |
| 391 | #:phases | 390 | #:phases |
| 392 | #~(modify-phases %standard-phases | 391 | #~(modify-phases %standard-phases |
| 393 | (add-after 'unpack 'remove-examples | 392 | (add-after 'unpack 'remove-examples |
| 394 | (lambda* (#:key tests? import-path #:allow-other-keys) | 393 | (lambda* (#:key tests? import-path #:allow-other-keys) |
| 395 | (with-directory-excursion (string-append "src/" import-path) | 394 | (with-directory-excursion (string-append "src/" import-path) |
| 396 | (delete-file-recursively "examples"))))))) | 395 | (delete-file-recursively "examples"))))) |
| 396 | #:test-flags | ||
| 397 | ;; disable go vet in go 1.24+ | ||
| 398 | #~(list "-vet=off"))) | ||
| 397 | (home-page "https://github.com/montanaflynn/stats") | 399 | (home-page "https://github.com/montanaflynn/stats") |
| 398 | (synopsis "Statistics library for Golang") | 400 | (synopsis "Statistics library for Golang") |
| 399 | (description | 401 | (description |
| @@ -498,7 +500,6 @@ format as binary16.") | |||
| 498 | (build-system go-build-system) | 500 | (build-system go-build-system) |
| 499 | (arguments | 501 | (arguments |
| 500 | (list | 502 | (list |
| 501 | #:go go-1.23 | ||
| 502 | #:import-path "gonum.org/v1/gonum" | 503 | #:import-path "gonum.org/v1/gonum" |
| 503 | #:test-subdirs | 504 | #:test-subdirs |
| 504 | #~(list "." | 505 | #~(list "." |
| @@ -521,7 +522,8 @@ format as binary16.") | |||
| 521 | '("spatial/...") | 522 | '("spatial/...") |
| 522 | '()) | 523 | '()) |
| 523 | "stat/..." | 524 | "stat/..." |
| 524 | "uniti/..."))) | 525 | "uniti/...") |
| 526 | #:test-flags #~(list "-vet=off"))) | ||
| 525 | (propagated-inputs | 527 | (propagated-inputs |
| 526 | (list go-github-com-goccmack-gocc | 528 | (list go-github-com-goccmack-gocc |
| 527 | go-github-com-google-go-cmp | 529 | go-github-com-google-go-cmp |
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm index 41e9cb39df6..1f1d2250e68 100644 --- a/gnu/packages/golang-vcs.scm +++ b/gnu/packages/golang-vcs.scm | |||
| @@ -281,8 +281,8 @@ using the Git pkt-line format used in various Git operations.") | |||
| 281 | (build-system go-build-system) | 281 | (build-system go-build-system) |
| 282 | (arguments | 282 | (arguments |
| 283 | (list | 283 | (list |
| 284 | #:go go-1.23 | 284 | #:import-path "github.com/jiangxin/goconfig" |
| 285 | #:import-path "github.com/jiangxin/goconfig")) | 285 | #:test-flags #~(list "-vet=off"))) |
| 286 | (native-inputs | 286 | (native-inputs |
| 287 | (list git-minimal/pinned | 287 | (list git-minimal/pinned |
| 288 | go-github-com-jiu2015-gotestspace | 288 | go-github-com-jiu2015-gotestspace |
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 8d2a903a1dd..e64ff922d0c 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm | |||
| @@ -506,9 +506,9 @@ Gemini clients and servers.") | |||
| 506 | (build-system go-build-system) | 506 | (build-system go-build-system) |
| 507 | (arguments | 507 | (arguments |
| 508 | (list | 508 | (list |
| 509 | #:go go-1.23 | ||
| 510 | #:embed-files #~(list "prelude.graphql") | 509 | #:embed-files #~(list "prelude.graphql") |
| 511 | #:import-path "git.sr.ht/~emersion/gqlclient")) | 510 | #:import-path "git.sr.ht/~emersion/gqlclient" |
| 511 | #:test-flags #~(list "-vet=off"))) | ||
| 512 | ;; For the CLI. | 512 | ;; For the CLI. |
| 513 | (native-inputs | 513 | (native-inputs |
| 514 | (list go-github-com-dave-jennifer | 514 | (list go-github-com-dave-jennifer |
| @@ -535,8 +535,8 @@ Gemini clients and servers.") | |||
| 535 | (build-system go-build-system) | 535 | (build-system go-build-system) |
| 536 | (arguments | 536 | (arguments |
| 537 | (list | 537 | (list |
| 538 | #:go go-1.23 | 538 | #:import-path "git.sr.ht/~rockorager/go-jmap" |
| 539 | #:import-path "git.sr.ht/~rockorager/go-jmap")) | 539 | #:test-flags #~(list "-vet=off"))) |
| 540 | (native-inputs | 540 | (native-inputs |
| 541 | (list | 541 | (list |
| 542 | go-github-com-stretchr-testify)) | 542 | go-github-com-stretchr-testify)) |
| @@ -968,8 +968,8 @@ particular test phases or milestones have been reached. It is part of the | |||
| 968 | (build-system go-build-system) | 968 | (build-system go-build-system) |
| 969 | (arguments | 969 | (arguments |
| 970 | (list | 970 | (list |
| 971 | #:go go-1.23 | 971 | #:import-path "github.com/apex/log" |
| 972 | #:import-path "github.com/apex/log")) | 972 | #:test-flags #~(list "-vet=off"))) |
| 973 | (native-inputs | 973 | (native-inputs |
| 974 | (list go-github-com-tj-assert | 974 | (list go-github-com-tj-assert |
| 975 | go-github-com-stretchr-testify)) | 975 | go-github-com-stretchr-testify)) |
| @@ -999,9 +999,9 @@ require encoding and decoding before fanning-out to handlers.") | |||
| 999 | (hidden-package | 999 | (hidden-package |
| 1000 | (package/inherit go-github-com-apex-log | 1000 | (package/inherit go-github-com-apex-log |
| 1001 | (arguments | 1001 | (arguments |
| 1002 | (list #:go go-1.23 | 1002 | (list #:import-path "github.com/apex/log" |
| 1003 | #:import-path "github.com/apex/log" | 1003 | #:test-subdirs #~(list ".") |
| 1004 | #:test-subdirs #~(list "."))) | 1004 | #:test-flags #~(list "-vet=off"))) |
| 1005 | (propagated-inputs | 1005 | (propagated-inputs |
| 1006 | (list go-github-com-fatih-color | 1006 | (list go-github-com-fatih-color |
| 1007 | go-github-com-pkg-errors))))) | 1007 | go-github-com-pkg-errors))))) |
| @@ -2507,8 +2507,8 @@ and RFC 5389).") | |||
| 2507 | (build-system go-build-system) | 2507 | (build-system go-build-system) |
| 2508 | (arguments | 2508 | (arguments |
| 2509 | (list | 2509 | (list |
| 2510 | #:go go-1.23 | 2510 | #:import-path "github.com/cenkalti/backoff/v4" |
| 2511 | #:import-path "github.com/cenkalti/backoff/v4")) | 2511 | #:test-flags #~(list "-vet=off"))) |
| 2512 | (home-page "https://github.com/cenkalti/backoff") | 2512 | (home-page "https://github.com/cenkalti/backoff") |
| 2513 | (synopsis "The exponential backoff algorithm in Go") | 2513 | (synopsis "The exponential backoff algorithm in Go") |
| 2514 | (description | 2514 | (description |
| @@ -3758,7 +3758,6 @@ Data Representation (XDR) standard protocol as specified in RFC | |||
| 3758 | (build-system go-build-system) | 3758 | (build-system go-build-system) |
| 3759 | (arguments | 3759 | (arguments |
| 3760 | (list | 3760 | (list |
| 3761 | #:go go-1.23 | ||
| 3762 | #:import-path "github.com/digitalocean/godo" | 3761 | #:import-path "github.com/digitalocean/godo" |
| 3763 | #:test-flags | 3762 | #:test-flags |
| 3764 | #~(list "-skip" (string-join | 3763 | #~(list "-skip" (string-join |
| @@ -3771,7 +3770,8 @@ Data Representation (XDR) standard protocol as specified in RFC | |||
| 3771 | "TestRegistry_DeleteTag" | 3770 | "TestRegistry_DeleteTag" |
| 3772 | "TestRegistry_ListManifests" | 3771 | "TestRegistry_ListManifests" |
| 3773 | "TestRepository_ListTags") | 3772 | "TestRepository_ListTags") |
| 3774 | "|")))) | 3773 | "|") |
| 3774 | "-vet=off"))) | ||
| 3775 | (native-inputs | 3775 | (native-inputs |
| 3776 | (list go-github-com-stretchr-testify)) | 3776 | (list go-github-com-stretchr-testify)) |
| 3777 | (propagated-inputs | 3777 | (propagated-inputs |
| @@ -3880,8 +3880,8 @@ translation (NAT), proxies, sockets, and transport layer security (TLS).") | |||
| 3880 | (build-system go-build-system) | 3880 | (build-system go-build-system) |
| 3881 | (arguments | 3881 | (arguments |
| 3882 | (list | 3882 | (list |
| 3883 | #:go go-1.23 | 3883 | #:import-path "github.com/donovanhide/eventsource" |
| 3884 | #:import-path "github.com/donovanhide/eventsource")) | 3884 | #:test-flags #~(list "-vet=off"))) |
| 3885 | (home-page "https://github.com/donovanhide/eventsource") | 3885 | (home-page "https://github.com/donovanhide/eventsource") |
| 3886 | (synopsis "Server Side Events client and server for Golang") | 3886 | (synopsis "Server Side Events client and server for Golang") |
| 3887 | (description | 3887 | (description |
| @@ -4387,8 +4387,8 @@ for Go.") | |||
| 4387 | (build-system go-build-system) | 4387 | (build-system go-build-system) |
| 4388 | (arguments | 4388 | (arguments |
| 4389 | (list | 4389 | (list |
| 4390 | #:go go-1.23 | 4390 | #:import-path "github.com/emersion/go-smtp" |
| 4391 | #:import-path "github.com/emersion/go-smtp")) | 4391 | #:test-flags #~(list "-vet=off"))) |
| 4392 | (propagated-inputs | 4392 | (propagated-inputs |
| 4393 | (list go-github-com-emersion-go-sasl)) | 4393 | (list go-github-com-emersion-go-sasl)) |
| 4394 | (home-page "https://github.com/emersion/go-smtp") | 4394 | (home-page "https://github.com/emersion/go-smtp") |
| @@ -4597,8 +4597,8 @@ Files.com from applications written in Go.") | |||
| 4597 | (build-system go-build-system) | 4597 | (build-system go-build-system) |
| 4598 | (arguments | 4598 | (arguments |
| 4599 | (list | 4599 | (list |
| 4600 | #:go go-1.23 | 4600 | #:import-path "github.com/flosch/pongo2/v6" |
| 4601 | #:import-path "github.com/flosch/pongo2/v6")) | 4601 | #:test-flags #~(list "-vet=off"))) |
| 4602 | (native-inputs | 4602 | (native-inputs |
| 4603 | (list go-gopkg-in-check-v1)) | 4603 | (list go-gopkg-in-check-v1)) |
| 4604 | (home-page "https://github.com/flosch/pongo2") | 4604 | (home-page "https://github.com/flosch/pongo2") |
| @@ -4964,8 +4964,8 @@ supports middleware, routing groups, and URL parameters.") | |||
| 4964 | (build-system go-build-system) | 4964 | (build-system go-build-system) |
| 4965 | (arguments | 4965 | (arguments |
| 4966 | (list | 4966 | (list |
| 4967 | #:go go-1.23 | 4967 | #:import-path "github.com/go-chi/chi/v5" |
| 4968 | #:import-path "github.com/go-chi/chi/v5")) | 4968 | #:test-flags #~(list "-vet=off"))) |
| 4969 | (home-page "https://github.com/go-chi/chi") | 4969 | (home-page "https://github.com/go-chi/chi") |
| 4970 | (synopsis "Composable router for HTTP services written in Go") | 4970 | (synopsis "Composable router for HTTP services written in Go") |
| 4971 | (description | 4971 | (description |
| @@ -5060,8 +5060,8 @@ Signature headers are to be set (but not both).") | |||
| 5060 | (build-system go-build-system) | 5060 | (build-system go-build-system) |
| 5061 | (arguments | 5061 | (arguments |
| 5062 | (list | 5062 | (list |
| 5063 | #:go go-1.23 | 5063 | #:import-path "github.com/go-jose/go-jose/v3" |
| 5064 | #:import-path "github.com/go-jose/go-jose/v3")) | 5064 | #:test-flags #~(list "-vet=off"))) |
| 5065 | (native-inputs | 5065 | (native-inputs |
| 5066 | (list go-github-com-google-go-cmp | 5066 | (list go-github-com-google-go-cmp |
| 5067 | go-github-com-stretchr-testify)) | 5067 | go-github-com-stretchr-testify)) |
| @@ -5207,8 +5207,8 @@ about the content.") | |||
| 5207 | (build-system go-build-system) | 5207 | (build-system go-build-system) |
| 5208 | (arguments | 5208 | (arguments |
| 5209 | (list | 5209 | (list |
| 5210 | #:go go-1.23 | 5210 | #:import-path "github.com/go-openapi/errors" |
| 5211 | #:import-path "github.com/go-openapi/errors")) | 5211 | #:test-flags #~(list "-vet=off"))) |
| 5212 | (native-inputs | 5212 | (native-inputs |
| 5213 | (list go-github-com-stretchr-testify)) | 5213 | (list go-github-com-stretchr-testify)) |
| 5214 | (home-page "https://github.com/go-openapi/errors") | 5214 | (home-page "https://github.com/go-openapi/errors") |
| @@ -5324,9 +5324,9 @@ Supports JSON and YAML documents.") | |||
| 5324 | (build-system go-build-system) | 5324 | (build-system go-build-system) |
| 5325 | (arguments | 5325 | (arguments |
| 5326 | (list | 5326 | (list |
| 5327 | #:go go-1.23 | ||
| 5328 | #:embed-files #~(list "jsonschema-draft-04\\.json" "schema\\.json") | 5327 | #:embed-files #~(list "jsonschema-draft-04\\.json" "schema\\.json") |
| 5329 | #:import-path "github.com/go-openapi/runtime")) | 5328 | #:import-path "github.com/go-openapi/runtime" |
| 5329 | #:test-flags #~(list "-vet=off"))) | ||
| 5330 | (native-inputs | 5330 | (native-inputs |
| 5331 | (list go-github-com-stretchr-testify)) | 5331 | (list go-github-com-stretchr-testify)) |
| 5332 | (propagated-inputs | 5332 | (propagated-inputs |
| @@ -5461,7 +5461,6 @@ projects.") | |||
| 5461 | (build-system go-build-system) | 5461 | (build-system go-build-system) |
| 5462 | (arguments | 5462 | (arguments |
| 5463 | (list | 5463 | (list |
| 5464 | #:go go-1.23 | ||
| 5465 | #:embed-files #~(list "jsonschema-draft-04\\.json" "schema\\.json") | 5464 | #:embed-files #~(list "jsonschema-draft-04\\.json" "schema\\.json") |
| 5466 | #:import-path "github.com/go-openapi/validate" | 5465 | #:import-path "github.com/go-openapi/validate" |
| 5467 | #:phases | 5466 | #:phases |
| @@ -5473,7 +5472,8 @@ projects.") | |||
| 5473 | (for-each delete-file | 5472 | (for-each delete-file |
| 5474 | (list "benchmark_test.go" | 5473 | (list "benchmark_test.go" |
| 5475 | "example_validator_test.go" | 5474 | "example_validator_test.go" |
| 5476 | "doc_test.go")))))))) | 5475 | "doc_test.go")))))) |
| 5476 | #:test-flags #~(list "-vet=off"))) | ||
| 5477 | (native-inputs | 5477 | (native-inputs |
| 5478 | (list go-github-com-stretchr-testify)) | 5478 | (list go-github-com-stretchr-testify)) |
| 5479 | (propagated-inputs | 5479 | (propagated-inputs |
| @@ -5721,8 +5721,8 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.") | |||
| 5721 | (build-system go-build-system) | 5721 | (build-system go-build-system) |
| 5722 | (arguments | 5722 | (arguments |
| 5723 | (list | 5723 | (list |
| 5724 | #:go go-1.23 | 5724 | #:import-path "github.com/gobwas/httphead" |
| 5725 | #:import-path "github.com/gobwas/httphead")) | 5725 | #:test-flags #~(list "-vet=off"))) |
| 5726 | (home-page "https://github.com/gobwas/httphead") | 5726 | (home-page "https://github.com/gobwas/httphead") |
| 5727 | (synopsis "Tiny HTTP header value parsing library in Golang") | 5727 | (synopsis "Tiny HTTP header value parsing library in Golang") |
| 5728 | (description | 5728 | (description |
| @@ -5776,8 +5776,8 @@ protocol as specified in @url{https://rfc-editor.org/rfc/rfc6455.html, RFC | |||
| 5776 | (build-system go-build-system) | 5776 | (build-system go-build-system) |
| 5777 | (arguments | 5777 | (arguments |
| 5778 | (list | 5778 | (list |
| 5779 | #:go go-1.23 | 5779 | #:import-path "github.com/goccy/go-json" |
| 5780 | #:import-path "github.com/goccy/go-json")) | 5780 | #:test-flags #~(list "-vet=off"))) |
| 5781 | (home-page "https://github.com/goccy/go-json") | 5781 | (home-page "https://github.com/goccy/go-json") |
| 5782 | (synopsis "JSON encoder/decoder in Go") | 5782 | (synopsis "JSON encoder/decoder in Go") |
| 5783 | (description | 5783 | (description |
| @@ -5870,7 +5870,6 @@ APIs.") | |||
| 5870 | (build-system go-build-system) | 5870 | (build-system go-build-system) |
| 5871 | (arguments | 5871 | (arguments |
| 5872 | (list | 5872 | (list |
| 5873 | #:go go-1.23 | ||
| 5874 | #:skip-build? #t | 5873 | #:skip-build? #t |
| 5875 | #:import-path "github.com/gogo/protobuf" | 5874 | #:import-path "github.com/gogo/protobuf" |
| 5876 | ;; protoc: exec: "protoc-min-version": executable file not found in $PATH | 5875 | ;; protoc: exec: "protoc-min-version": executable file not found in $PATH |
| @@ -5886,7 +5885,8 @@ APIs.") | |||
| 5886 | "TestRepeatedEmbed" | 5885 | "TestRepeatedEmbed" |
| 5887 | "TestStdTypesGoString" | 5886 | "TestStdTypesGoString" |
| 5888 | "TestTakesTooLongToDebug") | 5887 | "TestTakesTooLongToDebug") |
| 5889 | "|")))) | 5888 | "|") |
| 5889 | "-vet=off"))) | ||
| 5890 | (home-page "https://github.com/gogo/protobuf") | 5890 | (home-page "https://github.com/gogo/protobuf") |
| 5891 | (synopsis "Protocol Buffers for Go with Gadgets") | 5891 | (synopsis "Protocol Buffers for Go with Gadgets") |
| 5892 | (description "Gogoprotobuf is a fork of golang/protobuf with extra code | 5892 | (description "Gogoprotobuf is a fork of golang/protobuf with extra code |
| @@ -6261,8 +6261,8 @@ iptables successor). It does not rely on libnftnl wrappers.") | |||
| 6261 | (build-system go-build-system) | 6261 | (build-system go-build-system) |
| 6262 | (arguments | 6262 | (arguments |
| 6263 | (list | 6263 | (list |
| 6264 | #:go go-1.23 | 6264 | #:import-path "github.com/google/safehtml" |
| 6265 | #:import-path "github.com/google/safehtml")) | 6265 | #:test-flags #~(list "-vet=off"))) |
| 6266 | (propagated-inputs | 6266 | (propagated-inputs |
| 6267 | (list go-golang-org-x-text)) | 6267 | (list go-golang-org-x-text)) |
| 6268 | (home-page "https://github.com/google/safehtml") | 6268 | (home-page "https://github.com/google/safehtml") |
| @@ -7616,9 +7616,9 @@ authenticated identities and their attributes.") | |||
| 7616 | (build-system go-build-system) | 7616 | (build-system go-build-system) |
| 7617 | (arguments | 7617 | (arguments |
| 7618 | (list | 7618 | (list |
| 7619 | #:go go-1.23 | ||
| 7620 | #:import-path "github.com/jcmturner/gokrb5/v8" | 7619 | #:import-path "github.com/jcmturner/gokrb5/v8" |
| 7621 | #:unpack-path "github.com/jcmturner/gokrb5")) | 7620 | #:unpack-path "github.com/jcmturner/gokrb5" |
| 7621 | #:test-flags #~(list "-vet=off"))) | ||
| 7622 | (native-inputs | 7622 | (native-inputs |
| 7623 | (list go-github-com-stretchr-testify)) | 7623 | (list go-github-com-stretchr-testify)) |
| 7624 | (propagated-inputs | 7624 | (propagated-inputs |
| @@ -7749,8 +7749,8 @@ about missing required fields, or when pattern validation does not match.") | |||
| 7749 | (build-system go-build-system) | 7749 | (build-system go-build-system) |
| 7750 | (arguments | 7750 | (arguments |
| 7751 | (list | 7751 | (list |
| 7752 | #:go go-1.23 | 7752 | #:import-path "github.com/jhillyerd/enmime" |
| 7753 | #:import-path "github.com/jhillyerd/enmime")) | 7753 | #:test-flags #~(list "-vet=off"))) |
| 7754 | (native-inputs | 7754 | (native-inputs |
| 7755 | (list go-github-com-go-test-deep | 7755 | (list go-github-com-go-test-deep |
| 7756 | go-github-com-stretchr-testify)) | 7756 | go-github-com-stretchr-testify)) |
| @@ -7801,8 +7801,8 @@ geared towards parsing MIME encoded emails.") | |||
| 7801 | (build-system go-build-system) | 7801 | (build-system go-build-system) |
| 7802 | (arguments | 7802 | (arguments |
| 7803 | (list | 7803 | (list |
| 7804 | #:go go-1.23 | 7804 | #:import-path "github.com/jlaffaye/ftp" |
| 7805 | #:import-path "github.com/jlaffaye/ftp")) | 7805 | #:test-flags #~(list "-vet=off"))) |
| 7806 | (native-inputs | 7806 | (native-inputs |
| 7807 | (list go-github-com-stretchr-testify)) | 7807 | (list go-github-com-stretchr-testify)) |
| 7808 | (propagated-inputs | 7808 | (propagated-inputs |
| @@ -7830,8 +7830,8 @@ described in @url{https://www.rfc-editor.org/rfc/rfc959,RFC 959}.") | |||
| 7830 | (build-system go-build-system) | 7830 | (build-system go-build-system) |
| 7831 | (arguments | 7831 | (arguments |
| 7832 | (list | 7832 | (list |
| 7833 | #:go go-1.23 | 7833 | #:import-path "github.com/jmespath/go-jmespath" |
| 7834 | #:import-path "github.com/jmespath/go-jmespath")) | 7834 | #:test-flags #~(list "-vet=off"))) |
| 7835 | (native-inputs | 7835 | (native-inputs |
| 7836 | (list go-github-com-davecgh-go-spew | 7836 | (list go-github-com-davecgh-go-spew |
| 7837 | go-github-com-pmezard-go-difflib | 7837 | go-github-com-pmezard-go-difflib |
| @@ -7908,7 +7908,6 @@ controlled. It is based on netlink messages.") | |||
| 7908 | (build-system go-build-system) | 7908 | (build-system go-build-system) |
| 7909 | (arguments | 7909 | (arguments |
| 7910 | (list | 7910 | (list |
| 7911 | #:go go-1.23 | ||
| 7912 | #:import-path "github.com/json-iterator/go" | 7911 | #:import-path "github.com/json-iterator/go" |
| 7913 | #:test-flags | 7912 | #:test-flags |
| 7914 | #~(list "-skip" (string-join | 7913 | #~(list "-skip" (string-join |
| @@ -7916,7 +7915,8 @@ controlled. It is based on netlink messages.") | |||
| 7916 | "Test_marshal/.57._/string" | 7915 | "Test_marshal/.57._/string" |
| 7917 | "Test_string_encode_with_std_without_html_escape" | 7916 | "Test_string_encode_with_std_without_html_escape" |
| 7918 | "Test_symmetric/map.test.stringKeyType.string") | 7917 | "Test_symmetric/map.test.stringKeyType.string") |
| 7919 | "|")))) | 7918 | "|") |
| 7919 | "-vet=off"))) | ||
| 7920 | (native-inputs | 7920 | (native-inputs |
| 7921 | (list go-github-com-davecgh-go-spew | 7921 | (list go-github-com-davecgh-go-spew |
| 7922 | go-github-com-google-gofuzz | 7922 | go-github-com-google-gofuzz |
| @@ -8225,9 +8225,9 @@ protocol in Go language.") | |||
| 8225 | (build-system go-build-system) | 8225 | (build-system go-build-system) |
| 8226 | (arguments | 8226 | (arguments |
| 8227 | (list | 8227 | (list |
| 8228 | #:go go-1.23 | ||
| 8229 | #:skip-build? #t | 8228 | #:skip-build? #t |
| 8230 | #:import-path "github.com/labbsr0x/goh")) | 8229 | #:import-path "github.com/labbsr0x/goh" |
| 8230 | #:test-flags #~(list "-vet=off"))) | ||
| 8231 | (propagated-inputs | 8231 | (propagated-inputs |
| 8232 | (list go-github-com-go-cmd-cmd | 8232 | (list go-github-com-go-cmd-cmd |
| 8233 | go-github-com-go-errors-errors | 8233 | go-github-com-go-errors-errors |
| @@ -9239,8 +9239,8 @@ fixed.") | |||
| 9239 | go-golang-org-x-text)) | 9239 | go-golang-org-x-text)) |
| 9240 | (arguments | 9240 | (arguments |
| 9241 | (list | 9241 | (list |
| 9242 | #:go go-1.23 | 9242 | #:import-path "github.com/makeworld-the-better-one/go-gemini" |
| 9243 | #:import-path "github.com/makeworld-the-better-one/go-gemini")) | 9243 | #:test-flags #~(list "-vet=off"))) |
| 9244 | (home-page "https://github.com/makew0rld/go-gemini") | 9244 | (home-page "https://github.com/makew0rld/go-gemini") |
| 9245 | (synopsis "Client/server library for the Gemini protocol, in Go") | 9245 | (synopsis "Client/server library for the Gemini protocol, in Go") |
| 9246 | (description | 9246 | (description |
| @@ -11103,7 +11103,6 @@ Border Gateway Protocol}} implementation.") | |||
| 11103 | (build-system go-build-system) | 11103 | (build-system go-build-system) |
| 11104 | (arguments | 11104 | (arguments |
| 11105 | (list | 11105 | (list |
| 11106 | #:go go-1.23 | ||
| 11107 | #:skip-build? #t | 11106 | #:skip-build? #t |
| 11108 | #:import-path "github.com/ovn-kubernetes/libovsdb" | 11107 | #:import-path "github.com/ovn-kubernetes/libovsdb" |
| 11109 | #:test-flags | 11108 | #:test-flags |
| @@ -11133,7 +11132,8 @@ Border Gateway Protocol}} implementation.") | |||
| 11133 | "TestWaitOpNotEquals" | 11132 | "TestWaitOpNotEquals" |
| 11134 | "Test_merge") | 11133 | "Test_merge") |
| 11135 | #~())) | 11134 | #~())) |
| 11136 | "|")) | 11135 | "|") |
| 11136 | "-vet=off") | ||
| 11137 | #:phases | 11137 | #:phases |
| 11138 | #~(modify-phases %standard-phases | 11138 | #~(modify-phases %standard-phases |
| 11139 | (add-after 'unpack 'remove-examples | 11139 | (add-after 'unpack 'remove-examples |
| @@ -11190,9 +11190,9 @@ also be used to manage your stamp collection.") | |||
| 11190 | (build-system go-build-system) | 11190 | (build-system go-build-system) |
| 11191 | (arguments | 11191 | (arguments |
| 11192 | (list | 11192 | (list |
| 11193 | #:go go-1.23 | ||
| 11194 | #:skip-build? #t | 11193 | #:skip-build? #t |
| 11195 | #:import-path "github.com/pascaldekloe/goe")) | 11194 | #:import-path "github.com/pascaldekloe/goe" |
| 11195 | #:test-flags #~(list "-vet=off"))) | ||
| 11196 | (home-page "https://github.com/pascaldekloe/goe") | 11196 | (home-page "https://github.com/pascaldekloe/goe") |
| 11197 | (synopsis "Enterprise tooling for Golang") | 11197 | (synopsis "Enterprise tooling for Golang") |
| 11198 | (description | 11198 | (description |
| @@ -11244,8 +11244,8 @@ API.") | |||
| 11244 | (build-system go-build-system) | 11244 | (build-system go-build-system) |
| 11245 | (arguments | 11245 | (arguments |
| 11246 | (list | 11246 | (list |
| 11247 | #:go go-1.23 | 11247 | #:import-path "github.com/perimeterx/marshmallow" |
| 11248 | #:import-path "github.com/perimeterx/marshmallow")) | 11248 | #:test-flags #~(list "-vet=off"))) |
| 11249 | (native-inputs | 11249 | (native-inputs |
| 11250 | (list go-github-com-go-test-deep)) | 11250 | (list go-github-com-go-test-deep)) |
| 11251 | (propagated-inputs | 11251 | (propagated-inputs |
| @@ -11800,8 +11800,8 @@ Protocol,SCTP} as specified in | |||
| 11800 | (build-system go-build-system) | 11800 | (build-system go-build-system) |
| 11801 | (arguments | 11801 | (arguments |
| 11802 | (list | 11802 | (list |
| 11803 | #:go go-1.23 | 11803 | #:import-path "github.com/pion/stun" |
| 11804 | #:import-path "github.com/pion/stun")) | 11804 | #:test-flags #~(list "-vet=off"))) |
| 11805 | (native-inputs | 11805 | (native-inputs |
| 11806 | (list go-github-com-stretchr-testify)) | 11806 | (list go-github-com-stretchr-testify)) |
| 11807 | (propagated-inputs | 11807 | (propagated-inputs |
| @@ -11835,8 +11835,8 @@ Protocol,SCTP} as specified in | |||
| 11835 | (base32 "0zli55ls5izpr6cw0wj0gy44872xn9rk20i8ay9cfk7j2rb60y60")))) | 11835 | (base32 "0zli55ls5izpr6cw0wj0gy44872xn9rk20i8ay9cfk7j2rb60y60")))) |
| 11836 | (arguments | 11836 | (arguments |
| 11837 | (list | 11837 | (list |
| 11838 | #:go go-1.23 | 11838 | #:import-path "github.com/pion/stun/v2" |
| 11839 | #:import-path "github.com/pion/stun/v2")) | 11839 | #:test-flags #~(list "-vet=off"))) |
| 11840 | (propagated-inputs | 11840 | (propagated-inputs |
| 11841 | (list go-github-com-pion-dtls-v2 | 11841 | (list go-github-com-pion-dtls-v2 |
| 11842 | go-github-com-pion-logging | 11842 | go-github-com-pion-logging |
| @@ -11860,8 +11860,8 @@ Protocol,SCTP} as specified in | |||
| 11860 | (base32 "0yavl76y0fida9f1jfdmzdg7rm5jhp6kvdgn3smsf93jad1vbr2x")))) | 11860 | (base32 "0yavl76y0fida9f1jfdmzdg7rm5jhp6kvdgn3smsf93jad1vbr2x")))) |
| 11861 | (arguments | 11861 | (arguments |
| 11862 | (list | 11862 | (list |
| 11863 | #:go go-1.23 | 11863 | #:import-path "github.com/pion/stun/v3" |
| 11864 | #:import-path "github.com/pion/stun/v3")) | 11864 | #:test-flags #~(list "-vet=off"))) |
| 11865 | (propagated-inputs | 11865 | (propagated-inputs |
| 11866 | (list go-github-com-pion-dtls-v3 | 11866 | (list go-github-com-pion-dtls-v3 |
| 11867 | go-github-com-pion-logging | 11867 | go-github-com-pion-logging |
| @@ -12813,7 +12813,6 @@ RFC 1014) in Go.") | |||
| 12813 | (build-system go-build-system) | 12813 | (build-system go-build-system) |
| 12814 | (arguments | 12814 | (arguments |
| 12815 | (list | 12815 | (list |
| 12816 | #:go go-1.23 | ||
| 12817 | #:import-path "github.com/rcrowley/go-metrics" | 12816 | #:import-path "github.com/rcrowley/go-metrics" |
| 12818 | #:test-flags | 12817 | #:test-flags |
| 12819 | ;; Arbitrary precision tests are known to be broken on aarch64, ppc64le | 12818 | ;; Arbitrary precision tests are known to be broken on aarch64, ppc64le |
| @@ -12825,7 +12824,8 @@ RFC 1014) in Go.") | |||
| 12825 | "TestUniformSampleSnapshot" | 12824 | "TestUniformSampleSnapshot" |
| 12826 | "TestUniformSampleStatistics") | 12825 | "TestUniformSampleStatistics") |
| 12827 | "|")) | 12826 | "|")) |
| 12828 | '())))) | 12827 | '()) |
| 12828 | "-vet=off"))) | ||
| 12829 | (propagated-inputs | 12829 | (propagated-inputs |
| 12830 | (list go-github-com-stathat-go)) | 12830 | (list go-github-com-stathat-go)) |
| 12831 | (home-page "https://github.com/rcrowley/go-metrics") | 12831 | (home-page "https://github.com/rcrowley/go-metrics") |
| @@ -13820,7 +13820,6 @@ REST APIs.") | |||
| 13820 | (build-system go-build-system) | 13820 | (build-system go-build-system) |
| 13821 | (arguments | 13821 | (arguments |
| 13822 | (list | 13822 | (list |
| 13823 | #:go go-1.23 | ||
| 13824 | #:import-path "github.com/swaggo/swag" | 13823 | #:import-path "github.com/swaggo/swag" |
| 13825 | #:unpack-path "github.com/swaggo/swag" | 13824 | #:unpack-path "github.com/swaggo/swag" |
| 13826 | #:embed-files | 13825 | #:embed-files |
| @@ -13834,7 +13833,8 @@ REST APIs.") | |||
| 13834 | "schema\\.json") | 13833 | "schema\\.json") |
| 13835 | #:test-flags | 13834 | #:test-flags |
| 13836 | #~(list "-skip" (string-append "TestParseGoList/enableGOMODULE" | 13835 | #~(list "-skip" (string-append "TestParseGoList/enableGOMODULE" |
| 13837 | "|TestParseDescriptionMarkdown")) | 13836 | "|TestParseDescriptionMarkdown") |
| 13837 | "-vet=off") | ||
| 13838 | #:phases | 13838 | #:phases |
| 13839 | #~(modify-phases %standard-phases | 13839 | #~(modify-phases %standard-phases |
| 13840 | (add-after 'unpack 'remove-examples | 13840 | (add-after 'unpack 'remove-examples |
| @@ -14436,8 +14436,8 @@ files to XML generation (for example, @code{gin.Context} or | |||
| 14436 | (build-system go-build-system) | 14436 | (build-system go-build-system) |
| 14437 | (arguments | 14437 | (arguments |
| 14438 | (list | 14438 | (list |
| 14439 | #:go go-1.23 | 14439 | #:import-path "github.com/urfave/negroni" |
| 14440 | #:import-path "github.com/urfave/negroni")) | 14440 | #:test-flags #~(list "-vet=off"))) |
| 14441 | (home-page "https://github.com/urfave/negroni") | 14441 | (home-page "https://github.com/urfave/negroni") |
| 14442 | (synopsis "Idiomatic HTTP Middleware for Golang") | 14442 | (synopsis "Idiomatic HTTP Middleware for Golang") |
| 14443 | (description | 14443 | (description |
| @@ -14462,8 +14462,8 @@ tiny,non-intrusive, and encourages use of @code{net/http} Handlers.") | |||
| 14462 | (build-system go-build-system) | 14462 | (build-system go-build-system) |
| 14463 | (arguments | 14463 | (arguments |
| 14464 | (list | 14464 | (list |
| 14465 | #:go go-1.23 | 14465 | #:import-path "github.com/urfave/negroni/v3" |
| 14466 | #:import-path "github.com/urfave/negroni/v3")))) | 14466 | #:test-flags #~(list "-vet=off"))))) |
| 14467 | 14467 | ||
| 14468 | (define-public go-github-com-valyala-fasthttp | 14468 | (define-public go-github-com-valyala-fasthttp |
| 14469 | (package | 14469 | (package |
| @@ -15032,11 +15032,11 @@ programming language.") | |||
| 15032 | (build-system go-build-system) | 15032 | (build-system go-build-system) |
| 15033 | (arguments | 15033 | (arguments |
| 15034 | (list | 15034 | (list |
| 15035 | #:go go-1.23 | ||
| 15036 | ;; validation of time strings. only RFC3339 not all of ISO 8601 are | 15035 | ;; validation of time strings. only RFC3339 not all of ISO 8601 are |
| 15037 | ;; valid. expects: false, given true Schema: {"format":"time"} Data: | 15036 | ;; valid. expects: false, given true Schema: {"format":"time"} Data: |
| 15038 | ;; "01:01:01,1111" | 15037 | ;; "01:01:01,1111" |
| 15039 | #:test-flags #~(list "-skip" "TestFormats") | 15038 | #:test-flags #~(list "-skip" "TestFormats" |
| 15039 | "-vet=off") | ||
| 15040 | #:import-path "github.com/xeipuuv/gojsonschema")) | 15040 | #:import-path "github.com/xeipuuv/gojsonschema")) |
| 15041 | (native-inputs | 15041 | (native-inputs |
| 15042 | (list go-github-com-stretchr-testify)) | 15042 | (list go-github-com-stretchr-testify)) |
| @@ -17386,7 +17386,6 @@ the code or routes.") | |||
| 17386 | (build-system go-build-system) | 17386 | (build-system go-build-system) |
| 17387 | (arguments | 17387 | (arguments |
| 17388 | (list | 17388 | (list |
| 17389 | #:go go-1.23 | ||
| 17390 | #:import-path "maunium.net/go/mautrix" | 17389 | #:import-path "maunium.net/go/mautrix" |
| 17391 | #:embed-files | 17390 | #:embed-files |
| 17392 | #~(list | 17391 | #~(list |
| @@ -17410,7 +17409,8 @@ the code or routes.") | |||
| 17410 | "TestResolveServerName/RM_Step_4" | 17409 | "TestResolveServerName/RM_Step_4" |
| 17411 | "TestResolveServerName/RM_Step_4_MSC4040" | 17410 | "TestResolveServerName/RM_Step_4_MSC4040" |
| 17412 | "TestResolveServerName/maunium") | 17411 | "TestResolveServerName/maunium") |
| 17413 | "|")))) | 17412 | "|") |
| 17413 | "-vet=off"))) | ||
| 17414 | ;; XXX: The final application needs a "libolm" package. | 17414 | ;; XXX: The final application needs a "libolm" package. |
| 17415 | (native-inputs | 17415 | (native-inputs |
| 17416 | (list olm)) | 17416 | (list olm)) |
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 34c74f4a6a5..fd000a0574b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm | |||
| @@ -6370,7 +6370,6 @@ structs in the Go programming language.") | |||
| 6370 | (arguments | 6370 | (arguments |
| 6371 | (list | 6371 | (list |
| 6372 | ;; See <https://github.com/d5/tengo/issues/466>. | 6372 | ;; See <https://github.com/d5/tengo/issues/466>. |
| 6373 | #:go go-1.23 | ||
| 6374 | #:import-path "github.com/d5/tengo/v2" | 6373 | #:import-path "github.com/d5/tengo/v2" |
| 6375 | #:phases | 6374 | #:phases |
| 6376 | #~(modify-phases %standard-phases | 6375 | #~(modify-phases %standard-phases |
| @@ -6379,7 +6378,8 @@ structs in the Go programming language.") | |||
| 6379 | (with-directory-excursion (string-append "src/" import-path) | 6378 | (with-directory-excursion (string-append "src/" import-path) |
| 6380 | (let* ((data (string-append #$output:doc "/share")) | 6379 | (let* ((data (string-append #$output:doc "/share")) |
| 6381 | (doc (string-append data "/doc/" #$name "-" #$version))) | 6380 | (doc (string-append data "/doc/" #$name "-" #$version))) |
| 6382 | (copy-recursively "docs/" doc)))))))) | 6381 | (copy-recursively "docs/" doc)))))) |
| 6382 | #:test-flags #~(list "-vet=off"))) | ||
| 6383 | (home-page "https://github.com/d5/tengo") | 6383 | (home-page "https://github.com/d5/tengo") |
| 6384 | (synopsis "Script language for Go") | 6384 | (synopsis "Script language for Go") |
| 6385 | (description | 6385 | (description |
| @@ -10010,7 +10010,6 @@ size.") | |||
| 10010 | (build-system go-build-system) | 10010 | (build-system go-build-system) |
| 10011 | (arguments | 10011 | (arguments |
| 10012 | (list | 10012 | (list |
| 10013 | #:go go-1.23 | ||
| 10014 | #:import-path "github.com/godbus/dbus" | 10013 | #:import-path "github.com/godbus/dbus" |
| 10015 | #:phases | 10014 | #:phases |
| 10016 | #~(modify-phases %standard-phases | 10015 | #~(modify-phases %standard-phases |
| @@ -10022,7 +10021,9 @@ size.") | |||
| 10022 | "go" "test" "./..." | 10021 | "go" "test" "./..." |
| 10023 | ;; Disable tests which require a system D-Bus | 10022 | ;; Disable tests which require a system D-Bus |
| 10024 | ;; instance. | 10023 | ;; instance. |
| 10025 | "-skip" "TestSystemBus|TestConnectSystemBus")))))))) | 10024 | "-skip" "TestSystemBus|TestConnectSystemBus" |
| 10025 | ;; Disable go vet | ||
| 10026 | "-vet=off")))))))) | ||
| 10026 | (native-inputs | 10027 | (native-inputs |
| 10027 | (list dbus)) ;dbus-launch | 10028 | (list dbus)) ;dbus-launch |
| 10028 | (home-page "https://github.com/godbus/dbus/") | 10029 | (home-page "https://github.com/godbus/dbus/") |
| @@ -11494,7 +11495,6 @@ expressing configuration which is easy for both humans and machines to read.") | |||
| 11494 | (build-system go-build-system) | 11495 | (build-system go-build-system) |
| 11495 | (arguments | 11496 | (arguments |
| 11496 | (list | 11497 | (list |
| 11497 | #:go go-1.23 | ||
| 11498 | #:import-path "github.com/hashicorp/hcl/v2" | 11498 | #:import-path "github.com/hashicorp/hcl/v2" |
| 11499 | #:test-flags | 11499 | #:test-flags |
| 11500 | #~(list "-skip" | 11500 | #~(list "-skip" |
| @@ -11502,7 +11502,8 @@ expressing configuration which is easy for both humans and machines to read.") | |||
| 11502 | (list "TestExpressionParseAndValue/.*unk.*" | 11502 | (list "TestExpressionParseAndValue/.*unk.*" |
| 11503 | "TestFunctionCallExprValue/valid_call_with_unknown_arg.*" | 11503 | "TestFunctionCallExprValue/valid_call_with_unknown_arg.*" |
| 11504 | "TestFunctionCallExprValue/valid_call_with_dynamic_arg") | 11504 | "TestFunctionCallExprValue/valid_call_with_dynamic_arg") |
| 11505 | "|")))) | 11505 | "|") |
| 11506 | "-vet=off"))) | ||
| 11506 | (native-inputs | 11507 | (native-inputs |
| 11507 | (list go-github-com-davecgh-go-spew | 11508 | (list go-github-com-davecgh-go-spew |
| 11508 | go-github-com-go-test-deep | 11509 | go-github-com-go-test-deep |
| @@ -12027,12 +12028,12 @@ better way of handling YAML when marshaling to and from structs.") | |||
| 12027 | (build-system go-build-system) | 12028 | (build-system go-build-system) |
| 12028 | (arguments | 12029 | (arguments |
| 12029 | (list | 12030 | (list |
| 12030 | #:go go-1.23 | ||
| 12031 | #:import-path "github.com/itchyny/go-flags" | 12031 | #:import-path "github.com/itchyny/go-flags" |
| 12032 | ;; Test is time dependent and not reproducible. | 12032 | ;; Test is time dependent and not reproducible. |
| 12033 | ;; -.TH TestMan 1 "1 January 1970" | 12033 | ;; -.TH TestMan 1 "1 January 1970" |
| 12034 | ;; +.TH TestMan 1 "26 June 2025" | 12034 | ;; +.TH TestMan 1 "26 June 2025" |
| 12035 | #:test-flags #~(list "-skip" "TestMan"))) | 12035 | #:test-flags #~(list "-skip" "TestMan" |
| 12036 | "-vet=off"))) | ||
| 12036 | (propagated-inputs | 12037 | (propagated-inputs |
| 12037 | (list go-golang-org-x-sys)) | 12038 | (list go-golang-org-x-sys)) |
| 12038 | (home-page "https://github.com/itchyny/go-flags") | 12039 | (home-page "https://github.com/itchyny/go-flags") |
| @@ -12971,9 +12972,9 @@ Golang.") | |||
| 12971 | (build-system go-build-system) | 12972 | (build-system go-build-system) |
| 12972 | (arguments | 12973 | (arguments |
| 12973 | (list | 12974 | (list |
| 12974 | #:go go-1.23 | ||
| 12975 | #:skip-build? #t | 12975 | #:skip-build? #t |
| 12976 | #:import-path "github.com/jedib0t/go-pretty/v6")) | 12976 | #:import-path "github.com/jedib0t/go-pretty/v6" |
| 12977 | #:test-flags #~(list "-vet=off"))) | ||
| 12977 | (native-inputs | 12978 | (native-inputs |
| 12978 | (list go-github-com-pkg-profile ; for the CLI | 12979 | (list go-github-com-pkg-profile ; for the CLI |
| 12979 | go-github-com-stretchr-testify)) | 12980 | go-github-com-stretchr-testify)) |
| @@ -13031,9 +13032,9 @@ hierarchies of @code{map[string]interface{}} objects provided by the | |||
| 13031 | (build-system go-build-system) | 13032 | (build-system go-build-system) |
| 13032 | (arguments | 13033 | (arguments |
| 13033 | (list | 13034 | (list |
| 13034 | #:go go-1.23 | ||
| 13035 | #:import-path "github.com/jessevdk/go-flags" | 13035 | #:import-path "github.com/jessevdk/go-flags" |
| 13036 | #:test-flags #~(list "-skip" "TestCompletion|TestParserCompletion"))) | 13036 | #:test-flags #~(list "-skip" "TestCompletion|TestParserCompletion" |
| 13037 | "-vet=off"))) | ||
| 13037 | (propagated-inputs | 13038 | (propagated-inputs |
| 13038 | (list go-golang-org-x-sys)) | 13039 | (list go-golang-org-x-sys)) |
| 13039 | (home-page "https://github.com/jessevdk/go-flags") | 13040 | (home-page "https://github.com/jessevdk/go-flags") |
| @@ -16238,7 +16239,6 @@ string.") | |||
| 16238 | (build-system go-build-system) | 16239 | (build-system go-build-system) |
| 16239 | (arguments | 16240 | (arguments |
| 16240 | (list | 16241 | (list |
| 16241 | #:go go-1.23 | ||
| 16242 | #:import-path "github.com/mattn/go-shellwords" | 16242 | #:import-path "github.com/mattn/go-shellwords" |
| 16243 | #:phases | 16243 | #:phases |
| 16244 | #~(modify-phases %standard-phases | 16244 | #~(modify-phases %standard-phases |
| @@ -16246,7 +16246,8 @@ string.") | |||
| 16246 | (lambda* (#:key import-path #:allow-other-keys) | 16246 | (lambda* (#:key import-path #:allow-other-keys) |
| 16247 | (substitute* (string-append | 16247 | (substitute* (string-append |
| 16248 | "src/" import-path "/util_posix.go") | 16248 | "src/" import-path "/util_posix.go") |
| 16249 | (("/bin/sh") (which "sh")))))))) | 16249 | (("/bin/sh") (which "sh")))))) |
| 16250 | #:test-flags #~(list "-vet=off"))) | ||
| 16250 | (home-page "https://github.com/mattn/go-shellwords") | 16251 | (home-page "https://github.com/mattn/go-shellwords") |
| 16251 | (synopsis "Parse lines into shell words") | 16252 | (synopsis "Parse lines into shell words") |
| 16252 | (description "This package parses text into shell arguments. Based on | 16253 | (description "This package parses text into shell arguments. Based on |
| @@ -17193,14 +17194,14 @@ https://github.com/syndtr/gocapability.") | |||
| 17193 | (build-system go-build-system) | 17194 | (build-system go-build-system) |
| 17194 | (arguments | 17195 | (arguments |
| 17195 | (list | 17196 | (list |
| 17196 | #:go go-1.23 | ||
| 17197 | #:import-path "github.com/moby/sys/mountinfo" | 17197 | #:import-path "github.com/moby/sys/mountinfo" |
| 17198 | #:unpack-path "github.com/moby/sys" | 17198 | #:unpack-path "github.com/moby/sys" |
| 17199 | #:test-flags | 17199 | #:test-flags |
| 17200 | #~(list "-skip" (string-join | 17200 | #~(list "-skip" (string-join |
| 17201 | (list "TestMountedBy/not_mounted_socket" | 17201 | (list "TestMountedBy/not_mounted_socket" |
| 17202 | "TestMountedBy/socket_bind-mounted_to_itself") | 17202 | "TestMountedBy/socket_bind-mounted_to_itself") |
| 17203 | "|")))) | 17203 | "|") |
| 17204 | "-vet=off"))) | ||
| 17204 | (propagated-inputs (list go-golang-org-x-sys)) | 17205 | (propagated-inputs (list go-golang-org-x-sys)) |
| 17205 | (home-page "https://github.com/moby/sys") | 17206 | (home-page "https://github.com/moby/sys") |
| 17206 | (synopsis "Retrieve information about OS mounts") | 17207 | (synopsis "Retrieve information about OS mounts") |
| @@ -18454,9 +18455,9 @@ pretty printed rendering in Golang.") | |||
| 18454 | (build-system go-build-system) | 18455 | (build-system go-build-system) |
| 18455 | (arguments | 18456 | (arguments |
| 18456 | (list | 18457 | (list |
| 18457 | #:go go-1.23 | ||
| 18458 | #:skip-build? #t | 18458 | #:skip-build? #t |
| 18459 | #:import-path "github.com/nlpodyssey/spago")) | 18459 | #:import-path "github.com/nlpodyssey/spago" |
| 18460 | #:test-flags #~(list "-vet=off"))) | ||
| 18460 | (native-inputs | 18461 | (native-inputs |
| 18461 | (list go-github-com-stretchr-testify)) | 18462 | (list go-github-com-stretchr-testify)) |
| 18462 | (propagated-inputs | 18463 | (propagated-inputs |
| @@ -20132,7 +20133,6 @@ on top of the standard library @code{flag} package.") | |||
| 20132 | (build-system go-build-system) | 20133 | (build-system go-build-system) |
| 20133 | (arguments | 20134 | (arguments |
| 20134 | (list | 20135 | (list |
| 20135 | #:go go-1.23 | ||
| 20136 | #:import-path "github.com/pingcap/errors" | 20136 | #:import-path "github.com/pingcap/errors" |
| 20137 | #:test-flags | 20137 | #:test-flags |
| 20138 | #~(list "-skip" (string-join | 20138 | #~(list "-skip" (string-join |
| @@ -20147,7 +20147,8 @@ on top of the standard library @code{flag} package.") | |||
| 20147 | "TestFrameLine" | 20147 | "TestFrameLine" |
| 20148 | "TestStackTrace" | 20148 | "TestStackTrace" |
| 20149 | "TestStackTraceFormat") | 20149 | "TestStackTraceFormat") |
| 20150 | "|")))) | 20150 | "|") |
| 20151 | "-vet=off"))) | ||
| 20151 | (native-inputs | 20152 | (native-inputs |
| 20152 | (list go-github-com-pkg-errors)) | 20153 | (list go-github-com-pkg-errors)) |
| 20153 | (home-page "https://github.com/pingcap/errors") | 20154 | (home-page "https://github.com/pingcap/errors") |
| @@ -20290,9 +20291,9 @@ https://en.wikipedia.org/wiki/Extended_file_attributes}.") | |||
| 20290 | (build-system go-build-system) | 20291 | (build-system go-build-system) |
| 20291 | (arguments | 20292 | (arguments |
| 20292 | (list | 20293 | (list |
| 20293 | #:go go-1.23 | ||
| 20294 | #:import-path "github.com/pmezard/go-difflib/difflib" | 20294 | #:import-path "github.com/pmezard/go-difflib/difflib" |
| 20295 | #:unpack-path "github.com/pmezard/go-difflib/")) | 20295 | #:unpack-path "github.com/pmezard/go-difflib/" |
| 20296 | #:test-flags #~(list "-vet=off"))) | ||
| 20296 | (home-page "https://github.com/pmezard/go-difflib") | 20297 | (home-page "https://github.com/pmezard/go-difflib") |
| 20297 | (synopsis "Go diff implementation") | 20298 | (synopsis "Go diff implementation") |
| 20298 | (description | 20299 | (description |
| @@ -21064,8 +21065,8 @@ logging.") | |||
| 21064 | (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) | 21065 | (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7")))) |
| 21065 | (arguments | 21066 | (arguments |
| 21066 | (list | 21067 | (list |
| 21067 | #:go go-1.23 | 21068 | #:import-path "github.com/russross/blackfriday/v2" |
| 21068 | #:import-path "github.com/russross/blackfriday/v2")))) | 21069 | #:test-flags #~(list "-vet=off"))))) |
| 21069 | 21070 | ||
| 21070 | (define-public go-github-com-rvflash-elapsed | 21071 | (define-public go-github-com-rvflash-elapsed |
| 21071 | (package | 21072 | (package |
| @@ -26835,7 +26836,6 @@ written in YAML or JSON.") | |||
| 26835 | (build-system go-build-system) | 26836 | (build-system go-build-system) |
| 26836 | (arguments | 26837 | (arguments |
| 26837 | (list | 26838 | (list |
| 26838 | #:go go-1.23 | ||
| 26839 | #:import-path "go.mongodb.org/mongo-driver" | 26839 | #:import-path "go.mongodb.org/mongo-driver" |
| 26840 | #:test-flags | 26840 | #:test-flags |
| 26841 | #~(list "-skip" | 26841 | #~(list "-skip" |
| @@ -26852,7 +26852,8 @@ written in YAML or JSON.") | |||
| 26852 | "TestTimeCodec" | 26852 | "TestTimeCodec" |
| 26853 | "TestTopologyConstructionLogging" | 26853 | "TestTopologyConstructionLogging" |
| 26854 | "TestURIOptionsSpec") | 26854 | "TestURIOptionsSpec") |
| 26855 | "|")) | 26855 | "|") |
| 26856 | "-vet=off") | ||
| 26856 | #:test-subdirs | 26857 | #:test-subdirs |
| 26857 | #~(list "bson/..." "event/..." "internal/..." "tag/..." "x/...") | 26858 | #~(list "bson/..." "event/..." "internal/..." "tag/..." "x/...") |
| 26858 | #:phases | 26859 | #:phases |
| @@ -27320,7 +27321,6 @@ organization}.") | |||
| 27320 | (build-system go-build-system) | 27321 | (build-system go-build-system) |
| 27321 | (arguments | 27322 | (arguments |
| 27322 | (list | 27323 | (list |
| 27323 | #:go go-1.23 | ||
| 27324 | #:skip-build? #t | 27324 | #:skip-build? #t |
| 27325 | #:import-path "go4.org" | 27325 | #:import-path "go4.org" |
| 27326 | #:test-subdirs | 27326 | #:test-subdirs |
| @@ -27356,7 +27356,8 @@ organization}.") | |||
| 27356 | (lambda* (#:key import-path #:allow-other-keys) | 27356 | (lambda* (#:key import-path #:allow-other-keys) |
| 27357 | (with-directory-excursion (string-append "src/" import-path) | 27357 | (with-directory-excursion (string-append "src/" import-path) |
| 27358 | (for-each delete-file | 27358 | (for-each delete-file |
| 27359 | (find-files "." "example.*_test\\.go$")))))))) | 27359 | (find-files "." "example.*_test\\.go$")))))) |
| 27360 | #:test-flags #~(list "-vet=off"))) | ||
| 27360 | (propagated-inputs | 27361 | (propagated-inputs |
| 27361 | (list ;; go-cloud-google-com-go | 27362 | (list ;; go-cloud-google-com-go |
| 27362 | ;; go-cloud-google-com-go-storage | 27363 | ;; go-cloud-google-com-go-storage |
| @@ -28236,7 +28237,6 @@ split out here for ease of reuse and maintainability.") | |||
| 28236 | (build-system go-build-system) | 28237 | (build-system go-build-system) |
| 28237 | (arguments | 28238 | (arguments |
| 28238 | (list | 28239 | (list |
| 28239 | #:go go-1.23 | ||
| 28240 | #:import-path "k8s.io/klog/v2" | 28240 | #:import-path "k8s.io/klog/v2" |
| 28241 | #:test-flags | 28241 | #:test-flags |
| 28242 | #~(list "-skip" | 28242 | #~(list "-skip" |
| @@ -28246,7 +28246,8 @@ split out here for ease of reuse and maintainability.") | |||
| 28246 | "TestDestinationsWithDifferentFlags/with_log_dir_only" | 28246 | "TestDestinationsWithDifferentFlags/with_log_dir_only" |
| 28247 | "TestDestinationsWithDifferentFlags/with_log_dir_only_and_one_output" | 28247 | "TestDestinationsWithDifferentFlags/with_log_dir_only_and_one_output" |
| 28248 | "TestDestinationsWithDifferentFlags/with_log_file_and_log_dir") | 28248 | "TestDestinationsWithDifferentFlags/with_log_file_and_log_dir") |
| 28249 | "|")) | 28249 | "|") |
| 28250 | "-vet=off") | ||
| 28250 | #:phases | 28251 | #:phases |
| 28251 | #~(modify-phases %standard-phases | 28252 | #~(modify-phases %standard-phases |
| 28252 | (add-after 'unpack 'remove-examples | 28253 | (add-after 'unpack 'remove-examples |
| @@ -29462,14 +29463,14 @@ libraries.") | |||
| 29462 | (build-system go-build-system) | 29463 | (build-system go-build-system) |
| 29463 | (arguments | 29464 | (arguments |
| 29464 | (list | 29465 | (list |
| 29465 | #:go go-1.23 | ||
| 29466 | #:import-path "sigs.k8s.io/kustomize/kyaml" | 29466 | #:import-path "sigs.k8s.io/kustomize/kyaml" |
| 29467 | #:unpack-path "sigs.k8s.io/kustomize" | 29467 | #:unpack-path "sigs.k8s.io/kustomize" |
| 29468 | #:test-flags | 29468 | #:test-flags |
| 29469 | #~(list "-skip" (string-join | 29469 | #~(list "-skip" (string-join |
| 29470 | (list "TestCommandResultsChecker_UpdateExpectedFromActual" | 29470 | (list "TestCommandResultsChecker_UpdateExpectedFromActual" |
| 29471 | "TestProcessorResultsChecker_UpdateExpectedFromActual") | 29471 | "TestProcessorResultsChecker_UpdateExpectedFromActual") |
| 29472 | "|")))) | 29472 | "|") |
| 29473 | "-vet=off"))) | ||
| 29473 | (native-inputs | 29474 | (native-inputs |
| 29474 | (list go-github-com-stretchr-testify | 29475 | (list go-github-com-stretchr-testify |
| 29475 | go-github-com-davecgh-go-spew)) | 29476 | go-github-com-davecgh-go-spew)) |
| @@ -29787,9 +29788,9 @@ helpful utility functions, and makes testing fairly easy.") | |||
| 29787 | (build-system go-build-system) | 29788 | (build-system go-build-system) |
| 29788 | (arguments | 29789 | (arguments |
| 29789 | (list | 29790 | (list |
| 29790 | #:go go-1.23 | ||
| 29791 | #:import-path "zgo.at/zstd" | 29791 | #:import-path "zgo.at/zstd" |
| 29792 | #:test-flags #~(list "-skip" "TestExists/4"))) | 29792 | #:test-flags #~(list "-skip" "TestExists/4" |
| 29793 | "-vet=off"))) | ||
| 29793 | (home-page "https://github.com/arp242/zstd") | 29794 | (home-page "https://github.com/arp242/zstd") |
| 29794 | (synopsis "Extensions to Go's standard library") | 29795 | (synopsis "Extensions to Go's standard library") |
| 29795 | (description | 29796 | (description |
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 78390c1dce2..2c220019041 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm | |||
| @@ -1240,7 +1240,6 @@ seen, tell, and what.") | |||
| 1240 | (build-system go-build-system) | 1240 | (build-system go-build-system) |
| 1241 | (arguments | 1241 | (arguments |
| 1242 | (list | 1242 | (list |
| 1243 | #:go go-1.23 | ||
| 1244 | #:install-source? #f | 1243 | #:install-source? #f |
| 1245 | #:import-path "codeberg.org/emersion/soju" | 1244 | #:import-path "codeberg.org/emersion/soju" |
| 1246 | #:phases | 1245 | #:phases |
| @@ -1265,7 +1264,8 @@ seen, tell, and what.") | |||
| 1265 | (lambda* (#:key import-path #:allow-other-keys) | 1264 | (lambda* (#:key import-path #:allow-other-keys) |
| 1266 | (with-directory-excursion (string-append "src/" import-path) | 1265 | (with-directory-excursion (string-append "src/" import-path) |
| 1267 | (setenv "PREFIX" #$output) | 1266 | (setenv "PREFIX" #$output) |
| 1268 | (invoke "make" "install"))))))) | 1267 | (invoke "make" "install"))))) |
| 1268 | #:test-flags #~(list "-vet=off"))) | ||
| 1269 | (native-inputs | 1269 | (native-inputs |
| 1270 | (list go-codeberg-org-emersion-go-scfg | 1270 | (list go-codeberg-org-emersion-go-scfg |
| 1271 | go-git-sr-ht-emersion-go-sqlite3-fts5 | 1271 | go-git-sr-ht-emersion-go-sqlite3-fts5 |
diff --git a/gnu/packages/password-utils.scm b/gnu/packages/password-utils.scm index 2f77f23d65d..b8fb0e467c1 100644 --- a/gnu/packages/password-utils.scm +++ b/gnu/packages/password-utils.scm | |||
| @@ -157,7 +157,6 @@ | |||
| 157 | (build-system go-build-system) | 157 | (build-system go-build-system) |
| 158 | (arguments | 158 | (arguments |
| 159 | (list | 159 | (list |
| 160 | #:go go-1.23 | ||
| 161 | #:install-source? #f | 160 | #:install-source? #f |
| 162 | #:import-path "github.com/99designs/aws-vault" | 161 | #:import-path "github.com/99designs/aws-vault" |
| 163 | #:build-flags | 162 | #:build-flags |
| @@ -187,7 +186,8 @@ | |||
| 187 | ;; denied. | 186 | ;; denied. |
| 188 | (add-before 'check 'set-home | 187 | (add-before 'check 'set-home |
| 189 | (lambda _ | 188 | (lambda _ |
| 190 | (setenv "HOME" "/tmp")))))) | 189 | (setenv "HOME" "/tmp")))) |
| 190 | #:test-flags #~(list "-vet=off"))) | ||
| 191 | (native-inputs | 191 | (native-inputs |
| 192 | (list go-github-com-99designs-keyring | 192 | (list go-github-com-99designs-keyring |
| 193 | go-github-com-alecthomas-kingpin-v2 | 193 | go-github-com-alecthomas-kingpin-v2 |
diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm index 17ee361da62..0a7865cb103 100644 --- a/gnu/packages/text-editors.scm +++ b/gnu/packages/text-editors.scm | |||
| @@ -183,7 +183,6 @@ extensions over the standard utility.") | |||
| 183 | (build-system go-build-system) | 183 | (build-system go-build-system) |
| 184 | (arguments | 184 | (arguments |
| 185 | (list | 185 | (list |
| 186 | #:go go-1.23 | ||
| 187 | #:install-source? #f | 186 | #:install-source? #f |
| 188 | #:import-path "github.com/zyedidia/micro/v2/cmd/micro" | 187 | #:import-path "github.com/zyedidia/micro/v2/cmd/micro" |
| 189 | #:unpack-path "github.com/zyedidia/micro/v2" | 188 | #:unpack-path "github.com/zyedidia/micro/v2" |
| @@ -208,7 +207,8 @@ extensions over the standard utility.") | |||
| 208 | (add-before 'build 'go-generate | 207 | (add-before 'build 'go-generate |
| 209 | (lambda _ | 208 | (lambda _ |
| 210 | (invoke "go" "generate" "-v" "-x" | 209 | (invoke "go" "generate" "-v" "-x" |
| 211 | "github.com/zyedidia/micro/v2/runtime")))))) | 210 | "github.com/zyedidia/micro/v2/runtime")))) |
| 211 | #:test-flags #~(list "-vet=off"))) | ||
| 212 | (inputs (list go-github-com-blang-semver | 212 | (inputs (list go-github-com-blang-semver |
| 213 | go-github-com-dustin-go-humanize | 213 | go-github-com-dustin-go-humanize |
| 214 | go-github-com-go-errors-errors | 214 | go-github-com-go-errors-errors |
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 98196bec3a6..aff990292d7 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm | |||
| @@ -4704,7 +4704,6 @@ developer workflow, and project and release management.") | |||
| 4704 | (build-system go-build-system) | 4704 | (build-system go-build-system) |
| 4705 | (arguments | 4705 | (arguments |
| 4706 | (list | 4706 | (list |
| 4707 | #:go go-1.23 | ||
| 4708 | #:import-path "git.sr.ht/~xenrox/hut" | 4707 | #:import-path "git.sr.ht/~xenrox/hut" |
| 4709 | #:phases | 4708 | #:phases |
| 4710 | #~(modify-phases %standard-phases | 4709 | #~(modify-phases %standard-phases |
| @@ -4718,7 +4717,8 @@ developer workflow, and project and release management.") | |||
| 4718 | (lambda* (#:key import-path #:allow-other-keys) | 4717 | (lambda* (#:key import-path #:allow-other-keys) |
| 4719 | (with-directory-excursion (string-append "src/" import-path) | 4718 | (with-directory-excursion (string-append "src/" import-path) |
| 4720 | (invoke "make" "install" | 4719 | (invoke "make" "install" |
| 4721 | (string-append "PREFIX=" #$output)))))))) | 4720 | (string-append "PREFIX=" #$output)))))) |
| 4721 | #:test-flags #~(list "-vet=off"))) | ||
| 4722 | (native-inputs | 4722 | (native-inputs |
| 4723 | (list scdoc)) | 4723 | (list scdoc)) |
| 4724 | (inputs | 4724 | (inputs |
diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm index 054c03215c6..2ee75b95a75 100644 --- a/gnu/packages/video.scm +++ b/gnu/packages/video.scm | |||
| @@ -3516,7 +3516,6 @@ playlists.") | |||
| 3516 | (build-system go-build-system) | 3516 | (build-system go-build-system) |
| 3517 | (arguments | 3517 | (arguments |
| 3518 | (list | 3518 | (list |
| 3519 | #:go go-1.23 | ||
| 3520 | #:install-source? #f | 3519 | #:install-source? #f |
| 3521 | #:import-path "github.com/Kethsar/ytarchive" | 3520 | #:import-path "github.com/Kethsar/ytarchive" |
| 3522 | #:embed-files #~(list "children" "nodes" "text") | 3521 | #:embed-files #~(list "children" "nodes" "text") |
| @@ -3527,7 +3526,8 @@ playlists.") | |||
| 3527 | (wrap-program (string-append #$output "/bin/ytarchive") | 3526 | (wrap-program (string-append #$output "/bin/ytarchive") |
| 3528 | `("PATH" ":" prefix | 3527 | `("PATH" ":" prefix |
| 3529 | (,(string-append #$(this-package-input "ffmpeg") | 3528 | (,(string-append #$(this-package-input "ffmpeg") |
| 3530 | "/bin/ffmpeg"))))))))) | 3529 | "/bin/ffmpeg"))))))) |
| 3530 | #:test-flags #~(list "-vet=off"))) | ||
| 3531 | (native-inputs | 3531 | (native-inputs |
| 3532 | (list go-github-com-alessio-shellescape | 3532 | (list go-github-com-alessio-shellescape |
| 3533 | go-github-com-dannav-hhmmss | 3533 | go-github-com-dannav-hhmmss |
diff --git a/gnu/packages/web-browsers.scm b/gnu/packages/web-browsers.scm index a867e9fc9bd..f4066f7d858 100644 --- a/gnu/packages/web-browsers.scm +++ b/gnu/packages/web-browsers.scm | |||
| @@ -795,7 +795,6 @@ history, and page outlines.") | |||
| 795 | (build-system go-build-system) | 795 | (build-system go-build-system) |
| 796 | (arguments | 796 | (arguments |
| 797 | (list | 797 | (list |
| 798 | #:go go-1.23 | ||
| 799 | #:import-path "tildegit.org/sloum/bombadillo" | 798 | #:import-path "tildegit.org/sloum/bombadillo" |
| 800 | #:install-source? #f | 799 | #:install-source? #f |
| 801 | #:phases | 800 | #:phases |
| @@ -812,7 +811,8 @@ history, and page outlines.") | |||
| 812 | (with-directory-excursion builddir | 811 | (with-directory-excursion builddir |
| 813 | (install-file "bombadillo.desktop" appdir) | 812 | (install-file "bombadillo.desktop" appdir) |
| 814 | (install-file "bombadillo.1" mandir) | 813 | (install-file "bombadillo.1" mandir) |
| 815 | (install-file "bombadillo-icon.png" pixdir)))))))) | 814 | (install-file "bombadillo-icon.png" pixdir)))))) |
| 815 | #:test-flags #~(list "-vet=off"))) | ||
| 816 | (home-page "https://bombadillo.colorfield.space") | 816 | (home-page "https://bombadillo.colorfield.space") |
| 817 | (synopsis "Terminal browser for the gopher, gemini, and finger protocols") | 817 | (synopsis "Terminal browser for the gopher, gemini, and finger protocols") |
| 818 | (description "Bombadillo is a non-web browser for the terminal with | 818 | (description "Bombadillo is a non-web browser for the terminal with |
diff --git a/gnu/packages/web.scm b/gnu/packages/web.scm index 65d80a58f36..50f6588f526 100644 --- a/gnu/packages/web.scm +++ b/gnu/packages/web.scm | |||
| @@ -1573,7 +1573,7 @@ project) | |||
| 1573 | (delete-file-recursively "vendor"))))) | 1573 | (delete-file-recursively "vendor"))))) |
| 1574 | (build-system go-build-system) | 1574 | (build-system go-build-system) |
| 1575 | (arguments | 1575 | (arguments |
| 1576 | (list #:go go-1.23 | 1576 | (list |
| 1577 | #:import-path "github.com/adnanh/webhook" | 1577 | #:import-path "github.com/adnanh/webhook" |
| 1578 | #:phases | 1578 | #:phases |
| 1579 | #~(modify-phases %standard-phases | 1579 | #~(modify-phases %standard-phases |
| @@ -1583,7 +1583,8 @@ project) | |||
| 1583 | (("/bin/echo") | 1583 | (("/bin/echo") |
| 1584 | (search-input-file inputs "bin/echo")) | 1584 | (search-input-file inputs "bin/echo")) |
| 1585 | (("/bin/sh") | 1585 | (("/bin/sh") |
| 1586 | (search-input-file inputs "bin/sh")))))))) | 1586 | (search-input-file inputs "bin/sh")))))) |
| 1587 | #:test-flags #~(list "-vet=off"))) | ||
| 1587 | (native-inputs | 1588 | (native-inputs |
| 1588 | (list go-github-com-clbanning-mxj-v2 | 1589 | (list go-github-com-clbanning-mxj-v2 |
| 1589 | go-github-com-coreos-go-systemd-v22 | 1590 | go-github-com-coreos-go-systemd-v22 |
