From mboxrd@z Thu Jan 1 00:00:00 1970 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) Subject: Re: [PATCH 2/3] gnu: Add perl-log-log4perl. Date: Sun, 17 Jul 2016 15:27:39 +0200 Message-ID: <87oa5w4cok.fsf@gnu.org> References: <20160716182009.23643-1-alex@pompo.co> <20160716182009.23643-3-alex@pompo.co> <578AF627.5090707@uq.edu.au> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54148) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bOm6m-0002cU-0C for guix-devel@gnu.org; Sun, 17 Jul 2016 09:27:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bOm6g-00015v-Ni for guix-devel@gnu.org; Sun, 17 Jul 2016 09:27:46 -0400 In-Reply-To: <578AF627.5090707@uq.edu.au> (Ben Woodcroft's message of "Sun, 17 Jul 2016 13:06:15 +1000") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: Ben Woodcroft Cc: Alex Sassmannshausen , guix-devel@gnu.org Ben Woodcroft skribis: > On 17/07/16 04:20, Alex Sassmannshausen wrote: >> * gnu/packages/perl.scm (perl-log-log4perl): New variable. >> --- >> gnu/packages/perl.scm | 27 +++++++++++++++++++++++++++ >> 1 file changed, 27 insertions(+) >> >> diff --git a/gnu/packages/perl.scm b/gnu/packages/perl.scm >> index 486dbc2..fc63df3 100644 >> --- a/gnu/packages/perl.scm >> +++ b/gnu/packages/perl.scm >> @@ -2970,6 +2970,33 @@ whether the application has chosen (or will ever = choose) a logging >> mechanism.") >> (license (package-license perl)))) >> +(define-public perl-log-log4perl >> + (package >> + (name "perl-log-log4perl") >> + (version "1.47") >> + (source >> + (origin >> + (method url-fetch) >> + (uri (string-append >> + "mirror://cpan/authors/id/M/MS/MSCHILLI/Log-Log4perl-" >> + version >> + ".tar.gz")) >> + (sha256 >> + (base32 >> + "0vxraq9navx5mgf8y8g6l5rbl3dv2ml8bishka5m69hj07nxs0ch")))) >> + (build-system perl-build-system) >> + (home-page >> + "http://search.cpan.org/dist/Log-Log4perl") >> + (synopsis "Log4j implementation for Perl") >> + (description "Log::Log4perl lets you remote-control and fine-tune t= he >> +logging behaviour of your system from the outside. It implements the w= idely >> +popular (Java-based) Log4j logging package in pure Perl. >> + >> +For a detailed tutorial on Log::Log4perl usage, please read >> + >> +http://www.perl.com/pub/a/2002/09/11/log4perl.html") > > Is it appropriate to wrap this URL in some tex? I'm not sure what > would be appropriate in this case. Otherwise LGTM. I think =E2=80=9CFor a detailed tutorial =E2=80=A6=E2=80=9D doesn=E2=80=99t= belong in the description. The description should just give an idea of what this is about, IMO. Alex, could you also wrap module names in @code{}? Otherwise LGTM, thanks! Ludo=E2=80=99.