|
[herrold@centos-4 patching-example]$ diff -u joe-2.9.8.spec-orig joe-2.9.8.spec
--- joe-2.9.8.spec-orig 2007-07-02 18:45:43.000000000 -0400
+++ joe-2.9.8.spec 2007-07-02 18:47:33.000000000 -0400
@@ -3,7 +3,7 @@
Summary: An easy to use, modeless text editor.
Name: joe
Version: 2.9.8
-Release: 4
+Release: 5orc
License: GPL
Group: Applications/Editors
Source: http://prdownloads.sourceforge.net/joe-editor/joe-%{version}.tar.gz
@@ -13,6 +13,7 @@
Buildroot: %{_tmppath}/%{name}-%{version}-root
Patch0: joe-2.9.8-zerorc.patch
Patch1: joe-2.9.8-joerc.patch
+Patch2: joe-bigjoe.patch
%description
Joe is a powerful, easy to use, modeless text editor.
@@ -23,6 +24,7 @@
%setup -q
%patch0 -p1
%patch1 -p1
+%patch2 -p1
%build
./configure --prefix=/usr --sysconfdir=/etc/joe
@@ -56,6 +58,10 @@
rm -rf $RPM_BUILD_ROOT
%changelog
+* Mon Jul 2 2007 R P Herrold 2.9.8-5orc
+- patch for SRPM demo example changes; see:
+ http://www.owlriver.com/tips/patching_srpms/
+
* Tue Jun 17 2003 Lon Hohberger 2.9.8-4
- Fixed incomplete patch for #80657
[herrold@centos-4 patching-example]$
| |