From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43633) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1djr8L-0000l6-9S for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1djr8I-0002xW-I0 for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:39492) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1djr8I-0002xS-E4 for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1djr8I-0006qf-8p for guix-patches@gnu.org; Mon, 21 Aug 2017 14:09:02 -0400 Subject: [bug#28177] [PATCH 05/12] gnu: Add perl-devel-cycle. Resent-Message-ID: From: Christopher Baines Date: Mon, 21 Aug 2017 19:08:25 +0100 Message-Id: <20170821180832.23356-5-mail@cbaines.net> In-Reply-To: <20170821180832.23356-1-mail@cbaines.net> References: <20170821190443.7056f624@cbaines.net> <20170821180832.23356-1-mail@cbaines.net> 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: 28177@debbugs.gnu.org * gnu/packages/perl.scm (perl-devel-cycle): New variable. --- gnu/packages/perl.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm index 9f135b4cc..03d77bb95 100644 --- a/gnu/packages/perl.scm +++ b/gnu/packages/perl.scm @@ -2253,6 +2253,30 @@ whether a compiler is available. It can test for a C99 compiler, or you can tell it to compile a C source file with optional linker flags.") (license (package-license perl)))) +(define-public perl-devel-cycle + (package + (name "perl-devel-cycle") + (version "1.12") + (source + (origin + (method url-fetch) + (uri (string-append + "mirror://cpan/authors/id/L/LD/LDS/Devel-Cycle-" + version + ".tar.gz")) + (sha256 + (base32 + "1hhb77kz3dys8yaik452j22cm3510zald2mpvfyv5clqv326aczx")))) + (build-system perl-build-system) + (home-page + "http://search.cpan.org/dist/Devel-Cycle") + (synopsis "Find memory cycles in objects") + (description + "@code{Devel::Cycle} This is a tool for finding circular references in +objects and other types of references. Because of Perl's reference-count +based memory management, circular references will cause memory leaks.") + (license (package-license perl)))) + (define-public perl-devel-globaldestruction (package (name "perl-devel-globaldestruction") -- 2.14.1