GNU bug report logs - #66883
[PATCH] gnu: lowdown: Update to 1.0.2.

Previous Next

Package: guix-patches;

Reported by: Spencer Skylar Chan <schan12 <at> umd.edu>

Date: Wed, 1 Nov 2023 13:47:03 UTC

Severity: normal

Tags: patch

Done: 宋文武 <iyzsong <at> envs.net>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 66883 in the body.
You can then email your comments to 66883 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#66883; Package guix-patches. (Wed, 01 Nov 2023 13:47:03 GMT) Full text and rfc822 format available.

Acknowledgement sent to Spencer Skylar Chan <schan12 <at> umd.edu>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Wed, 01 Nov 2023 13:47:03 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Spencer Skylar Chan <schan12 <at> umd.edu>
To: guix-patches <guix-patches <at> gnu.org>
Subject: [PATCH] gnu: lowdown: Update to 1.0.2.
Date: Wed, 1 Nov 2023 08:00:00 -0400
[Message part 1 (text/plain, inline)]

[0001-gnu-lowdown-Update-to-1.0.2.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#66883; Package guix-patches. (Thu, 02 Nov 2023 16:19:01 GMT) Full text and rfc822 format available.

Message #8 received at 66883 <at> debbugs.gnu.org (full text, mbox):

From: Spencer Skylar Chan <schan12 <at> umd.edu>
To: 66883 <at> debbugs.gnu.org
Subject: [PATCH v2] gnu: lowdown: Update to 1.0.2.
Date: Thu, 2 Nov 2023 10:07:09 -0400
[Message part 1 (text/plain, inline)]
Fixes broken Nix build.
[0001-gnu-lowdown-Update-to-1.0.2.patch (text/x-patch, attachment)]

Information forwarded to guix-patches <at> gnu.org:
bug#66883; Package guix-patches. (Sat, 11 Nov 2023 00:31:01 GMT) Full text and rfc822 format available.

Message #11 received at 66883 <at> debbugs.gnu.org (full text, mbox):

From: iyzsong <at> envs.net
To: 66883 <at> debbugs.gnu.org
Cc: Skylar Chan <schan12 <at> umd.edu>,
 宋文武 <iyzsong <at> member.fsf.org>
Subject: [PATCH v3] gnu: lowdown: Update to 1.1.0.
Date: Sat, 11 Nov 2023 08:29:21 +0800
From: Skylar Chan <schan12 <at> umd.edu>

* gnu/packages/markup.scm (lowdown): Update to 1.1.0.
[source]: Use upstream tarball and switch to url-fetch.
[arguments]<phases>: Install with "make install install_libs".

Change-Id: I2268c587be2fddb43fdf9ae957b6e5344e5f2984
Signed-off-by: 宋文武 <iyzsong <at> member.fsf.org>
---
 gnu/packages/markup.scm | 66 ++++++++++++++++++++---------------------
 1 file changed, 33 insertions(+), 33 deletions(-)

diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index 6ee7bebf57..595b08fa20 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -125,39 +125,39 @@ (define-public markdown
                                    "See License.text in the distribution."))))
 
 (define-public lowdown
-  (let ((commit "1de10c1d71bfb4348ae0beaec8b1547d5e114969")
-        (revision "1"))
-    (package
-      (name "lowdown")
-      (version (git-version "0.10.0" revision commit))
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url "https://github.com/kristapsdz/lowdown")
-               (commit commit)))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32 "1wh07nkiihvp1m79sj4qlnqklnn0rfp3hwls8sqcp0bfd96wpa1h"))))
-      (build-system gnu-build-system)
-      (arguments
-       (list
-        #:test-target "regress"
-        #:phases
-        #~(modify-phases %standard-phases
-            (replace 'configure
-              (lambda _
-                (invoke "./configure"
-                        (string-append "PREFIX=" #$output)
-                        (string-append "MANDIR=" #$output "/share/man")))))
-        #:make-flags #~(list "CFLAGS=-fPIC")))
-      (native-inputs
-       (list which))
-      (home-page "https://kristaps.bsd.lv/lowdown/")
-      (synopsis "Simple Markdown translator")
-      (description "Lowdown is a Markdown translator producing HTML5,
-roff documents in the ms and man formats, LaTeX, gemini, and terminal output.")
-      (license license:isc))))
+  (package
+    (name "lowdown")
+    (version "1.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://kristaps.bsd.lv/lowdown/snapshots/lowdown-"
+             version ".tar.gz"))
+       (sha256
+        (base32 "0y88gffrg1zrin0y53j4gbkmpia0r8p0kyklj501wavkqi83j7pk"))))
+    (build-system gnu-build-system)
+    (arguments
+     (list
+      #:test-target "regress"
+      #:phases
+      #~(modify-phases %standard-phases
+          (replace 'configure
+            (lambda _
+              (invoke "./configure"
+                      (string-append "PREFIX=" #$output)
+                      (string-append "MANDIR=" #$output "/share/man"))))
+          (replace 'install
+            (lambda _
+              (invoke "make" "install" "install_libs"))))
+      #:make-flags #~(list "CFLAGS=-fPIC")))
+    (native-inputs
+     (list which))
+    (home-page "https://kristaps.bsd.lv/lowdown/")
+    (synopsis "Simple Markdown translator")
+    (description "Lowdown is a Markdown translator producing HTML5, roff
+documents in the ms and man formats, LaTeX, gemini, and terminal output.")
+    (license license:isc)))
 
 (define-public discount
   (package

base-commit: bb3ab24a296ffa5273b2e82a02ed057e90c095f3
prerequisite-patch-id: 43b7202bd62a4488685baa7436d94a6b1aecbb0e
-- 
2.41.0





Reply sent to 宋文武 <iyzsong <at> envs.net>:
You have taken responsibility. (Sat, 11 Nov 2023 00:41:01 GMT) Full text and rfc822 format available.

Notification sent to Spencer Skylar Chan <schan12 <at> umd.edu>:
bug acknowledged by developer. (Sat, 11 Nov 2023 00:41:02 GMT) Full text and rfc822 format available.

Message #16 received at 66883-done <at> debbugs.gnu.org (full text, mbox):

From: 宋文武 <iyzsong <at> envs.net>
To: Spencer Skylar Chan <schan12 <at> umd.edu>
Cc: 66883-done <at> debbugs.gnu.org
Subject: Re: [bug#66883] [PATCH v2] gnu: lowdown: Update to 1.0.2.
Date: Sat, 11 Nov 2023 08:39:24 +0800
Spencer Skylar Chan <schan12 <at> umd.edu> writes:

Hello, I apply this patch to master with some updates (v3 patch):
- Update to version 1.1.0.
- Put url line under 80 columns.
- Adjust commit message for "install_libs".

Thanks.




bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Sat, 09 Dec 2023 12:24:09 GMT) Full text and rfc822 format available.

This bug report was last modified 1 year and 152 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.