[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: Add go-github-com-blang-semver-v4.
From: |
guix-commits |
Subject: |
03/09: gnu: Add go-github-com-blang-semver-v4. |
Date: |
Fri, 15 Mar 2024 20:03:54 -0400 (EDT) |
sharlatan pushed a commit to branch master
in repository guix.
commit 024a0e2288e561a2d4f6ce11437917e2c31e1101
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Wed Feb 28 21:18:35 2024 +0000
gnu: Add go-github-com-blang-semver-v4.
* gnu/packages/golang-xyz.scm (go-github-com-blang-semver-v4): New variable.
Change-Id: I87132b1b727b7e6ef4d46bb08dc5ad509db4e2e4
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 425a6f15af..2b0aa97f99 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -306,6 +306,31 @@ information and periodically output metrics")
"Semver is a library for Semantic versioning written in Go.")
(license license:expat)))
+(define-public go-github-com-blang-semver-v4
+ (package
+ (inherit go-github-com-blang-semver)
+ (name "go-github-com-blang-semver-v4")
+ (version "4.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/blang/semver")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "14h9ys4n4kx9cbj42lkdf4i5k3nkll6sd62jcvl7cs565v6fiknz"))))
+ (arguments
+ (list
+ #:import-path "github.com/blang/semver/v4"
+ #:unpack-path "github.com/blang/semver"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'remove-examples
+ (lambda* (#:key import-path #:allow-other-keys)
+ (delete-file-recursively
+ (string-append "src/" import-path "/examples")))))))))
+
(define-public go-github-com-bmizerany-perks-quantile
(package
(name "go-github-com-bmizerany-perks-quantile")
- branch master updated (868e21bb76 -> 6f05c96f96), guix-commits, 2024/03/15
- 01/09: gnu: go-github-com-blang-semver: Update to 3.8.0., guix-commits, 2024/03/15
- 09/09: gnu: go-github-com-bwesterb-go-ristretto: Move to golang-crypto., guix-commits, 2024/03/15
- 05/09: gnu: go-github-com-beorn7-perks-quantile: Update to 1.0.1., guix-commits, 2024/03/15
- 02/09: gnu: go-github-com-blang-semver: Fix indentation., guix-commits, 2024/03/15
- 03/09: gnu: Add go-github-com-blang-semver-v4.,
guix-commits <=
- 04/09: gnu: kubo: Sort inputs alphabetically., guix-commits, 2024/03/15
- 06/09: gnu: go-github-com-beorn7-perks-quantile: Fix indentation., guix-commits, 2024/03/15
- 07/09: gnu: kubo: Unbundle more packages., guix-commits, 2024/03/15
- 08/09: gnu: go-github-com-beorn7-perks-quantile: Move to golang-xyz., guix-commits, 2024/03/15