From 4ecb5fd4d4ff2c2a83eb366bbfede81f60c70cdd Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Tue, 13 Oct 2009 16:30:47 +0000 Subject: [PATCH 01/10] Initialize branch F-10 for xfce4-stopwatch-plugin --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..dc32377 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-10 From 791fd171f7bca1b842c68f316e6d0aa5bc0c2117 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 13 Oct 2009 17:23:58 +0000 Subject: [PATCH 02/10] Initial import of xfce4-stopwatch-plugin. Review at https://bugzilla.redhat.com/show_bug.cgi?id=514351 --- .cvsignore | 1 + import.log | 1 + sources | 1 + xfce4-stopwatch-plugin.spec | 70 +++++++++++++++++++++++++++++++++++++ 4 files changed, 73 insertions(+) create mode 100644 import.log create mode 100644 xfce4-stopwatch-plugin.spec diff --git a/.cvsignore b/.cvsignore index e69de29..ad72926 100644 --- a/.cvsignore +++ b/.cvsignore @@ -0,0 +1 @@ +xfce4-stopwatch-plugin-0.2.0.tar.bz2 diff --git a/import.log b/import.log new file mode 100644 index 0000000..a4e663b --- /dev/null +++ b/import.log @@ -0,0 +1 @@ +xfce4-stopwatch-plugin-0_2_0-2_fc12:HEAD:xfce4-stopwatch-plugin-0.2.0-2.fc12.src.rpm:1255454050 diff --git a/sources b/sources index e69de29..cfefa7f 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +2ce672f294ee42cdc49ddbe1a1d8ae96 xfce4-stopwatch-plugin-0.2.0.tar.bz2 diff --git a/xfce4-stopwatch-plugin.spec b/xfce4-stopwatch-plugin.spec new file mode 100644 index 0000000..2d17e61 --- /dev/null +++ b/xfce4-stopwatch-plugin.spec @@ -0,0 +1,70 @@ +Name: xfce4-stopwatch-plugin +Version: 0.2.0 +Release: 2%{?dist} +Summary: Stopwatch plugin for the Xfce panel + +Group: User Interface/Desktops +License: BSD +URL: http://goodies.xfce.org/projects/panel-plugins/%{name} +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/0.2/%{name}-%{version}.tar.bz2 +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) + +BuildRequires: xfce4-panel-devel >= 4.0.0, libxfcegui4-devel >= 4.6.0 +BuildRequires: gettext, intltool, libxml2-devel +Requires: xfce4-panel >= 4.6.0 + +%description +The xfce-stopwatch-plugin is a panel plugin to keep track of elapsed time. +There are no ways to configure the plugin at this time, just add it to the +panel. The time elapsed will be saved when your panel quits and restored next +time it’s running. If time was ticking, it will not start ticking again +automatically. + + +%prep +%setup -q + + +%build +%configure --disable-static +make %{?_smp_mflags} + + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' + + +%clean +rm -rf $RPM_BUILD_ROOT + + +%post +touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : + + +%postun +if [ $1 -eq 0 ] ; then + touch --no-create %{_datadir}/icons/hicolor &>/dev/null + gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : +fi + +%posttrans +gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : + + +%files +%defattr(-,root,root,-) +%doc AUTHORS COPYING NEWS +%{_libexecdir}/xfce4/panel-plugins/%{name} +%{_datadir}/xfce4/panel-plugins/*.desktop +%{_datadir}/icons/hicolor/*/apps/%{name}* + + +%changelog +* Sat Aug 01 2009 Christoph Wickert - 0.2.0-2 +- Fix Source0 URL +- Fix two typos in spec file + +* Tue Jul 28 2009 Christoph Wickert - 0.2.0-1 +- Initial Fedora package. From 9c4a71094b5fbe8a93225c19e4c06200fdc80b5c Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 13 Oct 2009 17:39:14 +0000 Subject: [PATCH 03/10] add review # --- xfce4-stopwatch-plugin.spec | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xfce4-stopwatch-plugin.spec b/xfce4-stopwatch-plugin.spec index 2d17e61..58cdefc 100644 --- a/xfce4-stopwatch-plugin.spec +++ b/xfce4-stopwatch-plugin.spec @@ -1,3 +1,5 @@ +# Review: https://bugzilla.redhat.com/show_bug.cgi?id=514351 + Name: xfce4-stopwatch-plugin Version: 0.2.0 Release: 2%{?dist} From 29bb3d37de8fa58d74e1f735244b2541126f5774 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 13 Oct 2009 18:18:24 +0000 Subject: [PATCH 04/10] This plugin requires Xfce 4.6 but I accidentially requested a branch for F-10. --- dead.package | 1 + 1 file changed, 1 insertion(+) create mode 100644 dead.package diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..2d28379 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +This plugin requires Xfce 4.6 but I accidentially requested a branch for F-10. \ No newline at end of file From dc2d882d6fece9abdff7ade128dd001a4dfc1b58 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:40:58 +0000 Subject: [PATCH 05/10] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2547663..0f97118 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xfce4-stopwatch-plugin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 83d4a2192807a9adfeb293cfdad16c6cedc0ab2f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:32:06 +0000 Subject: [PATCH 06/10] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2547663..0f97118 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := xfce4-stopwatch-plugin SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From bd2a5d4dd924607a40afc350c6d5b8245a3a4a61 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:47:40 +0000 Subject: [PATCH 07/10] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 0f97118..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xfce4-stopwatch-plugin -# $Id$ -NAME := xfce4-stopwatch-plugin -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index dc32377..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-10 From 67b8a813240d3d5dc074caefd6f9fe705ca8b504 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 15:47:41 +0000 Subject: [PATCH 08/10] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- import.log | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 import.log diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 0f97118..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: xfce4-stopwatch-plugin -# $Id$ -NAME := xfce4-stopwatch-plugin -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/import.log b/import.log deleted file mode 100644 index a4e663b..0000000 --- a/import.log +++ /dev/null @@ -1 +0,0 @@ -xfce4-stopwatch-plugin-0_2_0-2_fc12:HEAD:xfce4-stopwatch-plugin-0.2.0-2.fc12.src.rpm:1255454050 From 6db28f0e2a5e2520d59787ec5418ee5d656176c4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 22:50:33 -0600 Subject: [PATCH 09/10] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xfce4-stopwatch-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-stopwatch-plugin.spec b/xfce4-stopwatch-plugin.spec index 58cdefc..c9e8db2 100644 --- a/xfce4-stopwatch-plugin.spec +++ b/xfce4-stopwatch-plugin.spec @@ -2,7 +2,7 @@ Name: xfce4-stopwatch-plugin Version: 0.2.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Stopwatch plugin for the Xfce panel Group: User Interface/Desktops @@ -64,6 +64,9 @@ gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sat Aug 01 2009 Christoph Wickert - 0.2.0-2 - Fix Source0 URL - Fix two typos in spec file From 159a65f2f11c01aab962c8611ac156038cb2befc Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sat, 12 Mar 2011 22:32:25 +0100 Subject: [PATCH 10/10] Mark package dead --- .gitignore | 1 - dead.package | 1 + sources | 1 - xfce4-stopwatch-plugin.spec | 75 ------------------------------------- 4 files changed, 1 insertion(+), 77 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 xfce4-stopwatch-plugin.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index ad72926..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -xfce4-stopwatch-plugin-0.2.0.tar.bz2 diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..eda77bb --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Dead upstream, uses old xfce4-panel API and no longer works with 4.8.x. diff --git a/sources b/sources deleted file mode 100644 index cfefa7f..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -2ce672f294ee42cdc49ddbe1a1d8ae96 xfce4-stopwatch-plugin-0.2.0.tar.bz2 diff --git a/xfce4-stopwatch-plugin.spec b/xfce4-stopwatch-plugin.spec deleted file mode 100644 index c9e8db2..0000000 --- a/xfce4-stopwatch-plugin.spec +++ /dev/null @@ -1,75 +0,0 @@ -# Review: https://bugzilla.redhat.com/show_bug.cgi?id=514351 - -Name: xfce4-stopwatch-plugin -Version: 0.2.0 -Release: 3%{?dist} -Summary: Stopwatch plugin for the Xfce panel - -Group: User Interface/Desktops -License: BSD -URL: http://goodies.xfce.org/projects/panel-plugins/%{name} -Source0: http://archive.xfce.org/src/panel-plugins/%{name}/0.2/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) - -BuildRequires: xfce4-panel-devel >= 4.0.0, libxfcegui4-devel >= 4.6.0 -BuildRequires: gettext, intltool, libxml2-devel -Requires: xfce4-panel >= 4.6.0 - -%description -The xfce-stopwatch-plugin is a panel plugin to keep track of elapsed time. -There are no ways to configure the plugin at this time, just add it to the -panel. The time elapsed will be saved when your panel quits and restored next -time it’s running. If time was ticking, it will not start ticking again -automatically. - - -%prep -%setup -q - - -%build -%configure --disable-static -make %{?_smp_mflags} - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' - - -%clean -rm -rf $RPM_BUILD_ROOT - - -%post -touch --no-create %{_datadir}/icons/hicolor &>/dev/null || : - - -%postun -if [ $1 -eq 0 ] ; then - touch --no-create %{_datadir}/icons/hicolor &>/dev/null - gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : -fi - -%posttrans -gtk-update-icon-cache %{_datadir}/icons/hicolor &>/dev/null || : - - -%files -%defattr(-,root,root,-) -%doc AUTHORS COPYING NEWS -%{_libexecdir}/xfce4/panel-plugins/%{name} -%{_datadir}/xfce4/panel-plugins/*.desktop -%{_datadir}/icons/hicolor/*/apps/%{name}* - - -%changelog -* Mon Feb 07 2011 Fedora Release Engineering - 0.2.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sat Aug 01 2009 Christoph Wickert - 0.2.0-2 -- Fix Source0 URL -- Fix two typos in spec file - -* Tue Jul 28 2009 Christoph Wickert - 0.2.0-1 -- Initial Fedora package.