GNU bug report logs - #30903
[PATCH] gnu: Add perl-uri-escape.

Previous Next

Package: guix-patches;

Reported by: Oleg Pykhalov <go.wigust <at> gmail.com>

Date: Thu, 22 Mar 2018 02:25:01 UTC

Severity: normal

Tags: patch

Done: Oleg Pykhalov <go.wigust <at> gmail.com>

Bug is archived. No further changes may be made.

To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 30903 in the body.
You can then email your comments to 30903 AT debbugs.gnu.org in the normal way.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#30903; Package guix-patches. (Thu, 22 Mar 2018 02:25:02 GMT) Full text and rfc822 format available.

Acknowledgement sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
New bug report received and forwarded. Copy sent to guix-patches <at> gnu.org. (Thu, 22 Mar 2018 02:25:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: Oleg Pykhalov <go.wigust <at> gmail.com>
Subject: [PATCH] gnu: Add perl-uri-escape.
Date: Thu, 22 Mar 2018 05:23:59 +0300
* gnu/packages/perl-web.scm (perl-uri-escape): New public variable.
---
 gnu/packages/perl-web.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/perl-web.scm b/gnu/packages/perl-web.scm
index 0500cee0d..af7cf8f58 100644
--- a/gnu/packages/perl-web.scm
+++ b/gnu/packages/perl-web.scm
@@ -21,6 +21,7 @@
   #:use-module ((guix licenses) #:prefix license:)
   #:use-module (gnu packages)
   #:use-module (guix packages)
+  #:use-module (gnu packages perl-check)
   #:use-module (guix download)
   #:use-module (guix build-system perl))
 
@@ -46,3 +47,26 @@ keep you going, learning by doing was much fun.  While most of the techniques
 used are outdated now, the idea behind it is not.  Mojolicious is a new
 endeavor to implement this idea using modern technologies.")
     (license license:artistic2.0)))
+
+(define-public perl-uri-escape
+  (package
+    (name "perl-uri-escape")
+    (version "1.73")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "mirror://cpan/authors/id/E/ET/ETHER/URI-"
+                           version ".tar.gz"))
+       (sha256
+        (base32
+         "04z4xwiryrbxxi48bwbkgq9q9pwfgqry3wp0ramcrwv3dx5ap9yc"))))
+    (build-system perl-build-system)
+    (inputs
+     `(("perl-test-needs" ,perl-test-needs)))
+    (home-page "https://github.com/libwww-perl/URI")
+    (synopsis "Percent-encode and percent-decode unsafe characters")
+    (description "This module provides functions to percent-encode and
+percent-decode URI strings as defined by RFC 3986.  Percent-encoding URI's is
+informally called URI escaping.  This is the terminology used by this module,
+which predates the formalization of the terms by the RFC by several years.")
+    (license license:perl-license)))
-- 
2.16.2





Information forwarded to guix-patches <at> gnu.org:
bug#30903; Package guix-patches. (Mon, 26 Mar 2018 17:46:01 GMT) Full text and rfc822 format available.

Message #8 received at 30903 <at> debbugs.gnu.org (full text, mbox):

From: Marius Bakke <mbakke <at> fastmail.com>
To: Oleg Pykhalov <go.wigust <at> gmail.com>, 30903 <at> debbugs.gnu.org
Subject: Re: [bug#30903] [PATCH] gnu: Add perl-uri-escape.
Date: Mon, 26 Mar 2018 19:45:41 +0200
[Message part 1 (text/plain, inline)]
Oleg Pykhalov <go.wigust <at> gmail.com> writes:

> * gnu/packages/perl-web.scm (perl-uri-escape): New public variable.

[...]

> +    (inputs
> +     `(("perl-test-needs" ,perl-test-needs)))

Native-input?  Other than that LGTM.

> +    (home-page "https://github.com/libwww-perl/URI")
> +    (synopsis "Percent-encode and percent-decode unsafe characters")
> +    (description "This module provides functions to percent-encode and
> +percent-decode URI strings as defined by RFC 3986.  Percent-encoding URI's is
> +informally called URI escaping.  This is the terminology used by this module,
> +which predates the formalization of the terms by the RFC by several years.")
> +    (license license:perl-license)))
> -- 
> 2.16.2
[signature.asc (application/pgp-signature, inline)]

Information forwarded to guix-patches <at> gnu.org:
bug#30903; Package guix-patches. (Mon, 26 Mar 2018 19:52:01 GMT) Full text and rfc822 format available.

Message #11 received at 30903 <at> debbugs.gnu.org (full text, mbox):

From: Oleg Pykhalov <go.wigust <at> gmail.com>
To: Marius Bakke <mbakke <at> fastmail.com>
Cc: 30903-done <at> debbugs.gnu.org, 30903 <at> debbugs.gnu.org
Subject: Re: [bug#30903] [PATCH] gnu: Add perl-uri-escape.
Date: Mon, 26 Mar 2018 22:50:40 +0300
[Message part 1 (text/plain, inline)]
Marius Bakke <mbakke <at> fastmail.com> writes:

> Oleg Pykhalov <go.wigust <at> gmail.com> writes:
>
>> * gnu/packages/perl-web.scm (perl-uri-escape): New public variable.
>
> [...]
>
>> +    (inputs
>> +     `(("perl-test-needs" ,perl-test-needs)))
>
> Native-input?  Other than that LGTM.

OK.  Thank you for review.

Pushed as e0de023eae9f98cb809a4866a84d85efaa262e56

I'll close the bug report.

Oleg.
[signature.asc (application/pgp-signature, inline)]

Reply sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
You have taken responsibility. (Mon, 26 Mar 2018 19:52:03 GMT) Full text and rfc822 format available.

Notification sent to Oleg Pykhalov <go.wigust <at> gmail.com>:
bug acknowledged by developer. (Mon, 26 Mar 2018 19:52:03 GMT) Full text and rfc822 format available.

bug archived. Request was from Debbugs Internal Request <help-debbugs <at> gnu.org> to internal_control <at> debbugs.gnu.org. (Tue, 24 Apr 2018 11:24:04 GMT) Full text and rfc822 format available.

This bug report was last modified 7 years and 118 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.