]> git.notmuchmail.org Git - notmuch/commitdiff
Merge tag '0.28.1'
authorDavid Bremner <david@tethera.net>
Fri, 1 Feb 2019 12:35:20 +0000 (08:35 -0400)
committerDavid Bremner <david@tethera.net>
Fri, 1 Feb 2019 12:35:20 +0000 (08:35 -0400)
notmuch 0.28.1 release

NEWS
bindings/python/notmuch/version.py
configure
debian/changelog
debian/rules
doc/conf.py
emacs/notmuch-print.el
version

diff --git a/NEWS b/NEWS
index 434f920a42f639e3165e9da348b71271837aa010..d46035cd080d121b40f0d60e9731586f34041bd7 100644 (file)
--- a/NEWS
+++ b/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)
 =========================
 
index 6a513a25e780f16f2e80ea4533233cc3ea2ddeaa..7cc4db187bd7e46dccaf6065281cf9ddb27ca40b 100644 (file)
@@ -1,3 +1,3 @@
 # this file should be kept in sync with ../../../version
-__VERSION__ = '0.28'
+__VERSION__ = '0.28.1'
 SOVERSION = '5'
index 3ae26241df2a9d16fa6b319ad963bdf2af56fb92..a6f5dfa2ca2b894da29ff4bd93ef96a3266587ab 100755 (executable)
--- a/configure
+++ b/configure
@@ -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... "
index 8f37ef3abaff0245a488909ec640fef7d3d44341..fce3e5f345e067899be8d407b68e329bb2153668 100644 (file)
@@ -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
index c8ecb1ac4e890ee4c83ffb4a27d603cb13fa7ce5..d056edb623944822730fcb7ca13ad40457e27daa 100755 (executable)
@@ -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 \
index efbafc93d1caff40bb8932588575a692100c96f3..0ef723279a6c012e0450a4a42cd72733b2a116c1 100644 (file)
@@ -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__)
 
index bca759fafaa373878971624a6b18e522ec368ae5..d9b3d449538f614911b047be194ed35c10daa2f4 100644 (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)))
 
diff --git a/version b/version
index 4950f07e409ddbcd7d285c57685faacf4cbad328..48f7a71df4beb09d86a9e249e41dfff11d606e40 100644 (file)
--- a/version
+++ b/version
@@ -1 +1 @@
-0.28
+0.28.1