gnu: go-github-com-prometheus-exporter-toolkit: Fix build.

* gnu/packages/prometheus.scm (go-github-com-prometheus-exporter-toolkit):
Fix build
[arguments]: <#:phases>: Add 'fix-embed-editions-defaults-binpb phase;
remove 'disable-failing-tests in favor of "-skip" test flags.
[native-inputs]: Add go-google-golang-org-protobuf.

Change-Id: If573aa261adc3a136a4907267d1427a9f9cfb4d9
This commit is contained in:
Sharlatan Hellseher 2024-09-13 22:00:22 +01:00
parent f40fde0e85
commit 449fa18bf6
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -405,20 +405,33 @@ from the default AWS credential chain.")
#:import-path "github.com/prometheus/exporter-toolkit"
#:phases
#~(modify-phases %standard-phases
(add-after 'unpack 'disable-failing-tests
(lambda* (#:key tests? import-path #:allow-other-keys)
(with-directory-excursion (string-append "src/" import-path)
(substitute* (find-files "." "\\_test.go$")
;; Some tests require network set up.
(("TestServerBehaviour") "OffTestServerBehaviour")
(("TestConfigReloading") "OffTestConfigReloading")))))
(add-after 'unpack 'fix-embed-editions-defaults-binpb
(lambda _
(let* ((import-path "google.golang.org/protobuf")
(subdir "internal/editiondefaults")
(embed-file "editions_defaults.binpb")
(embed-file-path
(string-append "src/"
import-path "/"
subdir "/"
embed-file)))
(delete-file-recursively embed-file-path)
(copy-file
(string-append
#$(this-package-native-input "go-google-golang-org-protobuf")
"/" embed-file-path)
embed-file-path))))
;; XXX: Workaround for go-build-system's lack of Go modules support.
(delete 'build)
(replace 'check
(lambda* (#:key tests? import-path #:allow-other-keys)
(when tests?
(with-directory-excursion (string-append "src/" import-path)
(invoke "go" "test" "-v" "./..."))))))))
(invoke "go" "test" "-v"
"-skip" "TestServerBehaviour|TestConfigReloading"
"./..."))))))))
(native-inputs
(list go-google-golang-org-protobuf))
(propagated-inputs
(list go-github-com-alecthomas-kingpin-v2
go-github-com-coreos-go-systemd-v22