From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 15:31:12 2017 Received: (at submit) by debbugs.gnu.org; 11 May 2017 19:31:12 +0000 Received: from localhost ([127.0.0.1]:39075 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8tnn-0004hw-Bo for submit@debbugs.gnu.org; Thu, 11 May 2017 15:31:12 -0400 Received: from eggs.gnu.org ([208.118.235.92]:50386) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8tnl-0004hQ-HW for submit@debbugs.gnu.org; Thu, 11 May 2017 15:31:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8tne-0004T0-UN for submit@debbugs.gnu.org; Thu, 11 May 2017 15:30:59 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:44841) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d8tne-0004St-QG for submit@debbugs.gnu.org; Thu, 11 May 2017 15:30:58 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:41352) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1d8tnd-0005FB-Gz for guix-patches@gnu.org; Thu, 11 May 2017 15:30:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1d8tna-0004Q2-9K for guix-patches@gnu.org; Thu, 11 May 2017 15:30:57 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21001) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1d8tnZ-0004No-W1 for guix-patches@gnu.org; Thu, 11 May 2017 15:30:54 -0400 Received: from localhost (i577AE075.versanet.de [87.122.224.117]) by mx.zohomail.com with SMTPS id 1494531049915900.4720680001138; Thu, 11 May 2017 12:30:49 -0700 (PDT) From: Ricardo Wurmus To: guix-patches@gnu.org Subject: [PATCH] gnu: Add agrep. Date: Thu, 11 May 2017 21:30:45 +0200 Message-Id: <20170511193045.8882-1-rekado@elephly.net> X-Mailer: git-send-email 2.12.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External X-ZohoMail: Z_26063301 SPT_1 Z_26062608 SPT_0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.0 (----) X-Debbugs-Envelope-To: submit Cc: Ricardo Wurmus X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: 1.0 (+) * gnu/packages/base.scm (agrep): New variable. --- gnu/packages/base.scm | 33 ++++++++++++++++++++++++++++++++- 1 file changed, 32 insertions(+), 1 deletion(-) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 59a9acd67..a07638c38 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -8,6 +8,7 @@ ;;; Copyright © 2016 Efraim Flashner ;;; Copyright © 2016 Jan Nieuwenhuizen ;;; Copyright © 2017 Marius Bakke +;;; Copyright © 2017 Ricardo Wurmus ;;; ;;; This file is part of GNU Guix. ;;; @@ -26,7 +27,7 @@ (define-module (gnu packages base) #:use-module ((guix licenses) - #:select (gpl3+ lgpl2.0+ lgpl3+ public-domain)) + #:select (gpl2+ gpl3+ lgpl2.0+ lgpl3+ public-domain)) #:use-module (gnu packages) #:use-module (gnu packages acl) #:use-module (gnu packages bash) @@ -116,6 +117,36 @@ including, for example, recursive directory searching.") (license gpl3+) (home-page "https://www.gnu.org/software/grep/"))) +(define-public agrep + (package + (name "agrep") + (version "3.41") + (source (origin + (method url-fetch) + (uri (string-append "https://www.tgries.de/agrep/agrep-" + version ".tgz")) + (sha256 + (base32 + "0ki3gbvc7lh8alks9zm48f216l2gp8r6vssmr5yccpvjz7xfl205")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no "check" target + #:phases + (modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) + (mkdir-p bin) + (install-file "agrep" bin) + #t)))))) + (home-page "https://www.tgries.de/agrep/") + (synopsis "Approximate grep for fast fuzzy string searching") + (description "Agrep is a tool for fast searching of files for a string or +regular expression, with approximate matching capabilities and user-definable +records.") + (license gpl2+))) + (define-public sed (package (name "sed") -- 2.12.2 From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 17:04:19 2017 Received: (at 26890) by debbugs.gnu.org; 11 May 2017 21:04:19 +0000 Received: from localhost ([127.0.0.1]:39188 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vFv-0006xi-T1 for submit@debbugs.gnu.org; Thu, 11 May 2017 17:04:19 -0400 Received: from lb1.openmailbox.org ([5.79.108.160]:33961 helo=mail.openmailbox.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vFu-0006xZ-5u for 26890@debbugs.gnu.org; Thu, 11 May 2017 17:04:14 -0400 Received: by mail.openmailbox.org (Postfix, from userid 20002) id 9A0445183DA; Thu, 11 May 2017 23:04:13 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1494536653; bh=NdBZ2IHn9HSZo2dewcRm5DkPc6ZFnlEBhdAw0f32gP0=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=X6sF1MVx10xSgDKrFMd4eMElOtY1mp8cu4wQw2rbwvUSdhcOLj2Iys2YlvrjrfDEO tYtI5S1O6HZr8OrFMnlKJnoV+YN/ZqLRuTGgjivG4TMzBcQfl9cN43/TlW3WipI6NU Immi6p6YH5lSEQx8Nl6C+Eq25pXXTtkgzSdOMEuo= From: Kei Kebreau DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1494536653; bh=NdBZ2IHn9HSZo2dewcRm5DkPc6ZFnlEBhdAw0f32gP0=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=X6sF1MVx10xSgDKrFMd4eMElOtY1mp8cu4wQw2rbwvUSdhcOLj2Iys2YlvrjrfDEO tYtI5S1O6HZr8OrFMnlKJnoV+YN/ZqLRuTGgjivG4TMzBcQfl9cN43/TlW3WipI6NU Immi6p6YH5lSEQx8Nl6C+Eq25pXXTtkgzSdOMEuo= To: Ricardo Wurmus Subject: Re: bug#26890: [PATCH] gnu: Add agrep. References: <20170511193045.8882-1-rekado@elephly.net> Date: Thu, 11 May 2017 17:04:08 -0400 In-Reply-To: <20170511193045.8882-1-rekado@elephly.net> (Ricardo Wurmus's message of "Thu, 11 May 2017 21:30:45 +0200") Message-ID: <87efvvhzqv.fsf@openmailbox.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 26890 Cc: 26890@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ricardo Wurmus writes: > * gnu/packages/base.scm (agrep): New variable. > --- > gnu/packages/base.scm | 33 ++++++++++++++++++++++++++++++++- > 1 file changed, 32 insertions(+), 1 deletion(-) > > diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm > index 59a9acd67..a07638c38 100644 > --- a/gnu/packages/base.scm > +++ b/gnu/packages/base.scm > @@ -8,6 +8,7 @@ > ;;; Copyright =C2=A9 2016 Efraim Flashner > ;;; Copyright =C2=A9 2016 Jan Nieuwenhuizen > ;;; Copyright =C2=A9 2017 Marius Bakke > +;;; Copyright =C2=A9 2017 Ricardo Wurmus > ;;; > ;;; This file is part of GNU Guix. > ;;; > @@ -26,7 +27,7 @@ >=20=20 > (define-module (gnu packages base) > #:use-module ((guix licenses) > - #:select (gpl3+ lgpl2.0+ lgpl3+ public-domain)) > + #:select (gpl2+ gpl3+ lgpl2.0+ lgpl3+ public-domain)) > #:use-module (gnu packages) > #:use-module (gnu packages acl) > #:use-module (gnu packages bash) > @@ -116,6 +117,36 @@ including, for example, recursive directory searchin= g.") > (license gpl3+) > (home-page "https://www.gnu.org/software/grep/"))) >=20=20 > +(define-public agrep > + (package > + (name "agrep") > + (version "3.41") > + (source (origin > + (method url-fetch) > + (uri (string-append "https://www.tgries.de/agrep/agrep-" > + version ".tgz")) > + (sha256 > + (base32 > + "0ki3gbvc7lh8alks9zm48f216l2gp8r6vssmr5yccpvjz7xfl205"))= )) > + (build-system gnu-build-system) > + (arguments > + `(#:tests? #f ; no "check" target > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let ((bin (string-append (assoc-ref outputs "out") "/bin")= )) > + (mkdir-p bin) > + (install-file "agrep" bin) > + #t)))))) > + (home-page "https://www.tgries.de/agrep/") > + (synopsis "Approximate grep for fast fuzzy string searching") > + (description "Agrep is a tool for fast searching of files for a stri= ng or > +regular expression, with approximate matching capabilities and user-defi= nable > +records.") > + (license gpl2+))) > + > (define-public sed > (package > (name "sed") Quote from copying.agrep in the source directory: 4. Redistribution for profit requires the express, written permission of the authors. There is a similar clause on the website. Does the GPL or this clause take precedence? --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEg7ZwOtzKO2lLzi2m5qXuPBlGeg0FAlkU0cgACgkQ5qXuPBlG eg2TIQ//W9oopWEoAJnSzFw5qswhD4cwTdkYpS6scUagaKStRbt5Sc7i2B6aZULv dRiD3TWx9kl0PtxUM/whlTlSKFAEplyDKZx+k+4w86Bt1DzH8f+z4IP/xy6H7nPq bLfv9eVxpSOsRrV4WrLSyfiPtU8C0K5MYt6/inJABNvn5Vo5HQCsqpdJQ8J563sn piHfIFE7ZAyMY6H72zeXbZ97LiEy42wfX9VxFnxXlQ6PQtgBT0rQMb/NTQBeWJjT 97F59P3ZeM0MY6UbOcdYqg+lXBfA/wnX+3UxVkbV3DzERCiPeY4lmPEZsWh7IF3E MufMWckc/MC6vdiKZexqaCJe0I4nRIXvAEGmJeNgRLNDEps7q+pMzSEEenkpkuzO zE+D/7B5Ry6i+DBHZs2gnY6gcNkEchTA1oMzKIMdYOOVIYFTwi8B7bpJ8bW0VyPj ZzTLwOM+pVaBbeVuqVJ+sEx3Yv6e4XpGIfphBRodxyY5iqUx+xE/T9bgf3ZKqNQs aEXfT7zUOkVy7QX/7/r5DdLq8j0jr7PgB4h+Le85Q++AXAv3uhTn/laAnsoAJSLv LfKR7S7bg8vrAgBjd/mh8wX1b92dzucy2A4QUz9oX0J/Y3RSy6+oBhSJXKo/jiYG RaCAmJ0sjN2qnOWRVsEYvKRHnifcA1QXBr7Wrj5mxM/4BMscYK4= =MHpw -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 17:14:54 2017 Received: (at 26890) by debbugs.gnu.org; 11 May 2017 21:14:54 +0000 Received: from localhost ([127.0.0.1]:39197 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vQA-0007Cq-AY for submit@debbugs.gnu.org; Thu, 11 May 2017 17:14:54 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21063) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vQ7-0007Cg-0w for 26890@debbugs.gnu.org; Thu, 11 May 2017 17:14:47 -0400 Received: from localhost (port-92-200-17-209.dynamic.qsc.de [92.200.17.209]) by mx.zohomail.com with SMTPS id 1494537283569632.6084721513058; Thu, 11 May 2017 14:14:43 -0700 (PDT) References: <20170511193045.8882-1-rekado@elephly.net> <87efvvhzqv.fsf@openmailbox.org> User-agent: mu4e 0.9.18; emacs 25.2.1 From: Ricardo Wurmus To: Kei Kebreau Subject: Re: bug#26890: [PATCH] gnu: Add agrep. In-reply-to: <87efvvhzqv.fsf@openmailbox.org> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Thu, 11 May 2017 23:14:40 +0200 Message-ID: <87vap7rt8f.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External X-Spam-Score: -1.8 (-) X-Debbugs-Envelope-To: 26890 Cc: 26890@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.8 (-) Kei Kebreau writes: > Ricardo Wurmus writes: > >> * gnu/packages/base.scm (agrep): New variable. >> --- >> gnu/packages/base.scm | 33 ++++++++++++++++++++++++++++++++- >> 1 file changed, 32 insertions(+), 1 deletion(-) >> >> diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm >> index 59a9acd67..a07638c38 100644 >> --- a/gnu/packages/base.scm >> +++ b/gnu/packages/base.scm >> @@ -8,6 +8,7 @@ >> ;;; Copyright © 2016 Efraim Flashner >> ;;; Copyright © 2016 Jan Nieuwenhuizen >> ;;; Copyright © 2017 Marius Bakke >> +;;; Copyright © 2017 Ricardo Wurmus >> ;;; >> ;;; This file is part of GNU Guix. >> ;;; >> @@ -26,7 +27,7 @@ >> >> (define-module (gnu packages base) >> #:use-module ((guix licenses) >> - #:select (gpl3+ lgpl2.0+ lgpl3+ public-domain)) >> + #:select (gpl2+ gpl3+ lgpl2.0+ lgpl3+ public-domain)) >> #:use-module (gnu packages) >> #:use-module (gnu packages acl) >> #:use-module (gnu packages bash) >> @@ -116,6 +117,36 @@ including, for example, recursive directory searching.") >> (license gpl3+) >> (home-page "https://www.gnu.org/software/grep/"))) >> >> +(define-public agrep >> + (package >> + (name "agrep") >> + (version "3.41") >> + (source (origin >> + (method url-fetch) >> + (uri (string-append "https://www.tgries.de/agrep/agrep-" >> + version ".tgz")) >> + (sha256 >> + (base32 >> + "0ki3gbvc7lh8alks9zm48f216l2gp8r6vssmr5yccpvjz7xfl205")))) >> + (build-system gnu-build-system) >> + (arguments >> + `(#:tests? #f ; no "check" target >> + #:phases >> + (modify-phases %standard-phases >> + (delete 'configure) >> + (replace 'install >> + (lambda* (#:key outputs #:allow-other-keys) >> + (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) >> + (mkdir-p bin) >> + (install-file "agrep" bin) >> + #t)))))) >> + (home-page "https://www.tgries.de/agrep/") >> + (synopsis "Approximate grep for fast fuzzy string searching") >> + (description "Agrep is a tool for fast searching of files for a string or >> +regular expression, with approximate matching capabilities and user-definable >> +records.") >> + (license gpl2+))) >> + >> (define-public sed >> (package >> (name "sed") > > Quote from copying.agrep in the source directory: > 4. Redistribution for profit requires the express, written permission > of the authors. > > There is a similar clause on the website. Does the GPL or this clause > take precedence? Hmm, this is confusing. The COPYRIGHT and README files in the git repository say that the license is ICS since Sept 18, 2014, but that’s not part of the tarball. :~/ ? I’m not so happy to put this in base, by the way. I just added it there because that’s where grep is. Any other ideas? -- Ricardo GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC https://elephly.net From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 17:24:47 2017 Received: (at 26890) by debbugs.gnu.org; 11 May 2017 21:24:47 +0000 Received: from localhost ([127.0.0.1]:39219 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vZn-0007Sl-K5 for submit@debbugs.gnu.org; Thu, 11 May 2017 17:24:47 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:39379) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vZj-0007Sb-St for 26890@debbugs.gnu.org; Thu, 11 May 2017 17:24:45 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 17A0220969; Thu, 11 May 2017 17:24:43 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute4.internal (MEProxy); Thu, 11 May 2017 17:24:43 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=famulari.name; h=cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=mesmtp; bh=ahtBExnNbGY1fqDgvkRcTAga2IcWzfikVujCS7 lYchQ=; b=hZW/DlXLJLiR93E2W9z95iReFRtKKW50wAIDxR7XYu75T6B4NSZvRl ZZFqlZGT1MyWhSkl0nUoShzN8aqreRgx4DM1VwC1MeTg0LsUb2Kc6dvzpfDqOBVu oeSJQeWOxd65vVFzsHQfaB03KI7MwTsZzWEGufd5OhnalzH3+BkzQ= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=ahtBExnNbGY1fqDgvk RcTAga2IcWzfikVujCS7lYchQ=; b=XoqnFCYnhI7ACghQSuRYl3HqyslkSvDi9y I43Da6NBVTKNivZDUfx/Ug06k/8SXNLgsh6fygpADaET0tjR3BCB7qkYBrv1vfzX f65giUpBJLtDF49K4gvzFZHsd0Tk+B2PAKyMMMHKZU+Z+AOaAewGDgWCTg98rdss 9yQfjKZOcdhHCh6D7AyXjuweULLR6AVSVxSbW4bL1YssLbUDiql3ikZRkW0uj7hX 5QOHKMpozo5Liht3J2berixUhHGaLTuSoxoz/RKYcb1piAkxK1+UPjnMIJx27Rfo akhSZfU2PXKq45zV1WvEYOijmrp4TEbcTqIMH9EKKbDEOiYp8yig== X-ME-Sender: X-Sasl-enc: tqnIH0E2IbWYCVxOWYZAo6SVszHKzY2l4k4IteXF0DwF 1494537882 Received: from localhost (c-71-230-114-75.hsd1.pa.comcast.net [71.230.114.75]) by mail.messagingengine.com (Postfix) with ESMTPA id CCCE62423D; Thu, 11 May 2017 17:24:42 -0400 (EDT) Date: Thu, 11 May 2017 17:24:41 -0400 From: Leo Famulari To: Kei Kebreau Subject: Re: bug#26890: [PATCH] gnu: Add agrep. Message-ID: <20170511212441.GA7640@jasmine> References: <20170511193045.8882-1-rekado@elephly.net> <87efvvhzqv.fsf@openmailbox.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="PEIAKu/WMn1b1Hv9" Content-Disposition: inline In-Reply-To: <87efvvhzqv.fsf@openmailbox.org> User-Agent: Mutt/1.8.2 (2017-04-18) X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 26890 Cc: Ricardo Wurmus , 26890@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --PEIAKu/WMn1b1Hv9 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Thu, May 11, 2017 at 05:04:08PM -0400, Kei Kebreau wrote: > Quote from copying.agrep in the source directory: > 4. Redistribution for profit requires the express, written permission > of the authors. Unfortunately, this clause makes agrep not free software. Indeed, Debian distributes it from their non-free repos: https://packages.debian.org/sid/agrep --PEIAKu/WMn1b1Hv9 Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAABCAAdFiEEsFFZSPHn08G5gDigJkb6MLrKfwgFAlkU1pYACgkQJkb6MLrK fwj4Ig//bW1kVpx42A+W++jqrIIUhZYbjE+s3mtdZEkvJeoakDZKPKd6hm0kfXLM T/L6f3xkXih1Kk/1ILfG26yFQhlywsOUkH0GTinNYGnSM5az5Sp7DG/9hIcwI591 VFbpNCVedYnAjBNXvsdYaZmFk5TRFu9I3K2NARURrkvzdeeyLli80Ve3CSVbLNcc OrYuTkZa+9Un1W90kFtmBKmeGn0V3c8/lW7BvtmZ/wCngogNQa8B6YOPaLLw5AD6 oZ6SqlvzH+YUW25kPwtB73Eq/9GoRU6dvUiNPNoEJN3J8yIzuRw93mQcix7HfZp+ 101U9F4RbMnMa8y0svZpvTjJlSOsXwEILRTYMEIGQ5LalK6l7Qy+GQJM+mSqFZfg Svnl0Rt3Al+LJzeWSPuRMllgvRNVcBsfj9itUfcYhUwi5N0FbL8o9gwOXJhuC9T7 ol+jn3sP8jCQlRNjyA9CaDR+Hwdxq97lQeyey+i4NEVCjbh+K3PdAokgocYnJuBW 0D6SvbYvzXh0yfwI5r4ZeLcEGlAwqgPGRRr+XFXmUPZKUk5Z5cJ7IDMg8CRCUiyG eNozsoWZNYhv4V6GR5Q478KMTTNSiUrVNEDG6mz7MyrUXm389h818p8vAOjSmw5R zKz+71VztRMbsJEoTmAibCOoy3IWAPNcs2Oe3I3YHFGcGzaqG0A= =5Gyw -----END PGP SIGNATURE----- --PEIAKu/WMn1b1Hv9-- From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 17:36:45 2017 Received: (at 26890) by debbugs.gnu.org; 11 May 2017 21:36:45 +0000 Received: from localhost ([127.0.0.1]:39251 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vlN-00019N-4a for submit@debbugs.gnu.org; Thu, 11 May 2017 17:36:45 -0400 Received: from sender-of-o51.zoho.com ([135.84.80.216]:21019) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8vlL-00019F-MC for 26890@debbugs.gnu.org; Thu, 11 May 2017 17:36:44 -0400 Received: from localhost (port-92-200-17-209.dynamic.qsc.de [92.200.17.209]) by mx.zohomail.com with SMTPS id 1494538598319977.4578365730074; Thu, 11 May 2017 14:36:38 -0700 (PDT) References: <20170511193045.8882-1-rekado@elephly.net> <87efvvhzqv.fsf@openmailbox.org> <20170511212441.GA7640@jasmine> User-agent: mu4e 0.9.18; emacs 25.2.1 From: Ricardo Wurmus To: Leo Famulari Subject: Re: bug#26890: [PATCH] gnu: Add agrep. In-reply-to: <20170511212441.GA7640@jasmine> X-URL: https://elephly.net X-PGP-Key: https://elephly.net/rekado.pubkey X-PGP-Fingerprint: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC Date: Thu, 11 May 2017 23:36:35 +0200 Message-ID: <87tw4rrs7w.fsf@elephly.net> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-ZohoMailClient: External X-Spam-Score: -1.8 (-) X-Debbugs-Envelope-To: 26890 Cc: 26890@debbugs.gnu.org, Kei Kebreau X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.8 (-) Leo Famulari writes: > On Thu, May 11, 2017 at 05:04:08PM -0400, Kei Kebreau wrote: >> Quote from copying.agrep in the source directory: >> 4. Redistribution for profit requires the express, written permission >> of the authors. > > Unfortunately, this clause makes agrep not free software. Indeed, Debian > distributes it from their non-free repos: > > https://packages.debian.org/sid/agrep This is confusing. Debian has version 4.17-9 but I don’t even know where they got it from. The home page that’s linked there only has 2.x tarballs. And this clashes with the declaration of the ICS version in the git repo. Weird! I really don’t mind dropping this patch (I just packaged it while demonstrating Guix), but it’s sad that the license situation here is so contradictory. -- Ricardo GPG: BCA6 89B6 3655 3801 C3C6 2150 197A 5888 235F ACAC https://elephly.net From debbugs-submit-bounces@debbugs.gnu.org Thu May 11 18:04:05 2017 Received: (at 26890) by debbugs.gnu.org; 11 May 2017 22:04:05 +0000 Received: from localhost ([127.0.0.1]:39305 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8wBo-0001qD-VG for submit@debbugs.gnu.org; Thu, 11 May 2017 18:04:05 -0400 Received: from out4-smtp.messagingengine.com ([66.111.4.28]:45099) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1d8wBn-0001q6-OO for 26890@debbugs.gnu.org; Thu, 11 May 2017 18:04:04 -0400 Received: from compute5.internal (compute5.nyi.internal [10.202.2.45]) by mailout.nyi.internal (Postfix) with ESMTP id 82774209B2; Thu, 11 May 2017 18:03:59 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute5.internal (MEProxy); Thu, 11 May 2017 18:03:59 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h= cc:content-type:date:from:in-reply-to:message-id:mime-version :references:subject:to:x-me-sender:x-me-sender:x-sasl-enc :x-sasl-enc; s=fm1; bh=13zHlP2T8IC86tfMJqp8V5At2mId7DPumUsYcz7QR /o=; b=1xleIIXzdO4piL28Sgovym/3EGMFHaOcvuLlC/tll6koSu0oA2/V3CaPM tAJKqclixs31mJrvBst6in3SkCli0YxhIUQy3IiicEI7EWGff9bIVKn98qZX4msp R1FM2mBLqCyFOFBcH6QpKG73UM3ApXGbMwxgq3UNG0KJft+Q1sipuz3KTEUKNRh9 iuHswJNn6BpM7qM5IZ+ztrrg5Ye7m1vOBtS/i0divWKwuKN+xg9pgNngnhUlo+Tl nVqM3AKBTVNmiadXPRwpVtdBVA4ychwCjBRZtBEevDOf1qrG4xBOViDMVonG+t3O 7SyPxwOlRhrNYanyaZjVvKxRXnF5Q== DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=fm1; bh=13zHlP2T8IC86tfMJq p8V5At2mId7DPumUsYcz7QR/o=; b=QOJXYuHB0px6rhkRPl0AtUp8E2tIuBvGMw yJ0pymRBITEN6lG+izmqDZNQbCSkPc/OB5h2nBQ/oirKVTamfZOJS1r8rQiD+XXS pbC3DrmKKxM/QK7tbws+oaD5RsOT5jEgx2+QMVg/sMHd6lbI3V18BR9fl6411JQR m5SULplYPiyHbzem2fj1bChS6lw6rE/jnck/686G88WN2Jcd3Mo+GGF4zSXln7wX G+m6d67IDhpzE6bYxi9M80HSF+uPfCvv0kTAM8rEKc7a+/hdkfZVpyGxDKLpUvlQ E2mwq+mqrCEgFKnQEuTD6DFLPI59+v3DBAXibMQYc5VZWKmL3MpQ== X-ME-Sender: X-Sasl-enc: emr7ilJaoLIMy2K9ooEk+vhus2+fjVPEob6xiLl6L9v/ 1494540239 Received: from localhost (unknown [188.113.81.93]) by mail.messagingengine.com (Postfix) with ESMTPA id 1C8137E8DF; Thu, 11 May 2017 18:03:58 -0400 (EDT) From: Marius Bakke To: Ricardo Wurmus , Kei Kebreau Subject: Re: bug#26890: [PATCH] gnu: Add agrep. In-Reply-To: <87vap7rt8f.fsf@elephly.net> References: <20170511193045.8882-1-rekado@elephly.net> <87efvvhzqv.fsf@openmailbox.org> <87vap7rt8f.fsf@elephly.net> User-Agent: Notmuch/0.24.1 (https://notmuchmail.org) Emacs/25.2.1 (x86_64-unknown-linux-gnu) Date: Fri, 12 May 2017 00:03:57 +0200 Message-ID: <87a86jjbjm.fsf@fastmail.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 26890 Cc: 26890@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -0.7 (/) --=-=-= Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Ricardo Wurmus writes: > I=E2=80=99m not so happy to put this in base, by the way. I just added it > there because that=E2=80=99s where grep is. Any other ideas? I'd use 'textutils.scm', but there is also 'code.scm' with similar tools. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQEzBAEBCgAdFiEEu7At3yzq9qgNHeZDoqBt8qM6VPoFAlkU380ACgkQoqBt8qM6 VPp1jggAmcaxOe5riNiqHRdi4jFQABx1SzV2WQ50SGRJ0N8udxW28aSYE5r+x23Z mPkZW7fdu2Nf8u+jFpgGlq969d9CG6Uv8EIAR6ouYlOeGB5U+Ke1XMn8lng7jaG0 lPZB5i0VVf5wVjHeMbTh1oJoaGQT+ATgXDQGs2+CuIduzwROclIOp2Fty0tKPy7Z KRBVHvl1MOlj8gBm2tOUF1lBUtLT5lS3lt+VR8Pbrd95cLD43f3adMZ1nc109/W1 ONNZeC7ya/uHQ+oFE2lqNTmpYhENnEY5H/+uYMH494bZ8/yLF+esWd+MQyg0bgvY 091T/sG54/X9pjOuDZVNjW8fGzMOow== =ixxl -----END PGP SIGNATURE----- --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Thu Jun 22 16:10:23 2017 Received: (at 26890-done) by debbugs.gnu.org; 22 Jun 2017 20:10:23 +0000 Received: from localhost ([127.0.0.1]:33524 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dO8Qo-0005Qu-Us for submit@debbugs.gnu.org; Thu, 22 Jun 2017 16:10:23 -0400 Received: from eggs.gnu.org ([208.118.235.92]:51759) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1dO8Qm-0005Qg-OE for 26890-done@debbugs.gnu.org; Thu, 22 Jun 2017 16:10:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dO8Qg-00049h-QD for 26890-done@debbugs.gnu.org; Thu, 22 Jun 2017 16:10:15 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50,T_RP_MATCHES_RCVD autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:50565) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dO8QZ-00046u-Tk; Thu, 22 Jun 2017 16:10:07 -0400 Received: from reverse-83.fdn.fr ([80.67.176.83]:37726 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1dO8QY-0003Qj-Ue; Thu, 22 Jun 2017 16:10:07 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Ricardo Wurmus Subject: Re: bug#26890: [PATCH] gnu: Add agrep. References: <20170511193045.8882-1-rekado@elephly.net> <87efvvhzqv.fsf@openmailbox.org> <20170511212441.GA7640@jasmine> <87tw4rrs7w.fsf@elephly.net> Date: Thu, 22 Jun 2017 22:10:04 +0200 In-Reply-To: <87tw4rrs7w.fsf@elephly.net> (Ricardo Wurmus's message of "Thu, 11 May 2017 23:36:35 +0200") Message-ID: <87r2ybpyw3.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 26890-done Cc: 26890-done@debbugs.gnu.org, Kei Kebreau , Leo Famulari X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.0 (-----) Ricardo Wurmus skribis: > Leo Famulari writes: > >> On Thu, May 11, 2017 at 05:04:08PM -0400, Kei Kebreau wrote: >>> Quote from copying.agrep in the source directory: >>> 4. Redistribution for profit requires the express, written permission >>> of the authors. >> >> Unfortunately, this clause makes agrep not free software. Indeed, Debian >> distributes it from their non-free repos: >> >> https://packages.debian.org/sid/agrep > > This is confusing. Debian has version 4.17-9 but I don=E2=80=99t even kn= ow > where they got it from. The home page that=E2=80=99s linked there only h= as 2.x > tarballs. > > And this clashes with the declaration of the ICS version in the git > repo. > > Weird! I really don=E2=80=99t mind dropping this patch (I just packaged = it > while demonstrating Guix), but it=E2=80=99s sad that the license situatio= n here > is so contradictory. So I=E2=80=99m closing this entry if you don=E2=80=99t mind. :-) Ludo=E2=80=99. From unknown Sat Aug 09 13:14:32 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 21 Jul 2017 11:24:06 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator