[HarfBuzz] harfbuzz: Branch 'master' - 2 commits

Behdad Esfahbod behdad at kemper.freedesktop.org
Tue Oct 24 14:07:16 UTC 2017


 NEWS                 |   10 ++++++++++
 configure.ac         |    2 +-
 src/check-externs.sh |    3 ++-
 3 files changed, 13 insertions(+), 2 deletions(-)

New commits:
commit 9ac2e5c6c01db3ebe419e3aa07f4d1a3777d2bb6
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Tue Oct 24 10:06:25 2017 -0400

    check-externs.sh: Make output more verbose
    
    Trying to figure out why this is failing on some Debian bots:
    https://bugs.freedesktop.org/show_bug.cgi?id=103346
    
    Maybe I should check for GNU grep specifically now that I'm using -n as well.

diff --git a/src/check-externs.sh b/src/check-externs.sh
index 63cc7d5b..7f0e3218 100755
--- a/src/check-externs.sh
+++ b/src/check-externs.sh
@@ -14,7 +14,8 @@ echo 'Checking that all public symbols are exported with HB_EXTERN'
 
 for x in $HBHEADERS; do
 	test -f "$srcdir/$x" && x="$srcdir/$x"
-	$EGREP -B1 '^hb_' "$x" | $EGREP -E -v '^(--|hb_|HB_EXTERN )' -A1
+	$EGREP -B1 -n '^hb_' /dev/null "$x" |
+	$EGREP -v '(^--|:hb_|-HB_EXTERN )' -A1
 done |
 grep . >&2 && stat=1
 
commit 3b7388aab6889b5d1fc602b5780a7b29da84e100
Author: Behdad Esfahbod <behdad at behdad.org>
Date:   Mon Oct 23 14:35:16 2017 -0400

    1.6.2

diff --git a/NEWS b/NEWS
index 19daabf7..51cec0d3 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,13 @@
+Overview of changes leading to 1.6.2
+Monday, October 23nd, 2017
+====================================
+
+- Yesterday's release had a bad crasher; don't use it.  That's what
+  happens when one works on Sunday...
+  https://github.com/behdad/harfbuzz/issues/578
+- Build fixes for FreeBSD and Chrome Android.
+
+
 Overview of changes leading to 1.6.1
 Sunday, October 22nd, 2017
 ====================================
diff --git a/configure.ac b/configure.ac
index 1e00e3d5..41ace120 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
 AC_PREREQ([2.64])
 AC_INIT([HarfBuzz],
-        [1.6.1],
+        [1.6.2],
         [https://github.com/behdad/harfbuzz/issues/new],
         [harfbuzz],
         [http://harfbuzz.org/])


More information about the HarfBuzz mailing list