[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/13: gnu: discount: Update to 2.2.7.
From: |
guix-commits |
Subject: |
12/13: gnu: discount: Update to 2.2.7. |
Date: |
Thu, 8 Oct 2020 10:02:20 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit 34316794e73091e8920e54bd089616ad27fe107c
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Wed Oct 7 14:50:20 2020 +0200
gnu: discount: Update to 2.2.7.
* gnu/packages/markup.scm (discount): Update to 2.2.7.
---
gnu/packages/markup.scm | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/gnu/packages/markup.scm b/gnu/packages/markup.scm
index 9569436..9076bb7 100644
--- a/gnu/packages/markup.scm
+++ b/gnu/packages/markup.scm
@@ -3,7 +3,7 @@
;;; Copyright © 2015 David Thompson <davet@gnu.org>
;;; Copyright © 2016, 2019 Efraim Flashner <efraim@flashner.co.il>
;;; Copyright © 2017 Nikita <nikita@n0.is>
-;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
+;;; Copyright © 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
;;;
;;; This file is part of GNU Guix.
@@ -113,7 +113,7 @@ convert it to structurally valid XHTML (or HTML).")
(define-public discount
(package
(name "discount")
- (version "2.2.4")
+ (version "2.2.7")
(source (origin
(method url-fetch)
(uri (string-append
@@ -121,10 +121,11 @@ convert it to structurally valid XHTML (or HTML).")
"discount/discount-" version ".tar.bz2"))
(sha256
(base32
- "199hwajpspqil0a4y3yxsmhdp2dm73gqkzfk4mrwzsmlq8y1xzbl"))))
+ "024mxv0gpvilyfczarcgy5m7h4lv6qvhjfpf5i73qkxhszjjn9mi"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
+ #:parallel-build? #f ; libmarkdown won't be built in time
#:make-flags (list
(string-append "LFLAGS=-L. -Wl,-rpath="
(assoc-ref %outputs "out") "/lib"))
@@ -139,10 +140,13 @@ convert it to structurally valid XHTML (or HTML).")
#t))
(replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys)
- (setenv "CC" ,(cc-for-target))
- (invoke "./configure.sh"
- (string-append "--prefix=" (assoc-ref outputs "out"))
- "--shared"))))))
+ (let ((out (assoc-ref outputs "out")))
+ (setenv "CC" ,(cc-for-target))
+ ;; The ‘validate-runpath’ phase fails otherwise.
+ (setenv "LDFLAGS" (string-append "-Wl,-rpath=" out "/lib"))
+ (invoke "./configure.sh"
+ (string-append "--prefix=" out)
+ "--shared")))))))
(synopsis "Markdown processing library, written in C")
(description
"Discount is a markdown implementation, written in C. It provides a
- 01/13: gnu: chrony: Update to 4.0., (continued)
- 01/13: gnu: chrony: Update to 4.0., guix-commits, 2020/10/08
- 06/13: gnu: vim: Update to 8.2.1812., guix-commits, 2020/10/08
- 02/13: gnu: chrony: Support Network Time Security (NTS)., guix-commits, 2020/10/08
- 05/13: gnu: s6-linux-utils: Update to 2.5.1.3., guix-commits, 2020/10/08
- 08/13: gnu: borg: Update to 1.1.14., guix-commits, 2020/10/08
- 04/13: gnu: s6-networking: Update to 2.3.2.0., guix-commits, 2020/10/08
- 07/13: gnu: facter: Update to 4.0.42., guix-commits, 2020/10/08
- 10/13: gnu: entr: Remove erroneous use of DESTDIR., guix-commits, 2020/10/08
- 11/13: gnu: discount: Cross-compile., guix-commits, 2020/10/08
- 09/13: gnu: perl-file-listing: Update to 6.11., guix-commits, 2020/10/08
- 12/13: gnu: discount: Update to 2.2.7.,
guix-commits <=
- 13/13: gnu: discount: Install .pc file., guix-commits, 2020/10/08