GNU bug report logs -
#25725
[PATCH] gnu: Add blists.
Previous Next
Reported by: contact.ng0 <at> cryptolab.net
Date: Tue, 14 Feb 2017 18:26:01 UTC
Severity: normal
Tags: patch
Done: ng0 <contact.ng0 <at> cryptolab.net>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 25725 in the body.
You can then email your comments to 25725 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#25725
; Package
guix-patches
.
(Tue, 14 Feb 2017 18:26:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
contact.ng0 <at> cryptolab.net
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 14 Feb 2017 18:26:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: ng0 <ng0 <at> libertad.pw>
* 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#25725
; Package
guix-patches
.
(Wed, 01 Mar 2017 18:19:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 25725 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
contact.ng0 <at> cryptolab.net writes:
> From: ng0 <ng0 <at> libertad.pw>
>
> * 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.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
ng0 <contact.ng0 <at> cryptolab.net>
:
You have taken responsibility.
(Wed, 01 Mar 2017 18:50:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
contact.ng0 <at> cryptolab.net
:
bug acknowledged by developer.
(Wed, 01 Mar 2017 18:50:01 GMT)
Full text and
rfc822 format available.
Message #13 received at 25725-done <at> debbugs.gnu.org (full text, mbox):
On 17-03-01 13:18:10, Kei Kebreau wrote:
> contact.ng0 <at> cryptolab.net writes:
>
> > From: ng0 <ng0 <at> libertad.pw>
> >
> > * 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.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 30 Mar 2017 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 85 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.