From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:43492) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1h8A1Q-0004Pa-47 for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1h8A1O-0000PK-4v for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:12 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:43621) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1h8A1M-0000O0-2s for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:10 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1h8A1M-0003P4-0V for guix-patches@gnu.org; Sun, 24 Mar 2019 16:47:08 -0400 Subject: [bug#34980] [PATCH 12/17] gnu: Add perl-test-file. Resent-Message-ID: From: Christopher Baines Date: Sun, 24 Mar 2019 20:46:27 +0000 Message-Id: <20190324204632.17055-12-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): New variable. --- gnu/packages/perl-check.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl-check.scm b/gnu/packages/perl-check.scm index 22e31ef40a..43c9a09154 100644 --- a/gnu/packages/perl-check.scm +++ b/gnu/packages/perl-check.scm @@ -548,6 +548,30 @@ Test::Exception. It does much less, but should allow greater flexibility in testing exception-throwing code with about the same amount of typing.") (license perl-license))) +(define-public perl-test-file + (package + (name "perl-test-file") + (version "1.443") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/B/BD/BDFOY/Test-File-" + version + ".tar.gz")) + (sha256 + (base32 + "1mdwb3x8d4l24wsymamsnq2c73a637v4q5kmb5xqqz31iymsdd31")))) + (build-system perl-build-system) + (native-inputs + `(("perl-test-utf8" ,perl-test-utf8))) + (home-page "https://metacpan.org/release/Test-File") + (synopsis "Utilities for testing file attributes") + (description + "@code{Test::File} provides a collection of test utilities for file +attributes.") + (license perl-license))) + (define-public perl-test-file-sharedir-dist (package (name "perl-test-file-sharedir-dist") -- 2.20.1