From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:51804) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ikaNU-0004XK-0y for guix-patches@gnu.org; Thu, 26 Dec 2019 16:09:05 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ikaNS-00055f-Ih for guix-patches@gnu.org; Thu, 26 Dec 2019 16:09:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:50333) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ikaNS-00055V-G9 for guix-patches@gnu.org; Thu, 26 Dec 2019 16:09:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1ikaNS-0006Yt-AI for guix-patches@gnu.org; Thu, 26 Dec 2019 16:09:02 -0500 Subject: [bug#38756] [PATCH] Add perl-net-bgp module. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:48312) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1ika8w-0002Ak-2S for guix-patches@gnu.org; Thu, 26 Dec 2019 15:54:03 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ika8u-000842-Gg for guix-patches@gnu.org; Thu, 26 Dec 2019 15:54:01 -0500 Received: from mail-lj1-x22d.google.com ([2a00:1450:4864:20::22d]:37828) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1ika8u-00083a-6Y for guix-patches@gnu.org; Thu, 26 Dec 2019 15:54:00 -0500 Received: by mail-lj1-x22d.google.com with SMTP id o13so14154514ljg.4 for ; Thu, 26 Dec 2019 12:53:59 -0800 (PST) MIME-Version: 1.0 From: Stephen Scheck Date: Thu, 26 Dec 2019 14:53:46 -0600 Message-ID: Content-Type: multipart/alternative; boundary="00000000000074fc99059aa19334" List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 38756@debbugs.gnu.org --00000000000074fc99059aa19334 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable --- gnu/packages/perl.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index f732c0ed46..44b764618b 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -22,6 +22,7 @@ ;;; Copyright =C2=A9 2018, 2019 Pierre Neidhardt ;;; Copyright =C2=A9 2018 Kei Kebreau ;;; Copyright =C2=A9 2019 Alex Griffin +;;; Copyright =C2=A9 2019 Stephen J. Scheck ;;; ;;; This file is part of GNU Guix. ;;; @@ -6697,6 +6698,31 @@ cycle. Functions called in the package itself will still be bound by their name, but they won't show up as methods on your class or instances.") (license (package-license perl)))) +(define-public perl-net-bgp + (package + (name "perl-net-bgp") + (version "0.17") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/S/SS/SSCHECK/Net-BGP-" version ".tar.gz")) + (sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pgldxf5y03wmk6h35y")))) + (build-system perl-build-system) + (home-page "https://metacpan.org/release/Net-BGP") + (synopsis "Object-oriented API to the BGP protocol") + (description + "This module is an implementation of the BGP-4 inter-domain routing protocol. +It encapsulates all of the functionality needed to establish and maintain = a +BGP peering session and exchange routing update information with the peer. +It aims to provide a simple API to the BGP protocol for the purposes of +automation, logging, monitoring, testing, and similar tasks using the +power and flexibility of perl. The module does not implement the +functionality of a RIB (Routing Information Base) nor does it modify the +kernel routing table of the host system. However, such operations could b= e +implemented using the API provided by the module.") + (license perl-license))) + (define-public perl-net-dns-native (package (name "perl-net-dns-native") --=20 2.21.0 (Apple Git-122.2) --00000000000074fc99059aa19334 Content-Type: text/html; charset="UTF-8" Content-Transfer-Encoding: quoted-printable
---
=C2=A0gnu/packages/perl.scm | 26 ++++++++++++++++++= ++++++++
=C2=A01 file changed, 26 insertions(+)

diff --git a/gnu/= packages/perl.scm b/gnu/packages/perl.scm
index f732c0ed46..44b764618b 1= 00644
--- a/gnu/packages/perl.scm
+++ b/gnu/packages/perl.scm
@@ -= 22,6 +22,7 @@
=C2=A0;;; Copyright =C2=A9 2018, 2019 Pierre Neidhardt <= ;mail@ambrevar.xyz>
=C2=A0;;= ; Copyright =C2=A9 2018 Kei Kebreau <kkebreau@posteo.net>
=C2=A0;;; Copyright =C2=A9 2019 Alex Gri= ffin <a@ajgrf.com>
+;;; Copyrig= ht =C2=A9 2019 Stephen J. Scheck <ss= check@cpan.org>
=C2=A0;;;
=C2=A0;;; This file is part of GNU G= uix.
=C2=A0;;;
@@ -6697,6 +6698,31 @@ cycle.=C2=A0 Functions called i= n the package itself will still be bound by their
=C2=A0name, but they w= on't show up as methods on your class or instances.")
=C2=A0 = =C2=A0 =C2=A0(license (package-license perl))))
=C2=A0
+(define-publi= c perl-net-bgp
+ =C2=A0(package
+ =C2=A0 =C2=A0(name "perl-net-b= gp")
+ =C2=A0 =C2=A0(version "0.17")
+ =C2=A0 =C2=A0(s= ource
+ =C2=A0 =C2=A0 =C2=A0(origin
+ =C2=A0 =C2=A0 =C2=A0 =C2=A0(met= hod url-fetch)
+ =C2=A0 =C2=A0 =C2=A0 =C2=A0(uri (string-append
+ =C2= =A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 "mirror://cpan/authors/i= d/S/SS/SSCHECK/Net-BGP-" version ".tar.gz"))
+ =C2=A0 =C2= =A0 =C2=A0 =C2=A0(sha256 (base32 "0za8x9cn5n2hasb14p7dr537lggvrcsl23pg= ldxf5y03wmk6h35y"))))
+ =C2=A0 =C2=A0(build-system perl-build-syste= m)
+ =C2=A0 =C2=A0(home-page "https://metacpan.org/release/Net-BGP")
+ =C2=A0 =C2= =A0(synopsis "Object-oriented API to the BGP protocol")
+ =C2= =A0 =C2=A0(description
+ =C2=A0 =C2=A0 =C2=A0"This module is an imp= lementation of the BGP-4 inter-domain routing protocol.
+It encapsulates= all of the functionality needed to establish and maintain a
+BGP peerin= g session and exchange routing update information with the peer.
+It aim= s to provide a simple API to the BGP protocol for the purposes of
+autom= ation, logging, monitoring, testing, and similar tasks using the
+power = and flexibility of perl.=C2=A0 The module does not implement the
+functi= onality of a RIB (Routing Information Base) nor does it modify the
+kern= el routing table of the host system.=C2=A0 However, such operations could b= e
+implemented using the API provided by the module.")
+ =C2=A0(= license perl-license)))
+
=C2=A0(define-public perl-net-dns-native=C2=A0 =C2=A0(package
=C2=A0 =C2=A0 =C2=A0(name "perl-net-dns-nati= ve")
--
2.21.0 (Apple Git-122.2)

--00000000000074fc99059aa19334--