civodul pushed a commit to branch master
in repository guix.
commit ff98a9f75a3e81ebea2cf576d85737db81f61fb0
Author: Ludovic Courtès <[email protected]>
AuthorDate: Fri Feb 24 17:06:12 2023 +0100
gnu: libgc: Define properties for the 'generic-html' updater.
* gnu/packages/bdw-gc.scm (libgc)[source]: Add second URL.
[properties]: New field.
---
gnu/packages/bdw-gc.scm | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/bdw-gc.scm b/gnu/packages/bdw-gc.scm
index c812248e86..ae0d761ac3 100644
--- a/gnu/packages/bdw-gc.scm
+++ b/gnu/packages/bdw-gc.scm
@@ -1,5 +1,5 @@
;;; GNU Guix --- Functional package management for GNU
-;;; Copyright © 2012, 2013, 2014, 2016, 2017, 2020, 2021 Ludovic Courtès
<[email protected]>
+;;; Copyright © 2012, 2013, 2014, 2016, 2017, 2020, 2021, 2023 Ludovic Courtès
<[email protected]>
;;; Copyright © 2014 Mark H Weaver <[email protected]>
;;; Copyright © 2016, 2018 Leo Famulari <[email protected]>
;;; Copyright © 2017 Rene Saavedra <[email protected]>
@@ -36,8 +36,11 @@
(version "8.0.4")
(source (origin
(method url-fetch)
- (uri (string-append "https://github.com/ivmai/bdwgc/releases"
- "/download/v" version "/gc-" version
".tar.gz"))
+ (uri (list (string-append "https://github.com/ivmai/bdwgc/releases"
+ "/download/v" version
+ "/gc-" version ".tar.gz")
+ (string-append "https://www.hboehm.info/gc/gc_source"
+ "/gc-" version ".tar.gz")))
(sha256
(base32
"1798rp3mcfkgs38ynkbg2p47bq59pisrc6mn0l20pb5iczf0ssj3"))))
@@ -69,6 +72,9 @@
`(("libatomic-ops" ,libatomic-ops))
'()))
(outputs '("out" "debug"))
+ (properties
+ '((release-monitoring-url . "https://www.hboehm.info/gc/gc_source/")
+ (upstream-name . "gc")))
(synopsis "The Boehm-Demers-Weiser conservative garbage collector
for C and C++")
(description