unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8.
@ 2023-10-03 12:08 Hilton Chain via Guix-patches via
  2023-10-03 12:29 ` [bug#66321] [PATCH 1/2] gnu: ell: Update to 0.59 Hilton Chain via Guix-patches via
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-10-03 12:08 UTC (permalink / raw)
  To: 66321; +Cc: Hilton Chain

*** BLURB HERE ***

Hilton Chain (2):
  gnu: ell: Update to 0.59.
  gnu: iwd: Update to 2.8.

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


base-commit: d69c557d64a9e4cda62c4233c17e9afddbb67d8b
--
2.41.0




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

* [bug#66321] [PATCH 1/2] gnu: ell: Update to 0.59.
  2023-10-03 12:08 [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
@ 2023-10-03 12:29 ` Hilton Chain via Guix-patches via
  2023-10-03 12:29 ` [bug#66321] [PATCH 2/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
  2023-10-05 14:47 ` [bug#66321] [PATCH 0/2] " Ludovic Courtès
  2 siblings, 0 replies; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-10-03 12:29 UTC (permalink / raw)
  To: 66321; +Cc: Hilton Chain, Hilton Chain, Leo Famulari, Tobias Geerinckx-Rice

* gnu/packages/linux.scm (ell): Update to 0.59.
[native-inputs]: Add procps.
---
 gnu/packages/linux.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index a3f74cd253..7782bc1bb1 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -9417,7 +9417,7 @@ (define-public wireplumber
 (define-public ell
   (package
     (name "ell")
-    (version "0.57")
+    (version "0.59")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -9426,7 +9426,7 @@ (define-public ell
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1vpzz0z6q0d3h41aqajaw0dlpkdnmjcppmlwbb558hvj40q5dpzm"))))
+                "11xlkdvw7pyd9idq1zsnl946dry9aksnz29wbpzxqjc97xhhd5xq"))))
     (build-system gnu-build-system)
     (arguments
      ;; Tests launch dbus-daemon instances that all try to bind to
@@ -9435,7 +9435,7 @@ (define-public ell
     (inputs
      (list dbus))
     (native-inputs
-     (list autoconf automake libtool pkg-config))
+     (list autoconf automake libtool pkg-config procps))
     (home-page "https://01.org/ell")
     (synopsis "Embedded Linux Library")
     (description "The Embedded Linux* Library (ELL) provides core, low-level
-- 
2.41.0





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

* [bug#66321] [PATCH 2/2] gnu: iwd: Update to 2.8.
  2023-10-03 12:08 [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
  2023-10-03 12:29 ` [bug#66321] [PATCH 1/2] gnu: ell: Update to 0.59 Hilton Chain via Guix-patches via
@ 2023-10-03 12:29 ` Hilton Chain via Guix-patches via
  2023-10-05 14:47 ` [bug#66321] [PATCH 0/2] " Ludovic Courtès
  2 siblings, 0 replies; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-10-03 12:29 UTC (permalink / raw)
  To: 66321; +Cc: Hilton Chain, Hilton Chain

* gnu/packages/networking.scm (iwd): Update to 2.8.
[synopsis]: Change to "iNet Wireless Daemon".
---
 gnu/packages/networking.scm | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 0a9472ee86..57154b3e14 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -3960,7 +3960,7 @@ (define-public bird
 (define-public iwd
   (package
     (name "iwd")
-    (version "2.7")
+    (version "2.8")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -3969,7 +3969,7 @@ (define-public iwd
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "0xn0db37x0nrvwlw0r4w6q3yk57ijqh9zxd15wf3qqvs01hqkk2j"))))
+                "0bpksqyaqr624bj7zm9hi22rnp6wnjbngx4q08l7lbd0r7r93vcb"))))
     (build-system gnu-build-system)
     (inputs
      (list dbus ell (package-source ell) readline))
@@ -4014,7 +4014,7 @@ (define-public iwd
                ;; Don't try to 'mkdir /var'.
                (("\\$\\(MKDIR_P\\) -m 700") "true")))))))
     (home-page "https://git.kernel.org/pub/scm/network/wireless/iwd.git/")
-    (synopsis "Internet Wireless Daemon")
+    (synopsis "iNet Wireless Daemon")
     (description "iwd is a wireless daemon for Linux that aims to replace WPA
 Supplicant.  It optimizes resource utilization by not depending on any external
 libraries and instead utilizing features provided by the Linux kernel to the
-- 
2.41.0





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

* [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8.
  2023-10-03 12:08 [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
  2023-10-03 12:29 ` [bug#66321] [PATCH 1/2] gnu: ell: Update to 0.59 Hilton Chain via Guix-patches via
  2023-10-03 12:29 ` [bug#66321] [PATCH 2/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
@ 2023-10-05 14:47 ` Ludovic Courtès
  2023-10-19  5:48   ` bug#66321: " Hilton Chain via Guix-patches via
  2 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2023-10-05 14:47 UTC (permalink / raw)
  To: Hilton Chain; +Cc: 66321

Hilton Chain <hako@ultrarare.space> skribis:

>   gnu: ell: Update to 0.59.
>   gnu: iwd: Update to 2.8.

LGTM!




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

* bug#66321: [PATCH 0/2] gnu: iwd: Update to 2.8.
  2023-10-05 14:47 ` [bug#66321] [PATCH 0/2] " Ludovic Courtès
@ 2023-10-19  5:48   ` Hilton Chain via Guix-patches via
  0 siblings, 0 replies; 5+ messages in thread
From: Hilton Chain via Guix-patches via @ 2023-10-19  5:48 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 66321-done

On Thu, 05 Oct 2023 22:47:38 +0800,
Ludovic Courtès wrote:
>
> Hilton Chain <hako@ultrarare.space> skribis:
>
> >   gnu: ell: Update to 0.59.
> >   gnu: iwd: Update to 2.8.
>
> LGTM!

Thanks!  Pushed as 23d7a8b3232752e083d448e73ad8d90c4231b035 and
330b94e8bd88baf903d2bc11bf96e23b119e0fe5.




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

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

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-03 12:08 [bug#66321] [PATCH 0/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
2023-10-03 12:29 ` [bug#66321] [PATCH 1/2] gnu: ell: Update to 0.59 Hilton Chain via Guix-patches via
2023-10-03 12:29 ` [bug#66321] [PATCH 2/2] gnu: iwd: Update to 2.8 Hilton Chain via Guix-patches via
2023-10-05 14:47 ` [bug#66321] [PATCH 0/2] " Ludovic Courtès
2023-10-19  5:48   ` bug#66321: " Hilton Chain via Guix-patches via

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).