From unknown Mon Aug 18 14:24:26 2025 X-Loop: help-debbugs@gnu.org Subject: bug#25725: [PATCH] gnu: Add blists. Resent-From: contact.ng0@cryptolab.net Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Tue, 14 Feb 2017 18:26:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 25725 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 25725@debbugs.gnu.org Cc: ng0 X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.148709672918428 (code B ref -1); Tue, 14 Feb 2017 18:26:01 +0000 Received: (at submit) by debbugs.gnu.org; 14 Feb 2017 18:25:29 +0000 Received: from localhost ([127.0.0.1]:40063 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdhn7-0004n9-8I for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:29 -0500 Received: from eggs.gnu.org ([208.118.235.92]:33568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdhn6-0004my-Aq for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdhmz-0005Uq-Vl for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:23 -0500 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]:48399) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cdhmz-0005Ui-SZ for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:21 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52751) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdhmy-0005B4-6J for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdhmu-0005Rz-7G for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:20 -0500 Received: from aibo.runbox.com ([91.220.196.211]:45736) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cdhmt-0005RL-VA for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:16 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1cdhmr-0007Im-3J for guix-patches@gnu.org; Tue, 14 Feb 2017 19:25:13 +0100 Received: from [46.166.148.177] (helo=localhost) by mailfront11.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1cdhmb-0000KF-SS; Tue, 14 Feb 2017 19:24:58 +0100 From: contact.ng0@cryptolab.net Date: Tue, 14 Feb 2017 18:26:41 +0000 Message-Id: <20170214182641.18650-1-contact.ng0@cryptolab.net> X-Mailer: git-send-email 2.11.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [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: -5.0 (-----) 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 (-----) From: ng0 * gnu/packages/mail.scm (blists): New variable. --- gnu/packages/mail.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a9b2cb3ec..4ecaeb7fb 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1951,3 +1951,38 @@ installation on systems where resources are limited. Its features include: @item Rich and customisable texts for automated operations. @end enumerate\n") (license license:expat))) + +(define-public blists + (package + (name "blists") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.openwall.net/pub/projects/" + "blists/blists-" version ".tar.gz")) + (sha256 + (base32 + "1gp51kmb8yv8d693wcpdslmwlbw5w2kgz4kxhrcaf7y89w8wy4qd")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests + #:phases + (modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (install-file "bindex" bin) + (install-file "bit" bin) + #t)))))) + (home-page "http://www.openwall.com/blists/") + (synopsis "Web interface to mailing list archives") + (description + "Blists is a web interface to mailing list archives that works off +indexed mbox files. There are two programs: @code{bindex} and @code{bit}. +@code{bindex} generates or updates the index file (incremental updates +are supported). @code{bit} is a CGI/SSI program that generates web pages +on the fly. Both programs are written in C and are very fast.") + (license license:expat))) -- 2.11.1 From unknown Mon Aug 18 14:24:26 2025 X-Loop: help-debbugs@gnu.org Subject: bug#25725: [PATCH] gnu: Add blists. Resent-From: Kei Kebreau Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Wed, 01 Mar 2017 18:19:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 25725 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: contact.ng0@cryptolab.net Cc: 25725@debbugs.gnu.org, ng0 Received: via spool by 25725-submit@debbugs.gnu.org id=B25725.148839232524972 (code B ref 25725); Wed, 01 Mar 2017 18:19:02 +0000 Received: (at 25725) by debbugs.gnu.org; 1 Mar 2017 18:18:45 +0000 Received: from localhost ([127.0.0.1]:34761 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cj8po-0006Uh-TK for submit@debbugs.gnu.org; Wed, 01 Mar 2017 13:18:45 -0500 Received: from lb1.openmailbox.org ([5.79.108.160]:41690 helo=mail.openmailbox.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cj8pn-0006UZ-CA for 25725@debbugs.gnu.org; Wed, 01 Mar 2017 13:18:43 -0500 Received: by mail.openmailbox.org (Postfix, from userid 20002) id D71B850A7C2; Wed, 1 Mar 2017 19:18:22 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1488392321; bh=61T9sPpd4fb/qpsy5D98RG4S3uQ8Y87rVjj7tK2uWxo=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=hGZvjtRSrD787jun6QtWadFCTxmLhlT1jvQ3icd84HTKxZIIqN6jxrzldGBHJ1JLi fkvmTs37PFVBmRw5XCE+Bko0Yt+Vd/S3qbTLBxYGhxIa/IegoEicvrhLzTR10xcVP6 0RInrr1ZmAoaG7XE6ri/hkfZVBNgHrfdSMik3K44= X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on ZDZR003 X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=NO_RECEIVED,NO_RELAYS, T_DKIM_INVALID autolearn=disabled version=3.4.0 From: Kei Kebreau DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=openmailbox.org; s=openmailbox; t=1488392301; bh=61T9sPpd4fb/qpsy5D98RG4S3uQ8Y87rVjj7tK2uWxo=; h=From:To:Cc:Subject:References:Date:In-Reply-To:From; b=jV6qk/Mz9UKCxe/Bl6Uyp5L6jfYzMgdel+FEpKNYA/dx3vG8vOSjGvy9km5nJmACD VTIDg/7dOvJcSLAmkGZBxA+Ly6JNwsqWFhVFo799DRi7jtQLu4x6pRQ6mFUVs0dLq/ 7wzmUvFXx2jYOpdp8rFMMq9A6tdqMFq2SxVL1ljw= References: <20170214182641.18650-1-contact.ng0@cryptolab.net> Date: Wed, 01 Mar 2017 13:18:10 -0500 In-Reply-To: <20170214182641.18650-1-contact.ng0@cryptolab.net> (contact's message of "Tue, 14 Feb 2017 18:26:41 +0000") Message-ID: <878tookgil.fsf@openmailbox.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/25.1 (gnu/linux) MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha256; protocol="application/pgp-signature" X-Spam-Score: 0.0 (/) 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.0 (/) --=-=-= Content-Type: text/plain contact.ng0@cryptolab.net writes: > From: ng0 > > * gnu/packages/mail.scm (blists): New variable. > --- > gnu/packages/mail.scm | 35 +++++++++++++++++++++++++++++++++++ > 1 file changed, 35 insertions(+) > > diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm > index a9b2cb3ec..4ecaeb7fb 100644 > --- a/gnu/packages/mail.scm > +++ b/gnu/packages/mail.scm > @@ -1951,3 +1951,38 @@ installation on systems where resources are limited. Its features include: > @item Rich and customisable texts for automated operations. > @end enumerate\n") > (license license:expat))) > + > +(define-public blists > + (package > + (name "blists") > + (version "1.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "http://download.openwall.net/pub/projects/" > + "blists/blists-" version ".tar.gz")) > + (sha256 > + (base32 > + "1gp51kmb8yv8d693wcpdslmwlbw5w2kgz4kxhrcaf7y89w8wy4qd")))) > + (build-system gnu-build-system) > + (arguments > + `(#:tests? #f ; No tests > + #:phases > + (modify-phases %standard-phases > + (delete 'configure) > + (replace 'install > + (lambda* (#:key outputs #:allow-other-keys) > + (let* ((out (assoc-ref outputs "out")) > + (bin (string-append out "/bin"))) > + (install-file "bindex" bin) > + (install-file "bit" bin) > + #t)))))) > + (home-page "http://www.openwall.com/blists/") > + (synopsis "Web interface to mailing list archives") > + (description > + "Blists is a web interface to mailing list archives that works off > +indexed mbox files. There are two programs: @code{bindex} and @code{bit}. > +@code{bindex} generates or updates the index file (incremental updates > +are supported). @code{bit} is a CGI/SSI program that generates web pages > +on the fly. Both programs are written in C and are very fast.") > + (license license:expat))) LGTM. Pushed as 3a263368dd658ca5dc81e171ef041712c9e9b7a4. --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iQIzBAEBCAAdFiEEg7ZwOtzKO2lLzi2m5qXuPBlGeg0FAli3EGIACgkQ5qXuPBlG eg1CgxAAsHOSODvnHrdwTyjI9BavSxBCVH9f1SGI0ttAnlYapH0rVeX4hpoQ8gSJ F/GqtyIXBSSUSQqmVVuAXNuKWp3GJORBXdWDE0cuybbfIN/L+ToahhCTv5p02SfQ AGtLMF2TaFZjtHS79wTdqm18z6d6Wy246LE1dKz/rpJHN9GWLX3kF/JAUFIy27zM DgBVlwdArMSAk/SGm1EaWfzWUJP38n5CMy/v2kgP67EalbJBzS/qOY5wObBbypBe OI3mTd4NlVb8o3ZZKd1Uhfl86EUEZCj49nJFSsw5k8p18tY/7Iofiex/JmPsV6qs sn6984D2uDp8J6+mqgarqbfv5U8nZeV1ZCgqZf7ESwbA5P1uo/c5XJe3TZn0sHwt ZoAtMgPGKZ48Z1NPJCoCrENoxUtgX0y7V6Xu1hLUnpBeY2qJ0yAPkq+rLaQLihIz //oeAvPk3l08zFI6hsxKfEPogmYqV2CFe/uHGpU49IKlvT+hVhdGQQ9U6Eq4jDHK 9v3yCtG1gf7sf2liEMrpXhflELv1+czhAbJUXiUirOUCWcBxQd+Bfp5i6DQOAPnB 6ix9iB73dEt+y0MhrNUbpJ4G8IvMhlD6tDtdSO+xl3mPPunS2D/l4MGil7+USYfo KeJGI8roiYi/mJTDRlpO3BaT7hXp73f+u851nsbW5ye7BRYBGgU= =6g+N -----END PGP SIGNATURE----- --=-=-=-- From unknown Mon Aug 18 14:24:26 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: contact.ng0@cryptolab.net Subject: bug#25725: closed (Re: bug#25725: [PATCH] gnu: Add blists.) Message-ID: References: <20170301195757.quxxturdzxoluynj@abyayala> <20170214182641.18650-1-contact.ng0@cryptolab.net> X-Gnu-PR-Message: they-closed 25725 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 25725@debbugs.gnu.org Date: Wed, 01 Mar 2017 18:50:01 +0000 Content-Type: multipart/mixed; boundary="----------=_1488394201-27778-1" This is a multi-part message in MIME format... ------------=_1488394201-27778-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #25725: [PATCH] gnu: Add blists. which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 25725@debbugs.gnu.org. --=20 25725: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D25725 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1488394201-27778-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 25725-done) by debbugs.gnu.org; 1 Mar 2017 18:49:17 +0000 Received: from localhost ([127.0.0.1]:34789 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cj9JN-0007D2-Di for submit@debbugs.gnu.org; Wed, 01 Mar 2017 13:49:17 -0500 Received: from perdizione.investici.org ([94.23.50.208]:47815) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cj9JK-0007Cq-Py for 25725-done@debbugs.gnu.org; Wed, 01 Mar 2017 13:49:16 -0500 Received: from [94.23.50.208] (perdizione [94.23.50.208]) (Authenticated sender: niasterisk@grrlz.net) by localhost (Postfix) with ESMTPSA id 46515120231; Wed, 1 Mar 2017 18:49:13 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=cryptolab.net; s=stigmate; t=1488394153; bh=ltFBXuLAfWNuVEgRl4IRQZ3TR+Os1b3ySHprGNiJGxY=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=ZjcmkxYMB/+IpHxCWHVQCvs6aQ4YYbvMuFTeob7p+KAmFp71QJrWjKP9RGR0PNSb3 +emY7Bq4yHvnc7Lrk10j6L63rbQIgikp49izwpSCevJ/wo6tPZOQcBz2WuaaTxdU+f O/VEqTyJ8Z1kxvqKDiMPg/EK3XEJzDK3/9OYOo28= Date: Wed, 1 Mar 2017 19:57:57 +0000 From: ng0 To: Kei Kebreau Subject: Re: bug#25725: [PATCH] gnu: Add blists. Message-ID: <20170301195757.quxxturdzxoluynj@abyayala> Mail-Followup-To: Kei Kebreau , 25725-done@debbugs.gnu.org References: <20170214182641.18650-1-contact.ng0@cryptolab.net> <878tookgil.fsf@openmailbox.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <878tookgil.fsf@openmailbox.org> X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 25725-done Cc: 25725-done@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.0 (/) On 17-03-01 13:18:10, Kei Kebreau wrote: > contact.ng0@cryptolab.net writes: > > > From: ng0 > > > > * gnu/packages/mail.scm (blists): New variable. > > --- > > gnu/packages/mail.scm | 35 +++++++++++++++++++++++++++++++++++ > > 1 file changed, 35 insertions(+) > > > > diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm > > index a9b2cb3ec..4ecaeb7fb 100644 > > --- a/gnu/packages/mail.scm > > +++ b/gnu/packages/mail.scm > > @@ -1951,3 +1951,38 @@ installation on systems where resources are limited. Its features include: > > @item Rich and customisable texts for automated operations. > > @end enumerate\n") > > (license license:expat))) > > + > > +(define-public blists > LGTM. Pushed as 3a263368dd658ca5dc81e171ef041712c9e9b7a4. Thanks, closed. ------------=_1488394201-27778-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 14 Feb 2017 18:25:29 +0000 Received: from localhost ([127.0.0.1]:40063 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdhn7-0004n9-8I for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:29 -0500 Received: from eggs.gnu.org ([208.118.235.92]:33568) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1cdhn6-0004my-Aq for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:28 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdhmz-0005Uq-Vl for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:23 -0500 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]:48399) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cdhmz-0005Ui-SZ for submit@debbugs.gnu.org; Tue, 14 Feb 2017 13:25:21 -0500 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52751) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cdhmy-0005B4-6J for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:21 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cdhmu-0005Rz-7G for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:20 -0500 Received: from aibo.runbox.com ([91.220.196.211]:45736) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cdhmt-0005RL-VA for guix-patches@gnu.org; Tue, 14 Feb 2017 13:25:16 -0500 Received: from [10.9.9.211] (helo=mailfront11.runbox.com) by mailtransmit03.runbox with esmtp (Exim 4.86_2) (envelope-from ) id 1cdhmr-0007Im-3J for guix-patches@gnu.org; Tue, 14 Feb 2017 19:25:13 +0100 Received: from [46.166.148.177] (helo=localhost) by mailfront11.runbox.com with esmtpsa (uid:892961 ) (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) id 1cdhmb-0000KF-SS; Tue, 14 Feb 2017 19:24:58 +0100 From: contact.ng0@cryptolab.net To: guix-patches@gnu.org Subject: [PATCH] gnu: Add blists. Date: Tue, 14 Feb 2017 18:26:41 +0000 Message-Id: <20170214182641.18650-1-contact.ng0@cryptolab.net> X-Mailer: git-send-email 2.11.1 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [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: -5.0 (-----) X-Debbugs-Envelope-To: submit Cc: ng0 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 (-----) From: ng0 * gnu/packages/mail.scm (blists): New variable. --- gnu/packages/mail.scm | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index a9b2cb3ec..4ecaeb7fb 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1951,3 +1951,38 @@ installation on systems where resources are limited. Its features include: @item Rich and customisable texts for automated operations. @end enumerate\n") (license license:expat))) + +(define-public blists + (package + (name "blists") + (version "1.0") + (source + (origin + (method url-fetch) + (uri (string-append "http://download.openwall.net/pub/projects/" + "blists/blists-" version ".tar.gz")) + (sha256 + (base32 + "1gp51kmb8yv8d693wcpdslmwlbw5w2kgz4kxhrcaf7y89w8wy4qd")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; No tests + #:phases + (modify-phases %standard-phases + (delete 'configure) + (replace 'install + (lambda* (#:key outputs #:allow-other-keys) + (let* ((out (assoc-ref outputs "out")) + (bin (string-append out "/bin"))) + (install-file "bindex" bin) + (install-file "bit" bin) + #t)))))) + (home-page "http://www.openwall.com/blists/") + (synopsis "Web interface to mailing list archives") + (description + "Blists is a web interface to mailing list archives that works off +indexed mbox files. There are two programs: @code{bindex} and @code{bit}. +@code{bindex} generates or updates the index file (incremental updates +are supported). @code{bit} is a CGI/SSI program that generates web pages +on the fly. Both programs are written in C and are very fast.") + (license license:expat))) -- 2.11.1 ------------=_1488394201-27778-1--