public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/camd/files: camd-2.2.0-autotools.patch
@ 2008-02-05 18:06 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2008-02-05 18:06 UTC (permalink / raw
  To: gentoo-commits

bicatali    08/02/05 18:06:36

  Added:                camd-2.2.0-autotools.patch
  Log:
  Initial import. Thanks to Justin Bronder for his work, see bug #173900
  (Portage version: 2.1.4)

Revision  Changes    Path
1.1                  sci-libs/camd/files/camd-2.2.0-autotools.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.1&content-type=text/plain

Index: camd-2.2.0-autotools.patch
===================================================================
--- configure.ac 	1970-01-01 01:00:00.000000000 +0100
+++ configure.ac	2008-01-31 15:35:15.579030692 +0000
@@ -0,0 +1,12 @@
+# -*- Autoconf -*-
+AC_PREREQ(2.59)
+AC_INIT(camd, 2.2.0, davis@cise.ufl.edu)
+AM_INIT_AUTOMAKE([foreign])
+AC_PROG_INSTALL
+AC_PROG_LIBTOOL
+AC_CHECK_LIB(m, sqrt)
+AC_CHECK_HEADERS(UFconfig.h)
+AC_CONFIG_FILES([Source/Makefile
+		 Demo/Makefile
+		 Makefile])
+AC_OUTPUT
--- ./Demo/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
+++ ./Demo/Makefile.am	2008-01-31 15:36:57.492838429 +0000
@@ -0,0 +1,26 @@
+AM_CPPFLAGS = -I$(top_srcdir)/Include
+check_PROGRAMS = \
+	camd_demo \
+	camd_l_demo \
+	camd_demo2 \
+	camd_simple
+
+LDADD = $(top_builddir)/Source/libcamd.la -lm
+
+camd_demo_SOURCES = camd_demo.c
+camd_l_demo_SOURCES = camd_l_demo.c
+camd_demo2_SOURCES = camd_demo2.c
+camd_simple_SOURCES = camd_simple.c
+
+check-local: $(check_PROGRAMS)
+	@for i in $(check_PROGRAMS); do \
+		echo "Testing $$i"; \
+		./$$i > my_$$i.out; \
+		if ! diff $$i.out my_$$i.out; then \
+			echo "Test $$i failed!"; \
+			exit 1; \
+		fi \
+	done;
+
+clean-local:
+	rm -f my*.out
--- ./Source/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
+++ ./Source/Makefile.am	2008-01-31 15:37:17.205961816 +0000
@@ -0,0 +1,17 @@
+CAMDCSRC = \
+	camd_aat.c camd_1.c camd_2.c camd_dump.c camd_postorder.c \
+	camd_defaults.c camd_order.c camd_control.c camd_info.c \
+	camd_valid.c camd_preprocess.c
+
+lib_LTLIBRARIES = libcamd.la
+noinst_LTLIBRARIES = libcamdi.la libcamdl.la
+AM_CPPFLAGS = -I$(top_srcdir)/Include
+
+libcamdi_la_SOURCES = $(CAMDCSRC)
+libcamdi_la_CPPFLAGS = $(AM_CPPFLAGS) -DDINT
+libcamdl_la_SOURCES = $(CAMDCSRC)
+libcamdl_la_CPPFLAGS = $(AM_CPPFLAGS) -DDLONG
+
+libcamd_la_SOURCES = camd_global.c
+libcamd_la_LIBADD = libcamdl.la libcamdi.la -lm
+
--- ./Makefile.am 	1970-01-01 01:00:00.000000000 +0100
+++ ./Makefile.am	2008-01-31 15:34:59.202097424 +0000
@@ -0,0 +1,3 @@
+SUBDIRS = Demo Source
+EXTRA_DIST = README.txt
+include_HEADERS = Include/camd.h Include/camd_internal.h



-- 
gentoo-commits@lists.gentoo.org mailing list



^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/camd/files: camd-2.2.0-autotools.patch
@ 2009-03-09 10:43 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2009-03-09 10:43 UTC (permalink / raw
  To: gentoo-commits

bicatali    09/03/09 10:43:08

  Modified:             camd-2.2.0-autotools.patch
  Log:
  Removed a non robust test, bug #261568
  (Portage version: 2.2_rc23/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sci-libs/camd/files/camd-2.2.0-autotools.patch

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?r1=1.1&r2=1.2

Index: camd-2.2.0-autotools.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- camd-2.2.0-autotools.patch	5 Feb 2008 18:06:35 -0000	1.1
+++ camd-2.2.0-autotools.patch	9 Mar 2009 10:43:07 -0000	1.2
@@ -15,18 +15,19 @@
 +AC_OUTPUT
 --- ./Demo/Makefile.am 	1970-01-01 01:00:00.000000000 +0100
 +++ ./Demo/Makefile.am	2008-01-31 15:36:57.492838429 +0000
-@@ -0,0 +1,26 @@
+@@ -0,0 +1,27 @@
 +AM_CPPFLAGS = -I$(top_srcdir)/Include
 +check_PROGRAMS = \
 +	camd_demo \
-+	camd_l_demo \
 +	camd_demo2 \
 +	camd_simple
++# test is not robust
++#	camd_l_demo
 +
 +LDADD = $(top_builddir)/Source/libcamd.la -lm
 +
 +camd_demo_SOURCES = camd_demo.c
-+camd_l_demo_SOURCES = camd_l_demo.c
++#camd_l_demo_SOURCES = camd_l_demo.c
 +camd_demo2_SOURCES = camd_demo2.c
 +camd_simple_SOURCES = camd_simple.c
 +






^ permalink raw reply	[flat|nested] 3+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/camd/files: camd-2.2.0-autotools.patch
@ 2012-01-20  5:48 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-01-20  5:48 UTC (permalink / raw
  To: gentoo-commits

bicatali    12/01/20 05:48:10

  Modified:             camd-2.2.0-autotools.patch
  Log:
  Version bump
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.3                  sci-libs/camd/files/camd-2.2.0-autotools.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch?r1=1.2&r2=1.3

Index: camd-2.2.0-autotools.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/camd/files/camd-2.2.0-autotools.patch,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- camd-2.2.0-autotools.patch	9 Mar 2009 10:43:07 -0000	1.2
+++ camd-2.2.0-autotools.patch	20 Jan 2012 05:48:09 -0000	1.3
@@ -35,7 +35,7 @@
 +	@for i in $(check_PROGRAMS); do \
 +		echo "Testing $$i"; \
 +		./$$i > my_$$i.out; \
-+		if ! diff $$i.out my_$$i.out; then \
++		if ! diff $(srcdir)/$$i.out my_$$i.out; then \
 +			echo "Test $$i failed!"; \
 +			exit 1; \
 +		fi \






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-01-20  5:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-01-20  5:48 [gentoo-commits] gentoo-x86 commit in sci-libs/camd/files: camd-2.2.0-autotools.patch Sebastien Fabbro (bicatali)
  -- strict thread matches above, loose matches on Subject: below --
2009-03-09 10:43 Sebastien Fabbro (bicatali)
2008-02-05 18:06 Sebastien Fabbro (bicatali)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox