diff options
| author | David Bremner <david@tethera.net> | 2017-01-08 08:42:26 -0400 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2017-01-08 08:42:26 -0400 |
| commit | b15b96f846dcfabbd0c7f43e741573cfd14ab3c8 (patch) | |
| tree | 495c6cfd30bdaa49e654e3159c52d23161d684dc | |
| parent | 217404ff86bd88cd8ef5f2e659bd8d06b95c2f62 (diff) | |
| parent | 44520bb6add5e39e12de689a168007d3d2c7c734 (diff) | |
Merge branch 'release'
These are the (tentative) changes for 0.23.5
| -rw-r--r-- | NEWS | 9 | ||||
| -rw-r--r-- | bindings/python/notmuch/version.py | 2 | ||||
| -rwxr-xr-x | configure | 2 | ||||
| -rw-r--r-- | debian/changelog | 6 | ||||
| -rw-r--r-- | doc/conf.py | 2 | ||||
| -rw-r--r-- | version | 2 |
6 files changed, 19 insertions, 4 deletions
@@ -1,3 +1,12 @@ +Notmuch 0.23.5 (UNRELEASED) +=========================== + +Build system +------------ + +Fix quoting bug in configure. This had introduced a RUNPATH into the +notmuch binary in cases where it was not not needed. + Notmuch 0.23.4 (2016-12-24) =========================== diff --git a/bindings/python/notmuch/version.py b/bindings/python/notmuch/version.py index b5d308e2..1397fefd 100644 --- a/bindings/python/notmuch/version.py +++ b/bindings/python/notmuch/version.py @@ -1,3 +1,3 @@ # this file should be kept in sync with ../../../version -__VERSION__ = '0.23.4' +__VERSION__ = '0.23.5' SOVERSION = '4' @@ -284,7 +284,7 @@ if [ -z "$LIBDIR" ] ; then libdir_expanded="${PREFIX}/lib" else # very non-general variable expansion - libdir_expanded=$(echo "$LIBDIR" | sed "s|\\${prefix}|${PREFIX}|g; s|\\$prefix/|${PREFIX}/|; s|//*|/|g") + libdir_expanded=$(printf %s "$LIBDIR" | sed "s|\${prefix}|${PREFIX}|; s|\$prefix\>|${PREFIX}|; s|//*|/|g") fi cat <<EOF diff --git a/debian/changelog b/debian/changelog index 18788d86..8d82049f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +notmuch (0.23.5-1) unstable; urgency=medium + + * Remove RUNPATH from /usr/bin/notmuch + + -- David Bremner <bremner@debian.org> Sun, 08 Jan 2017 08:31:03 -0400 + notmuch (0.23.4-1) unstable; urgency=medium * Improve error handling in notmuch insert diff --git a/doc/conf.py b/doc/conf.py index b6cfa1aa..a3d82696 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -12,7 +12,7 @@ master_doc = 'index' # General information about the project. project = u'notmuch' -copyright = u'2009-2016, Carl Worth and many others' +copyright = u'2009-2017, Carl Worth and many others' location = os.path.dirname(__file__) @@ -1 +1 @@ -0.23.4 +0.23.5 |
