guix-commits
[Top][All Lists]
Advanced

[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"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]