From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35325) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1egD8E-0002dZ-9Y for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1egD8B-0008GJ-Vr for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:10 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40229) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1egD8B-0008G6-Rl for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:07 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1egD8B-0008SS-Ks for guix-patches@gnu.org; Mon, 29 Jan 2018 12:22:07 -0500 Subject: [bug#30274] [PATCH 07/24] gnu: Add perl-string-copyright. Resent-Message-ID: From: Oleg Pykhalov Date: Mon, 29 Jan 2018 20:20:19 +0300 Message-Id: <20180129172036.21133-8-go.wigust@gmail.com> In-Reply-To: <20180129172036.21133-1-go.wigust@gmail.com> References: <20180128184828.32395-21-go.wigust@gmail.com> <20180129172036.21133-1-go.wigust@gmail.com> 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: 30274@debbugs.gnu.org * gnu/packages/license.scm (perl-string-copyright): New public variable. --- gnu/packages/license.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/license.scm b/gnu/packages/license.scm index 80bb8f6e1..09a922842 100644 --- a/gnu/packages/license.scm +++ b/gnu/packages/license.scm @@ -55,3 +55,27 @@ expression patterns related to legal software licenses. Regexp::Pattern is a convention for organizing reusable regex patterns.") (license gpl3+))) + +(define-public perl-string-copyright + (package + (name "perl-string-copyright") + (version "0.003005") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/J/JO/JONASS/String-Copyright-" + version ".tar.gz")) + (sha256 + (base32 + "12c6x4c10gr46ryc3dpwgfi6wggmgy4a1ls2hwhcpdm3wvzy5619")))) + (build-system perl-build-system) + (native-inputs + `(("perl-number-range" ,perl-number-range))) + (propagated-inputs + `(("perl-exporter-tiny" ,perl-exporter-tiny))) + (home-page "http://search.cpan.org/dist/String-Copyright/") + (synopsis "Representation of text-based copyright statements") + (description "String::Copyright Parses common styles of copyright +statements and serializes in normalized format.") + (license gpl3+))) -- 2.15.1