From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43383) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1efs1n-0002gy-P6 for guix-patches@gnu.org; Sun, 28 Jan 2018 13:50:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1efs1l-0006yf-7J for guix-patches@gnu.org; Sun, 28 Jan 2018 13:50:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:38639) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1efs1l-0006ya-3T for guix-patches@gnu.org; Sun, 28 Jan 2018 13:50:05 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1efs1k-0007NY-Sz for guix-patches@gnu.org; Sun, 28 Jan 2018 13:50:04 -0500 Subject: [bug#30274] [PATCH 07/21] gnu: Add perl-string-copyright. Resent-Message-ID: From: Oleg Pykhalov Date: Sun, 28 Jan 2018 21:48:14 +0300 Message-Id: <20180128184828.32395-7-go.wigust@gmail.com> In-Reply-To: <20180128184828.32395-1-go.wigust@gmail.com> References: <20180128184828.32395-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 e5bbe9748..d186ad7de 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