guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/11: gnu: libgc: Define properties for the 'generic-html' updater.


From: guix-commits
Subject: 06/11: gnu: libgc: Define properties for the 'generic-html' updater.
Date: Fri, 24 Feb 2023 18:07:36 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit ff98a9f75a3e81ebea2cf576d85737db81f61fb0
Author: Ludovic Courtès <ludo@gnu.org>
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 
<ludo@gnu.org>
+;;; Copyright © 2012, 2013, 2014, 2016, 2017, 2020, 2021, 2023 Ludovic Courtès 
<ludo@gnu.org>
 ;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2017 Rene Saavedra <rennes@openmailbox.org>
@@ -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



reply via email to

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