This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 8baf7e11ff gnu: asymptote: Update to 3.01.
8baf7e11ff is described below
commit 8baf7e11ffb361221f5e038d185b6e4bdfea26af
Author: Nicolas Goaziou <[email protected]>
AuthorDate: Fri Mar 7 11:14:07 2025 +0100
gnu: asymptote: Update to 3.01.
* gnu/packages/plotutils.scm (asymptote): Update to 3.01.
[arguments]<#:phases>: Use dynamic GC library.
[native-inputs]: Remove autoconf, Add autoconf-2.71.
Change-Id: Ia2a3759c411f35cae4169c148427ef48f9e5c683
---
gnu/packages/plotutils.scm | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/gnu/packages/plotutils.scm b/gnu/packages/plotutils.scm
index b34dfd571f..50c7918f00 100644
--- a/gnu/packages/plotutils.scm
+++ b/gnu/packages/plotutils.scm
@@ -1,7 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021 Ludovic
Courtès <[email protected]>
;;; Copyright © 2015 Eric Bavier <[email protected]>
-;;; Copyright © 2016-2024 Nicolas Goaziou <[email protected]>
+;;; Copyright © 2016-2025 Nicolas Goaziou <[email protected]>
;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2020 Maxim Cournoyer <[email protected]>
;;; Copyright © 2022 Antero Mejr <[email protected]>
@@ -67,14 +67,14 @@
(define-public asymptote
(package
(name "asymptote")
- (version "2.95")
+ (version "3.01")
(source
(origin
(method url-fetch)
(uri (string-append "mirror://sourceforge/asymptote/"
version "/asymptote-" version ".src.tgz"))
(sha256
- (base32 "1rvqmjp6gich2fvxgl2d31d84z31zkkd4abmh1dvrpdn5k84yq0m"))
+ (base32 "115hjza0ic2mh3y2qjkvzpsx8cpy0yghklpbv8qhdgznqc5001bs"))
(modules '((guix build utils)))
(snippet
;; Remove bundled RapidJSON.
@@ -85,7 +85,7 @@
;; "help" command in interactive mode, so adding a "doc" output is not
;; currently useful.
(native-inputs
- (list autoconf
+ (list autoconf-2.71
automake
bison
boost
@@ -145,6 +145,7 @@
(add-after 'unpack 'locate-tirpc
(lambda* (#:key inputs #:allow-other-keys)
(substitute* (list "configure.ac")
+ (("GCLIB=\".*/libgc.a\"") "GCLIB=\"-lgc\"")
(("/usr/include/tirpc")
(search-input-directory inputs "include/tirpc")))))
(add-after 'unpack 'unbundle-rapidjson