emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#25725: closed ([PATCH] gnu: Add blists.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#25725: closed ([PATCH] gnu: Add blists.)
Date: Wed, 01 Mar 2017 18:50:01 +0000

Your message dated Wed, 1 Mar 2017 19:57:57 +0000
with message-id <address@hidden>
and subject line Re: bug#25725: [PATCH] gnu: Add blists.
has caused the debbugs.gnu.org bug report #25725,
regarding [PATCH] gnu: Add blists.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
25725: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=25725
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add blists. Date: Tue, 14 Feb 2017 18:26:41 +0000
From: ng0 <address@hidden>

* 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}.
address@hidden 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




--- End Message ---
--- Begin Message --- Subject: Re: bug#25725: [PATCH] gnu: Add blists. Date: Wed, 1 Mar 2017 19:57:57 +0000
On 17-03-01 13:18:10, Kei Kebreau wrote:
> address@hidden writes:
> 
> > From: ng0 <address@hidden>
> >
> > * 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.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]