packages: AMD/AMD.spec, AMD/amd-shared.patch - updated to 2.2.1 - updated s...
qboosh
qboosh at pld-linux.org
Wed Oct 13 09:00:09 CEST 2010
Author: qboosh Date: Wed Oct 13 07:00:09 2010 GMT
Module: packages Tag: HEAD
---- Log message:
- updated to 2.2.1
- updated shared patch
---- Files affected:
packages/AMD:
AMD.spec (1.15 -> 1.16) , amd-shared.patch (1.3 -> 1.4)
---- Diffs:
================================================================
Index: packages/AMD/AMD.spec
diff -u packages/AMD/AMD.spec:1.15 packages/AMD/AMD.spec:1.16
--- packages/AMD/AMD.spec:1.15 Fri Jan 4 23:49:21 2008
+++ packages/AMD/AMD.spec Wed Oct 13 09:00:03 2010
@@ -2,12 +2,12 @@
Summary: AMD: Approximate Minimum Degree
Summary(pl.UTF-8): AMD - przybliżony algorytm minimalnego stopnia
Name: AMD
-Version: 2.2.0
-Release: 3
+Version: 2.2.1
+Release: 1
License: LGPL v2.1+
Group: Libraries
Source0: http://www.cise.ufl.edu/research/sparse/amd/%{name}-%{version}.tar.gz
-# Source0-md5: f81fcae945de82864035b03ee20a8d2b
+# Source0-md5: b3e9679ba20635ac4847f01c01d6e992
Patch0: amd-ufconfig.patch
Patch1: amd-shared.patch
URL: http://www.cise.ufl.edu/research/sparse/amd/
@@ -105,6 +105,10 @@
All persons listed below can be reached at <cvs_login>@pld-linux.org
$Log$
+Revision 1.16 2010/10/13 07:00:03 qboosh
+- updated to 2.2.1
+- updated shared patch
+
Revision 1.15 2008/01/04 22:49:21 qboosh
- fixed shared patch, -fPIC hack no longer needed
- fortran library is not built/packaged by default
================================================================
Index: packages/AMD/amd-shared.patch
diff -u packages/AMD/amd-shared.patch:1.3 packages/AMD/amd-shared.patch:1.4
--- packages/AMD/amd-shared.patch:1.3 Fri Jan 4 23:48:23 2008
+++ packages/AMD/amd-shared.patch Wed Oct 13 09:00:03 2010
@@ -57,15 +57,14 @@
./amd_f77cross > my_amd_f77cross.out
- diff amd_f77cross.out my_amd_f77cross.out
-diff -ur AMD/Lib/GNUmakefile AMD-shared/Lib/GNUmakefile
---- AMD/Lib/GNUmakefile 2007-12-02 19:00:35.000000000 +0100
-+++ AMD-shared/Lib/GNUmakefile 2007-12-02 18:59:22.000000000 +0100
+--- AMD/Lib/GNUmakefile.orig 2010-10-13 08:48:16.000000000 +0200
++++ AMD/Lib/GNUmakefile 2010-10-13 08:54:35.527741882 +0200
@@ -2,7 +2,7 @@
# AMD Makefile for compiling on Unix systems (for GNU make only)
#-------------------------------------------------------------------------------
--default: ../Lib/libamd.a
-+default: ../Lib/libamd.la
+-default: libamd.a
++default: libamd.la
include /usr/share/misc/UFconfig.mk
@@ -74,58 +73,58 @@
amd_global.o: ../Source/amd_global.c $(INC)
- $(C) -c $< -o $@
-+ libtool --tag=CC --mode=compile $(CC) $(CFLAGS) $(CONFIG) -I../Include -c $< -o $@
++ libtool --tag=CC --mode=compile $(C) -c $< -o $@
amd_i_%.o: ../Source/amd_%.c $(INC)
- $(C) -DDINT -c $< -o $@
-+ libtool --tag=CC --mode=compile $(CC) -DDINT $(CFLAGS) $(CONFIG) -I../Include -c $< -o $@
++ libtool --tag=CC --mode=compile $(C) -DDINT -c $< -o $@
amd_l_%.o: ../Source/amd_%.c $(INC)
- $(C) -DDLONG -c $< -o $@
-+ libtool --tag=CC --mode=compile $(CC) -DDLONG $(CFLAGS) $(CONFIG) -I../Include -c $< -o $@
++ libtool --tag=CC --mode=compile $(C) -DDLONG -c $< -o $@
#-------------------------------------------------------------------------------
# Create the libamd.a library (C versions only)
#-------------------------------------------------------------------------------
--../Lib/libamd.a: amd_global.o $(AMDI) $(AMDL)
-- $(AR) ../Lib/libamd.a $^
-- - $(RANLIB) ../Lib/libamd.a
-+../Lib/libamd.la: amd_global.o $(AMDI) $(AMDL)
+-libamd.a: amd_global.o $(AMDI) $(AMDL)
+- $(AR) libamd.a $^
+- - $(RANLIB) libamd.a
++libamd.la: amd_global.o $(AMDI) $(AMDL)
+ libtool --tag=CC --mode=link $(CC) $(LDFLAGS) -o libamd.la -rpath $(libdir) $(^:.o=.lo) -lm
+
+install: libamd.la
+ install -d $(DESTDIR)$(libdir)
-+ libtool --mode=install cp libamd.la $(DESTDIR)$(libdir)/libamd.la
++ libtool --mode=install install libamd.la $(DESTDIR)$(libdir)/libamd.la
#-------------------------------------------------------------------------------
# compile the Fortran versions and the libamdf77.a library
#-------------------------------------------------------------------------------
--fortran: ../Lib/libamdf77.a
-+fortran: ../Lib/libamdf77.la
+-fortran: libamdf77.a
++fortran: libamdf77.la
AMDF77 = amd.o amdbar.o
amd.o: ../Source/amd.f
- $(F77) $(F77FLAGS) -c ../Source/amd.f -o amd.o
-+ libtool --tag=F77 --mode=compile $(F77) $(F77FLAGS) ../Source/amd.f -o amd.o
++ libtool --tag=F77 --mode=compile $(F77) $(F77FLAGS) -c ../Source/amd.f -o amd.o
amdbar.o: ../Source/amdbar.f
- $(F77) $(F77FLAGS) -c ../Source/amdbar.f -o amdbar.o
-+ libtool --tag=F77 --mode=compile $(F77) $(F77FLAGS) ../Source/amdbar.f -o amdbar.o
++ libtool --tag=F77 --mode=compile $(F77) $(F77FLAGS) -c ../Source/amdbar.f -o amdbar.o
--../Lib/libamdf77.a: $(AMDF77)
-- $(AR) ../Lib/libamdf77.a $^
-- - $(RANLIB) ../Lib/libamdf77.a
-+../Lib/libamdf77.la: $(AMDF77)
-+ libtool --tag=F77 --mode=link $(F77) $(LDFLAGS) -o libamdf77.la -rpath $(libdir) $^ -lm
+-libamdf77.a: $(AMDF77)
+- $(AR) libamdf77.a $^
+- - $(RANLIB) libamdf77.a
++libamdf77.la: $(AMDF77)
++ libtool --tag=F77 --mode=link $(F77) $(LDFLAGS) -o libamdf77.la -rpath $(libdir) $(^:.o=.lo) -lm
#-------------------------------------------------------------------------------
# Remove all but the files in the original distribution
-@@ -73,4 +71,4 @@
+@@ -73,4 +75,4 @@
purge: distclean
distclean: clean
-- - $(RM) ../Lib/libamd.a ../Lib/libamdf77.a
-+ - $(RM) ../Lib/libamd.la ../Lib/libamdf77.la
+- - $(RM) libamd.a libamdf77.a
++ - $(RM) libamd.la libamdf77.la
================================================================
---- CVS-web:
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/AMD/AMD.spec?r1=1.15&r2=1.16&f=u
http://cvs.pld-linux.org/cgi-bin/cvsweb.cgi/packages/AMD/amd-shared.patch?r1=1.3&r2=1.4&f=u
More information about the pld-cvs-commit
mailing list