mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-21 18:38:08 +01:00
Merge branch 'release'
This commit is contained in:
commit
0a2929c341
6 changed files with 28 additions and 7 deletions
8
NEWS
8
NEWS
|
@ -1,3 +1,11 @@
|
||||||
|
Notmuch 0.29.1 (2019-06-11)
|
||||||
|
===========================
|
||||||
|
|
||||||
|
Build
|
||||||
|
-----
|
||||||
|
|
||||||
|
Fix for installation failure with `configure --without-emacs`.
|
||||||
|
|
||||||
Notmuch 0.29 (2019-06-07)
|
Notmuch 0.29 (2019-06-07)
|
||||||
=========================
|
=========================
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
# this file should be kept in sync with ../../../version
|
# this file should be kept in sync with ../../../version
|
||||||
__VERSION__ = '0.29'
|
__VERSION__ = '0.29.1'
|
||||||
SOVERSION = '5'
|
SOVERSION = '5'
|
||||||
|
|
8
debian/changelog
vendored
8
debian/changelog
vendored
|
@ -1,3 +1,11 @@
|
||||||
|
notmuch (0.29.1-1) experimental; urgency=medium
|
||||||
|
|
||||||
|
* New upstream bug fix release
|
||||||
|
- fix for building and installing without emacs, does not occur
|
||||||
|
in Debian builds.
|
||||||
|
|
||||||
|
-- David Bremner <bremner@debian.org> Tue, 11 Jun 2019 20:16:03 -0300
|
||||||
|
|
||||||
notmuch (0.29-2) experimental; urgency=medium
|
notmuch (0.29-2) experimental; urgency=medium
|
||||||
|
|
||||||
* New upstream feature release. See /usr/share/doc/notmuch/NEWS.gz for
|
* New upstream feature release. See /usr/share/doc/notmuch/NEWS.gz for
|
||||||
|
|
|
@ -4,7 +4,7 @@ dir := doc
|
||||||
|
|
||||||
# You can set these variables from the command line.
|
# You can set these variables from the command line.
|
||||||
SPHINXOPTS := -q
|
SPHINXOPTS := -q
|
||||||
SPHINXBUILD = HAVE_EMACS=${HAVE_EMACS} sphinx-build
|
SPHINXBUILD = HAVE_EMACS=${HAVE_EMACS} WITH_EMACS=${WITH_EMACS} sphinx-build
|
||||||
DOCBUILDDIR := $(dir)/_build
|
DOCBUILDDIR := $(dir)/_build
|
||||||
|
|
||||||
# Internal variables.
|
# Internal variables.
|
||||||
|
@ -28,7 +28,11 @@ MAN_GZIP_FILES := $(addsuffix .gz,${MAN_ROFF_FILES})
|
||||||
MAN1_TEXI := $(patsubst $(srcdir)/doc/man1/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN1_RST))
|
MAN1_TEXI := $(patsubst $(srcdir)/doc/man1/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN1_RST))
|
||||||
MAN5_TEXI := $(patsubst $(srcdir)/doc/man5/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN5_RST))
|
MAN5_TEXI := $(patsubst $(srcdir)/doc/man5/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN5_RST))
|
||||||
MAN7_TEXI := $(patsubst $(srcdir)/doc/man7/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN7_RST))
|
MAN7_TEXI := $(patsubst $(srcdir)/doc/man7/%.rst,$(DOCBUILDDIR)/texinfo/%.texi,$(MAN7_RST))
|
||||||
INFO_TEXI_FILES := $(MAN1_TEXI) $(MAN5_TEXI) $(MAN7_TEXI) $(DOCBUILDDIR)/texinfo/notmuch-emacs.texi
|
INFO_TEXI_FILES := $(MAN1_TEXI) $(MAN5_TEXI) $(MAN7_TEXI)
|
||||||
|
ifeq ($(HAVE_EMACS)$(WITH_EMACS),11)
|
||||||
|
INFO_TEXI_FILES := $(INFO_TEXI_FILES) $(DOCBUILDDIR)/texinfo/notmuch-emacs.texi
|
||||||
|
endif
|
||||||
|
|
||||||
INFO_INFO_FILES := $(INFO_TEXI_FILES:.texi=.info)
|
INFO_INFO_FILES := $(INFO_TEXI_FILES:.texi=.info)
|
||||||
|
|
||||||
.PHONY: sphinx-html sphinx-texinfo sphinx-info
|
.PHONY: sphinx-html sphinx-texinfo sphinx-info
|
||||||
|
|
|
@ -29,9 +29,10 @@ release = version
|
||||||
# directories to ignore when looking for source files.
|
# directories to ignore when looking for source files.
|
||||||
exclude_patterns = ['_build']
|
exclude_patterns = ['_build']
|
||||||
|
|
||||||
# If we don't have emacs, don't build the notmuch-emacs docs, as they need
|
# If we don't have emacs (or the user configured --without-emacs),
|
||||||
# emacs to generate the docstring include files
|
# don't build the notmuch-emacs docs, as they need emacs to generate
|
||||||
if os.environ.get('HAVE_EMACS') != '1':
|
# the docstring include files
|
||||||
|
if os.environ.get('HAVE_EMACS') != '1' or os.environ.get('WITH_EMACS') != '1':
|
||||||
exclude_patterns.append('notmuch-emacs.rst')
|
exclude_patterns.append('notmuch-emacs.rst')
|
||||||
|
|
||||||
# The name of the Pygments (syntax highlighting) style to use.
|
# The name of the Pygments (syntax highlighting) style to use.
|
||||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
||||||
0.29
|
0.29.1
|
||||||
|
|
Loading…
Reference in a new issue