From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43460) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8A1O-0004NE-10 for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8A1M-0000O5-2s for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:09 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43620) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8A1L-0000Nl-Jb for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:07 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h8A1L-0003Ow-Hg for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:07 -0400 Subject: [bug#34980] [PATCH 13/17] gnu: Add perl-test-file-contents. Resent-Message-ID: From: Christopher Baines Date: Sun, 24 Mar 2019 20:46:28 +0000 Message-Id: <20190324204632.17055-13-mail@cbaines.net> In-Reply-To: <20190324204632.17055-1-mail@cbaines.net> References: <875zs8c8xg.fsf@cbaines.net> <20190324204632.17055-1-mail@cbaines.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 34980@debbugs.gnu.org * gnu/packages/perl-check.scm (perl-test-file-contents): New variable. --- gnu/packages/perl-check.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm index 43c9a09154..a1fb175596 100644 --- a/gnu/packages/perl-check.scm +++ b/gnu/packages/perl-check.scm @@ -572,6 +572,34 @@ testing exception-throwing code with about the same amount of typing.") attributes.") (license perl-license))) +(define-public perl-test-file-contents + (package + (name "perl-test-file-contents") + (version "0.23") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/D/DW/DWHEELER/Test-File-Contents-" + version + ".tar.gz")) + (sha256 + (base32 + "0g8zgfyw84181snw7ghahnl9r4lrmlfj7zwi76sv8d0bj7xssvyd")))) + (build-system perl-build-system) + (native-inputs + `(("perl-module-build" ,perl-module-build))) + (propagated-inputs + `(("perl-test-pod" ,perl-test-pod) + ("perl-test-pod-coverage" ,perl-test-pod-coverage) + ("perl-text-diff" ,perl-text-diff))) + (home-page "https://metacpan.org/release/Test-File-Contents") + (synopsis "Test routines for examining the contents of files") + (description + "@{Test::File::Contents} provides functions for testing the contents of +files.") + (license perl-license))) + (define-public perl-test-file-sharedir-dist (package (name "perl-test-file-sharedir-dist") -- 2.20.1