This is an automated email from the git hooks/post-receive script.
efraim pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new dea8810036 gnu: patchelf: Add release-monitoring-url.
dea8810036 is described below
commit dea88100365dafe3bd6774798932f65fcd92cd13
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Jan 30 14:57:31 2022 +0200
gnu: patchelf: Add release-monitoring-url.
* gnu/packages/elf.scm (patchelf)[properties]: New field.
---
gnu/packages/elf.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/elf.scm b/gnu/packages/elf.scm
index 349acf5446..414d6a2856 100644
--- a/gnu/packages/elf.scm
+++ b/gnu/packages/elf.scm
@@ -2,7 +2,7 @@
;;; Copyright © 2013, 2014, 2015 Ludovic Courtès <[email protected]>
;;; Copyright © 2014, 2015 Mark H Weaver <[email protected]>
;;; Copyright © 2015 Andreas Enge <[email protected]>
-;;; Copyright © 2017, 2018, 2019, 2020, 2021 Efraim Flashner
<[email protected]>
+;;; Copyright © 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner
<[email protected]>
;;; Copyright © 2017 Leo Famulari <[email protected]>
;;; Copyright © 2018 Tobias Geerinckx-Rice <[email protected]>
;;; Copyright © 2018, 2020 Marius Bakke <[email protected]>
@@ -281,4 +281,7 @@ static analysis of the ELF binaries at hand.")
(description
"PatchELF allows the ELF \"interpreter\" and RPATH of an ELF binary to be
changed.")
+ ;; This can probably be removed with the next release.
+ (properties
+ '((release-monitoring-url .
"https://github.com/NixOS/patchelf/releases")))
(license gpl3+)))