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

Keith Packard keithp at keithp.com
Wed Oct 3 14:55:43 PDT 2018


 .dir-locals.el             |    1 +
 .gitignore                 |    8 ++++++++
 configure.ac               |    4 ++--
 debian/changelog           |    7 +++++++
 doc/.dir-locals.el         |    1 +
 doc/tutorial/.gitignore    |    1 +
 examples/turtle/.gitignore |    1 +
 7 files changed, 21 insertions(+), 2 deletions(-)

New commits:
commit 94171f8f18abf11189b38c6af9505d880edac5f5
Author: Keith Packard <keithp at keithp.com>
Date:   Tue Oct 2 20:59:40 2018 -0700

    Update to version 2.82
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/configure.ac b/configure.ac
index c4be8bb..57fef79 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,8 +6,8 @@ dnl for licensing information.
 
 AC_PREREQ([2.69])
 
-AC_INIT([nickle],[2.81],[http://nickle.org],[nickle])
-RELEASE_DATE="2017-11-14"
+AC_INIT([nickle],[2.82],[http://nickle.org],[nickle])
+RELEASE_DATE="2018-10-02"
 AC_CONFIG_SRCDIR([nickle.h])
 AC_CONFIG_HEADERS([config.h])
 AC_CONFIG_AUX_DIR(.)
diff --git a/debian/changelog b/debian/changelog
index aa009ba..84d4d86 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+nickle (2.82-1) unstable; urgency=medium
+
+  * Switch to mktime from timelocal for musl compatibility
+  * Change exp to scale precision correctly. Fixes exp and log.
+
+ -- Keith Packard <keithp at keithp.com>  Tue, 02 Oct 2018 20:57:31 -0700
+
 nickle (2.81-1) unstable; urgency=low
 
   * Don't attempt to test Y2038 bug fix yet. It's not fixed on 32-bit
commit 2e2de908f241cd13e5c8f753ad9fda8b056ae2b7
Author: Keith Packard <keithp at keithp.com>
Date:   Wed Oct 3 10:10:42 2018 -0700

    Add .gitignore and .dir-locals.el files
    
    Signed-off-by: Keith Packard <keithp at keithp.com>

diff --git a/.dir-locals.el b/.dir-locals.el
new file mode 100644
index 0000000..ff48507
--- /dev/null
+++ b/.dir-locals.el
@@ -0,0 +1 @@
+((c-mode . ((c-basic-offset . 4))))
\ No newline at end of file
diff --git a/.gitignore b/.gitignore
index d3d90bb..7e08b78 100644
--- a/.gitignore
+++ b/.gitignore
@@ -31,3 +31,11 @@ debian/nickle.substvars
 test/math-tables
 test/math-tables.5c
 ylwrap
+test-driver
+test-nickle.sh
+MakeOut
+TAGS
+build-files
+nickle.spec
+*.log
+*.trs
diff --git a/doc/.dir-locals.el b/doc/.dir-locals.el
new file mode 100644
index 0000000..6dcb727
--- /dev/null
+++ b/doc/.dir-locals.el
@@ -0,0 +1 @@
+(setq-default indent-tabs-mode nil);
\ No newline at end of file
diff --git a/doc/tutorial/.gitignore b/doc/tutorial/.gitignore
new file mode 100644
index 0000000..292be59
--- /dev/null
+++ b/doc/tutorial/.gitignore
@@ -0,0 +1 @@
+nickle-tutorial.pdf
diff --git a/examples/turtle/.gitignore b/examples/turtle/.gitignore
new file mode 100644
index 0000000..63d5db0
--- /dev/null
+++ b/examples/turtle/.gitignore
@@ -0,0 +1 @@
+snowflake.eepic
diff --git a/test/.gitignore b/test/.gitignore
new file mode 100644
index 0000000..e69de29


More information about the Nickle mailing list