[Nickle] nickle: Branch 'master' - 3 commits

Keith Packard keithp at keithp.com
Thu Mar 8 11:17:47 PST 2012


 Makefile.am      |    2 +-
 compile.c        |    1 +
 configure.ac     |    2 +-
 debian/changelog |    7 +++++++
 4 files changed, 10 insertions(+), 2 deletions(-)

New commits:
commit 4bb7b4720f0c5a15e4b26bd70c9d01040f0612c1
Author: Keith Packard <keithp at keithp.com>
Date:   Thu Mar 8 11:16:57 2012 -0800

    Handle ref types in &foo->bar operations
    
    For some reason, this case was left out of the usual ref type hacks
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/compile.c b/compile.c
index b2c2adf..b5874d4 100644
--- a/compile.c
+++ b/compile.c
@@ -575,6 +575,7 @@ isName:
 	}
 	BuildInst (obj, OpArrowRef, inst, stat);
 	inst->atom.atom = expr->tree.right->atom.atom;
+	flipTypes = True;
 	break;
     case OS:
 	obj = _CompileExpr (obj, expr->tree.left, True, stat, code);
commit a236e4a7e349b220760aefb58e6b4e62e3fea156
Author: Keith Packard <keithp at keithp.com>
Date:   Sat Mar 3 17:17:12 2012 -0800

    Version 2.74
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/configure.ac b/configure.ac
index f2c213f..0a8999b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,7 +6,7 @@ dnl for licensing information.
 
 AC_PREREQ([2.64])
 
-AC_INIT([nickle],[2.73],[http://nickle.org],[nickle])
+AC_INIT([nickle],[2.74],[http://nickle.org],[nickle])
 
 AC_CONFIG_SRCDIR([nickle.h])
 AC_CONFIG_HEADERS([config.h])
diff --git a/debian/changelog b/debian/changelog
index 4b13283..781740c 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+nickle (2.74-1) unstable; urgency=low
+
+  * Fix Semaphore::wait to not deadlock
+  * Switch debian package building to use pdebuild
+
+ -- Keith Packard <keithp at keithp.com>  Sat, 03 Mar 2012 17:16:35 -0800
+
 nickle (2.73-1) unstable; urgency=low
 
   * add gamma function
commit 97205c5a67f602af41a83032368ef5e65a7d50e2
Author: Keith Packard <keithp at keithp.com>
Date:   Sat Mar 3 17:14:13 2012 -0800

    Switch from debuild to pdebuild
    
    Catch more package building problems by using pbuilder.
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/Makefile.am b/Makefile.am
index 54718a8..e0956be 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -101,7 +101,7 @@ debuild: $(DEBFILE)
 
 $(DEBFILE): $(DEB_TAR) $(TARFILE)
 	tar xzf $(TARFILE)
-	(cd $(distdir)/debian && debuild)
+	(cd $(distdir) && pdebuild --buildresult $(abs_top_builddir) --auto-debsign)
 
 debuild-unsigned: $(DEB_TAR) $(TARFILE)
 	tar xzf $(distdir).tar.gz


More information about the Nickle mailing list