[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/13: gnu: go-github-com-masterminds-semver: Move to golang-xyz.
From: |
guix-commits |
Subject: |
07/13: gnu: go-github-com-masterminds-semver: Move to golang-xyz. |
Date: |
Fri, 28 Jun 2024 10:40:27 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 1526c615bcfa90e64bd5536d533db23cffed6382
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Tue Jun 18 17:34:29 2024 +0100
gnu: go-github-com-masterminds-semver: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-masterminds-semver): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I267210f30143c29fe1927e7fbf9ae8cdff633092
---
gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 28 ----------------------------
2 files changed, 30 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index ca48d5ed6c..c0e2c24906 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2343,6 +2343,36 @@ implementing features like:
@end itemize")
(license license:expat))))
+(define-public go-github-com-masterminds-semver
+ (package
+ (name "go-github-com-masterminds-semver")
+ (version "3.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Masterminds/semver")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1g1wizfdy29d02l9dh8gsb029yr4m4swp13swf0pnh9ryh5f1msz"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/Masterminds/semver"))
+ (home-page "https://github.com/Masterminds/semver/")
+ (synopsis "@code{semver} helps to work with semantic versions")
+ (description
+ "The semver package provides the ability to work with
+semantic versions. Specifically it provides the ability to:
+@itemize
+@item Parse semantic versions
+@item Sort semantic versions
+@item Check if a semantic version fits within a set of constraints
+@item Optionally work with a @code{v} prefix
+@end itemize")
+ (license license:expat)))
+
(define-public go-github-com-masterminds-sprig-v3
(package
(name "go-github-com-masterminds-sprig-v3")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 9618d33e29..0e95691d1f 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -6704,34 +6704,6 @@ various ways. It is a Go implementation of some string
manipulation libraries
of Java Apache Commons.")
(license license:asl2.0)))
-(define-public go-github-com-masterminds-semver
- (package
- (name "go-github-com-masterminds-semver")
- (version "3.1.0")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/Masterminds/semver")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1g1wizfdy29d02l9dh8gsb029yr4m4swp13swf0pnh9ryh5f1msz"))))
- (build-system go-build-system)
- (arguments
- `(#:import-path "github.com/Masterminds/semver"))
- (home-page "https://github.com/Masterminds/semver/")
- (synopsis "@code{semver} helps to work with semantic versions")
- (description "The semver package provides the ability to work with
-semantic versions. Specifically it provides the ability to:
-@itemize
-@item Parse semantic versions
-@item Sort semantic versions
-@item Check if a semantic version fits within a set of constraints
-@item Optionally work with a @code{v} prefix
-@end itemize\n")
- (license license:expat)))
-
(define-public go-github-com-huandu-xstrings
(package
(name "go-github-com-huandu-xstrings")
- 09/13: gnu: go-github-com-masterminds-semver-v3: Update to 3.2.1., (continued)
- 09/13: gnu: go-github-com-masterminds-semver-v3: Update to 3.2.1., guix-commits, 2024/06/28
- 04/13: gnu: chezmoi: Refresh package style., guix-commits, 2024/06/28
- 01/13: gnu: go-github-com-nwaples-rardecode-v2: Rename variable., guix-commits, 2024/06/28
- 03/13: gnu: chezmoi: Remove propagated inputs., guix-commits, 2024/06/28
- 10/13: gnu: go-github-com-klauspost-cpuid: Move to golang-xyz., guix-commits, 2024/06/28
- 06/13: gnu: go-github-com-masterminds-sprig-v3: Enable tests., guix-commits, 2024/06/28
- 12/13: gnu: Add go-github-com-bmatcuk-doublestar-v4., guix-commits, 2024/06/28
- 11/13: gnu: Add go-github-com-klauspost-cpuid-v2., guix-commits, 2024/06/28
- 05/13: gnu: go-github-com-masterminds-sprig: Rename variable., guix-commits, 2024/06/28
- 13/13: gnu: go-github-com-dlclark-regexp2: Move to golang-xyz., guix-commits, 2024/06/28
- 07/13: gnu: go-github-com-masterminds-semver: Move to golang-xyz.,
guix-commits <=