all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#34434] [PATCH] gnu: Add frrouting.
@ 2019-02-11 13:48 Gábor Boskovits
  2019-02-11 20:37 ` Ricardo Wurmus
  2019-02-12 16:39 ` [bug#34434] [PATCH v2] " Gábor Boskovits
  0 siblings, 2 replies; 5+ messages in thread
From: Gábor Boskovits @ 2019-02-11 13:48 UTC (permalink / raw)
  To: 34434; +Cc: Gábor Boskovits

* gnu/packages/networking.scm (frrouting): New variable.
---
 gnu/packages/networking.scm | 38 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 37 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index c71ae4a24d..f58e1d7548 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -16,7 +16,7 @@
 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
-;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
+;;; Copyright © 2017, 2018 Gábor Boskovits <boskovits@gmail.com>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2018 Adam Van Ymeren <adam@vany.ca>
 ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
@@ -98,6 +98,7 @@
   #:use-module (gnu packages textutils)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages valgrind)
+  #:use-module (gnu packages web)
   #:use-module (gnu packages wm)
   #:use-module (gnu packages wxwidgets)
   #:use-module (gnu packages xml)
@@ -2367,3 +2368,38 @@ communication over HTTP.")
 be used to manage peer-to-peer network connections as needed for real time
 communication.")
     (license license:gpl3+)))
+
+(define-public frrouting
+  (package
+    (name "frrouting")
+    (version "6.0.2")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/FRRouting/frr.git")
+                    (commit (string-append "frr-" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "15ycl0maak55n9xvlz3zbsskqc7901sy5h67jz0068hxc0kh6jpj"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("c-ares" ,c-ares)
+       ("json-c" ,json-c)
+       ("readline" ,readline)))
+    (native-inputs
+     `(("autoconf" ,autoconf)
+       ("automake" ,automake)
+       ("bison" ,bison)
+       ("flex" ,flex)
+       ("libtool" ,libtool)
+       ("perl" ,perl)
+       ("pkg-config" ,pkg-config)
+       ("python" ,python-wrapper)
+       ("python-pytest" ,python-pytest)))
+    (home-page "https://frrouting.org/")
+    (synopsis "IP routing protocol suite")
+    (description "FRRouting (FRR) is an IP routing protocol suite for Linux and
+Unix platforms which includes protocol daemons for BGP, IS-IS, LDP, OSPF, PIM,
+and RIP. ")
+    (license license:gpl2+)))
-- 
2.20.1

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

* [bug#34434] [PATCH] gnu: Add frrouting.
  2019-02-11 13:48 [bug#34434] [PATCH] gnu: Add frrouting Gábor Boskovits
@ 2019-02-11 20:37 ` Ricardo Wurmus
  2019-02-12 16:39 ` [bug#34434] [PATCH v2] " Gábor Boskovits
  1 sibling, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2019-02-11 20:37 UTC (permalink / raw)
  To: Gábor Boskovits; +Cc: 34434


Gábor Boskovits <boskovits@gmail.com> writes:

> * gnu/packages/networking.scm (frrouting): New variable.
> ---
>  gnu/packages/networking.scm | 38 ++++++++++++++++++++++++++++++++++++-
>  1 file changed, 37 insertions(+), 1 deletion(-)
>
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index c71ae4a24d..f58e1d7548 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -16,7 +16,7 @@
>  ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
>  ;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
>  ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
> -;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
> +;;; Copyright © 2017, 2018 Gábor Boskovits <boskovits@gmail.com>

The current year is 2019.

>  ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
>  ;;; Copyright © 2018 Adam Van Ymeren <adam@vany.ca>
>  ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
> @@ -98,6 +98,7 @@
>    #:use-module (gnu packages textutils)
>    #:use-module (gnu packages tls)
>    #:use-module (gnu packages valgrind)
> +  #:use-module (gnu packages web)
>    #:use-module (gnu packages wm)
>    #:use-module (gnu packages wxwidgets)
>    #:use-module (gnu packages xml)
> @@ -2367,3 +2368,38 @@ communication over HTTP.")
>  be used to manage peer-to-peer network connections as needed for real time
>  communication.")
>      (license license:gpl3+)))
> +
> +(define-public frrouting
> +  (package
> +    (name "frrouting")
> +    (version "6.0.2")
> +    (source (origin
> +              (method git-fetch)
> +              (uri (git-reference
> +                    (url "https://github.com/FRRouting/frr.git")
> +                    (commit (string-append "frr-" version))))
> +              (file-name (git-file-name name version))
> +              (sha256
> +               (base32
> +                "15ycl0maak55n9xvlz3zbsskqc7901sy5h67jz0068hxc0kh6jpj"))))

Have you seen that they have official release tarballs?

    https://github.com/FRRouting/frr/releases/download/frr-6.0.2/frr-6.0.2.tar.xz

> +    (build-system gnu-build-system)
> +    (inputs
> +     `(("c-ares" ,c-ares)
> +       ("json-c" ,json-c)
> +       ("readline" ,readline)))
> +    (native-inputs
> +     `(("autoconf" ,autoconf)
> +       ("automake" ,automake)

You might not need these when using the release tarball.

> +    (description "FRRouting (FRR) is an IP routing protocol suite for Linux and
> +Unix platforms which includes protocol daemons for BGP, IS-IS, LDP, OSPF, PIM,
> +and RIP. ")

I’d remove “for Linux and Unix platforms”.

-- 
Ricardo

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

* [bug#34434] [PATCH v2] gnu: Add frrouting.
  2019-02-11 13:48 [bug#34434] [PATCH] gnu: Add frrouting Gábor Boskovits
  2019-02-11 20:37 ` Ricardo Wurmus
@ 2019-02-12 16:39 ` Gábor Boskovits
  2019-02-12 18:46   ` Leo Famulari
  2019-02-12 21:25   ` bug#34434: " Ricardo Wurmus
  1 sibling, 2 replies; 5+ messages in thread
From: Gábor Boskovits @ 2019-02-12 16:39 UTC (permalink / raw)
  To: 34434; +Cc: Gábor Boskovits

* gnu/packages/networking.scm (frrouting): New variable.
---
 gnu/packages/networking.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index c71ae4a24d..afd83dcfdb 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -16,7 +16,7 @@
 ;;; Copyright © 2017 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
-;;; Copyright © 2017 Gábor Boskovits <boskovits@gmail.com>
+;;; Copyright © 2017, 2019 Gábor Boskovits <boskovits@gmail.com>
 ;;; Copyright © 2017 Thomas Danckaert <post@thomasdanckaert.be>
 ;;; Copyright © 2018 Adam Van Ymeren <adam@vany.ca>
 ;;; Copyright © 2018 Fis Trivial <ybbs.daans@hotmail.com>
@@ -98,6 +98,7 @@
   #:use-module (gnu packages textutils)
   #:use-module (gnu packages tls)
   #:use-module (gnu packages valgrind)
+  #:use-module (gnu packages web)
   #:use-module (gnu packages wm)
   #:use-module (gnu packages wxwidgets)
   #:use-module (gnu packages xml)
@@ -2367,3 +2368,31 @@ communication over HTTP.")
 be used to manage peer-to-peer network connections as needed for real time
 communication.")
     (license license:gpl3+)))
+
+(define-public frrouting
+  (package
+    (name "frrouting")
+    (version "6.0.2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append "https://github.com/FRRouting/frr/releases/"
+                                  "download/frr-" version "/frr-" version
+                                  ".tar.xz"))
+              (sha256
+               (base32
+                "0xfrvi62w8qlh46f504ka0skb7pm0g0p8vmdng4w90gsbirlzpdd"))))
+    (build-system gnu-build-system)
+    (inputs
+     `(("c-ares" ,c-ares)
+       ("json-c" ,json-c)
+       ("readline" ,readline)))
+    (native-inputs
+     `(("perl" ,perl)
+       ("pkg-config" ,pkg-config)
+       ("python" ,python-wrapper)
+       ("python-pytest" ,python-pytest)))
+    (home-page "https://frrouting.org/")
+    (synopsis "IP routing protocol suite")
+    (description "FRRouting (FRR) is an IP routing protocol suite which includes
+protocol daemons for BGP, IS-IS, LDP, OSPF, PIM, and RIP. ")
+    (license license:gpl2+)))
-- 
2.20.1

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

* [bug#34434] [PATCH v2] gnu: Add frrouting.
  2019-02-12 16:39 ` [bug#34434] [PATCH v2] " Gábor Boskovits
@ 2019-02-12 18:46   ` Leo Famulari
  2019-02-12 21:25   ` bug#34434: " Ricardo Wurmus
  1 sibling, 0 replies; 5+ messages in thread
From: Leo Famulari @ 2019-02-12 18:46 UTC (permalink / raw)
  To: Gábor Boskovits; +Cc: 34434

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

On Tue, Feb 12, 2019 at 05:39:50PM +0100, Gábor Boskovits wrote:
> * gnu/packages/networking.scm (frrouting): New variable.

Thanks, LGTM!

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

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

* bug#34434: [PATCH v2] gnu: Add frrouting.
  2019-02-12 16:39 ` [bug#34434] [PATCH v2] " Gábor Boskovits
  2019-02-12 18:46   ` Leo Famulari
@ 2019-02-12 21:25   ` Ricardo Wurmus
  1 sibling, 0 replies; 5+ messages in thread
From: Ricardo Wurmus @ 2019-02-12 21:25 UTC (permalink / raw)
  To: Gábor Boskovits; +Cc: 34434-done


Gábor Boskovits <boskovits@gmail.com> writes:

> * gnu/packages/networking.scm (frrouting): New variable.

Thanks!  Pushed to the master branch with commit dbf87ecb5.

-- 
Ricardo

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

end of thread, other threads:[~2019-02-12 21:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-11 13:48 [bug#34434] [PATCH] gnu: Add frrouting Gábor Boskovits
2019-02-11 20:37 ` Ricardo Wurmus
2019-02-12 16:39 ` [bug#34434] [PATCH v2] " Gábor Boskovits
2019-02-12 18:46   ` Leo Famulari
2019-02-12 21:25   ` bug#34434: " Ricardo Wurmus

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.