Author: qboosh                       Date: Wed Jun 27 19:52:56 2012 GMT
Module: packages                      Tag: HEAD
---- Log message:
- updated to 2.1.0; switched to SuiteSparse_config
- updated ufconfig,shared patches

---- Files affected:
packages/RBio:
   RBio-shared.patch (1.1 -> 1.2) , RBio-ufconfig.patch (1.1 -> 1.2) , 
RBio.spec (1.3 -> 1.4) 

---- Diffs:

================================================================
Index: packages/RBio/RBio-shared.patch
diff -u packages/RBio/RBio-shared.patch:1.1 packages/RBio/RBio-shared.patch:1.2
--- packages/RBio/RBio-shared.patch:1.1 Mon Jan  9 18:09:53 2012
+++ packages/RBio/RBio-shared.patch     Wed Jun 27 21:52:51 2012
@@ -42,7 +42,7 @@
 -      $(ARCHIVE)  librbio.a $(OBJ)
 -      - $(RANLIB) librbio.a
 +librbio.la: $(OBJ)
-+      libtool --tag=CC --mode=link $(CC) $(LDFLAGS) $(CFLAGS) -o librbio.la 
-rpath $(libdir) $(OBJ:.o=.lo) -lufconfig
++      libtool --tag=CC --mode=link $(CC) $(LDFLAGS) $(CFLAGS) -o librbio.la 
-rpath $(libdir) $(OBJ:.o=.lo) -lsuitesparseconfig
 +
 +install: librbio.la
 +      install -d $(DESTDIR)$(libdir)
@@ -61,14 +61,14 @@
 -      $(C) -c -DINT $(I) $<
 +      libtool --tag=CC --mode=compile $(C) -c -DINT $(I) $< -o RBio_i.lo
  
---- RBio/Demo/Makefile.orig    2012-01-09 17:15:23.029781482 +0100
-+++ RBio/Demo/Makefile 2012-01-09 17:51:37.443187623 +0100
+--- RBio/Demo/Makefile.orig    2012-06-27 21:43:09.000000000 +0200
++++ RBio/Demo/Makefile 2012-06-27 21:43:50.571402567 +0200
 @@ -6,7 +6,7 @@
  
- include /usr/share/misc/UFconfig.mk
+ include /usr/share/misc/SuiteSparse_config.mk
  
--LIB = ../Lib/librbio.a -lufconfig
-+LIB = ../Lib/librbio.la -lufconfig
+-CLIB = ../Lib/librbio.a -lsuitesparseconfig $(LIB)
++CLIB = ../Lib/librbio.la -lsuitesparseconfig $(LIB)
  
  C = $(CC) $(CF)
  
@@ -76,6 +76,6 @@
  I = -I../Include
  
  RBdemo: library RBdemo.c
--      $(C) -o RBdemo $(I) RBdemo.c $(LIB)
-+      libtool --tag=CC --mode=link $(C) -o RBdemo $(I) RBdemo.c $(LIB)
+-      $(C) -o RBdemo $(I) RBdemo.c $(CLIB)
++      libtool --tag=CC --mode=link $(C) $(LDFLAGS) -o RBdemo $(I) RBdemo.c 
$(CLIB)
  

================================================================
Index: packages/RBio/RBio-ufconfig.patch
diff -u packages/RBio/RBio-ufconfig.patch:1.1 
packages/RBio/RBio-ufconfig.patch:1.2
--- packages/RBio/RBio-ufconfig.patch:1.1       Mon Jan  9 18:09:53 2012
+++ packages/RBio/RBio-ufconfig.patch   Wed Jun 27 21:52:51 2012
@@ -4,8 +4,8 @@
  
  default: all
  
--include ../UFconfig/UFconfig.mk
-+include /usr/share/misc/UFconfig.mk
+-include ../SuiteSparse_config/SuiteSparse_config.mk
++include /usr/share/misc/SuiteSparse_config.mk
  
  # Compile the C-callable libraries and the Demo programs.
  all:
@@ -15,8 +15,8 @@
  
  ccode: all
  
--include ../../UFconfig/UFconfig.mk
-+include /usr/share/misc/UFconfig.mk
+-include ../../SuiteSparse_config/SuiteSparse_config.mk
++include /usr/share/misc/SuiteSparse_config.mk
  
  C = $(CC) $(CF)
  
@@ -24,22 +24,22 @@
  
  $(OBJ): $(INC)
  
--I = -I../Include -I../../UFconfig
+-I = -I../Include -I../../SuiteSparse_config
 +I = -I../Include
  
  
#-------------------------------------------------------------------------------
  
---- RBio/Demo/Makefile.orig    2011-12-08 20:17:08.000000000 +0100
-+++ RBio/Demo/Makefile 2012-01-08 14:39:56.876576218 +0100
+--- RBio/Demo/Makefile.orig    2012-05-27 03:17:26.000000000 +0200
++++ RBio/Demo/Makefile 2012-06-27 21:42:48.921405153 +0200
 @@ -4,9 +4,9 @@
  
  default: all
  
--include ../../UFconfig/UFconfig.mk
-+include /usr/share/misc/UFconfig.mk
+-include ../../SuiteSparse_config/SuiteSparse_config.mk
++include /usr/share/misc/SuiteSparse_config.mk
  
--LIB = ../Lib/librbio.a ../../UFconfig/libufconfig.a
-+LIB = ../Lib/librbio.a -lufconfig
+-CLIB = ../Lib/librbio.a ../../SuiteSparse_config/libsuitesparseconfig.a $(LIB)
++CLIB = ../Lib/librbio.a -lsuitesparseconfig $(LIB)
  
  C = $(CC) $(CF)
  
@@ -47,12 +47,12 @@
  
  
#-------------------------------------------------------------------------------
  library:
--      ( cd ../../UFconfig ; $(MAKE) )
+-      ( cd ../../SuiteSparse_config ; $(MAKE) )
        ( cd ../Lib ; $(MAKE) )
  
#-------------------------------------------------------------------------------
  
--I = -I../Include -I../../UFconfig
+-I = -I../Include -I../../SuiteSparse_config
 +I = -I../Include
  
  RBdemo: library RBdemo.c
-       $(C) -o RBdemo $(I) RBdemo.c $(LIB)
+       $(C) -o RBdemo $(I) RBdemo.c $(CLIB)

================================================================
Index: packages/RBio/RBio.spec
diff -u packages/RBio/RBio.spec:1.3 packages/RBio/RBio.spec:1.4
--- packages/RBio/RBio.spec:1.3 Mon Jan  9 20:54:15 2012
+++ packages/RBio/RBio.spec     Wed Jun 27 21:52:51 2012
@@ -2,16 +2,16 @@
 Summary:       RBio: read/write matrices in Rutherford/Boeing format
 Summary(pl.UTF-8):     RBio: odczyt/zapis macierzy zapisanych w formacie 
Rutherforda-Boeinga
 Name:          RBio
-Version:       2.0.2
+Version:       2.1.0
 Release:       1
 License:       GPL v2+
 Group:         Libraries
 Source0:       
http://www.cise.ufl.edu/research/sparse/RBio/%{name}-%{version}.tar.gz
-# Source0-md5: fd469b4ccac07c771c10c3046d593791
+# Source0-md5: 78fd49bbadaaeac5001aa56202173e47
 Patch0:                %{name}-ufconfig.patch
 Patch1:                %{name}-shared.patch
 URL:           http://www.cise.ufl.edu/research/sparse/RBio/
-BuildRequires: UFconfig-devel >= 3.7.0
+BuildRequires: SuiteSparse_config-devel >= 4.0.0
 BuildRequires: libtool >= 2:1.5
 BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
@@ -33,7 +33,7 @@
 Summary(pl.UTF-8):     Pliki nagłówkowe biblioteki RBio
 Group:         Development/Libraries
 Requires:      %{name} = %{version}-%{release}
-Requires:      UFconfig-devel >= 3.7.0
+Requires:      SuiteSparse_config-devel >= 4.0.0
 
 %description devel
 Header files for RBio library.
@@ -103,6 +103,10 @@
 All persons listed below can be reached at <cvs_login>@pld-linux.org
 
 $Log$
+Revision 1.4  2012/06/27 19:52:51  qboosh
+- updated to 2.1.0; switched to SuiteSparse_config
+- updated ufconfig,shared patches
+
 Revision 1.3  2012/01/09 19:54:15  qboosh
 - pl fix
 
================================================================

---- CVS-web:
    http://cvs.pld-linux.org/packages/RBio/RBio-shared.patch?r1=1.1&r2=1.2
    http://cvs.pld-linux.org/packages/RBio/RBio-ufconfig.patch?r1=1.1&r2=1.2
    http://cvs.pld-linux.org/packages/RBio/RBio.spec?r1=1.3&r2=1.4

_______________________________________________
pld-cvs-commit mailing list
[email protected]
http://lists.pld-linux.org/mailman/listinfo/pld-cvs-commit

Reply via email to