rpms/edac-utils/devel edac-utils.spec, 1.1, 1.2 edac_init-fix_messages.patch, 1.1, 1.2

Aristeu Sergio Rozanski Filho (arozansk) fedora-extras-commits at redhat.com
Wed Jul 18 17:20:11 UTC 2007


Author: arozansk

Update of /cvs/pkgs/rpms/edac-utils/devel
In directory cvs-int.fedora.redhat.com:/tmp/cvs-serv20183

Modified Files:
	edac-utils.spec edac_init-fix_messages.patch 
Log Message:
* updating to last RHEL-5 version




Index: edac-utils.spec
===================================================================
RCS file: /cvs/pkgs/rpms/edac-utils/devel/edac-utils.spec,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- edac-utils.spec	22 Jun 2007 22:22:36 -0000	1.1
+++ edac-utils.spec	18 Jul 2007 17:19:37 -0000	1.2
@@ -1,6 +1,6 @@
 Name:		edac-utils
 Version:	0.9
-Release:	3%{?dist}
+Release:	6%{?dist}
 Summary:	Userspace helper for kernel EDAC drivers
 
 Group:		System Environment/Base
@@ -9,6 +9,7 @@
 Source0:	http://dl.sourceforge.net/sourceforge/edac-utils/%{name}-%{version}.tar.bz2
 Patch0:		edac_ctl-remove_driver_loading.patch
 Patch1:		edac_init-fix_messages.patch
+Patch2:		edac_ctl-fix_model_parsing.patch
 
 BuildRoot:	%{_tmppath}/%{name}-%{version}-%{release}
 Requires:	hwdata, dmidecode, sysfsutils
@@ -36,6 +37,7 @@
 %setup -q
 %patch0 -p1
 %patch1 -p1
+%patch2 -p1
 
 %build
 %configure --disable-static
@@ -81,6 +83,17 @@
 %{_includedir}/edac.h
 
 %changelog
+* Tue Jul 17 2007 Aristeu Rozanski <arozansk at redhat.com> 0.9-6
+- building FC7 package
+
+* Thu Jul 09 2007 Aristeu Rozanski <arozansk at redhat.com> 0.9-5
+- Fixed start/stop message, missing echo
+- Fixed status command to use edac-util
+
+* Thu Jun 15 2007 Aristeu Rozanski <arozansk at redhat.com> 0.9-4
+- Removed debug code left by mistake on initrd file
+- Fixed model comparing in edac-ctl script
+
 * Wed Jun 13 2007 Aristeu Rozanski <arozansk at redhat.com> 0.9-3
 - Adding COPYING to documents
 - Fixing Requires to use a single equal sign, instead of two

edac_init-fix_messages.patch:

Index: edac_init-fix_messages.patch
===================================================================
RCS file: /cvs/pkgs/rpms/edac-utils/devel/edac_init-fix_messages.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- edac_init-fix_messages.patch	22 Jun 2007 22:22:36 -0000	1.1
+++ edac_init-fix_messages.patch	18 Jul 2007 17:19:37 -0000	1.2
@@ -2,7 +2,7 @@
 ===================================================================
 --- edac-utils-0.9.orig/src/etc/edac.init
 +++ edac-utils-0.9/src/etc/edac.init
-@@ -7,48 +7,57 @@
+@@ -7,21 +7,31 @@
  # Written by Mark Grondona <mgrondona at llnl.gov>
  # UCRL-CODE-230739.
  ###############################################################################
@@ -31,14 +31,13 @@
 +SERVICE="edac"
  PATH=/sbin:/usr/sbin:/usr/local/sbin:/bin:/usr/bin:/usr/local/bin
  EDAC=/usr/sbin/edac-ctl
++EDAC_UTIL=/usr/bin/edac-util
 +LOGGER="logger -t $SERVICE -p info"
 +SUBSYS=/var/lock/subsys/edac
  
  ###############################################################################
-+set >/tmp/lala
  
- service_start ()
- {
+@@ -30,25 +40,26 @@ service_start ()
  # Start the service.  Required by LSB.
  #
    echo -n "Starting ${SERVICE}: "
@@ -59,6 +58,7 @@
 +  else
 +	daemon false;
 +  fi
++  echo;
  }
  
  ###############################################################################
@@ -72,10 +72,20 @@
    rc=$?
 -  [ $rc -eq 0 ] && echo success || echo failure
 +  rm -f $SUBSYS;
++  echo;
  }
  
  ###############################################################################
-@@ -75,9 +84,15 @@ case "$1" in
+@@ -57,7 +68,7 @@ service_status ()
+ {
+ # Print the current status of the service.  Required by LSB.
+ #
+-  $EDAC --status
++  $EDAC_UTIL --status
+   rc=0
+ }
+ 
+@@ -75,9 +86,15 @@ case "$1" in
    status)
      service_status
      ;;




More information about the scm-commits mailing list