mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
notmuch 0.28.1 release
-----BEGIN PGP SIGNATURE----- iQGzBAABCAAdFiEE3VS2dnyDRXKVCQCp8gKXHaSnniwFAlxUOSIACgkQ8gKXHaSn nizwvAv8DPoLLssPfwY1AJtc7+JQzAl5scpkjJbGYlzXWTkhD14Efnb0FzMFulRG fG4gpsqFA9iNJGT2uTKtYRvKayoMNQMk2eSk8IKyINIVO/jclNbsaSFhL7vqyzsm 8l+A1UBQ2BsmUsv58ImoS/F65iF2ZBXu5OEEzqxzL+m+WBh9rNyuBaN4Arr64eVy f0V/CWYr9VmauuWg0UW3lZ2kwT2+eJDdw7/UwkdeaesuqypPrb+PyRbSDozr4yEj n+l0LsbP2iN2i8b0MBNS1vf9fSkUxhBmLzSoqJWbsEZFKwXLFTp5+TLyVxYDzKO5 D5ug22DG4VFUOmvBaKkMdnavr8z0QZrfL1/z6998Ux+iYG/YrITsrAv02+BxXr5a MPmmhW+9x5AZBSP/qasvNCu/Zhczcu/DZ0oUe5qLXTY0yPsOWZRv/+iAWTxXbk+Q iS5wbmeZsF/WSH1l3vtK9PnD1wePqITQPK22bKCjSXhPxWOO6AxNcfpy3/lsZ2j2 9NPLfpFl =G2Qd -----END PGP SIGNATURE----- Merge tag '0.28.1' notmuch 0.28.1 release
This commit is contained in:
commit
87eb477ba5
8 changed files with 27 additions and 10 deletions
9
NEWS
9
NEWS
|
@ -7,6 +7,15 @@ Command Line Interface
|
|||
`notmuch show` now supports --body=false and --include-html with
|
||||
--format=text
|
||||
|
||||
Notmuch 0.28.1 (2019-02-01)
|
||||
===========================
|
||||
|
||||
Build System
|
||||
------------
|
||||
|
||||
`configure` no longer uses the special variable BASH, as this causes
|
||||
problems on systems where /bin/sh is bash.
|
||||
|
||||
Notmuch 0.28 (2018-10-12)
|
||||
=========================
|
||||
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# this file should be kept in sync with ../../../version
|
||||
__VERSION__ = '0.28'
|
||||
__VERSION__ = '0.28.1'
|
||||
SOVERSION = '5'
|
||||
|
|
8
configure
vendored
8
configure
vendored
|
@ -53,7 +53,7 @@ fi
|
|||
|
||||
# Set several defaults (optionally specified by the user in
|
||||
# environment variables)
|
||||
BASH=${BASH:-bash}
|
||||
BASHCMD=${BASHCMD:-bash}
|
||||
PERL=${PERL:-perl}
|
||||
CC=${CC:-cc}
|
||||
CXX=${CXX:-c++}
|
||||
|
@ -560,13 +560,13 @@ else
|
|||
fi
|
||||
|
||||
printf "Checking for bash... "
|
||||
if command -v ${BASH} > /dev/null; then
|
||||
if command -v ${BASHCMD} > /dev/null; then
|
||||
have_bash=1
|
||||
bash_absolute=$(command -v ${BASH})
|
||||
bash_absolute=$(command -v ${BASHCMD})
|
||||
printf "Yes (%s).\n" "$bash_absolute"
|
||||
else
|
||||
have_bash=0
|
||||
printf "No. (%s not found)\n" "${BASH}"
|
||||
printf "No. (%s not found)\n" "${BASHCMD}"
|
||||
fi
|
||||
|
||||
printf "Checking for perl... "
|
||||
|
|
8
debian/changelog
vendored
8
debian/changelog
vendored
|
@ -1,3 +1,11 @@
|
|||
notmuch (0.28.1-1) unstable; urgency=medium
|
||||
|
||||
* New upstream bug fix release
|
||||
* Bug fix: "muttprint/evince fails to show "print", thanks to
|
||||
Joerg Jaspert (Closes: #920856).
|
||||
|
||||
-- David Bremner <bremner@debian.org> Fri, 01 Feb 2019 08:05:05 -0400
|
||||
|
||||
notmuch (0.28-2) unstable; urgency=medium
|
||||
|
||||
* Override location of bash, because /usr/bin/bash might exist
|
||||
|
|
2
debian/rules
vendored
2
debian/rules
vendored
|
@ -6,7 +6,7 @@ python3_all = py3versions -s | xargs -n1 | xargs -t -I {} env {}
|
|||
dh $@ --with python2,python3,elpa
|
||||
|
||||
override_dh_auto_configure:
|
||||
BASH=/bin/bash ./configure --prefix=/usr \
|
||||
BASHCMD=/bin/bash ./configure --prefix=/usr \
|
||||
--libdir=/usr/lib/$$(dpkg-architecture -q DEB_TARGET_MULTIARCH) \
|
||||
--includedir=/usr/include \
|
||||
--mandir=/usr/share/man \
|
||||
|
|
|
@ -12,7 +12,7 @@ master_doc = 'index'
|
|||
|
||||
# General information about the project.
|
||||
project = u'notmuch'
|
||||
copyright = u'2009-2018, Carl Worth and many others'
|
||||
copyright = u'2009-2019, Carl Worth and many others'
|
||||
|
||||
location = os.path.dirname(__file__)
|
||||
|
||||
|
|
|
@ -69,7 +69,7 @@ Optional OUTPUT allows passing a list of flags to muttprint."
|
|||
|
||||
(defun notmuch-print-ps-print/evince (msg)
|
||||
"Preview a message buffer using ps-print and evince."
|
||||
(let ((ps-file (make-temp-file "notmuch"))
|
||||
(let ((ps-file (make-temp-file "notmuch" nil ".ps"))
|
||||
(subject (notmuch-prettify-subject
|
||||
(plist-get (notmuch-show-get-prop :headers msg) :Subject))))
|
||||
(rename-buffer subject t)
|
||||
|
@ -82,7 +82,7 @@ Optional OUTPUT allows passing a list of flags to muttprint."
|
|||
|
||||
(defun notmuch-print-muttprint/evince (msg)
|
||||
"Preview a message buffer using muttprint and evince."
|
||||
(let ((ps-file (make-temp-file "notmuch")))
|
||||
(let ((ps-file (make-temp-file "notmuch" nil ".ps")))
|
||||
(notmuch-print-run-muttprint (list "--printer" (concat "TO_FILE:" ps-file)))
|
||||
(notmuch-print-run-evince ps-file)))
|
||||
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.28
|
||||
0.28.1
|
||||
|
|
Loading…
Reference in a new issue