diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-30 11:27:26 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:39 +0000 |
commit | 35a0b4cdaec79b984f06f0900268ccb1f88c3652 (patch) | |
tree | f8296cb039396175f433d9a86227dd3358e94884 | |
parent | 07536320d6ef8f55698cc2ba3e434d3499dfd79c (diff) |
gnu: Remove go-gopkg-in-ini.
This package fails to build and not in use by any other in Guix, the
successor is go-github-com-go-ini-ini.
* gnu/packages/golang.scm (go-gopkg-in-ini): Delete variable.
(go-github-com-go-ini-ini): Overwrite package definition.
Change-Id: I4254df32f610ea33581ab5746f8cc62222777458
-rw-r--r-- | gnu/packages/golang.scm | 37 |
1 files changed, 7 insertions, 30 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 3f68ee16d0..520704e191 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -4884,37 +4884,8 @@ aware of your profiles and configuration in ~/.aws/config.") (define-public go-github-com-androiddnsfix (deprecated-package "go-github-com-androiddnsfix" go-github-com-mtibben-androiddnsfix)) -(define-public go-gopkg-in-ini - (package - (name "go-gopkg-in-ini") - (version "1.62.0") - (source (origin - (method git-fetch) - (uri (git-reference - (url "https://gopkg.in/ini.v1") - (commit (string-append "v" version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 - "1dm9ydqyflasp5li22kb0w73s6kp2swii8naqfhnz64v171gmm5v")))) - (build-system go-build-system) - (native-inputs - (list go-github-com-smartystreets-goconvey)) - (arguments - '(#:import-path "gopkg.in/ini.v1" - #:phases %standard-phases)) - (synopsis "INI file read and write functionality in Go") - (description - "This package provides INI file read and write functionality in Go.") - (home-page "https://gopkg.in/ini.v1") - (license license:asl2.0))) - -;;; XXX: Since commit bfb61065f05a6eac0cf63b16db43d0c3e864c658, the -;;; canonical name of the ini package is `go-github-com-go-ini-ini`, -;;; not `go-gopkg-in-ini`. (define-public go-github-com-go-ini-ini (package - (inherit go-gopkg-in-ini) (name "go-github-com-go-ini-ini") (version "1.67.0") (source (origin @@ -4926,9 +4897,15 @@ aware of your profiles and configuration in ~/.aws/config.") (sha256 (base32 "1vpzkjmrwp7bqqsijp61293kk2vn6lcck56j8m5y6ks6cf21lpap")))) + (build-system go-build-system) (arguments (list #:import-path "github.com/go-ini/ini")) - (propagated-inputs (list go-github-com-stretchr-testify)))) + (propagated-inputs (list go-github-com-stretchr-testify)) + (home-page "https://gopkg.in/ini.v1") + (synopsis "INI file read and write functionality in Go") + (description + "This package provides INI file read and write functionality in Go.") + (license license:asl2.0))) (define-public go-github-com-dreamacro-go-shadowsocks2 (package |