rpms/latencytop/devel latencytop-Makefile-fixes.patch, 1.1, 1.2 latencytop.spec, 1.6, 1.7 latencytop-0.4-updated-translations.patch, 1.1, NONE latencytop-datadir.patch, 1.1, NONE latencytop-standard-CFLAGS.patch, 1.1, NONE

Michal Schmidt michich at fedoraproject.org
Sun May 17 20:16:08 UTC 2009


Author: michich

Update of /cvs/pkgs/rpms/latencytop/devel
In directory cvs1.fedora.phx.redhat.com:/tmp/cvs-serv1327

Modified Files:
	latencytop-Makefile-fixes.patch latencytop.spec 
Removed Files:
	latencytop-0.4-updated-translations.patch 
	latencytop-datadir.patch latencytop-standard-CFLAGS.patch 
Log Message:
* Thu May 14 2009 Michal Schmidt <mschmidt at redhat.com> 0.5-1
- Upstream release 0.5, adds GTK based GUI.


latencytop-Makefile-fixes.patch:

Index: latencytop-Makefile-fixes.patch
===================================================================
RCS file: /cvs/pkgs/rpms/latencytop/devel/latencytop-Makefile-fixes.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -p -r1.1 -r1.2
--- latencytop-Makefile-fixes.patch	24 Apr 2008 22:00:25 -0000	1.1
+++ latencytop-Makefile-fixes.patch	17 May 2009 20:16:06 -0000	1.2
@@ -4,38 +4,27 @@ From: Michal Schmidt <mschmidt at redhat.co
 
 Fix the 'install' target:
  - Don't assume SBINDIR already exists under DESTDIR.
- - Install latencytop.block too.
  - Install the manpage.
----
 
- src/Makefile |   12 +++++++++---
- 1 files changed, 9 insertions(+), 3 deletions(-)
-
-
-diff --git a/src/Makefile b/src/Makefile
-index 7a01f4f..c75c98e 100644
---- a/src/Makefile
-+++ b/src/Makefile
-@@ -1,5 +1,7 @@
+Index: latencytop-0.5/Makefile
+===================================================================
+--- latencytop-0.5.orig/Makefile
++++ latencytop-0.5/Makefile
+@@ -3,6 +3,7 @@ HAS_GTK_GUI = 1
+ 
  DESTDIR =
  SBINDIR = /usr/sbin
-+DATADIR = /usr/share
 +MANDIR  = /usr/share/man
- XCFLAGS = -W `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare 
+ XCFLAGS = -W  -g `pkg-config --cflags glib-2.0` -D_FORTIFY_SOURCE=2 -Wno-sign-compare
  LDF = -Wl,--as-needed `pkg-config --libs glib-2.0`   -lncursesw 
  
-@@ -24,6 +26,10 @@ clean:
- 	rm -f *~ latencytop DEADJOE *.o
+@@ -36,6 +37,9 @@ clean:
  
  install: latencytop
--	mkdir -p $(DESTDIR)/usr/share/latencytop
--	install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans
--	install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/
-\ No newline at end of file
-+	mkdir -p $(DESTDIR)$(DATADIR)/latencytop
+ 	mkdir -p $(DESTDIR)/usr/share/latencytop
 +	mkdir -p $(DESTDIR)$(MANDIR)/man8
 +	mkdir -p $(DESTDIR)$(SBINDIR)
-+	install -m 0644 latencytop.trans $(DESTDIR)$(DATADIR)/latencytop/latencytop.trans
-+	install -m 0644 latencytop.block $(DESTDIR)$(DATADIR)/latencytop/latencytop.block
+ 	install -m 0644 latencytop.trans $(DESTDIR)/usr/share/latencytop/latencytop.trans
+ 	install -m 0644 *.png $(DESTDIR)/usr/share/latencytop/
+ 	install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/
 +	install -m 0644 latencytop.8 $(DESTDIR)$(MANDIR)/man8/
-+	install -m 0755 latencytop $(DESTDIR)$(SBINDIR)/


Index: latencytop.spec
===================================================================
RCS file: /cvs/pkgs/rpms/latencytop/devel/latencytop.spec,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -p -r1.6 -r1.7
--- latencytop.spec	25 Feb 2009 12:37:14 -0000	1.6
+++ latencytop.spec	17 May 2009 20:16:07 -0000	1.7
@@ -1,6 +1,6 @@
 Name:           latencytop
-Version:        0.4
-Release:        3%{?dist}
+Version:        0.5
+Release:        1%{?dist}
 Summary:        System latency monitor
 
 Group:          Applications/System
@@ -8,12 +8,9 @@ License:        GPLv2
 URL:            http://www.latencytop.org/
 Source0:        http://www.latencytop.org/download/%{name}-%{version}.tar.gz
 Patch0:         latencytop-Makefile-fixes.patch
-Patch1:         latencytop-datadir.patch
-Patch2:         latencytop-standard-CFLAGS.patch
-Patch3:         latencytop-0.4-updated-translations.patch
 BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
 
-BuildRequires:  ncurses-devel glib2-devel
+BuildRequires:  ncurses-devel glib2-devel gtk2-devel
 
 %description
 LatencyTOP is a tool for software developers (both kernel and userspace), aimed
@@ -23,10 +20,7 @@ changed to avoid the worst latency hiccu
 
 %prep
 %setup -q
-%patch0 -p2
-%patch1 -p2
-%patch2 -p2
-%patch3 -p2
+%patch0 -p1
 
 
 %build
@@ -52,6 +46,9 @@ rm -rf %{buildroot}
 
 
 %changelog
+* Thu May 14 2009 Michal Schmidt <mschmidt at redhat.com> 0.5-1
+- Upstream release 0.5, adds GTK based GUI.
+
 * Wed Feb 25 2009 Fedora Release Engineering <rel-eng at lists.fedoraproject.org> - 0.4-3
 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
 


--- latencytop-0.4-updated-translations.patch DELETED ---


--- latencytop-datadir.patch DELETED ---


--- latencytop-standard-CFLAGS.patch DELETED ---




More information about the fedora-extras-commits mailing list