[newlisp] Updated version and including missing patch

ndowens ndowens at fedoraproject.org
Sat May 5 02:05:04 UTC 2012


commit 310f8405f996c80a574b9a08fbcc2c6307429ca9
Author: ndowens <ndowens at Nathan.Linux>
Date:   Fri May 4 21:04:44 2012 -0500

    Updated version and including missing patch

 .gitignore                                  |    1 +
 newlisp-0002-Allow-to-override-CFLAGS.patch |    4 ++--
 newlisp.spec                                |   21 ++++++++++++++++++---
 sources                                     |    2 +-
 4 files changed, 22 insertions(+), 6 deletions(-)
---
diff --git a/.gitignore b/.gitignore
index 02546ed..056062c 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 /newlisp-10.3.3.tgz
 /newlisp-10.3.5.tgz
 /newlisp-10.4.0.tgz
+/newlisp-10.4.2.tgz
diff --git a/newlisp-0002-Allow-to-override-CFLAGS.patch b/newlisp-0002-Allow-to-override-CFLAGS.patch
index 2c71a22..2cd17dc 100644
--- a/newlisp-0002-Allow-to-override-CFLAGS.patch
+++ b/newlisp-0002-Allow-to-override-CFLAGS.patch
@@ -18,7 +18,7 @@ index abccae3..9458501 100644
  	nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
  
 -CFLAGS = -fPIC -m64 -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX
-+CFLAGS ?= -fPIC -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX
++CFLAGS ?= -fPIC -m64 -Wall -pedantic -Wno-uninitialized -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DNEWLISP64 -DLINUX
  
  CC = gcc
  
@@ -31,7 +31,7 @@ index 21ec7bd..e05cdcc 100644
  	nl-sock.o nl-import.o nl-xml.o nl-web.o nl-matrix.o nl-debug.o nl-utf8.o pcre.o
  
 -CFLAGS = -m32 -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DLINUX
-+CFLAGS ?= -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DLINUX
++CFLAGS ?= -m32 -Wall -pedantic -Wno-strict-aliasing -Wno-long-long -c -O2 -g -DREADLINE -DSUPPORT_UTF8 -DLINUX
  
  CC = gcc
  
diff --git a/newlisp.spec b/newlisp.spec
index 4ea745c..c36b064 100644
--- a/newlisp.spec
+++ b/newlisp.spec
@@ -1,6 +1,6 @@
 Name:           newlisp
-Version:        10.4.0
-Release:        2%{?dist}
+Version:        10.4.2
+Release:        1%{?dist}
 Summary:        Lisp-like general purpose scripting
 
 License:        GPLv3+
@@ -29,15 +29,20 @@ sed -i.m64 's/\-m64 //' makefile_linuxLP64
 %configure
 
 %ifarch x86_64
+CFLAGS="%{optflags} -c -DREADLINE -DSUPPORT_UTF8 -DLINUX" \
+        make -f makefile_linuxLP64 %{?_smp_mflags}
+
 CFLAGS="%{optflags} -m64 -c -DREADLINE -DSUPPORT_UTF8 -DLINUX" \
 	make -f makefile_linuxLP64 %{?_smp_mflags}
 %endif
+
 %ifarch %{ix86}
 CFLAGS="%{optflags} -m32 -c -DREADLINE -DSUPPORT_UTF8 -DLINUX" \
 	make -f makefile_linux %{?_smp_mflags}
 %endif
 %ifarch %{arm}
-	make -f makefile_linux %{?_smp_mflags}
+CFLAGS="%{optflags} -c -DREADLINE -DSUPPORT_UTF8 -DLINUX" \
+        make -f makefile_linux %{?_smp_mflags}
 %endif
 
 %install
@@ -60,6 +65,16 @@ make install_home HOME=%{buildroot}/usr/
 
 
 %changelog
+* Fri May 04 2012 Nathan Owe <ndowens at fedoraproject.org> 10.4.2-1
+- Fixes missing RPM_OPT_FLAGS (bug #815529)
+- Updated version (bug #818145)
+
+* Tue Apr 17 2012 Nathan Owe <ndowens at fedoraproject.org> 10.4.0-4
+- Rebuild with updated Allow-override-CFLAGS patch
+
+* Tue Apr 17 2012 Nathan Owe <ndowens at fedoraproject.org> 10.4.0-3
+- Fixed mixed-tabs-and-spaces warning
+
 * Mon Apr 16 2012 Peter Robinson <pbrobinson at fedoraproject.org> - 10.4.0-2
 - Fix building from ARM
 
diff --git a/sources b/sources
index 92a8b2f..94bca0c 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-a56ed9130a403520b08059f17b81965a  newlisp-10.4.0.tgz
+97a3b822e33ccefe7fad36d56371392c  newlisp-10.4.2.tgz


More information about the scm-commits mailing list