GNU bug report logs -
#26003
neomutt: update to 20170306 + kyotocabinet
Previous Next
Reported by: ng0 <contact.ng0 <at> cryptolab.net>
Date: Mon, 6 Mar 2017 19:23:01 UTC
Severity: normal
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 26003 in the body.
You can then email your comments to 26003 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#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 19:23:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
ng0 <contact.ng0 <at> cryptolab.net>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Mon, 06 Mar 2017 19:23:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
The following three patches will:
* revert the commit which added lmdb + tokyocabinet
* update neomutt (bugfix release)
* add kyotocabinet + lmdb to neomutt
* you need kyotocabinet in your profile path for this to work at
runtime. Is this how kyotocabinet works? At least the error at
runtime for neomutt disappeared.
Without kyotocabinet in your profile and "set header_cache_backend =
"kyotocabinet"" you'd get "not supported backend" as a message.
With it in your profile, all works as it is.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 19:27:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
* gnu/packages/mail.scm (neomutt): Update to 20170306.
---
gnu/packages/mail.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index d03e3889f..80b712381 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -254,7 +254,7 @@ operating systems.")
(package
(inherit mutt)
(name "neomutt")
- (version "20170225")
+ (version "20170306")
(source
(origin
(method url-fetch)
@@ -263,7 +263,7 @@ operating systems.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "00ll35g9pcanzrxsjp09vrmq6flml249dipcznrq2z4jy2zd386p"))))
+ "0qwcbjm9j1hgzmybw15w53pvfbqcdf47d4sw21s6r2yaj8kx1hag"))))
(inputs
`(("cyrus-sasl" ,cyrus-sasl)
("gdbm" ,gdbm)
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 19:27:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
'kyotocabinet' is more current than tokyocabinet in development
and supported in neomutt aswell.
This reverts commit ef91e2b964ec0952698dd1bf7daf76624fed2145.
---
gnu/packages/mail.scm | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index b70597b84..d03e3889f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -267,8 +267,6 @@ operating systems.")
(inputs
`(("cyrus-sasl" ,cyrus-sasl)
("gdbm" ,gdbm)
- ("lmdb" ,lmdb)
- ("tokyocabinet" ,tokyocabinet)
("gpgme" ,gpgme)
("ncurses" ,ncurses)
("gnutls" ,gnutls)
@@ -291,11 +289,10 @@ operating systems.")
"--enable-gpgme"
;; database, implies header caching
- ;; neomutt supports building multiple backends
- "--with-tokyocabinet"
+ "--without-tokyocabinet"
"--without-qdbm"
"--without-bdb"
- "--with-lmdb"
+ "--without-lmdb"
"--with-gdbm"
"--with-gnutls"
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 19:28:01 GMT)
Full text and
rfc822 format available.
Message #14 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
* gnu/packages/mail.scm (neomutt)[configure]: Add '--with-kyotocabinet'
and '--with-lmdb'.
[inputs]: Add 'lmdb' and 'kyotocabinet'.
---
gnu/packages/mail.scm | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 80b712381..4b5d595a7 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -272,9 +272,11 @@ operating systems.")
("gnutls" ,gnutls)
("openssl" ,openssl) ;For smime
("perl" ,perl)
+ ("kyotocabinet" ,kyotocabinet)
("libxslt" ,libxslt)
("libidn" ,libidn)
("libxml2" ,libxml2)
+ ("lmdb" ,lmdb)
("docbook-xsl" ,docbook-xsl)
("notmuch" ,notmuch)))
(native-inputs
@@ -292,7 +294,8 @@ operating systems.")
"--without-tokyocabinet"
"--without-qdbm"
"--without-bdb"
- "--without-lmdb"
+ "--with-lmdb"
+ "--with-kyotocabinet"
"--with-gdbm"
"--with-gnutls"
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 20:25:02 GMT)
Full text and
rfc822 format available.
Message #17 received at submit <at> debbugs.gnu.org (full text, mbox):
On Mon, Mar 06, 2017 at 08:30:33PM +0000, ng0 wrote:
> The following three patches will:
>
> * revert the commit which added lmdb + tokyocabinet
> * update neomutt (bugfix release)
> * add kyotocabinet + lmdb to neomutt
Why remove and re-add lmdb?
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 23:37:02 GMT)
Full text and
rfc822 format available.
Message #20 received at 26003 <at> debbugs.gnu.org (full text, mbox):
On 17-03-06 15:23:49, Leo Famulari wrote:
> On Mon, Mar 06, 2017 at 08:30:33PM +0000, ng0 wrote:
> > The following three patches will:
> >
> > * revert the commit which added lmdb + tokyocabinet
> > * update neomutt (bugfix release)
> > * add kyotocabinet + lmdb to neomutt
>
> Why remove and re-add lmdb?
>
>
>
Mainly because I have no idea how revert works.
I also just noticed that I had unmerged changes I forgot to include,
I did some testing and forgot that the state I commited wasn't the one I
was using. Sorry. I'll send the changes again.
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 23:50:01 GMT)
Full text and
rfc822 format available.
Message #23 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
* gnu/packages/mail.scm (neomutt): Update to 20170306.
---
gnu/packages/mail.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index d03e3889f..80b712381 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -254,7 +254,7 @@ operating systems.")
(package
(inherit mutt)
(name "neomutt")
- (version "20170225")
+ (version "20170306")
(source
(origin
(method url-fetch)
@@ -263,7 +263,7 @@ operating systems.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "00ll35g9pcanzrxsjp09vrmq6flml249dipcznrq2z4jy2zd386p"))))
+ "0qwcbjm9j1hgzmybw15w53pvfbqcdf47d4sw21s6r2yaj8kx1hag"))))
(inputs
`(("cyrus-sasl" ,cyrus-sasl)
("gdbm" ,gdbm)
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 23:50:02 GMT)
Full text and
rfc822 format available.
Message #26 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
'kyotocabinet' is more current than tokyocabinet in development
and supported in neomutt aswell.
This reverts commit ef91e2b964ec0952698dd1bf7daf76624fed2145.
---
gnu/packages/mail.scm | 7 ++-----
1 file changed, 2 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index b70597b84..d03e3889f 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -267,8 +267,6 @@ operating systems.")
(inputs
`(("cyrus-sasl" ,cyrus-sasl)
("gdbm" ,gdbm)
- ("lmdb" ,lmdb)
- ("tokyocabinet" ,tokyocabinet)
("gpgme" ,gpgme)
("ncurses" ,ncurses)
("gnutls" ,gnutls)
@@ -291,11 +289,10 @@ operating systems.")
"--enable-gpgme"
;; database, implies header caching
- ;; neomutt supports building multiple backends
- "--with-tokyocabinet"
+ "--without-tokyocabinet"
"--without-qdbm"
"--without-bdb"
- "--with-lmdb"
+ "--without-lmdb"
"--with-gdbm"
"--with-gnutls"
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Mon, 06 Mar 2017 23:50:02 GMT)
Full text and
rfc822 format available.
Message #29 received at 26003 <at> debbugs.gnu.org (full text, mbox):
From: ng0 <contact.ng0 <at> cryptolab.net>
* gnu/packages/mail.scm (neomutt)[configure]: Add '--with-kyotocabinet'
and '--with-lmdb'.
[inputs]: Add 'lmdb' and 'kyotocabinet'.
---
gnu/packages/mail.scm | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 80b712381..56fe9508a 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -272,9 +272,11 @@ operating systems.")
("gnutls" ,gnutls)
("openssl" ,openssl) ;For smime
("perl" ,perl)
+ ("kyotocabinet" ,kyotocabinet)
("libxslt" ,libxslt)
("libidn" ,libidn)
("libxml2" ,libxml2)
+ ("lmdb" ,lmdb)
("docbook-xsl" ,docbook-xsl)
("notmuch" ,notmuch)))
(native-inputs
@@ -292,7 +294,9 @@ operating systems.")
"--without-tokyocabinet"
"--without-qdbm"
"--without-bdb"
- "--without-lmdb"
+ "--with-lmdb"
+ (string-append "--with-kyotocabinet="
+ (assoc-ref %build-inputs "kyotocabinet"))
"--with-gdbm"
"--with-gnutls"
--
2.12.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#26003
; Package
guix-patches
.
(Fri, 10 Mar 2017 02:06:02 GMT)
Full text and
rfc822 format available.
Message #32 received at 26003 <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
contact.ng0 <at> cryptolab.net writes:
> From: ng0 <contact.ng0 <at> cryptolab.net>
>
> 'kyotocabinet' is more current than tokyocabinet in development
> and supported in neomutt aswell.
>
> This reverts commit ef91e2b964ec0952698dd1bf7daf76624fed2145.
> ---
> gnu/packages/mail.scm | 7 ++-----
> 1 file changed, 2 insertions(+), 5 deletions(-)
>
> diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
> index b70597b84..d03e3889f 100644
> --- a/gnu/packages/mail.scm
> +++ b/gnu/packages/mail.scm
> @@ -267,8 +267,6 @@ operating systems.")
> (inputs
> `(("cyrus-sasl" ,cyrus-sasl)
> ("gdbm" ,gdbm)
> - ("lmdb" ,lmdb)
> - ("tokyocabinet" ,tokyocabinet)
> ("gpgme" ,gpgme)
> ("ncurses" ,ncurses)
> ("gnutls" ,gnutls)
> @@ -291,11 +289,10 @@ operating systems.")
> "--enable-gpgme"
>
> ;; database, implies header caching
> - ;; neomutt supports building multiple backends
> - "--with-tokyocabinet"
> + "--without-tokyocabinet"
> "--without-qdbm"
> "--without-bdb"
> - "--with-lmdb"
> + "--without-lmdb"
> "--with-gdbm"
>
> "--with-gnutls"
LGTM. Series pushed to master as
91c8724165d5839b0fd7026a93f4b6c150da2fec,
469609a987368eb17cda42dd9e815bf70f7d254a and
5c95465e27352c5e64c7a2acdc5e341bba321663, respectively.
[signature.asc (application/pgp-signature, inline)]
Reply sent
to
ng0 <contact.ng0 <at> cryptolab.net>
:
You have taken responsibility.
(Fri, 10 Mar 2017 08:26:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
ng0 <contact.ng0 <at> cryptolab.net>
:
bug acknowledged by developer.
(Fri, 10 Mar 2017 08:26:01 GMT)
Full text and
rfc822 format available.
Message #37 received at 26003-done <at> debbugs.gnu.org (full text, mbox):
Kei Kebreau transcribed 2.4K bytes:
> contact.ng0 <at> cryptolab.net writes:
>
> > From: ng0 <contact.ng0 <at> cryptolab.net>
> >
> > 'kyotocabinet' is more current than tokyocabinet in development
> > and supported in neomutt aswell.
> >
> > This reverts commit ef91e2b964ec0952698dd1bf7daf76624fed2145.
> > ---
> > gnu/packages/mail.scm | 7 ++-----
> > 1 file changed, 2 insertions(+), 5 deletions(-)
> >
> > diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
> > index b70597b84..d03e3889f 100644
> > --- a/gnu/packages/mail.scm
> > +++ b/gnu/packages/mail.scm
> > @@ -267,8 +267,6 @@ operating systems.")
> > (inputs
> > `(("cyrus-sasl" ,cyrus-sasl)
> > ("gdbm" ,gdbm)
> > - ("lmdb" ,lmdb)
> > - ("tokyocabinet" ,tokyocabinet)
> > ("gpgme" ,gpgme)
> > ("ncurses" ,ncurses)
> > ("gnutls" ,gnutls)
> > @@ -291,11 +289,10 @@ operating systems.")
> > "--enable-gpgme"
> >
> > ;; database, implies header caching
> > - ;; neomutt supports building multiple backends
> > - "--with-tokyocabinet"
> > + "--without-tokyocabinet"
> > "--without-qdbm"
> > "--without-bdb"
> > - "--with-lmdb"
> > + "--without-lmdb"
> > "--with-gdbm"
> >
> > "--with-gnutls"
>
> LGTM. Series pushed to master as
> 91c8724165d5839b0fd7026a93f4b6c150da2fec,
> 469609a987368eb17cda42dd9e815bf70f7d254a and
> 5c95465e27352c5e64c7a2acdc5e341bba321663, respectively.
Someone earlier had some questions. This was my first revert, so it
seems okay.
Thanks, closed.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Fri, 07 Apr 2017 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 8 years and 133 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.