From b596306cd4939fbb5106f35d2c1319c58106cc72 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 23 Dec 2017 17:09:49 +0100 Subject: gnu: Add perl-net-dns-native. * gnu/packages/perl.scm (perl-net-dns-native): New public variable. --- gnu/packages/perl.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'gnu/packages/perl.scm') diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 7ff55546c6..47fff558fb 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -5948,6 +5948,29 @@ 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-dns-native + (package + (name "perl-net-dns-native") + (version "0.15") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/O/OL/OLEG/Net-DNS-Native-" + version ".tar.gz")) + (sha256 + (base32 "12bsv5jkic3q4arpzk6dda35didkn445v658j87rmi540dpnac85")))) + (build-system perl-build-system) + (home-page "http://search.cpan.org/dist/Net-DNS-Native/") + (synopsis "Non-blocking system DNS resolver") + (description + "This class provides several methods for host name resolution. It is +designed to be used with event loops. Names are resolved by your system's +native @code{getaddrinfo(3)} implementation, called in a separate thread to +avoid blocking the entire application. Threading overhead is limited by using +system threads instead of Perl threads.") + (license perl-license))) + (define-public perl-net-idn-encode (package (name "perl-net-idn-encode") -- cgit v1.2.3 From 427d5677c05cc2ae0d4945f0cd90bf0af4a52b32 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 23 Dec 2017 18:03:48 +0100 Subject: gnu: perl-pod-simple: Update to 3.35. * gnu/packages/perl.scm (perl-pod-simple): Update to 3.35. --- gnu/packages/perl.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gnu/packages/perl.scm') diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 47fff558fb..a3839496a8 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -6445,16 +6445,16 @@ for a given module is comprehensive.") (define-public perl-pod-simple (package (name "perl-pod-simple") - (version "3.31") + (version "3.35") (source (origin (method url-fetch) - (uri (string-append "mirror://cpan/authors/id/M/MA/MARCGREEN/" + (uri (string-append "mirror://cpan/authors/id/K/KH/KHW/" "Pod-Simple-" version ".tar.gz")) (sha256 (base32 - "04705pcs31s71vpmnpfdy8ds0q700q4cs2dlyssyrdjbvx3ymq3l")))) + "0gg11ibbc02l2aw0bsv4jx0jax8z0apgfy3p5csqnvhlsb6218cr")))) (build-system perl-build-system) - (home-page "http://search.cpan.org/dist/Pod-Simple//") + (home-page "http://search.cpan.org/dist/Pod-Simple/") (synopsis "Parsing library for text in Pod format") (description "Pod::Simple is a Perl library for parsing text in the Pod (plain old documentation) markup language that is typically -- cgit v1.2.3 From a36a917dac88baeb5ec173d98a41412f1e5cccf2 Mon Sep 17 00:00:00 2001 From: Tobias Geerinckx-Rice Date: Sat, 23 Dec 2017 18:06:17 +0100 Subject: gnu: perl-pod-simple: Mark up description. * gnu/packages/perl.scm (perl-pod-simple)[description]: Use @code and @dfn. --- gnu/packages/perl.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gnu/packages/perl.scm') diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index a3839496a8..0fc6808537 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -6456,8 +6456,8 @@ for a given module is comprehensive.") (build-system perl-build-system) (home-page "http://search.cpan.org/dist/Pod-Simple/") (synopsis "Parsing library for text in Pod format") - (description "Pod::Simple is a Perl library for parsing text in -the Pod (plain old documentation) markup language that is typically + (description "@code{Pod::Simple} is a Perl library for parsing text in +the @dfn{Pod} (plain old documentation) markup language that is typically used for writing documentation for Perl and for Perl modules.") (license (package-license perl)))) -- cgit v1.2.3