]> git.cworth.org Git - notmuch/blob - debian/patches/debian-changes
Commit Debian 3.0 (quilt) metadata
[notmuch] / debian / patches / debian-changes
1 This is an autogenerated patch header for a single-debian-patch file. The
2 delta against upstream is either kept as a single patch, or maintained
3 in some VCS, and exported as a single patch instead of more manageable
4 atomic patches.
5
6 --- notmuch-0.31.2.orig/doc/Makefile.local
7 +++ notmuch-0.31.2/doc/Makefile.local
8 @@ -43,7 +43,7 @@ INFO_INFO_FILES := $(INFO_TEXI_FILES:.te
9         rm -f $@ && gzip --no-name --stdout $^ > $@
10  
11  ifeq ($(WITH_EMACS),1)
12 -$(DOCBUILDDIR)/.roff.stamp sphinx-html sphinx-texinfo: docstring.stamp
13 +$(DOCBUILDDIR)/.roff.stamp $(DOCBUILDDIR)/.html.stamp $(DOCBUILDDIR)/.texi.stamp : docstring.stamp
14  endif
15  
16  sphinx-html: $(DOCBUILDDIR)/.html.stamp
17 --- notmuch-0.31.2.orig/test/T360-symbol-hiding.sh
18 +++ notmuch-0.31.2/test/T360-symbol-hiding.sh
19 @@ -26,8 +26,9 @@ test_begin_subtest 'checking output'
20  test_expect_equal "$result" "$output"
21  
22  test_begin_subtest 'comparing existing to exported symbols'
23 -nm -P $NOTMUCH_BUILDDIR/lib/libnotmuch.so | awk '$2 == "T" && $1 ~ "^notmuch" {print $1}' | sort | uniq > ACTUAL
24 -sed -n 's/^\(notmuch_[a-zA-Z0-9_]*\)[[:blank:]]*(.*/\1/p' $NOTMUCH_SRCDIR/lib/notmuch.h | sort | uniq > EXPORTED
25 +readelf -Ws $NOTMUCH_BUILDDIR/lib/libnotmuch.so | \
26 +    awk '$4 == "FUNC" && $5 == "GLOBAL" && $7 != "UND" {print $8}' | sort -u > ACTUAL
27 +sed -n 's/^\(notmuch_[a-zA-Z0-9_]*\)[[:blank:]]*(.*/\1/p' $NOTMUCH_SRCDIR/lib/notmuch.h | sort -u > EXPORTED
28  test_expect_equal_file EXPORTED ACTUAL
29  
30  test_done