From 27f7e3580be84f704aa145c6c5fd21064d3e0628 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 14 Jan 2011 19:30:09 +0000 Subject: [PATCH 01/69] fix linking and autoconf (patches from Debian) --- 01_fix-linking-libxfcegui4.patch | 41 ++++++++++++++++++++++++++++++++ 02_fix-libtool.patch | 22 +++++++++++++++++ xfce4-diskperf-plugin.spec | 20 ++++++++++++++-- 3 files changed, 81 insertions(+), 2 deletions(-) create mode 100644 01_fix-linking-libxfcegui4.patch create mode 100644 02_fix-libtool.patch diff --git a/01_fix-linking-libxfcegui4.patch b/01_fix-linking-libxfcegui4.patch new file mode 100644 index 0000000..29769ae --- /dev/null +++ b/01_fix-linking-libxfcegui4.patch @@ -0,0 +1,41 @@ +commit 35af6821c13a7d20fe7fc31f964178e9fb369dfb +Author: Landry Breuil +Date: Sun Aug 8 10:44:58 2010 +0200 + + Be sure to have libxfcegui4 cflags/libs for xfce_err(), fixes + compilation with xfce4-panel 4.7. (Bug #6609) + Still needs to be converted to libxfce4ui though.. + +diff --git a/configure.in b/configure.in +index 6ea6bfb..8bbcf55 100644 +--- a/configure.in ++++ b/configure.in +@@ -52,6 +52,7 @@ dnl *********************************** + dnl *** Check for required packages *** + dnl *********************************** + XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.90]) ++XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.3.90]) + + dnl *********************************** + dnl *** Check for debugging support *** +diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am +index 604e7be..3c6b0f1 100644 +--- a/panel-plugin/Makefile.am ++++ b/panel-plugin/Makefile.am +@@ -22,10 +22,12 @@ + devperf.h + + xfce4_diskperf_plugin_CFLAGS = \ +- $(LIBXFCE4PANEL_CFLAGS) ++ $(LIBXFCE4PANEL_CFLAGS) \ ++ $(LIBXFCEGUI4_CFLAGS) + + xfce4_diskperf_plugin_LDADD= \ +- $(LIBXFCE4PANEL_LIBS) ++ $(LIBXFCE4PANEL_LIBS) \ ++ $(LIBXFCEGUI4_LIBS) + + # + # Desktop file + + diff --git a/02_fix-libtool.patch b/02_fix-libtool.patch new file mode 100644 index 0000000..c35a7de --- /dev/null +++ b/02_fix-libtool.patch @@ -0,0 +1,22 @@ +commit 2f7d6e565e9ce842a160cfdc9f0688222bdad560 +Author: Mike Massonnet +Date: Sun Feb 22 10:43:52 2009 +0000 + + * Call AC_PROG_LIBTOOL inside autoconf script + + + (Old svn revision: 6750) + +diff --git a/configure.in b/configure.in +index bc57a34..8155ab9 100644 +--- a/configure.in ++++ b/configure.in +@@ -35,6 +35,7 @@ dnl ******************************** + AC_PROG_CC() + AC_PROG_LD() + AC_PROG_INSTALL() ++AC_PROG_LIBTOOL() + AC_PROG_INTLTOOL() + + dnl ********************************** + diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 08ec77a..9485646 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,6 +1,6 @@ Name: xfce4-diskperf-plugin Version: 2.2.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -10,10 +10,16 @@ Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 # http://bugzilla.xfce.org/show_bug.cgi?id=3074 Patch0: %{name}-2.2.0-colors-at-startup.patch Patch1: xfce4-diskperf-plugin-2.2.0-dsofix.patch +# http://bugzilla.xfce.org/show_bug.cgi?id=6609 +# From Debian, Landry Breuil +Patch2: 01_fix-linking-libxfcegui4.patch +# http://bugzilla.xfce.org/show_bug.cgi?id=6609 +# From upstream via Debian +Patch3: 02_fix-libtool.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel -BuildRequires: gettext, perl(XML::Parser) +BuildRequires: gettext, perl(XML::Parser), libtool, xfce4-dev-tools Requires: xfce4-panel >= 4.4.0 %description @@ -24,8 +30,14 @@ second) based on data provided by the kernel. %setup -q %patch0 -p1 -b .orig %patch1 -p1 -b .dsofix +%patch2 -p1 -b .underlink +%patch3 -p1 -b .libtool %build +# Xfce has its own autotools-running-script thingy, if you use autoreconf +# it'll fall apart horribly +xdt-autogen + %configure --disable-static make %{?_smp_mflags} @@ -44,6 +56,10 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Fri Jan 14 2011 Adam Williamson - 2.2.0-7 +- 01_fix-linking-libxfcegui4.patch: fix underlinking (Landry Breuil) +- 02_fix-libtool.patch: fix autoconf (upstream via Debian) + * Wed Feb 17 2010 Christoph Wickert - 2.2.0-6 - Add patch to fix DSO linking (#564985) From 590838060ce2f1aeeb567355c4d3d6d42a3b01fe Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 22:16:30 -0600 Subject: [PATCH 02/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 9485646..b87edae 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,6 +1,6 @@ Name: xfce4-diskperf-plugin Version: 2.2.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -56,6 +56,9 @@ rm -rf $RPM_BUILD_ROOT %{_datadir}/xfce4/panel-plugins/*.desktop %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 2.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jan 14 2011 Adam Williamson - 2.2.0-7 - 01_fix-linking-libxfcegui4.patch: fix underlinking (Landry Breuil) - 02_fix-libtool.patch: fix autoconf (upstream via Debian) From a546e3ce9af53235080d4954b75f4d9e15d1b1f8 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Fri, 25 Feb 2011 23:59:44 +0100 Subject: [PATCH 03/69] Update to 2.3.0 Remove all patches --- .gitignore | 1 + 01_fix-linking-libxfcegui4.patch | 41 ------------------- 02_fix-libtool.patch | 22 ---------- sources | 2 +- ...kperf-plugin-2.2.0-colors-at-startup.patch | 11 ----- xfce4-diskperf-plugin-2.2.0-dsofix.patch | 11 ----- xfce4-diskperf-plugin.spec | 37 ++++++++--------- 7 files changed, 18 insertions(+), 107 deletions(-) delete mode 100644 01_fix-linking-libxfcegui4.patch delete mode 100644 02_fix-libtool.patch delete mode 100644 xfce4-diskperf-plugin-2.2.0-colors-at-startup.patch delete mode 100644 xfce4-diskperf-plugin-2.2.0-dsofix.patch diff --git a/.gitignore b/.gitignore index af34e85..4f0bb90 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 +/xfce4-diskperf-plugin-2.3.0.tar.bz2 diff --git a/01_fix-linking-libxfcegui4.patch b/01_fix-linking-libxfcegui4.patch deleted file mode 100644 index 29769ae..0000000 --- a/01_fix-linking-libxfcegui4.patch +++ /dev/null @@ -1,41 +0,0 @@ -commit 35af6821c13a7d20fe7fc31f964178e9fb369dfb -Author: Landry Breuil -Date: Sun Aug 8 10:44:58 2010 +0200 - - Be sure to have libxfcegui4 cflags/libs for xfce_err(), fixes - compilation with xfce4-panel 4.7. (Bug #6609) - Still needs to be converted to libxfce4ui though.. - -diff --git a/configure.in b/configure.in -index 6ea6bfb..8bbcf55 100644 ---- a/configure.in -+++ b/configure.in -@@ -52,6 +52,7 @@ dnl *********************************** - dnl *** Check for required packages *** - dnl *********************************** - XDT_CHECK_PACKAGE([LIBXFCE4PANEL], [libxfce4panel-1.0], [4.3.90]) -+XDT_CHECK_PACKAGE([LIBXFCEGUI4], [libxfcegui4-1.0], [4.3.90]) - - dnl *********************************** - dnl *** Check for debugging support *** -diff --git a/panel-plugin/Makefile.am b/panel-plugin/Makefile.am -index 604e7be..3c6b0f1 100644 ---- a/panel-plugin/Makefile.am -+++ b/panel-plugin/Makefile.am -@@ -22,10 +22,12 @@ - devperf.h - - xfce4_diskperf_plugin_CFLAGS = \ -- $(LIBXFCE4PANEL_CFLAGS) -+ $(LIBXFCE4PANEL_CFLAGS) \ -+ $(LIBXFCEGUI4_CFLAGS) - - xfce4_diskperf_plugin_LDADD= \ -- $(LIBXFCE4PANEL_LIBS) -+ $(LIBXFCE4PANEL_LIBS) \ -+ $(LIBXFCEGUI4_LIBS) - - # - # Desktop file - - diff --git a/02_fix-libtool.patch b/02_fix-libtool.patch deleted file mode 100644 index c35a7de..0000000 --- a/02_fix-libtool.patch +++ /dev/null @@ -1,22 +0,0 @@ -commit 2f7d6e565e9ce842a160cfdc9f0688222bdad560 -Author: Mike Massonnet -Date: Sun Feb 22 10:43:52 2009 +0000 - - * Call AC_PROG_LIBTOOL inside autoconf script - - - (Old svn revision: 6750) - -diff --git a/configure.in b/configure.in -index bc57a34..8155ab9 100644 ---- a/configure.in -+++ b/configure.in -@@ -35,6 +35,7 @@ dnl ******************************** - AC_PROG_CC() - AC_PROG_LD() - AC_PROG_INSTALL() -+AC_PROG_LIBTOOL() - AC_PROG_INTLTOOL() - - dnl ********************************** - diff --git a/sources b/sources index 7d8e0de..e03c5fe 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e970158fcac5b58bdc1539bc84d7b5ec xfce4-diskperf-plugin-2.2.0.tar.bz2 +c6ece8123c762ee203cbc6fd5450b503 xfce4-diskperf-plugin-2.3.0.tar.bz2 diff --git a/xfce4-diskperf-plugin-2.2.0-colors-at-startup.patch b/xfce4-diskperf-plugin-2.2.0-colors-at-startup.patch deleted file mode 100644 index 276b3ed..0000000 --- a/xfce4-diskperf-plugin-2.2.0-colors-at-startup.patch +++ /dev/null @@ -1,11 +0,0 @@ -diff -Nur -x '*.orig' -x '*~' xfce4-diskperf-plugin-2.2.0/panel-plugin/main.c xfce4-diskperf-plugin-2.2.0.new/panel-plugin/main.c ---- xfce4-diskperf-plugin-2.2.0/panel-plugin/main.c 2008-04-17 09:11:23.000000000 +0200 -+++ xfce4-diskperf-plugin-2.2.0.new/panel-plugin/main.c 2008-06-14 12:52:45.000000000 +0200 -@@ -553,6 +553,7 @@ - if ((value = xfce_rc_read_entry (rc, (CONF_READ_WRITE_COLOR), NULL))) { - gdk_color_parse (value, poConf->aoColor + RW_DATA); - } -+ SetMonitorBarColor (poPlugin); - - xfce_rc_close (rc); - } /* diskperf_read_config() */ diff --git a/xfce4-diskperf-plugin-2.2.0-dsofix.patch b/xfce4-diskperf-plugin-2.2.0-dsofix.patch deleted file mode 100644 index 7c3dccc..0000000 --- a/xfce4-diskperf-plugin-2.2.0-dsofix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- xfce4-diskperf-plugin-2.2.0.orig/panel-plugin/Makefile.in 2008-04-17 09:11:47.000000000 +0200 -+++ xfce4-diskperf-plugin-2.2.0/panel-plugin/Makefile.in 2010-02-17 10:40:37.000000000 +0100 -@@ -138,7 +138,7 @@ - INTLTOOL_XAM_RULE = @INTLTOOL_XAM_RULE@ - INTLTOOL_XML_NOMERGE_RULE = @INTLTOOL_XML_NOMERGE_RULE@ - INTLTOOL_XML_RULE = @INTLTOOL_XML_RULE@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -lm - LIBOBJS = @LIBOBJS@ - LIBS = @LIBS@ - LIBXFCE4PANEL_CFLAGS = @LIBXFCE4PANEL_CFLAGS@ diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index b87edae..e58afab 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,21 +1,16 @@ +# Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 + +%global minor_version 2.3 + Name: xfce4-diskperf-plugin -Version: 2.2.0 -Release: 8%{?dist} +Version: 2.3.0 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} -Source0: http://goodies.xfce.org/releases/%{name}/%{name}-%{version}.tar.bz2 -# http://bugzilla.xfce.org/show_bug.cgi?id=3074 -Patch0: %{name}-2.2.0-colors-at-startup.patch -Patch1: xfce4-diskperf-plugin-2.2.0-dsofix.patch -# http://bugzilla.xfce.org/show_bug.cgi?id=6609 -# From Debian, Landry Breuil -Patch2: 01_fix-linking-libxfcegui4.patch -# http://bugzilla.xfce.org/show_bug.cgi?id=6609 -# From upstream via Debian -Patch3: 02_fix-libtool.patch +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel @@ -28,24 +23,19 @@ second) based on data provided by the kernel. %prep %setup -q -%patch0 -p1 -b .orig -%patch1 -p1 -b .dsofix -%patch2 -p1 -b .underlink -%patch3 -p1 -b .libtool + %build -# Xfce has its own autotools-running-script thingy, if you use autoreconf -# it'll fall apart horribly -xdt-autogen - %configure --disable-static make %{?_smp_mflags} + %install rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' %find_lang %{name} + %clean rm -rf $RPM_BUILD_ROOT @@ -55,7 +45,12 @@ rm -rf $RPM_BUILD_ROOT %{_libexecdir}/xfce4/panel-plugins/%{name} %{_datadir}/xfce4/panel-plugins/*.desktop + %changelog +* Fri Feb 25 2011 Christoph Wickert - 2.3.0-1 +- Update to 2.3.0 +- Remove all patches + * Mon Feb 07 2011 Fedora Release Engineering - 2.2.0-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From da2391b6eac8ff7ac70aea16a563cdd4529bb8fb Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 6 Jun 2011 12:28:24 +0200 Subject: [PATCH 04/69] Rebuild to fix build bug with FORTIFY_SOURCE (#702869) --- xfce4-diskperf-plugin.spec | 25 ++++++++++++++----------- 1 file changed, 14 insertions(+), 11 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index e58afab..d334dd0 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -2,20 +2,20 @@ %global minor_version 2.3 -Name: xfce4-diskperf-plugin -Version: 2.3.0 -Release: 1%{?dist} -Summary: Disk performance plugin for the Xfce panel +Name: xfce4-diskperf-plugin +Version: 2.3.0 +Release: 2%{?dist} +Summary: Disk performance plugin for the Xfce panel -Group: User Interface/Desktops -License: BSD -URL: http://goodies.xfce.org/panel-plugins/{%name} +Group: User Interface/Desktops +License: BSD +URL: http://goodies.xfce.org/panel-plugins/{%name} Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel -BuildRequires: gettext, perl(XML::Parser), libtool, xfce4-dev-tools -Requires: xfce4-panel >= 4.4.0 +BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel +BuildRequires: gettext, perl(XML::Parser), libtool, xfce4-dev-tools +Requires: xfce4-panel >= 4.4.0 %description The DiskPerf plugin displays disk/partition performance (bytes transfered per @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jun 06 2011 Christoph Wickert - 2.3.0-2 +- Rebuild to fix build bug with FORTIFY_SOURCE (#702869) + * Fri Feb 25 2011 Christoph Wickert - 2.3.0-1 - Update to 2.3.0 - Remove all patches From 6c82479234d121732a0fd13ea09bfba8d67a8da9 Mon Sep 17 00:00:00 2001 From: Adam Jackson Date: Tue, 6 Dec 2011 01:37:29 -0500 Subject: [PATCH 05/69] Rebuild for new libpng --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index d334dd0..e99a7f5 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ Name: xfce4-diskperf-plugin Version: 2.3.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Dec 06 2011 Adam Jackson - 2.3.0-3 +- Rebuild for new libpng + * Mon Jun 06 2011 Christoph Wickert - 2.3.0-2 - Rebuild to fix build bug with FORTIFY_SOURCE (#702869) From 9b2526940b8ed267ac5dcab593e0e668d494e0c8 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 02:48:12 -0600 Subject: [PATCH 06/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index e99a7f5..5f51ba9 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ Name: xfce4-diskperf-plugin Version: 2.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -47,6 +47,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 2.3.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Tue Dec 06 2011 Adam Jackson - 2.3.0-3 - Rebuild for new libpng From 368313d70a144680963244d190f9f76da6ecc8f6 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 28 Feb 2012 23:08:47 +0100 Subject: [PATCH 07/69] Add patch to fix DSO linking - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - Rebuild for new libpng --- xfce4-diskperf-plugin-2.3.0-dsofix.patch | 11 +++++++++++ xfce4-diskperf-plugin.spec | 15 ++++++++------- 2 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 xfce4-diskperf-plugin-2.3.0-dsofix.patch diff --git a/xfce4-diskperf-plugin-2.3.0-dsofix.patch b/xfce4-diskperf-plugin-2.3.0-dsofix.patch new file mode 100644 index 0000000..2881530 --- /dev/null +++ b/xfce4-diskperf-plugin-2.3.0-dsofix.patch @@ -0,0 +1,11 @@ +--- xfce4-diskperf-plugin-2.3.0.orig/panel-plugin/Makefile.in 2011-01-21 02:03:31.000000000 +0100 ++++ xfce4-diskperf-plugin-2.3.0/panel-plugin/Makefile.in 2012-02-28 23:05:37.889487815 +0100 +@@ -145,7 +145,7 @@ + INTLTOOL_PERL = @INTLTOOL_PERL@ + INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ + LD = @LD@ +-LDFLAGS = @LDFLAGS@ ++LDFLAGS = @LDFLAGS@ -lm + LIBOBJS = @LIBOBJS@ + LIBS = @LIBS@ + LIBTOOL = @LIBTOOL@ diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 5f51ba9..6c6d09e 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,13 +4,14 @@ Name: xfce4-diskperf-plugin Version: 2.3.0 -Release: 4%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 +Patch0: %{name}-0.5.6-dsofix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel @@ -23,6 +24,7 @@ second) based on data provided by the kernel. %prep %setup -q +%patch0 -p1 -b .dsofix %build @@ -31,13 +33,13 @@ make %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' +rm -rf %{buildroot} +make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} %clean -rm -rf $RPM_BUILD_ROOT +rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) @@ -47,10 +49,9 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sat Jan 14 2012 Fedora Release Engineering - 2.3.0-4 +* Tue Feb 28 2012 Christoph Wickert - 2.3.0-3 +- Add patch to fix DSO linking - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Tue Dec 06 2011 Adam Jackson - 2.3.0-3 - Rebuild for new libpng * Mon Jun 06 2011 Christoph Wickert - 2.3.0-2 From 05ca60300e381ccc30d75b520abbfef44a7927fe Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Tue, 28 Feb 2012 23:28:23 +0100 Subject: [PATCH 08/69] Fix name of patch --- xfce4-diskperf-plugin.spec | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 6c6d09e..89e29ea 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -11,11 +11,12 @@ Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-0.5.6-dsofix.patch +Patch0: %{name}-2.3.0-dsofix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: xfce4-panel-devel >= 4.3.90, libxfcegui4-devel >= 4.3.90, libxml2-devel -BuildRequires: gettext, perl(XML::Parser), libtool, xfce4-dev-tools +BuildRequires: xfce4-panel-devel >= 4.3.90 +BuildRequires: libxfcegui4-devel >= 4.3.90 +BuildRequires: gettext, intltool Requires: xfce4-panel >= 4.4.0 %description From 1570fb78970512b0238fcba522b1a6a26ee0f89c Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 4 Apr 2012 23:31:32 -0600 Subject: [PATCH 09/69] Rebuild for Xfce 4.10 --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 89e29ea..897bb14 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ Name: xfce4-diskperf-plugin Version: 2.3.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Thu Apr 05 2012 Kevin Fenzi - 2.3.0-4 +- Rebuild for Xfce 4.10 + * Tue Feb 28 2012 Christoph Wickert - 2.3.0-3 - Add patch to fix DSO linking - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 66af4099d0b116cac58f44a0e8221acb0ca9bff0 Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 15 Apr 2012 09:49:04 -0600 Subject: [PATCH 10/69] Rebuild for Xfce 4.10(pre2) --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 897bb14..03f1009 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ Name: xfce4-diskperf-plugin Version: 2.3.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -50,6 +50,9 @@ rm -rf %{buildroot} %changelog +* Sun Apr 15 2012 Kevin Fenzi - 2.3.0-5 +- Rebuild for Xfce 4.10(pre2) + * Thu Apr 05 2012 Kevin Fenzi - 2.3.0-4 - Rebuild for Xfce 4.10 From a52a6f56affc6204e78811bf6677648c5e756daf Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 21 Apr 2012 15:00:06 -0600 Subject: [PATCH 11/69] Update to 2.5.1 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 23 +++++++++++++---------- 3 files changed, 15 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 4f0bb90..ff521b0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.3.0.tar.bz2 +/xfce4-diskperf-plugin-2.5.1.tar.bz2 diff --git a/sources b/sources index e03c5fe..54d8d6a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -c6ece8123c762ee203cbc6fd5450b503 xfce4-diskperf-plugin-2.3.0.tar.bz2 +b6053881f3ddff90a0a0baa655c84b27 xfce4-diskperf-plugin-2.5.1.tar.bz2 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 03f1009..cb40cc8 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,23 +1,22 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 -%global minor_version 2.3 +%global minor_version 2.5 Name: xfce4-diskperf-plugin -Version: 2.3.0 -Release: 5%{?dist} +Version: 2.5.1 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 -Patch0: %{name}-2.3.0-dsofix.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: xfce4-panel-devel >= 4.3.90 -BuildRequires: libxfcegui4-devel >= 4.3.90 +BuildRequires: xfce4-panel-devel >= 4.8.0 +BuildRequires: libxfce4ui-devel >= 4.8.0 BuildRequires: gettext, intltool -Requires: xfce4-panel >= 4.4.0 +Requires: xfce4-panel >= 4.8.0 %description The DiskPerf plugin displays disk/partition performance (bytes transfered per @@ -25,7 +24,6 @@ second) based on data provided by the kernel. %prep %setup -q -%patch0 -p1 -b .dsofix %build @@ -37,6 +35,8 @@ make %{?_smp_mflags} rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} +# remove la file +rm -rf %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.la %clean @@ -45,11 +45,14 @@ rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README -%{_libexecdir}/xfce4/panel-plugins/%{name} -%{_datadir}/xfce4/panel-plugins/*.desktop +%{_libdir}/xfce4/panel/plugins/libdiskperf.so +%{_datadir}/xfce4/panel/plugins/*.desktop %changelog +* Sat Apr 21 2012 Kevin Fenzi - 2.5.1-1 +- Update to 2.5.1 + * Sun Apr 15 2012 Kevin Fenzi - 2.3.0-5 - Rebuild for Xfce 4.10(pre2) From 872d375ae2466437500fac4cbbbe9fe37a264282 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ville=20Skytt=C3=A4?= Date: Wed, 25 Apr 2012 00:03:32 +0300 Subject: [PATCH 12/69] Fix -debuginfo. --- xfce4-diskperf-plugin.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index cb40cc8..6424d31 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -34,6 +34,7 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' +chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.so %find_lang %{name} # remove la file rm -rf %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.la @@ -50,6 +51,9 @@ rm -rf %{buildroot} %changelog +* Tue Apr 24 2012 Ville Skyttä - 2.5.1-2 +- Fix -debuginfo. + * Sat Apr 21 2012 Kevin Fenzi - 2.5.1-1 - Update to 2.5.1 From ce1937024ab9f5af4ba46ff828e444cc5c948436 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 10:14:22 +0200 Subject: [PATCH 13/69] Update to 2.5.2 (Xfce 4.10 final) - Add VCS key --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 18 +++++++++++++----- 3 files changed, 15 insertions(+), 6 deletions(-) diff --git a/.gitignore b/.gitignore index ff521b0..d585086 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.3.0.tar.bz2 /xfce4-diskperf-plugin-2.5.1.tar.bz2 +/xfce4-diskperf-plugin-2.5.2.tar.bz2 diff --git a/sources b/sources index 54d8d6a..8f94c2d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b6053881f3ddff90a0a0baa655c84b27 xfce4-diskperf-plugin-2.5.1.tar.bz2 +d52d981bb504ae63a0d762fdfbd5e9e5 xfce4-diskperf-plugin-2.5.2.tar.bz2 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 6424d31..eeefcfb 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,22 +1,25 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 %global minor_version 2.5 +%global xfceversion 4.10 Name: xfce4-diskperf-plugin -Version: 2.5.1 -Release: 2%{?dist} +Version: 2.5.2 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} +#VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: xfce4-panel-devel >= 4.8.0 BuildRequires: libxfce4ui-devel >= 4.8.0 -BuildRequires: gettext, intltool -Requires: xfce4-panel >= 4.8.0 +BuildRequires: gettext +BuildRequires: intltool +Requires: xfce4-panel >= %{xfceversion} %description The DiskPerf plugin displays disk/partition performance (bytes transfered per @@ -34,10 +37,11 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' -chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.so %find_lang %{name} # remove la file rm -rf %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.la +# make sure debuginfo is generated properly +chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.so %clean @@ -51,6 +55,10 @@ rm -rf %{buildroot} %changelog +* Mon Apr 30 2012 Christoph Wickert - 2.5.2-1 +- Update to 2.5.2 (Xfce 4.10 final) +- Add VCS key + * Tue Apr 24 2012 Ville Skyttä - 2.5.1-2 - Fix -debuginfo. From 3dbb77a478cd61ff22409c6d39caade169759d9e Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 10:22:15 +0200 Subject: [PATCH 14/69] Trivial change --- xfce4-diskperf-plugin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index eeefcfb..60e6685 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -15,8 +15,8 @@ URL: http://goodies.xfce.org/panel-plugins/{%name} Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: xfce4-panel-devel >= 4.8.0 BuildRequires: libxfce4ui-devel >= 4.8.0 +BuildRequires: xfce4-panel-devel >= 4.8.0 BuildRequires: gettext BuildRequires: intltool Requires: xfce4-panel >= %{xfceversion} From a12e9883438ae68e5c50df5cc9f40048e0208b07 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 11:42:24 +0200 Subject: [PATCH 15/69] Make file list a little more generic --- xfce4-diskperf-plugin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 60e6685..1a84bcf 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -50,7 +50,7 @@ rm -rf %{buildroot} %files -f %{name}.lang %defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README -%{_libdir}/xfce4/panel/plugins/libdiskperf.so +%{_libdir}/xfce4/panel/plugins/*.so %{_datadir}/xfce4/panel/plugins/*.desktop From d83d184a3fc02d88a4d62ed5f9f5089a0149ddbe Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 12:20:31 +0200 Subject: [PATCH 16/69] Make install section a little more generic --- xfce4-diskperf-plugin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1a84bcf..1200ec2 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -39,7 +39,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' %find_lang %{name} # remove la file -rm -rf %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.la +find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' # make sure debuginfo is generated properly chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.so From 241d92c217cbfa3929bde2634548f4b23e88fa7b Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 18:13:41 +0200 Subject: [PATCH 17/69] And yet a little more generic --- xfce4-diskperf-plugin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1200ec2..ce090be 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -41,7 +41,7 @@ make install DESTDIR=%{buildroot} INSTALL='install -p' # remove la file find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' # make sure debuginfo is generated properly -chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/libdiskperf.so +chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %clean From f9ff835b9f7df644bdd7f9ef9353fe0f09fae164 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Mon, 30 Apr 2012 23:44:38 +0200 Subject: [PATCH 18/69] Streamline spec --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index ce090be..57e05fc 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -37,12 +37,15 @@ make %{?_smp_mflags} %install rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' -%find_lang %{name} + # remove la file find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' + # make sure debuginfo is generated properly chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so +%find_lang %{name} + %clean rm -rf %{buildroot} From f506a32bbbed651fab1b89fc2188a7a1afe719a8 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sun, 13 May 2012 22:54:49 +0200 Subject: [PATCH 19/69] Update to 2.5.3 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 5 ++++- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index d585086..f97bbd4 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.3.0.tar.bz2 /xfce4-diskperf-plugin-2.5.1.tar.bz2 /xfce4-diskperf-plugin-2.5.2.tar.bz2 +/xfce4-diskperf-plugin-2.5.3.tar.bz2 diff --git a/sources b/sources index 8f94c2d..43ac19f 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d52d981bb504ae63a0d762fdfbd5e9e5 xfce4-diskperf-plugin-2.5.2.tar.bz2 +ba880f763e273787d0c8365eebc4feab xfce4-diskperf-plugin-2.5.3.tar.bz2 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 57e05fc..5a08834 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ %global xfceversion 4.10 Name: xfce4-diskperf-plugin -Version: 2.5.2 +Version: 2.5.3 Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sat May 13 2012 Christoph Wickert - 2.5.3-1 +- Update to 2.5.3 + * Mon Apr 30 2012 Christoph Wickert - 2.5.2-1 - Update to 2.5.2 (Xfce 4.10 final) - Add VCS key From 16f17ed11070dacc55d564edd257b44289b942d7 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sat, 30 Jun 2012 22:14:53 +0200 Subject: [PATCH 20/69] Update to 2.5.4 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin-2.3.0-dsofix.patch | 11 ----------- xfce4-diskperf-plugin.spec | 5 ++++- 4 files changed, 6 insertions(+), 13 deletions(-) delete mode 100644 xfce4-diskperf-plugin-2.3.0-dsofix.patch diff --git a/.gitignore b/.gitignore index f97bbd4..e215a0d 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.5.1.tar.bz2 /xfce4-diskperf-plugin-2.5.2.tar.bz2 /xfce4-diskperf-plugin-2.5.3.tar.bz2 +/xfce4-diskperf-plugin-2.5.4.tar.bz2 diff --git a/sources b/sources index 43ac19f..77119f5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ba880f763e273787d0c8365eebc4feab xfce4-diskperf-plugin-2.5.3.tar.bz2 +2db453fc3ea2e4fe073ec313a25b0961 xfce4-diskperf-plugin-2.5.4.tar.bz2 diff --git a/xfce4-diskperf-plugin-2.3.0-dsofix.patch b/xfce4-diskperf-plugin-2.3.0-dsofix.patch deleted file mode 100644 index 2881530..0000000 --- a/xfce4-diskperf-plugin-2.3.0-dsofix.patch +++ /dev/null @@ -1,11 +0,0 @@ ---- xfce4-diskperf-plugin-2.3.0.orig/panel-plugin/Makefile.in 2011-01-21 02:03:31.000000000 +0100 -+++ xfce4-diskperf-plugin-2.3.0/panel-plugin/Makefile.in 2012-02-28 23:05:37.889487815 +0100 -@@ -145,7 +145,7 @@ - INTLTOOL_PERL = @INTLTOOL_PERL@ - INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ - LD = @LD@ --LDFLAGS = @LDFLAGS@ -+LDFLAGS = @LDFLAGS@ -lm - LIBOBJS = @LIBOBJS@ - LIBS = @LIBS@ - LIBTOOL = @LIBTOOL@ diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 5a08834..a76ed2d 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -4,7 +4,7 @@ %global xfceversion 4.10 Name: xfce4-diskperf-plugin -Version: 2.5.3 +Version: 2.5.4 Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel @@ -58,6 +58,9 @@ rm -rf %{buildroot} %changelog +* Sat Jun 30 2012 Christoph Wickert - 2.5.4-1 +- Update to 2.5.4 + * Sat May 13 2012 Christoph Wickert - 2.5.3-1 - Update to 2.5.3 From 53f65303b545bb0cb95a024affb489d3f2e861c7 Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sat, 30 Jun 2012 23:28:56 +0200 Subject: [PATCH 21/69] Define the Xfce version conditionally --- xfce4-diskperf-plugin.spec | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index a76ed2d..4513872 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,18 +1,22 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 -%global minor_version 2.5 -%global xfceversion 4.10 +%global minorversion 2.5 +%if 0%{?fedora} >= 18 + %global xfceversion 4.10 +%else + %global xfceversion 4.8 +%endif Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin -Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minor_version}/%{name}-%{version}.tar.bz2 +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: libxfce4ui-devel >= 4.8.0 @@ -58,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sat Jun 30 2012 Christoph Wickert - 2.5.4-2 +- Define the Xfce version conditionally + * Sat Jun 30 2012 Christoph Wickert - 2.5.4-1 - Update to 2.5.4 From 802cafd8b2fd713296def7fa9c189076a86b318d Mon Sep 17 00:00:00 2001 From: Christoph Wickert Date: Sun, 1 Jul 2012 00:52:21 +0200 Subject: [PATCH 22/69] Use macros consistently --- xfce4-diskperf-plugin.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 4513872..820c01d 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -43,7 +43,7 @@ rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' # remove la file -find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';' +find %{buildroot} -name '*.la' -exec rm -f {} ';' # make sure debuginfo is generated properly chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so From df8bfe656a9c3fbe1419b4445031ba4518cbdcd5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 22 Jul 2012 00:05:03 -0500 Subject: [PATCH 23/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 820c01d..8a7bd17 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 2.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Sat Jun 30 2012 Christoph Wickert - 2.5.4-2 - Define the Xfce version conditionally From af50ebe8e9ab1078ee8fd089c72e86e3055586a5 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 14 Feb 2013 21:35:30 -0600 Subject: [PATCH 24/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 8a7bd17..78fef23 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Fri Feb 15 2013 Fedora Release Engineering - 2.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + * Sun Jul 22 2012 Fedora Release Engineering - 2.5.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From df8e8287d5ed6ae2a3b268117b42ce60d71ced36 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 02:57:15 -0500 Subject: [PATCH 25/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 78fef23..acff92c 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 2.5.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Fri Feb 15 2013 Fedora Release Engineering - 2.5.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild From aab498f46d4df17998b0e7384457cc5afcca2bad Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 00:35:29 -0500 Subject: [PATCH 26/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index acff92c..06567cf 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 2.5.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 2.5.4-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 15d2296e5fa96c811641c025837f155e5faed505 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 09:41:33 +0000 Subject: [PATCH 27/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 06567cf..4d33114 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 2.5.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 2.5.4-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From fcfb7bb9043a29f1779e1295f2c1b0d420c4686b Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sat, 28 Feb 2015 20:12:37 -0700 Subject: [PATCH 28/69] Rebuild for Xfce 4.12 --- xfce4-diskperf-plugin.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 4d33114..1dbe725 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,15 +1,15 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 %global minorversion 2.5 -%if 0%{?fedora} >= 18 - %global xfceversion 4.10 +%if 0%{?fedora} >= 22 + %global xfceversion 4.12 %else - %global xfceversion 4.8 + %global xfceversion 4.10 %endif Name: xfce4-diskperf-plugin Version: 2.5.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Sat Feb 28 2015 Kevin Fenzi 2.5.4-8 +- Rebuild for Xfce 4.12 + * Mon Aug 18 2014 Fedora Release Engineering - 2.5.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 13e40098aa4a2a927b91a66332de63d23abef07c Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Wed, 4 Mar 2015 19:40:18 -0700 Subject: [PATCH 29/69] Update to 2.5.5 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e215a0d..a25848e 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.5.2.tar.bz2 /xfce4-diskperf-plugin-2.5.3.tar.bz2 /xfce4-diskperf-plugin-2.5.4.tar.bz2 +/xfce4-diskperf-plugin-2.5.5.tar.bz2 diff --git a/sources b/sources index 77119f5..a1e5faa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -2db453fc3ea2e4fe073ec313a25b0961 xfce4-diskperf-plugin-2.5.4.tar.bz2 +199e4365cb3a1fcd5f6164044aedba17 xfce4-diskperf-plugin-2.5.5.tar.bz2 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1dbe725..1149bfb 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -8,8 +8,8 @@ %endif Name: xfce4-diskperf-plugin -Version: 2.5.4 -Release: 8%{?dist} +Version: 2.5.5 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Wed Mar 04 2015 Kevin Fenzi 2.5.5-1 +- Update to 2.5.5 + * Sat Feb 28 2015 Kevin Fenzi 2.5.4-8 - Rebuild for Xfce 4.12 From a6398673bb6bea090e74e93b778cb573b6598607 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 03:54:28 +0000 Subject: [PATCH 30/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1149bfb..705e8cf 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 2.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Wed Mar 04 2015 Kevin Fenzi 2.5.5-1 - Update to 2.5.5 From 076dcc44759cec631780cd6ecff58c355d72609a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:25:06 +0000 Subject: [PATCH 31/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 705e8cf..6b73b48 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +62,9 @@ rm -rf %{buildroot} %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 2.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Jun 19 2015 Fedora Release Engineering - 2.5.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 485b08fc9b60f8e73eb59a92760140f5078db850 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Fri, 15 Apr 2016 14:25:24 -0400 Subject: [PATCH 32/69] Added EL conditional for Xfce 4.12 --- xfce4-diskperf-plugin.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 6b73b48..ece5325 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,7 +1,8 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 %global minorversion 2.5 -%if 0%{?fedora} >= 22 + +%if 0%{?fedora} >= 22 || 0%{?rhel} >= 7 %global xfceversion 4.12 %else %global xfceversion 4.10 @@ -9,7 +10,7 @@ Name: xfce4-diskperf-plugin Version: 2.5.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -62,6 +63,9 @@ rm -rf %{buildroot} %changelog +* Fri Apr 15 2016 Mukundan Ragavan - 2.5.5-4 +- Added EL conditional for Xfce 4.12 + * Fri Feb 05 2016 Fedora Release Engineering - 2.5.5-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From a146837187fff36abf554471b5d55556c27b2d6e Mon Sep 17 00:00:00 2001 From: Filipe Rosset Date: Sat, 5 Nov 2016 12:10:09 -0200 Subject: [PATCH 33/69] - Update to 2.6.0 - [gtk3] Bump dependencies to check for libxfce4ui-2/libxfce4panel-2.0 - Spec clean-up --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 25 ++++++++++++------------- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index a25848e..e7496dd 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.5.3.tar.bz2 /xfce4-diskperf-plugin-2.5.4.tar.bz2 /xfce4-diskperf-plugin-2.5.5.tar.bz2 +/xfce4-diskperf-plugin-2.6.0.tar.bz2 diff --git a/sources b/sources index a1e5faa..1735b6a 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -199e4365cb3a1fcd5f6164044aedba17 xfce4-diskperf-plugin-2.5.5.tar.bz2 +fdb061b5dee6efe04b14d10c166727b0 xfce4-diskperf-plugin-2.6.0.tar.bz2 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index ece5325..e9d17c5 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,6 +1,6 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 -%global minorversion 2.5 +%global minorversion 2.6 %if 0%{?fedora} >= 22 || 0%{?rhel} >= 7 %global xfceversion 4.12 @@ -9,8 +9,8 @@ %endif Name: xfce4-diskperf-plugin -Version: 2.5.5 -Release: 4%{?dist} +Version: 2.6.0 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -18,10 +18,9 @@ License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) -BuildRequires: libxfce4ui-devel >= 4.8.0 -BuildRequires: xfce4-panel-devel >= 4.8.0 +BuildRequires: libxfce4ui-devel >= 4.12.0 +BuildRequires: xfce4-panel-devel >= 4.12.0 BuildRequires: gettext BuildRequires: intltool Requires: xfce4-panel >= %{xfceversion} @@ -40,7 +39,6 @@ make %{?_smp_mflags} %install -rm -rf %{buildroot} make install DESTDIR=%{buildroot} INSTALL='install -p' # remove la file @@ -52,17 +50,18 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %find_lang %{name} -%clean -rm -rf %{buildroot} - %files -f %{name}.lang -%defattr(-,root,root,-) %doc AUTHORS COPYING ChangeLog NEWS README %{_libdir}/xfce4/panel/plugins/*.so %{_datadir}/xfce4/panel/plugins/*.desktop %changelog +* Sat Nov 05 2016 Filipe Rosset - 2.6.0-1 +- Update to 2.6.0 +- [gtk3] Bump dependencies to check for libxfce4ui-2/libxfce4panel-2.0 +- Spec clean-up + * Fri Apr 15 2016 Mukundan Ragavan - 2.5.5-4 - Added EL conditional for Xfce 4.12 @@ -99,7 +98,7 @@ rm -rf %{buildroot} * Sat Jun 30 2012 Christoph Wickert - 2.5.4-1 - Update to 2.5.4 -* Sat May 13 2012 Christoph Wickert - 2.5.3-1 +* Sun May 13 2012 Christoph Wickert - 2.5.3-1 - Update to 2.5.3 * Mon Apr 30 2012 Christoph Wickert - 2.5.2-1 @@ -190,7 +189,7 @@ rm -rf %{buildroot} * Tue Apr 11 2006 Christoph Wickert - 1.5-6 - Require xfce4-panel. -* Wed Feb 16 2006 Christoph Wickert - 1.5-5 +* Thu Feb 16 2006 Christoph Wickert - 1.5-5 - Rebuild for Fedora Extras 5. * Thu Dec 01 2005 Christoph Wickert - 1.5-4 From a77a200fb43800c0e015244b58775c6a42233476 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 17:47:28 +0000 Subject: [PATCH 34/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index e9d17c5..ecb8d5f 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -10,7 +10,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -57,6 +57,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Sat Nov 05 2016 Filipe Rosset - 2.6.0-1 - Update to 2.6.0 - [gtk3] Bump dependencies to check for libxfce4ui-2/libxfce4panel-2.0 From 4374a9a553e12ddcbf6666bc3a1d175af96a1c54 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Mon, 27 Feb 2017 21:15:42 -0500 Subject: [PATCH 35/69] Update to 2.6.1 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 7 +++++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index e7496dd..438843c 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.5.4.tar.bz2 /xfce4-diskperf-plugin-2.5.5.tar.bz2 /xfce4-diskperf-plugin-2.6.0.tar.bz2 +/xfce4-diskperf-plugin-2.6.1.tar.bz2 diff --git a/sources b/sources index 1735b6a..a5c252c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -fdb061b5dee6efe04b14d10c166727b0 xfce4-diskperf-plugin-2.6.0.tar.bz2 +SHA512 (xfce4-diskperf-plugin-2.6.1.tar.bz2) = ba01ec30e31db0c936b2b18df7c68883f89c6c4d5b82392759c25ef41fa89de37e2e635abd169745a9790d81af5b327768eb62ec3cc369f85e2da0bedc4c7cea diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index ecb8d5f..3f1e40d 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,8 +9,8 @@ %endif Name: xfce4-diskperf-plugin -Version: 2.6.0 -Release: 2%{?dist} +Version: 2.6.1 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -57,6 +57,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Mon Feb 27 2017 Mukundan Ragavan - 2.6.1-1 +- Update to 2.6.1 + * Sat Feb 11 2017 Fedora Release Engineering - 2.6.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 67cf04d49be8ed7f4fba4ad452095a4e47b9d39c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 22:02:21 +0000 Subject: [PATCH 36/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 3f1e40d..9558e83 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -10,7 +10,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -57,6 +57,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 2.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Feb 27 2017 Mukundan Ragavan - 2.6.1-1 - Update to 2.6.1 From 1b7b0d978896cd639c9a2029ae38e40bdd68056a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 3 Aug 2017 10:37:12 +0000 Subject: [PATCH 37/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 9558e83..14207e3 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -10,7 +10,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -57,6 +57,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Thu Aug 03 2017 Fedora Release Engineering - 2.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 2.6.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 23994d03235158bddc664059771993dce6bc72d0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:32:09 +0000 Subject: [PATCH 38/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 14207e3..2fefa8f 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -10,7 +10,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -57,6 +57,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 2.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Aug 03 2017 Fedora Release Engineering - 2.6.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From ef6b345a43924260105c109435ee00644ca8b31b Mon Sep 17 00:00:00 2001 From: Filipe Rosset Date: Sun, 11 Feb 2018 12:16:04 -0200 Subject: [PATCH 39/69] - Spec cleanup / modernization --- xfce4-diskperf-plugin.spec | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 2fefa8f..818d12a 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,16 +1,12 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 +%global _hardened_build 1 %global minorversion 2.6 - -%if 0%{?fedora} >= 22 || 0%{?rhel} >= 7 - %global xfceversion 4.12 -%else - %global xfceversion 4.10 -%endif +%global xfceversion 4.12 Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -30,16 +26,16 @@ The DiskPerf plugin displays disk/partition performance (bytes transfered per second) based on data provided by the kernel. %prep -%setup -q +%autosetup %build %configure --disable-static -make %{?_smp_mflags} +%make_build %install -make install DESTDIR=%{buildroot} INSTALL='install -p' +%make_install # remove la file find %{buildroot} -name '*.la' -exec rm -f {} ';' @@ -51,12 +47,16 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %files -f %{name}.lang -%doc AUTHORS COPYING ChangeLog NEWS README +%doc AUTHORS ChangeLog NEWS README +%license COPYING %{_libdir}/xfce4/panel/plugins/*.so %{_datadir}/xfce4/panel/plugins/*.desktop %changelog +* Sun Feb 11 2018 Filipe Rosset - 2.6.1-5 +- Spec cleanup / modernization + * Fri Feb 09 2018 Fedora Release Engineering - 2.6.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 10e692f64aff47e36d35e5145f85e30d937a08b1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:53 +0200 Subject: [PATCH 40/69] add BuildRequires: gcc Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- xfce4-diskperf-plugin.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 818d12a..b9158b5 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -15,6 +15,7 @@ URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +BuildRequires: gcc BuildRequires: libxfce4ui-devel >= 4.12.0 BuildRequires: xfce4-panel-devel >= 4.12.0 BuildRequires: gettext From f3f517e26ccf188dbd2a43a7afa8c35faabd5c5a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:13:50 +0000 Subject: [PATCH 41/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index b9158b5..608322d 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 2.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Sun Feb 11 2018 Filipe Rosset - 2.6.1-5 - Spec cleanup / modernization From 4e2ca5aed239e98c9cfaaa0907d43f6a60b0a0ca Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Tue, 17 Jul 2018 19:50:22 -0400 Subject: [PATCH 42/69] Add fix for glibc-2.25+ --- xfce4-diskperf-plugin.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 608322d..351e9d3 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -28,7 +28,7 @@ second) based on data provided by the kernel. %prep %autosetup - +sed -i '36i#include ' panel-plugin/devperf.c %build %configure --disable-static @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Tue Jul 17 2018 Mukundan Ragavan - 2.6.1-7 +- Add fix for glibc-2.25+ + * Sat Jul 14 2018 Fedora Release Engineering - 2.6.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 3da45fd458a2230416c4a5ca5833351812f02158 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sat, 11 Aug 2018 20:34:48 -0400 Subject: [PATCH 43/69] Rebuilt (xfce 4.13) --- xfce4-diskperf-plugin.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 351e9d3..684cf9e 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -2,11 +2,11 @@ %global _hardened_build 1 %global minorversion 2.6 -%global xfceversion 4.12 +%global xfceversion 4.13 Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 7%{?dist} +Release: 20%{?dist} Summary: Disk performance plugin for the Xfce panel Group: User Interface/Desktops @@ -15,9 +15,9 @@ URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 -BuildRequires: gcc -BuildRequires: libxfce4ui-devel >= 4.12.0 -BuildRequires: xfce4-panel-devel >= 4.12.0 +BuildRequires: gcc-c++ +BuildRequires: libxfce4ui-devel >= %{xfceversion} +BuildRequires: xfce4-panel-devel >= %{xfceversion} BuildRequires: gettext BuildRequires: intltool Requires: xfce4-panel >= %{xfceversion} @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sat Aug 11 2018 Mukundan Ragavan - 2.6.1-20 +- Rebuilt (xfce 4.13) + * Tue Jul 17 2018 Mukundan Ragavan - 2.6.1-7 - Add fix for glibc-2.25+ From a030b0cc4bb8ed3f9e5e391597378cb80bbb6a47 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:31 +0100 Subject: [PATCH 44/69] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xfce4-diskperf-plugin.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 684cf9e..ffda992 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -9,7 +9,6 @@ Version: 2.6.1 Release: 20%{?dist} Summary: Disk performance plugin for the Xfce panel -Group: User Interface/Desktops License: BSD URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin From 5c9c573b7625e0e57ecada4e50514fa779461335 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:18:24 +0000 Subject: [PATCH 45/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index ffda992..8aaea85 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -54,6 +54,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 2.6.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Aug 11 2018 Mukundan Ragavan - 2.6.1-20 - Rebuilt (xfce 4.13) From 1e0ee4cd24f329efe6e59e931c726f958e89cd01 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 04:05:18 +0000 Subject: [PATCH 46/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 8aaea85..652f3d1 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.1 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -54,6 +54,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 2.6.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Sun Feb 03 2019 Fedora Release Engineering - 2.6.1-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From f021000db9c95c3d80d7e24a3f15b3f51aa2eb2d Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Tue, 13 Aug 2019 17:40:03 -0400 Subject: [PATCH 47/69] Update to 2.6.2 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 438843c..b5b6911 100644 --- a/.gitignore +++ b/.gitignore @@ -7,3 +7,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.5.5.tar.bz2 /xfce4-diskperf-plugin-2.6.0.tar.bz2 /xfce4-diskperf-plugin-2.6.1.tar.bz2 +/xfce4-diskperf-plugin-2.6.2.tar.bz2 diff --git a/sources b/sources index a5c252c..3914b24 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-diskperf-plugin-2.6.1.tar.bz2) = ba01ec30e31db0c936b2b18df7c68883f89c6c4d5b82392759c25ef41fa89de37e2e635abd169745a9790d81af5b327768eb62ec3cc369f85e2da0bedc4c7cea +SHA512 (xfce4-diskperf-plugin-2.6.2.tar.bz2) = e91a888a9936f8a0279a062801d16ebe03159df479413087a01e20c15913df781378e4b4c91ecba94d71afa813c6d3a5367b11c1c6d3d62bf10fea78c4853031 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 652f3d1..d310a3c 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -2,11 +2,11 @@ %global _hardened_build 1 %global minorversion 2.6 -%global xfceversion 4.13 +%global xfceversion 4.14 Name: xfce4-diskperf-plugin -Version: 2.6.1 -Release: 22%{?dist} +Version: 2.6.2 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -54,6 +54,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Tue Aug 13 2019 Mukundan Ragavan - 2.6.2-1 +- Update to 2.6.2 + * Sat Jul 27 2019 Fedora Release Engineering - 2.6.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From adb9106a71536023526c435a6c05abd908c294a5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:20:27 +0000 Subject: [PATCH 48/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index d310a3c..b81d7f0 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -54,6 +54,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 2.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Aug 13 2019 Mukundan Ragavan - 2.6.2-1 - Update to 2.6.2 From 03a43ec9a8717959e49fd649160059b5fe6ffeb4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:38:32 +0000 Subject: [PATCH 49/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index b81d7f0..7705ea5 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -54,6 +54,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 2.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 2.6.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From b1606a5d327cf0c109d4052b5865ab3915223290 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 23 Dec 2020 16:09:13 -0500 Subject: [PATCH 50/69] Update to 2.6.3 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index b5b6911..8e4d113 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.6.0.tar.bz2 /xfce4-diskperf-plugin-2.6.1.tar.bz2 /xfce4-diskperf-plugin-2.6.2.tar.bz2 +/xfce4-diskperf-plugin-2.6.3.tar.bz2 diff --git a/sources b/sources index 3914b24..177a12d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-diskperf-plugin-2.6.2.tar.bz2) = e91a888a9936f8a0279a062801d16ebe03159df479413087a01e20c15913df781378e4b4c91ecba94d71afa813c6d3a5367b11c1c6d3d62bf10fea78c4853031 +SHA512 (xfce4-diskperf-plugin-2.6.3.tar.bz2) = fb7ffeaca14f67bb8a2423529f7040d3e51a0184a552f4636acfb4aec914da5fef95db2c710cad8cb1a3b96ef9abc308ad072b03f6e2ccc49793c0edb73dc116 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 7705ea5..61d3403 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -2,11 +2,11 @@ %global _hardened_build 1 %global minorversion 2.6 -%global xfceversion 4.14 +%global xfceversion 4.16 Name: xfce4-diskperf-plugin -Version: 2.6.2 -Release: 3%{?dist} +Version: 2.6.3 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -47,13 +47,16 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %files -f %{name}.lang -%doc AUTHORS ChangeLog NEWS README +%doc AUTHORS ChangeLog NEWS %license COPYING %{_libdir}/xfce4/panel/plugins/*.so %{_datadir}/xfce4/panel/plugins/*.desktop %changelog +* Wed Dec 23 2020 Mukundan Ragavan - 2.6.3-1 +- Update to 2.6.3 + * Wed Jul 29 2020 Fedora Release Engineering - 2.6.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 6d4262d30fd3f9485ed167446961d1e3e36baa5d Mon Sep 17 00:00:00 2001 From: Tom Stellard Date: Sat, 9 Jan 2021 01:18:35 +0000 Subject: [PATCH 51/69] Add BuildRequires: make https://fedoraproject.org/wiki/Changes/Remove_make_from_BuildRoot --- xfce4-diskperf-plugin.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 61d3403..5b118ed 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -14,6 +14,7 @@ URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: libxfce4ui-devel >= %{xfceversion} BuildRequires: xfce4-panel-devel >= %{xfceversion} From 7ac0a8d2b6d1e50c4810a71ccf41a24c5ffb324d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 27 Jan 2021 23:57:56 +0000 Subject: [PATCH 52/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 5b118ed..37ad062 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Wed Jan 27 2021 Fedora Release Engineering - 2.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Dec 23 2020 Mukundan Ragavan - 2.6.3-1 - Update to 2.6.3 From 875c60d35eb2e744eef00124f89c239a80fd1bd1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:29:21 +0000 Subject: [PATCH 53/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 37ad062..3a4c0c4 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 2.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Wed Jan 27 2021 Fedora Release Engineering - 2.6.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From c7b562790036ed8cb1f02ba6260341878f2dd4ce Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:00:56 +0000 Subject: [PATCH 54/69] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 3a4c0c4..7728b0c 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.6.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -55,6 +55,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 2.6.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 2.6.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 76bd8e023f079cf905f6b7eea477c2cb62b17c10 Mon Sep 17 00:00:00 2001 From: aekoroglu Date: Mon, 7 Mar 2022 22:35:48 +0200 Subject: [PATCH 55/69] Update to 2.7.0 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 13 ++++++------- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 8e4d113..bbb1a51 100644 --- a/.gitignore +++ b/.gitignore @@ -9,3 +9,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.6.1.tar.bz2 /xfce4-diskperf-plugin-2.6.2.tar.bz2 /xfce4-diskperf-plugin-2.6.3.tar.bz2 +/xfce4-diskperf-plugin-2.7.0.tar.bz2 diff --git a/sources b/sources index 177a12d..b8faad6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-diskperf-plugin-2.6.3.tar.bz2) = fb7ffeaca14f67bb8a2423529f7040d3e51a0184a552f4636acfb4aec914da5fef95db2c710cad8cb1a3b96ef9abc308ad072b03f6e2ccc49793c0edb73dc116 +SHA512 (xfce4-diskperf-plugin-2.7.0.tar.bz2) = 8d9dde5534ff2ff99955e7d19b9fd1a0ca6e481f978462578c246c30febc9c2d16c97362014c05b53bd2e895199dbfaa2bdee459b84de3df94f86791d9b07b4f diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 7728b0c..3717b9b 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,12 +1,12 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 %global _hardened_build 1 -%global minorversion 2.6 +%global minorversion 2.7 %global xfceversion 4.16 Name: xfce4-diskperf-plugin -Version: 2.6.3 -Release: 4%{?dist} +Version: 2.7.0 +Release: 1%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -28,7 +28,6 @@ second) based on data provided by the kernel. %prep %autosetup -sed -i '36i#include ' panel-plugin/devperf.c %build %configure --disable-static @@ -41,9 +40,6 @@ sed -i '36i#include ' panel-plugin/devperf.c # remove la file find %{buildroot} -name '*.la' -exec rm -f {} ';' -# make sure debuginfo is generated properly -chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so - %find_lang %{name} @@ -55,6 +51,9 @@ chmod -c +x %{buildroot}%{_libdir}/xfce4/panel/plugins/*.so %changelog +* Mon Mar 7 2022 Ali Erdinc Koroglu - 2.7.0-1 +- Update to 2.7.0 + * Sat Jan 22 2022 Fedora Release Engineering - 2.6.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From 080e9bed421eb6972de6f693a08c5ac1e82b3297 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:02:07 +0000 Subject: [PATCH 56/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 3717b9b..eba622e 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -51,6 +51,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 2.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Mon Mar 7 2022 Ali Erdinc Koroglu - 2.7.0-1 - Update to 2.7.0 From 90985d11787c298c0195394ed20bc6067fc9ae73 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:22:36 +0000 Subject: [PATCH 57/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index eba622e..0661f6e 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -51,6 +51,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 2.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Sat Jul 23 2022 Fedora Release Engineering - 2.7.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 98ce0a4d8a1e7c69135d9f717971ec3175e7230c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 18:45:10 +0000 Subject: [PATCH 58/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 0661f6e..5aa95fb 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -51,6 +51,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 2.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Sat Jan 21 2023 Fedora Release Engineering - 2.7.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f2fb2f21b030fcf074ef085199cd8271448483b7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:34:36 +0000 Subject: [PATCH 59/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 5aa95fb..8875e7f 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -51,6 +51,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 2.7.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 2.7.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From a3899c7c83ce506c02df982dadb45ee788130464 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 09:57:57 +0000 Subject: [PATCH 60/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 8875e7f..8c7ded0 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Disk performance plugin for the Xfce panel License: BSD @@ -51,6 +51,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 2.7.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 2.7.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From ef1440954a69576b577eeb17ae9178002a4b73a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Such=C3=BD?= Date: Wed, 4 Sep 2024 22:52:46 +0200 Subject: [PATCH 61/69] convert license to SPDX This is part of https://fedoraproject.org/wiki/Changes/SPDX_Licenses_Phase_4 --- xfce4-diskperf-plugin.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 8c7ded0..1480021 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,10 +6,11 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Disk performance plugin for the Xfce panel -License: BSD +# Automatically converted from old format: BSD - review is highly recommended. +License: LicenseRef-Callaway-BSD URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 @@ -51,6 +52,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Wed Sep 04 2024 Miroslav Suchý - 2.7.0-7 +- convert license to SPDX + * Sat Jul 20 2024 Fedora Release Engineering - 2.7.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From f67dbb1990e310d1b3b02f754724c388deb6d17c Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 22 Dec 2024 16:11:01 -0600 Subject: [PATCH 62/69] rebuild for xfce-4.20 --- xfce4-diskperf-plugin.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1480021..5568368 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Disk performance plugin for the Xfce panel # Automatically converted from old format: BSD - review is highly recommended. @@ -52,6 +52,9 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog +* Sun Dec 22 2024 Mukundan Ragavan - 2.7.0-8 +- rebuild for xfce-4.20 + * Wed Sep 04 2024 Miroslav Suchý - 2.7.0-7 - convert license to SPDX From 7b1921290c2ed846d2356badeacec3bdf72b053c Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 25 Dec 2024 08:15:25 -0600 Subject: [PATCH 63/69] Update to v2.7.1 --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index bbb1a51..1084bea 100644 --- a/.gitignore +++ b/.gitignore @@ -10,3 +10,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.6.2.tar.bz2 /xfce4-diskperf-plugin-2.6.3.tar.bz2 /xfce4-diskperf-plugin-2.7.0.tar.bz2 +/xfce4-diskperf-plugin-2.7.1.tar.bz2 diff --git a/sources b/sources index b8faad6..45cdbbd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-diskperf-plugin-2.7.0.tar.bz2) = 8d9dde5534ff2ff99955e7d19b9fd1a0ca6e481f978462578c246c30febc9c2d16c97362014c05b53bd2e895199dbfaa2bdee459b84de3df94f86791d9b07b4f +SHA512 (xfce4-diskperf-plugin-2.7.1.tar.bz2) = 020efe8408a9ef0e598fcb7e37769880a0330347d0e1d0b7d7e5e4731bd05ac71f687be4a5a3bda6aba4c9b20d7d1491ca068a468c5a0f284ab2fa261f351f2f diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 5568368..1ddeae4 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -5,7 +5,7 @@ %global xfceversion 4.16 Name: xfce4-diskperf-plugin -Version: 2.7.0 +Version: 2.7.1 Release: 8%{?dist} Summary: Disk performance plugin for the Xfce panel From ceb39869dce068de575c446f0190a72a7b29a836 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Wed, 25 Dec 2024 08:17:50 -0600 Subject: [PATCH 64/69] rpmautospec --- changelog | 230 ++++++++++++++++++++++++++++++++++++ xfce4-diskperf-plugin.spec | 233 +------------------------------------ 2 files changed, 232 insertions(+), 231 deletions(-) create mode 100644 changelog diff --git a/changelog b/changelog new file mode 100644 index 0000000..e27d150 --- /dev/null +++ b/changelog @@ -0,0 +1,230 @@ +* Sun Dec 22 2024 Mukundan Ragavan - 2.7.0-8 +- rebuild for xfce-4.20 + +* Wed Sep 04 2024 Miroslav Suchý - 2.7.0-7 +- convert license to SPDX + +* Sat Jul 20 2024 Fedora Release Engineering - 2.7.0-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + +* Sat Jan 27 2024 Fedora Release Engineering - 2.7.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Sat Jul 22 2023 Fedora Release Engineering - 2.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Sat Jan 21 2023 Fedora Release Engineering - 2.7.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Sat Jul 23 2022 Fedora Release Engineering - 2.7.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Mon Mar 7 2022 Ali Erdinc Koroglu - 2.7.0-1 +- Update to 2.7.0 + +* Sat Jan 22 2022 Fedora Release Engineering - 2.6.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Fri Jul 23 2021 Fedora Release Engineering - 2.6.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Jan 27 2021 Fedora Release Engineering - 2.6.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Dec 23 2020 Mukundan Ragavan - 2.6.3-1 +- Update to 2.6.3 + +* Wed Jul 29 2020 Fedora Release Engineering - 2.6.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Fri Jan 31 2020 Fedora Release Engineering - 2.6.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Tue Aug 13 2019 Mukundan Ragavan - 2.6.2-1 +- Update to 2.6.2 + +* Sat Jul 27 2019 Fedora Release Engineering - 2.6.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 2.6.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Sat Aug 11 2018 Mukundan Ragavan - 2.6.1-20 +- Rebuilt (xfce 4.13) + +* Tue Jul 17 2018 Mukundan Ragavan - 2.6.1-7 +- Add fix for glibc-2.25+ + +* Sat Jul 14 2018 Fedora Release Engineering - 2.6.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Sun Feb 11 2018 Filipe Rosset - 2.6.1-5 +- Spec cleanup / modernization + +* Fri Feb 09 2018 Fedora Release Engineering - 2.6.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Thu Aug 03 2017 Fedora Release Engineering - 2.6.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + +* Thu Jul 27 2017 Fedora Release Engineering - 2.6.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Feb 27 2017 Mukundan Ragavan - 2.6.1-1 +- Update to 2.6.1 + +* Sat Feb 11 2017 Fedora Release Engineering - 2.6.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Sat Nov 05 2016 Filipe Rosset - 2.6.0-1 +- Update to 2.6.0 +- [gtk3] Bump dependencies to check for libxfce4ui-2/libxfce4panel-2.0 +- Spec clean-up + +* Fri Apr 15 2016 Mukundan Ragavan - 2.5.5-4 +- Added EL conditional for Xfce 4.12 + +* Fri Feb 05 2016 Fedora Release Engineering - 2.5.5-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 2.5.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Wed Mar 04 2015 Kevin Fenzi 2.5.5-1 +- Update to 2.5.5 + +* Sat Feb 28 2015 Kevin Fenzi 2.5.4-8 +- Rebuild for Xfce 4.12 + +* Mon Aug 18 2014 Fedora Release Engineering - 2.5.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 2.5.4-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Sun Aug 04 2013 Fedora Release Engineering - 2.5.4-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Fri Feb 15 2013 Fedora Release Engineering - 2.5.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 2.5.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Jun 30 2012 Christoph Wickert - 2.5.4-2 +- Define the Xfce version conditionally + +* Sat Jun 30 2012 Christoph Wickert - 2.5.4-1 +- Update to 2.5.4 + +* Sun May 13 2012 Christoph Wickert - 2.5.3-1 +- Update to 2.5.3 + +* Mon Apr 30 2012 Christoph Wickert - 2.5.2-1 +- Update to 2.5.2 (Xfce 4.10 final) +- Add VCS key + +* Tue Apr 24 2012 Ville Skyttä - 2.5.1-2 +- Fix -debuginfo. + +* Sat Apr 21 2012 Kevin Fenzi - 2.5.1-1 +- Update to 2.5.1 + +* Sun Apr 15 2012 Kevin Fenzi - 2.3.0-5 +- Rebuild for Xfce 4.10(pre2) + +* Thu Apr 05 2012 Kevin Fenzi - 2.3.0-4 +- Rebuild for Xfce 4.10 + +* Tue Feb 28 2012 Christoph Wickert - 2.3.0-3 +- Add patch to fix DSO linking +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild +- Rebuild for new libpng + +* Mon Jun 06 2011 Christoph Wickert - 2.3.0-2 +- Rebuild to fix build bug with FORTIFY_SOURCE (#702869) + +* Fri Feb 25 2011 Christoph Wickert - 2.3.0-1 +- Update to 2.3.0 +- Remove all patches + +* Mon Feb 07 2011 Fedora Release Engineering - 2.2.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Fri Jan 14 2011 Adam Williamson - 2.2.0-7 +- 01_fix-linking-libxfcegui4.patch: fix underlinking (Landry Breuil) +- 02_fix-libtool.patch: fix autoconf (upstream via Debian) + +* Wed Feb 17 2010 Christoph Wickert - 2.2.0-6 +- Add patch to fix DSO linking (#564985) + +* Thu Sep 10 2009 Christoph Wickert - 2.2.0-5 +- Fix custom bar colors at startup (bugzilla.xfce.org #3074) + +* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Sun Jan 18 2009 Christoph Wickert - 2.2.0-2 +- Rebuild for Xfce 4.6 (Beta 3) + +* Sun Apr 27 2008 Christoph Wickert - 2.2.0-1 +- Update to 2.2.0 + +* Mon Feb 18 2008 Fedora Release Engineering - 2.1.0-5 +- Autorebuild for GCC 4.3 + +* Sat Aug 25 2007 Christoph Wickert - 2.1.0-4 +- Rebuild for BuildID feature + +* Sat Apr 28 2007 Christoph Wickert - 2.1.0-3 +- Rebuild for Xfce 4.4.1 + +* Mon Jan 22 2007 Christoph Wickert - 2.1.0-2 +- Rebuild for Xfce 4.4. + +* Sat Jan 20 2007 Christoph Wickert - 2.1.0-1 +- Update to 2.1.0. +- Remove patch for #215863, fixed upstream. + +* Sat Nov 25 2006 Christoph Wickert - 2.0-4 +- Add patch to fix bug bugzilla.xfce.org #1842 (#215863) + +* Thu Oct 05 2006 Christoph Wickert - 2.0-3 +- Bump release for devel checkin. + +* Wed Sep 13 2006 Christoph Wickert - 2.0-2 +- Rebuild for XFCE 4.3.99.1. +- BR perl(XML::Parser). + +* Mon Sep 04 2006 Christoph Wickert - 2.0-1 +- Update to 2.0 on XFCE 4.3.90.2. + +* Mon Sep 04 2006 Christoph Wickert - 1.5-7 +- Mass rebuild for Fedora Core 6. + +* Tue Apr 11 2006 Christoph Wickert - 1.5-6 +- Require xfce4-panel. + +* Thu Feb 16 2006 Christoph Wickert - 1.5-5 +- Rebuild for Fedora Extras 5. + +* Thu Dec 01 2005 Christoph Wickert - 1.5-4 +- Add libxfcegui4-devel BuildReqs. +- Fix %%defattr. + +* Mon Nov 14 2005 Christoph Wickert - 1.5-3 +- Initial Fedora Extras version. +- Rebuild for XFCE 4.2.3. +- disable-static instead of removing .a files. + +* Fri Sep 23 2005 Christoph Wickert - 1.5-2.fc4.cw +- Add libxml2 BuildReqs. + +* Sat Jul 09 2005 Christoph Wickert - 1.5-1.fc4.cw +- Rebuild for Core 4. + +* Wed Apr 13 2005 Christoph Wickert - 1.5-1.fc3.cw +- Initial RPM release. diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 1ddeae4..2f8cf94 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -6,7 +6,7 @@ Name: xfce4-diskperf-plugin Version: 2.7.1 -Release: 8%{?dist} +Release: %autorelease Summary: Disk performance plugin for the Xfce panel # Automatically converted from old format: BSD - review is highly recommended. @@ -52,233 +52,4 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';' %changelog -* Sun Dec 22 2024 Mukundan Ragavan - 2.7.0-8 -- rebuild for xfce-4.20 - -* Wed Sep 04 2024 Miroslav Suchý - 2.7.0-7 -- convert license to SPDX - -* Sat Jul 20 2024 Fedora Release Engineering - 2.7.0-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild - -* Sat Jan 27 2024 Fedora Release Engineering - 2.7.0-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sat Jul 22 2023 Fedora Release Engineering - 2.7.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Sat Jan 21 2023 Fedora Release Engineering - 2.7.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Sat Jul 23 2022 Fedora Release Engineering - 2.7.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Mon Mar 7 2022 Ali Erdinc Koroglu - 2.7.0-1 -- Update to 2.7.0 - -* Sat Jan 22 2022 Fedora Release Engineering - 2.6.3-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Fri Jul 23 2021 Fedora Release Engineering - 2.6.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering - 2.6.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Wed Dec 23 2020 Mukundan Ragavan - 2.6.3-1 -- Update to 2.6.3 - -* Wed Jul 29 2020 Fedora Release Engineering - 2.6.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Fri Jan 31 2020 Fedora Release Engineering - 2.6.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Aug 13 2019 Mukundan Ragavan - 2.6.2-1 -- Update to 2.6.2 - -* Sat Jul 27 2019 Fedora Release Engineering - 2.6.1-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sun Feb 03 2019 Fedora Release Engineering - 2.6.1-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Sat Aug 11 2018 Mukundan Ragavan - 2.6.1-20 -- Rebuilt (xfce 4.13) - -* Tue Jul 17 2018 Mukundan Ragavan - 2.6.1-7 -- Add fix for glibc-2.25+ - -* Sat Jul 14 2018 Fedora Release Engineering - 2.6.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Sun Feb 11 2018 Filipe Rosset - 2.6.1-5 -- Spec cleanup / modernization - -* Fri Feb 09 2018 Fedora Release Engineering - 2.6.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Aug 03 2017 Fedora Release Engineering - 2.6.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 2.6.1-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon Feb 27 2017 Mukundan Ragavan - 2.6.1-1 -- Update to 2.6.1 - -* Sat Feb 11 2017 Fedora Release Engineering - 2.6.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Sat Nov 05 2016 Filipe Rosset - 2.6.0-1 -- Update to 2.6.0 -- [gtk3] Bump dependencies to check for libxfce4ui-2/libxfce4panel-2.0 -- Spec clean-up - -* Fri Apr 15 2016 Mukundan Ragavan - 2.5.5-4 -- Added EL conditional for Xfce 4.12 - -* Fri Feb 05 2016 Fedora Release Engineering - 2.5.5-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Fri Jun 19 2015 Fedora Release Engineering - 2.5.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Wed Mar 04 2015 Kevin Fenzi 2.5.5-1 -- Update to 2.5.5 - -* Sat Feb 28 2015 Kevin Fenzi 2.5.4-8 -- Rebuild for Xfce 4.12 - -* Mon Aug 18 2014 Fedora Release Engineering - 2.5.4-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 2.5.4-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 2.5.4-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Fri Feb 15 2013 Fedora Release Engineering - 2.5.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Sun Jul 22 2012 Fedora Release Engineering - 2.5.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jun 30 2012 Christoph Wickert - 2.5.4-2 -- Define the Xfce version conditionally - -* Sat Jun 30 2012 Christoph Wickert - 2.5.4-1 -- Update to 2.5.4 - -* Sun May 13 2012 Christoph Wickert - 2.5.3-1 -- Update to 2.5.3 - -* Mon Apr 30 2012 Christoph Wickert - 2.5.2-1 -- Update to 2.5.2 (Xfce 4.10 final) -- Add VCS key - -* Tue Apr 24 2012 Ville Skyttä - 2.5.1-2 -- Fix -debuginfo. - -* Sat Apr 21 2012 Kevin Fenzi - 2.5.1-1 -- Update to 2.5.1 - -* Sun Apr 15 2012 Kevin Fenzi - 2.3.0-5 -- Rebuild for Xfce 4.10(pre2) - -* Thu Apr 05 2012 Kevin Fenzi - 2.3.0-4 -- Rebuild for Xfce 4.10 - -* Tue Feb 28 2012 Christoph Wickert - 2.3.0-3 -- Add patch to fix DSO linking -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild -- Rebuild for new libpng - -* Mon Jun 06 2011 Christoph Wickert - 2.3.0-2 -- Rebuild to fix build bug with FORTIFY_SOURCE (#702869) - -* Fri Feb 25 2011 Christoph Wickert - 2.3.0-1 -- Update to 2.3.0 -- Remove all patches - -* Mon Feb 07 2011 Fedora Release Engineering - 2.2.0-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Fri Jan 14 2011 Adam Williamson - 2.2.0-7 -- 01_fix-linking-libxfcegui4.patch: fix underlinking (Landry Breuil) -- 02_fix-libtool.patch: fix autoconf (upstream via Debian) - -* Wed Feb 17 2010 Christoph Wickert - 2.2.0-6 -- Add patch to fix DSO linking (#564985) - -* Thu Sep 10 2009 Christoph Wickert - 2.2.0-5 -- Fix custom bar colors at startup (bugzilla.xfce.org #3074) - -* Mon Jul 27 2009 Fedora Release Engineering - 2.2.0-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Thu Feb 26 2009 Fedora Release Engineering - 2.2.0-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sun Jan 18 2009 Christoph Wickert - 2.2.0-2 -- Rebuild for Xfce 4.6 (Beta 3) - -* Sun Apr 27 2008 Christoph Wickert - 2.2.0-1 -- Update to 2.2.0 - -* Mon Feb 18 2008 Fedora Release Engineering - 2.1.0-5 -- Autorebuild for GCC 4.3 - -* Sat Aug 25 2007 Christoph Wickert - 2.1.0-4 -- Rebuild for BuildID feature - -* Sat Apr 28 2007 Christoph Wickert - 2.1.0-3 -- Rebuild for Xfce 4.4.1 - -* Mon Jan 22 2007 Christoph Wickert - 2.1.0-2 -- Rebuild for Xfce 4.4. - -* Sat Jan 20 2007 Christoph Wickert - 2.1.0-1 -- Update to 2.1.0. -- Remove patch for #215863, fixed upstream. - -* Sat Nov 25 2006 Christoph Wickert - 2.0-4 -- Add patch to fix bug bugzilla.xfce.org #1842 (#215863) - -* Thu Oct 05 2006 Christoph Wickert - 2.0-3 -- Bump release for devel checkin. - -* Wed Sep 13 2006 Christoph Wickert - 2.0-2 -- Rebuild for XFCE 4.3.99.1. -- BR perl(XML::Parser). - -* Mon Sep 04 2006 Christoph Wickert - 2.0-1 -- Update to 2.0 on XFCE 4.3.90.2. - -* Mon Sep 04 2006 Christoph Wickert - 1.5-7 -- Mass rebuild for Fedora Core 6. - -* Tue Apr 11 2006 Christoph Wickert - 1.5-6 -- Require xfce4-panel. - -* Thu Feb 16 2006 Christoph Wickert - 1.5-5 -- Rebuild for Fedora Extras 5. - -* Thu Dec 01 2005 Christoph Wickert - 1.5-4 -- Add libxfcegui4-devel BuildReqs. -- Fix %%defattr. - -* Mon Nov 14 2005 Christoph Wickert - 1.5-3 -- Initial Fedora Extras version. -- Rebuild for XFCE 4.2.3. -- disable-static instead of removing .a files. - -* Fri Sep 23 2005 Christoph Wickert - 1.5-2.fc4.cw -- Add libxml2 BuildReqs. - -* Sat Jul 09 2005 Christoph Wickert - 1.5-1.fc4.cw -- Rebuild for Core 4. - -* Wed Apr 13 2005 Christoph Wickert - 1.5-1.fc3.cw -- Initial RPM release. +%autochangelog From 32a478629eea48d0afa54b83b24aaa10961174e8 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 15:42:52 +0000 Subject: [PATCH 65/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From f419feb88c5d3d148e1df1b43f9a9c483349f780 Mon Sep 17 00:00:00 2001 From: Mukundan Ragavan Date: Sun, 1 Jun 2025 18:29:10 -0500 Subject: [PATCH 66/69] Update to v2.8.0; switch to meson --- .gitignore | 1 + sources | 2 +- xfce4-diskperf-plugin.spec | 22 +++++++++------------- 3 files changed, 11 insertions(+), 14 deletions(-) diff --git a/.gitignore b/.gitignore index 1084bea..62ab697 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,4 @@ xfce4-diskperf-plugin-2.2.0.tar.bz2 /xfce4-diskperf-plugin-2.6.3.tar.bz2 /xfce4-diskperf-plugin-2.7.0.tar.bz2 /xfce4-diskperf-plugin-2.7.1.tar.bz2 +/xfce4-diskperf-plugin-2.8.0.tar.xz diff --git a/sources b/sources index 45cdbbd..0dc5295 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xfce4-diskperf-plugin-2.7.1.tar.bz2) = 020efe8408a9ef0e598fcb7e37769880a0330347d0e1d0b7d7e5e4731bd05ac71f687be4a5a3bda6aba4c9b20d7d1491ca068a468c5a0f284ab2fa261f351f2f +SHA512 (xfce4-diskperf-plugin-2.8.0.tar.xz) = 2e146ff46b0fdc53a416a5cf08157d149a508f316fcef8d7d601535a171349d7292e1198ee8cf8232d3b03dda7c3cabdbb7ead3915608d1f0bcbe593dcfa4687 diff --git a/xfce4-diskperf-plugin.spec b/xfce4-diskperf-plugin.spec index 2f8cf94..3b7841b 100644 --- a/xfce4-diskperf-plugin.spec +++ b/xfce4-diskperf-plugin.spec @@ -1,11 +1,11 @@ # Review: https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=173660 %global _hardened_build 1 -%global minorversion 2.7 +%global minorversion 2.8 %global xfceversion 4.16 Name: xfce4-diskperf-plugin -Version: 2.7.1 +Version: 2.8.0 Release: %autorelease Summary: Disk performance plugin for the Xfce panel @@ -13,14 +13,13 @@ Summary: Disk performance plugin for the Xfce panel License: LicenseRef-Callaway-BSD URL: http://goodies.xfce.org/panel-plugins/{%name} #VCS: git:git://git.xfce.org/panel-plugins/xfce4-diskperf-plugin -Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.bz2 +Source0: http://archive.xfce.org/src/panel-plugins/%{name}/%{minorversion}/%{name}-%{version}.tar.xz -BuildRequires: make +BuildRequires: make BuildRequires: gcc-c++ BuildRequires: libxfce4ui-devel >= %{xfceversion} BuildRequires: xfce4-panel-devel >= %{xfceversion} -BuildRequires: gettext -BuildRequires: intltool +BuildRequires: meson Requires: xfce4-panel >= %{xfceversion} %description @@ -31,21 +30,18 @@ second) based on data provided by the kernel. %autosetup %build -%configure --disable-static -%make_build - +%meson +%meson_build %install -%make_install +%meson_install -# remove la file -find %{buildroot} -name '*.la' -exec rm -f {} ';' %find_lang %{name} %files -f %{name}.lang -%doc AUTHORS ChangeLog NEWS +%doc AUTHORS NEWS %license COPYING %{_libdir}/xfce4/panel/plugins/*.so %{_datadir}/xfce4/panel/plugins/*.desktop From 24c5fd3052012989f91378ab1c35720e54ea82cb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:46:37 +0000 Subject: [PATCH 67/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From f186dba9d54b47f2776aeab0c5bd4e6cfec33219 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 17 Jan 2026 20:36:37 +0000 Subject: [PATCH 68/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild From bdac8b013bef0c48453175cb389da9308a6488f3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 17 Jul 2026 09:09:45 +0000 Subject: [PATCH 69/69] Rebuilt for https://fedoraproject.org/wiki/Fedora_45_Mass_Rebuild