all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#75227] [PATCH] gnu: radvd: Update to 2.20.
@ 2024-12-31 19:11 Ashish SHUKLA via Guix-patches via
  2025-01-02 12:59 ` Zheng Junjie
  0 siblings, 1 reply; 2+ messages in thread
From: Ashish SHUKLA via Guix-patches via @ 2024-12-31 19:11 UTC (permalink / raw)
  To: 75227; +Cc: Ashish SHUKLA, Sharlatan Hellseher

* gnu/packages/admin.scm (radvd): Update to 2.20.
[inputs]: Add libbsd.

Change-Id: I50a6359c18746afb51aa3250acf2222e674a290e
---
 gnu/packages/admin.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
index dce93e4f3a..0be8671d45 100644
--- a/gnu/packages/admin.scm
+++ b/gnu/packages/admin.scm
@@ -70,6 +70,7 @@
 ;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
 ;;; Copyright © 2024 nathan <nathan_mail@nborghese.com>
 ;;; Copyright © 2024 Nikita Domnitskii <nikita@domnitskii.me>
+;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1714,7 +1715,7 @@ (define-public isc-dhcp
 (define-public radvd
   (package
     (name "radvd")
-    (version "2.19")
+    (version "2.20")
     (source
      (origin
        (method git-fetch)
@@ -1723,7 +1724,7 @@ (define-public radvd
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1df827m3vkjq2bcs5y9wg2cygvpdwl8ppl446qqhyym584gz54nl"))))
+        (base32 "090b8953cq7pvxf8i5wsippsi3zc8jxy559k6jpfjjmbbvl8zlmk"))))
     (build-system gnu-build-system)
     (native-inputs
      (list autoconf
@@ -1732,6 +1733,7 @@ (define-public radvd
            check
            flex
            pkg-config))
+    (inputs (list libbsd))
     (arguments
      `(#:configure-flags '("--with-check")))
     (home-page "https://radvd.litech.org/")

base-commit: 25b5c8a142f85b19b513bc750676c8d0f34498ed
-- 
2.47.1





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

* [bug#75227] [PATCH] gnu: radvd: Update to 2.20.
  2024-12-31 19:11 [bug#75227] [PATCH] gnu: radvd: Update to 2.20 Ashish SHUKLA via Guix-patches via
@ 2025-01-02 12:59 ` Zheng Junjie
  0 siblings, 0 replies; 2+ messages in thread
From: Zheng Junjie @ 2025-01-02 12:59 UTC (permalink / raw)
  To: 75227; +Cc: Sharlatan Hellseher, 75227-done, Ashish SHUKLA

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

Ashish SHUKLA via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/admin.scm (radvd): Update to 2.20.
> [inputs]: Add libbsd.
>
> Change-Id: I50a6359c18746afb51aa3250acf2222e674a290e
> ---
>  gnu/packages/admin.scm | 6 ++++--
>  1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/admin.scm b/gnu/packages/admin.scm
> index dce93e4f3a..0be8671d45 100644
> --- a/gnu/packages/admin.scm
> +++ b/gnu/packages/admin.scm
> @@ -70,6 +70,7 @@
>  ;;; Copyright © 2024 Vinicius Monego <monego@posteo.net>
>  ;;; Copyright © 2024 nathan <nathan_mail@nborghese.com>
>  ;;; Copyright © 2024 Nikita Domnitskii <nikita@domnitskii.me>
> +;;; Copyright © 2024 Ashish SHUKLA <ashish.is@lostca.se>
>  ;;;
>  ;;; This file is part of GNU Guix.
>  ;;;
> @@ -1714,7 +1715,7 @@ (define-public isc-dhcp
>  (define-public radvd
>    (package
>      (name "radvd")
> -    (version "2.19")
> +    (version "2.20")
>      (source
>       (origin
>         (method git-fetch)
> @@ -1723,7 +1724,7 @@ (define-public radvd
>               (commit (string-append "v" version))))
>         (file-name (git-file-name name version))
>         (sha256
> -        (base32 "1df827m3vkjq2bcs5y9wg2cygvpdwl8ppl446qqhyym584gz54nl"))))
> +        (base32 "090b8953cq7pvxf8i5wsippsi3zc8jxy559k6jpfjjmbbvl8zlmk"))))
>      (build-system gnu-build-system)
>      (native-inputs
>       (list autoconf
> @@ -1732,6 +1733,7 @@ (define-public radvd
>             check
>             flex
>             pkg-config))
> +    (inputs (list libbsd))
>      (arguments
>       `(#:configure-flags '("--with-check")))
>      (home-page "https://radvd.litech.org/")
>
> base-commit: 25b5c8a142f85b19b513bc750676c8d0f34498ed
pushed, and add a patch to fix cross-compiling, closing.

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

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

end of thread, other threads:[~2025-01-02 13:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-12-31 19:11 [bug#75227] [PATCH] gnu: radvd: Update to 2.20 Ashish SHUKLA via Guix-patches via
2025-01-02 12:59 ` Zheng Junjie

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.