This is an automated email from the git hooks/post-receive script.

apteryx pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1e8b999717 gnu: openocd: Reinstate the change-udev-group phase.
1e8b999717 is described below

commit 1e8b999717fedee2d47ab74575c7fdd9f742440e
Author: Jorge Acereda <[email protected]>
AuthorDate: Thu Jan 13 21:53:14 2022 +0100

    gnu: openocd: Reinstate the change-udev-group phase.
    
    * gnu/packages/embedded.scm (openocd)[phases]: Delete trailing #t.
    {change-udev-group}: Order following unpack, not the nonexistent autoreconf
    phase.
    [home-page]: Use HTTPS.
    
    Signed-off-by: Maxim Cournoyer <[email protected]>
    Modified-by: Maxim Cournoyer <[email protected]>
---
 gnu/packages/embedded.scm | 10 ++++------
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/embedded.scm b/gnu/packages/embedded.scm
index ea1a585f0f..f7573618b9 100644
--- a/gnu/packages/embedded.scm
+++ b/gnu/packages/embedded.scm
@@ -618,19 +618,17 @@ language.")
                (("-DPKGBLDDATE=") "-DDISABLED_PKGBLDDATE="))
              (patch-shebang "bootstrap")
              (invoke "./bootstrap" "nosubmodule")))
-         (add-after 'autoreconf 'change-udev-group
+         (add-after 'unpack 'change-udev-group
            (lambda _
              (substitute* "contrib/60-openocd.rules"
-               (("plugdev") "dialout"))
-             #t))
+               (("plugdev") "dialout"))))
          (add-after 'install 'install-udev-rules
            (lambda* (#:key outputs #:allow-other-keys)
              (install-file "contrib/60-openocd.rules"
                            (string-append
                             (assoc-ref outputs "out")
-                            "/lib/udev/rules.d/"))
-             #t)))))
-    (home-page "http://openocd.org";)
+                            "/lib/udev/rules.d/")))))))
+    (home-page "https://openocd.org/";)
     (synopsis "On-Chip Debugger")
     (description "OpenOCD provides on-chip programming and debugging support
 with a layered architecture of JTAG interface and TAP support.")

Reply via email to