rpms/ksplice/F-8 ksplice-0.9.3-config.patch, NONE, 1.1 ksplice.spec, 1.3, 1.4 sources, 1.4, 1.5 ksplice-0.9.2-config.patch, 1.1, NONE

Jochen Schmitt s4504kr at fedoraproject.org
Tue Nov 11 21:17:22 UTC 2008


Author: s4504kr

Update of /cvs/extras/rpms/ksplice/F-8
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv20171

Modified Files:
	ksplice.spec sources 
Added Files:
	ksplice-0.9.3-config.patch 
Removed Files:
	ksplice-0.9.2-config.patch 
Log Message:
New upstream release

ksplice-0.9.3-config.patch:

--- NEW FILE ksplice-0.9.3-config.patch ---
diff -up ksplice-0.9.3/configure.ac.auto ksplice-0.9.3/configure.ac
--- ksplice-0.9.3/configure.ac.auto	2008-11-08 04:50:55.000000000 +0100
+++ ksplice-0.9.3/configure.ac	2008-11-11 21:46:30.000000000 +0100
@@ -1,17 +1,17 @@
 AC_INIT([Ksplice], [0.9.3], [devel at ksplice.com])
 
 AC_ARG_WITH([libbfd],
-  [  --with-libbfd=FILE      path to libbfd.a],
+  [  --with-libbfd=PATH      path to libbfd.a],
   [ac_libbfd=$withval],
-  [ac_libbfd=NONE])
+  [ac_libbfd=yes])
 
 AC_ARG_WITH([libiberty],
-  [  --with-libiberty=FILE   path to libiberty.a],
+  [  --with-libiberty=PATH   path to libiberty.a],
   [ac_libiberty=$withval],
-  [ac_libiberty=NONE])
+  [ac_libiberty=yes])
 
 AC_ARG_WITH([libz],
-  [  --with-libz=FILE        path to libz.a],
+  [  --with-libz=PATH        path to libz.a],
   [ac_libz=$withval],
   [ac_libz=NONE])
 
@@ -23,21 +23,23 @@ AC_ARG_WITH([bfd-include-dir],
 
 AC_PROG_CC
 
-if test "$ac_libz" = "NONE"; then
+if test "$ac_libz" = "yes"; then
+  AC_CHECK_LIB([z], [zlibVersion])
+elif test "$ac_libz" != "NONE"; then
+  LIBS="-L$ac_libz $LIBS"
   AC_CHECK_LIB([z], [zlibVersion])
-else
-  LIBS="$ac_libz $LIBS"
 fi
-if test "$ac_libiberty" = "NONE"; then
+if test "$ac_libiberty" = "yes"; then
   AC_CHECK_LIB([iberty], [objalloc_create])
-else
-  LIBS="$ac_libiberty $LIBS"
+elif test "$ac_libiberty" != "NONE"; then 
+  LIBS="-L$ac_libiberty $LIBS"
+  AC_CHECK_LIB([iberty], [objectalloc_create])
 fi
-if test "$ac_libbfd" = "NONE"; then
-  ac_libbfd=auto
+if test "$ac_libbfd" = "yes"; then
+  AC_CHECK_LIB([bfd], [bfd_openr], , [ac_libbfd=NONE])
+elif test "$ac_libbfd" != "NONE"; then
+  LIBS="-L$ac_libbfd $LIBS"
   AC_CHECK_LIB([bfd], [bfd_openr], , [ac_libbfd=NONE])
-else
-  LIBS="$ac_libbfd $LIBS"
 fi
 
 if test "$ac_bfd_include_dir" != "NONE"; then
@@ -64,11 +66,11 @@ if ! test -e "objmanip-static"; then
     echo "If these libraries are already installed on your system, then you need"
     echo "to tell Ksplice where to find them by running configure again:"
     echo
-    echo "  ./configure --with-libbfd=<libbfd.a> --with-libiberty=<libiberty.a>"
+    echo "  ./configure --with-libbfd=<libbfd-path> --with-libiberty=<libiberty-path>"
     echo
     echo "Depending on the host system you may also need to provide zlib:"
     echo
-    echo "  ./configure ... --with-libz=<libz.a>"
+    echo "  ./configure ... --with-libz=<libz-path>"
     echo
     exit 1
   fi


Index: ksplice.spec
===================================================================
RCS file: /cvs/extras/rpms/ksplice/F-8/ksplice.spec,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ksplice.spec	29 Oct 2008 17:29:08 -0000	1.3
+++ ksplice.spec	11 Nov 2008 21:16:51 -0000	1.4
@@ -1,15 +1,15 @@
 Name:		ksplice
-Version:	0.9.2
+Version:	0.9.3
 Release:	2%{?dist}
 Summary:	Patching a Linux kernel without reboot
 
 Group:		System Environment/Kernel
 License:	GPLv2
-URL:		http://web.mit.edu/ksplice
-Source0:	http://web.mit.edu/ksplice/dist/ksplice-%{version}-src.tar.gz
+URL:		http://ksplice.com
+Source0:	http://ksplice.com/dist/ksplice-%{version}-src.tar.gz
 
 # Sent to upstream via email
-Patch0:		ksplice-0.9.2-config.patch
+Patch0:		ksplice-0.9.3-config.patch
 
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
@@ -84,6 +84,12 @@
 %doc COPYING README
 
 %changelog
+* Tue Nov 11 2008 Jochen Schmitt <Jochen herr-schmitt de> 0.9.3-2
+- New upstream release
+
+* Thu Oct 30 2008 Jochen Schmitt <Jochen herr-schmitt de> 0.9.2-3
+- Change upstream URI and Source location
+
 * Wed Oct 29 2008 Jochen Schmitt <Jochen herr-schmitt de> 0.9.2-2
 - Rebase config patch
 - New upstream release


Index: sources
===================================================================
RCS file: /cvs/extras/rpms/ksplice/F-8/sources,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- sources	29 Oct 2008 17:29:08 -0000	1.4
+++ sources	11 Nov 2008 21:16:51 -0000	1.5
@@ -1 +1 @@
-252b6d7e0a209d58def5290cb18350a1  ksplice-0.9.2-src.tar.gz
+8da181e749e106bbf6d42ce0bcc6529e  ksplice-0.9.3-src.tar.gz


--- ksplice-0.9.2-config.patch DELETED ---




More information about the fedora-extras-commits mailing list