all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#66639] [PATCH core-updates 0/2] Fix use of nonexistent phase.
@ 2023-10-19 14:02 Bruno Victal
  2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 1/2] gnu: perl-xml-xpath: " Bruno Victal
  2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 2/2] gnu: rasdaemon: " Bruno Victal
  0 siblings, 2 replies; 4+ messages in thread
From: Bruno Victal @ 2023-10-19 14:02 UTC (permalink / raw)
  To: 66639; +Cc: Bruno Victal, Efraim Flashner, Leo Famulari,
	Tobias Geerinckx-Rice

Follow-up to changes in ed1b2d0a86a0a62d8d843f06669a5f072482c37e.

Bruno Victal (2):
  gnu: perl-xml-xpath: Fix use of nonexistent phase.
  gnu: rasdaemon: Fix use of nonexistent phase.

 gnu/packages/linux.scm | 2 +-
 gnu/packages/xml.scm   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


base-commit: d59653b7c9e43ebdbba20e2ca071429507f94c67
-- 
2.41.0





^ permalink raw reply	[flat|nested] 4+ messages in thread

* [bug#66639] [PATCH core-updates 1/2] gnu: perl-xml-xpath: Fix use of nonexistent phase.
  2023-10-19 14:02 [bug#66639] [PATCH core-updates 0/2] Fix use of nonexistent phase Bruno Victal
@ 2023-10-19 14:04 ` Bruno Victal
  2023-10-19 16:32   ` bug#66639: " Efraim Flashner
  2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 2/2] gnu: rasdaemon: " Bruno Victal
  1 sibling, 1 reply; 4+ messages in thread
From: Bruno Victal @ 2023-10-19 14:04 UTC (permalink / raw)
  To: 66639; +Cc: Bruno Victal

Follow-up to changes in ed1b2d0a86a0a62d8d843f06669a5f072482c37e.

* gnu/packages/xml.scm (perl-xml-xpath)[arguments]<#:phases>: Order
'wrap-xpath after 'install instead of the nonexistent 'wrap.
---
 gnu/packages/xml.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm
index 5e4e9cc8b8..db697a3221 100644
--- a/gnu/packages/xml.scm
+++ b/gnu/packages/xml.scm
@@ -1047,7 +1047,7 @@ (define-public perl-xml-xpath
      (list
       #:phases
       #~(modify-phases %standard-phases
-          (add-after 'wrap 'wrap-xpath
+          (add-after 'install 'wrap-xpath
             (lambda _
               (let ((xpath (string-append #$output "/bin/xpath"))
                     (perl5lib
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [bug#66639] [PATCH core-updates 2/2] gnu: rasdaemon: Fix use of nonexistent phase.
  2023-10-19 14:02 [bug#66639] [PATCH core-updates 0/2] Fix use of nonexistent phase Bruno Victal
  2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 1/2] gnu: perl-xml-xpath: " Bruno Victal
@ 2023-10-19 14:04 ` Bruno Victal
  1 sibling, 0 replies; 4+ messages in thread
From: Bruno Victal @ 2023-10-19 14:04 UTC (permalink / raw)
  To: 66639; +Cc: Bruno Victal, Leo Famulari, Tobias Geerinckx-Rice

Follow-up to changes in ed1b2d0a86a0a62d8d843f06669a5f072482c37e.

* gnu/packages/linux.scm (rasdaemon)[arguments]<#:phases>: Order
'wrap-rasdaemon after 'install instead of the nonexistent 'wrap.
---
 gnu/packages/linux.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 211269bfcb..5edcde3853 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -9857,7 +9857,7 @@ (define-public rasdaemon
               ;; line lets sysconfdir correctly pick up DESTDIR.
               (substitute* "configure.ac"
                 (("^test .* sysconfdir=/etc\n$") ""))))
-          (add-after 'wrap 'wrap-rasdaemon
+          (add-after 'install 'wrap-rasdaemon
             (lambda* (#:key inputs #:allow-other-keys)
               (let ((path (map dirname
                                (list (search-input-file inputs "/sbin/dmidecode")
-- 
2.41.0





^ permalink raw reply related	[flat|nested] 4+ messages in thread

* bug#66639: [PATCH core-updates 1/2] gnu: perl-xml-xpath: Fix use of nonexistent phase.
  2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 1/2] gnu: perl-xml-xpath: " Bruno Victal
@ 2023-10-19 16:32   ` Efraim Flashner
  0 siblings, 0 replies; 4+ messages in thread
From: Efraim Flashner @ 2023-10-19 16:32 UTC (permalink / raw)
  To: Bruno Victal; +Cc: 66639-done

[-- Attachment #1: Type: text/plain, Size: 238 bytes --]

Thanks. Patches pushed!

-- 
Efraim Flashner   <efraim@flashner.co.il>   רנשלפ םירפא
GPG key = A28B F40C 3E55 1372 662D  14F7 41AA E7DC CA3D 8351
Confidentiality cannot be guaranteed on emails sent or received unencrypted

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-10-19 16:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-19 14:02 [bug#66639] [PATCH core-updates 0/2] Fix use of nonexistent phase Bruno Victal
2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 1/2] gnu: perl-xml-xpath: " Bruno Victal
2023-10-19 16:32   ` bug#66639: " Efraim Flashner
2023-10-19 14:04 ` [bug#66639] [PATCH core-updates 2/2] gnu: rasdaemon: " Bruno Victal

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.