Description: Upstream changes introduced in version 0.2.3-1
This patch has been created by dpkg-source during the package build.
Here's the last changelog entry, hopefully it gives details on why
those changes were made:
.
ats-lang-anairiats (0.2.3-1) unstable; urgency=low
.
* New upstream release (Closes: #601772)
* Updated example Makefiles to version 0.2.3
.
The person named in the Author field signed this changelog entry.
Author: Matthew Danish <mrd@debian.org>
Bug-Debian: http://bugs.debian.org/601772
---
The information above should follow the Patch Tagging Guidelines, please
checkout http://dep.debian.net/deps/dep3/ to learn about the format. Here
are templates for supplementary fields that you might want to add:
Origin: <vendor|upstream|other>, <url of original patch>
Bug: <url in upstream bugtracker>
Bug-Debian: http://bugs.debian.org/<bugnumber>
Bug-Ubuntu: https://launchpad.net/bugs/<bugnumber>
Forwarded: <no|not-needed|url proving that it has been forwarded>
Reviewed-By: <name and email of someone who approved the patch>
Last-Update: <YYYY-MM-DD>
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/TEST/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/TEST/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# (kind of) unit testing for ATS library code
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/AUP/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/AUP/Makefile
@@ -1,3 +1,4 @@
+test: compall
######
#
# Makefile file for some examples translated from the book:
@@ -15,7 +16,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/cairo/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/cairo/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Some Examples in ATS involving GTK+ programming
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/MULTICORE/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/MULTICORE/Makefile
@@ -1,3 +1,4 @@
+test: compall
##
## A simple Makefile
##
@@ -6,7 +7,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/OpenGL/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/OpenGL/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# A simple Makefile for some programs involving OpenGL
@@ -15,13 +16,16 @@ all: checkall
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
ATSCC=$(ATSHOMEQ)/bin/atscc
-ATSCTRB=$(ATSHOMEQ)/contrib/GL/atsctrb_GL.o
+ATSCTRB=$(ATSLIBQ)/contrib/GL/atsctrb_GL.o
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/MISC/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/MISC/Makefile
@@ -1,3 +1,4 @@
+test: compall
######
#
# A variety of examples involving dependent and/or linear types
@@ -6,7 +7,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/MISC/Twentyfour/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/MISC/Twentyfour/Makefile
@@ -1,3 +1,4 @@
+test: compall
##
## Makefile for [twentyfour.dats]
##
@@ -6,7 +7,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/MISC/HttpServer/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/MISC/HttpServer/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# A simple (single threaded) HTTP server implemented in ATS
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/GTK/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/GTK/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Some Examples in ATS involving GTK+ programming
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
@@ -55,14 +59,14 @@ gtkcairopascal: gtkcairopascal.dats
######
-ATSCTRB=$(ATSHOMEQ)/contrib/cairo/atsctrb_cairo.o
+ATSCTRB=$(ATSLIBQ)/contrib/cairo/atsctrb_cairo.o
compall:: gtkcairodisc
gtkcairodisc: gtkcairodisc.dats
$(ATSCC) -D_ATS_GCATS $(ATSCTRB) -o $@ gtkcairodisc.dats $(GTKFLAGS) -lm
######
-ATSCTRB=$(ATSHOMEQ)/contrib/cairo/atsctrb_cairo.o
+ATSCTRB=$(ATSLIBQ)/contrib/cairo/atsctrb_cairo.o
compall:: bsearch_demo
bsearch_demo: bsearch_demo.dats
$(ATSCC) -D_ATS_GCATS $(ATSCTRB) -o $@ bsearch_demo.dats $(GTKFLAGS) -lm
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/INTRO/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/INTRO/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Some introductory examples written in ATS
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for some K&R examples
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter07/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter07/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 7
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter04/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter04/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 4
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter03/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter03/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 3
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter05/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter05/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 5
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter02/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter02/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 2
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter01/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter01/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 1
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter06/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter06/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 6
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/doc/EXAMPLE/KernighanRitchie/Chapter08/Makefile
+++ ats-lang-anairiats-0.2.3/doc/EXAMPLE/KernighanRitchie/Chapter08/Makefile
@@ -1,3 +1,4 @@
+test: compall
#
#
# Makefile for K&R examples in Chapter 8
@@ -8,7 +9,10 @@
ATSHOMEQ="$(ATSHOME)"
ifeq ($(ATSHOMEQ),"")
-ATSHOMEQ="/usr" # default value if [ATSHOME] is undefined
+ATSHOMEQ="/usr"
+ATSLIBQ="/usr/lib/ats-anairiats-0.2.3"
+else
+ATSLIBQ=$(ATSHOMEQ)
endif
######
--- ats-lang-anairiats-0.2.3.orig/contrib/cblas/TEST/Makefile
+++ ats-lang-anairiats-0.2.3/contrib/cblas/TEST/Makefile
@@ -28,7 +28,7 @@ cleanall:: clean
checkall:: cblas_test
cblas_test: cblas_test.dats
- $(ATSCC) $(LIBFLAGS) -O2 -o $@ cblas_test.dats $(ATSCTRB) -lcblas -lm \
+ $(ATSCC) $(LIBFLAGS) -O2 -o $@ cblas_test.dats $(ATSCTRB) -lblas -lm \
&& ./cblas_test
cleanall:: ; $(RMF) cblas_test
@@ -36,13 +36,13 @@ cleanall:: ; $(RMF) cblas_test
checkall:: gemm_test1
gemm_test1: gemm_test1.dats
- $(ATSCC) $(LIBFLAGS) -O2 -o $@ gemm_test1.dats $(ATSCTRB) -lcblas -lm \
+ $(ATSCC) $(LIBFLAGS) -O2 -o $@ gemm_test1.dats $(ATSCTRB) -lblas -lm \
&& ./gemm_test1
cleanall:: ; $(RMF) gemm_test1
checkall:: gemm_test2
gemm_test2: gemm_test2.dats
- $(ATSCC) $(LIBFLAGS) -O2 -o $@ gemm_test2.dats $(ATSCTRB) -lcblas -lm \
+ $(ATSCC) $(LIBFLAGS) -O2 -o $@ gemm_test2.dats $(ATSCTRB) -lblas -lm \
&& ./gemm_test2
cleanall:: ; $(RMF) gemm_test2
@@ -50,7 +50,7 @@ cleanall:: ; $(RMF) gemm_test2
checkall:: symm_test
symm_test: symm_test.dats
- $(ATSCC) $(LIBFLAGS) -O2 -o $@ symm_test.dats $(ATSCTRB) -lcblas -lm \
+ $(ATSCC) $(LIBFLAGS) -O2 -o $@ symm_test.dats $(ATSCTRB) -lblas -lm \
&& ./symm_test
cleanall:: ; $(RMF) symm_test
@@ -58,7 +58,7 @@ cleanall:: ; $(RMF) symm_test
checkall:: lu_test
lu_test: lu_test.dats
- $(ATSCC) $(LIBFLAGS) -O2 -o $@ lu_test.dats $(ATSCTRB) -lcblas -lm \
+ $(ATSCC) $(LIBFLAGS) -O2 -o $@ lu_test.dats $(ATSCTRB) -lblas -lm \
&& ./lu_test
cleanall:: ; $(RMF) lu_test