[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/401: gnu: go-github-com-russross-blackfriday: Move to golang-xyz.
From: |
guix-commits |
Subject: |
03/401: gnu: go-github-com-russross-blackfriday: Move to golang-xyz. |
Date: |
Thu, 26 Dec 2024 19:30:18 -0500 (EST) |
sharlatan pushed a commit to branch go-team
in repository guix.
commit 30108461e17a1af55cf37a53e26a58cace533d70
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
AuthorDate: Sat Nov 23 21:13:43 2024 +0000
gnu: go-github-com-russross-blackfriday: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-russross-blackfriday,
go-github-com-russross-blackfriday-v2): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I004efdcd797da670a87e2f319b4df1b072e5bf10
---
gnu/packages/golang-xyz.scm | 44 ++++++++++++++++++++++++++++++++++++++++++++
gnu/packages/golang.scm | 43 -------------------------------------------
2 files changed, 44 insertions(+), 43 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index b8076697d6..750c2013cf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6801,6 +6801,50 @@ Included are the following:
logging.")
(license license:expat)))
+(define-public go-github-com-russross-blackfriday
+ (package
+ (name "go-github-com-russross-blackfriday")
+ (version "1.6.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/russross/blackfriday")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/russross/blackfriday"))
+ (native-inputs
+ (list go-github-com-pmezard-go-difflib))
+ (propagated-inputs
+ (list go-github-com-shurcool-sanitized-anchor-name))
+ (home-page "https://github.com/russross/blackfriday")
+ (synopsis "Markdown processor in Go")
+ (description
+ "Blackfriday is a Markdown processor in Go.")
+ (license license:bsd-2)))
+
+(define-public go-github-com-russross-blackfriday-v2
+ (package
+ (inherit go-github-com-russross-blackfriday)
+ (name "go-github-com-russross-blackfriday-v2")
+ (version "2.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/russross/blackfriday")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7"))))
+ (arguments
+ (list #:import-path "github.com/russross/blackfriday/v2"))))
+
+
(define-public go-github-com-ryanuber-columnize
(package
(name "go-github-com-ryanuber-columnize")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index fe26adeede..01600fb232 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4509,49 +4509,6 @@ back to netrc format, while preserving any whitespace
that was present in the
source file.")
(license license:expat))))
-(define-public go-github-com-russross-blackfriday
- (package
- (name "go-github-com-russross-blackfriday")
- (version "1.6.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/russross/blackfriday")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "036028ynpq52z9snmd2b1kjzyvv6n9sg71k651ndznggnw19aamp"))))
- (build-system go-build-system)
- (arguments
- '(#:import-path "github.com/russross/blackfriday"))
- (propagated-inputs
- (list go-github-com-shurcool-sanitized-anchor-name))
- (native-inputs
- (list go-github-com-pmezard-go-difflib))
- (home-page "https://github.com/russross/blackfriday")
- (synopsis "Markdown processor in Go")
- (description "Blackfriday is a Markdown processor in Go.")
- (license license:bsd-2)))
-
-(define-public go-github-com-russross-blackfriday-v2
- (package
- (inherit go-github-com-russross-blackfriday)
- (name "go-github-com-russross-blackfriday-v2")
- (version "2.1.0")
- (source
- (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/russross/blackfriday")
- (commit (string-append "v" version))))
- (file-name (git-file-name name version))
- (sha256
- (base32 "0d1rg1drrfmabilqjjayklsz5d0n3hkf979sr3wsrw92bfbkivs7"))))
- (arguments
- (list #:import-path "github.com/russross/blackfriday/v2"))))
-
(define-public go-github-com-rubyist-tracerx
(let ((commit "787959303086f44a8c361240dfac53d3e9d53ed2")
(revision "0"))
- 185/401: gnu: go-github-com-twpayne-go-xdg-v3: Fix bulid., (continued)
- 185/401: gnu: go-github-com-twpayne-go-xdg-v3: Fix bulid., guix-commits, 2024/12/26
- 188/401: gnu: go-go-mongodb-org-mongo-driver: Simplify package., guix-commits, 2024/12/26
- 225/401: gnu: go-github-com-jcmturner-rpc: Fix import path., guix-commits, 2024/12/26
- 232/401: gnu: go-github-com-jacobsa-reqtrace: Update to 0.0.0-20150505043853-245c9e0234cb., guix-commits, 2024/12/26
- 233/401: gnu: go-github-com-jacobsa-reqtrace: Move to golang-check., guix-commits, 2024/12/26
- 246/401: gnu: Add go-github-com-jacobsa-syncutil., guix-commits, 2024/12/26
- 247/401: gnu: go-golang-org-x-net: Update to 0.33.0., guix-commits, 2024/12/26
- 243/401: gnu: Add go-github-com-maxatome-go-testdeep., guix-commits, 2024/12/26
- 01/401: gnu: Remove go-github-com-calmh-xdr., guix-commits, 2024/12/26
- 02/401: gnu: Remove go-github-com-dustin-gojson., guix-commits, 2024/12/26
- 03/401: gnu: go-github-com-russross-blackfriday: Move to golang-xyz.,
guix-commits <=
- 14/401: gnu: go-github-com-spf13-cast: Move to golang-xyz., guix-commits, 2024/12/26
- 22/401: gnu: go-github-com-twpayne-go-vfs: Move to golang-xyz., guix-commits, 2024/12/26
- 26/401: gnu: go-github-com-bmatcuk-doublestar-v4: Update to 4.7.1., guix-commits, 2024/12/26
- 32/401: gnu: packages/textutils: Remove golang module., guix-commits, 2024/12/26
- 56/401: gnu: go-github-com-golang-glog: Update to 1.2.3., guix-commits, 2024/12/26
- 58/401: gnu: go-github-com-vishvananda-netlink: Update to 1.3.0., guix-commits, 2024/12/26
- 62/401: gnu: go-github-com-vishvananda-netns: Move to golang-web., guix-commits, 2024/12/26
- 76/401: gnu: Add go-github-com-vito-midterm., guix-commits, 2024/12/26
- 75/401: gnu: Add go-github-com-sebdah-goldie-v2., guix-commits, 2024/12/26
- 83/401: gnu: Add go-github-com-xanzy-go-gitlab., guix-commits, 2024/12/26