gnu: notmuch: Update to 0.23.
* gnu/packages/mail.scm (notmuch): Update to 0.23. [home-page]: Use https URL. (python-notmuch)[version]: Inherit from notmuch. [home-page]: Ditto.
This commit is contained in:
parent
152ffe7cb6
commit
540d6cc711
|
@ -499,18 +499,18 @@ invoking @command{notifymuch} from the post-new hook.")
|
||||||
(define-public notmuch
|
(define-public notmuch
|
||||||
(package
|
(package
|
||||||
(name "notmuch")
|
(name "notmuch")
|
||||||
(version "0.22.1")
|
(version "0.23")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://notmuchmail.org/releases/notmuch-"
|
(uri (string-append "https://notmuchmail.org/releases/notmuch-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0jwpda3q023dn3sp41n8648951i7iagfv8zzpriv7hpkjivlafg7"))))
|
"1f51l34rdhjf8lvafrwybkxdsdwx8k9397m7qxd8rdg2irjmpry5"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tests? #f ; FIXME: 694 tests; 170 fail and 100 are skipped
|
'(#:tests? #f ; FIXME: 723 tests; 187 fail and 100 are skipped
|
||||||
; with perl input: 50 fail and 100 are skipped
|
; with perl input: 67 fail and 100 are skipped
|
||||||
#:phases (modify-phases %standard-phases
|
#:phases (modify-phases %standard-phases
|
||||||
(replace 'configure
|
(replace 'configure
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
|
@ -533,7 +533,7 @@ invoking @command{notifymuch} from the post-new hook.")
|
||||||
("talloc" ,talloc)
|
("talloc" ,talloc)
|
||||||
("xapian" ,xapian)
|
("xapian" ,xapian)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(home-page "http://notmuchmail.org/")
|
(home-page "https://notmuchmail.org/")
|
||||||
(synopsis "Thread-based email index, search, and tagging")
|
(synopsis "Thread-based email index, search, and tagging")
|
||||||
(description
|
(description
|
||||||
"Notmuch is a command-line based program for indexing, searching, read-
|
"Notmuch is a command-line based program for indexing, searching, read-
|
||||||
|
@ -584,7 +584,7 @@ useful for email address completion.")
|
||||||
(define-public python-notmuch
|
(define-public python-notmuch
|
||||||
(package
|
(package
|
||||||
(name "python-notmuch")
|
(name "python-notmuch")
|
||||||
(version "0.22.1")
|
(version (package-version notmuch))
|
||||||
;; Notmuch python bindings are now unavailable on pypi. The
|
;; Notmuch python bindings are now unavailable on pypi. The
|
||||||
;; bindings are distributed via the notmuch release tarball.
|
;; bindings are distributed via the notmuch release tarball.
|
||||||
(source (package-source notmuch))
|
(source (package-source notmuch))
|
||||||
|
@ -606,7 +606,7 @@ useful for email address completion.")
|
||||||
(("libnotmuch\\.so\\.")
|
(("libnotmuch\\.so\\.")
|
||||||
(string-append notmuch "/lib/libnotmuch.so.")))
|
(string-append notmuch "/lib/libnotmuch.so.")))
|
||||||
#t))))))
|
#t))))))
|
||||||
(home-page "http://notmuchmail.org/")
|
(home-page (package-home-page notmuch))
|
||||||
(synopsis "Python bindings of the Notmuch mail indexing library")
|
(synopsis "Python bindings of the Notmuch mail indexing library")
|
||||||
(description
|
(description
|
||||||
"This package provides Python bindings to use the Notmuch mail indexing
|
"This package provides Python bindings to use the Notmuch mail indexing
|
||||||
|
|
Loading…
Reference in New Issue