From c024b0a83c5358151645ec4519970000530f732c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 07:10:34 +0000 Subject: [PATCH 01/19] Initialize branch F-11 for valknut --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..25c7708 --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-11 From 2c39ccf9701e0db4d2730464ccc05dceb779e72d Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 27 Jul 2009 06:43:34 +0000 Subject: [PATCH 02/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index d5d0f7a..aa071c8 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Sun Jul 26 2009 Fedora Release Engineering - 0.4.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Wed Feb 25 2009 Fedora Release Engineering - 0.4.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From f149394d2bbc1939ea8d9d396d3df5a841bf3178 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:43:18 +0000 Subject: [PATCH 03/19] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b070905..2f33825 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: valknut -# $Id$ +# $Id: Makefile,v 1.1 2005/10/04 16:45:20 lmacken Exp $ NAME := valknut SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 5b140dacdcc467f37e1812d299ed4c839c555eae Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:11:44 +0000 Subject: [PATCH 04/19] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b070905..2f33825 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: valknut -# $Id$ +# $Id: Makefile,v 1.1 2005/10/04 16:45:20 lmacken Exp $ NAME := valknut SPECFILE = $(firstword $(wildcard *.spec)) define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done +for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done endef MAKEFILE_COMMON := $(shell $(find-makefile-common)) From 866e3f9b9354f6b2c901990c3bb8641c00676a59 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 17 Feb 2010 03:24:12 +0000 Subject: [PATCH 05/19] Initialize branch F-13 for valknut --- branch | 1 + 1 file changed, 1 insertion(+) create mode 100644 branch diff --git a/branch b/branch new file mode 100644 index 0000000..baa94ef --- /dev/null +++ b/branch @@ -0,0 +1 @@ +F-13 From cd96af0020716686d411cee7084d2fa5f04abe72 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:53:15 +0000 Subject: [PATCH 06/19] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2f33825..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: valknut -# $Id: Makefile,v 1.1 2005/10/04 16:45:20 lmacken Exp $ -NAME := valknut -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index baa94ef..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-13 From 9bb22071249ee4d8965b938276282e5ec256ac17 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:53:19 +0000 Subject: [PATCH 07/19] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- 2 files changed, 21 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2f33825..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: valknut -# $Id: Makefile,v 1.1 2005/10/04 16:45:20 lmacken Exp $ -NAME := valknut -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) From 095b9e768b34f61e7b3a9d295e1b7f1fd4fc69f2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 29 Jul 2010 14:53:23 +0000 Subject: [PATCH 08/19] dist-git conversion --- .cvsignore => .gitignore | 0 Makefile | 21 --------------------- branch | 1 - 3 files changed, 22 deletions(-) rename .cvsignore => .gitignore (100%) delete mode 100644 Makefile delete mode 100644 branch diff --git a/.cvsignore b/.gitignore similarity index 100% rename from .cvsignore rename to .gitignore diff --git a/Makefile b/Makefile deleted file mode 100644 index 2f33825..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: valknut -# $Id: Makefile,v 1.1 2005/10/04 16:45:20 lmacken Exp $ -NAME := valknut -SPECFILE = $(firstword $(wildcard *.spec)) - -define find-makefile-common -for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done -endef - -MAKEFILE_COMMON := $(shell $(find-makefile-common)) - -ifeq ($(MAKEFILE_COMMON),) -# attept a checkout -define checkout-makefile-common -test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2 -endef - -MAKEFILE_COMMON := $(shell $(checkout-makefile-common)) -endif - -include $(MAKEFILE_COMMON) diff --git a/branch b/branch deleted file mode 100644 index 25c7708..0000000 --- a/branch +++ /dev/null @@ -1 +0,0 @@ -F-11 From af1b8443e256a406d1daf4a92b4600c4817d0560 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 18:54:47 -0600 Subject: [PATCH 09/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index aa071c8..fe63a59 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 0.4.9-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Sun Jul 26 2009 Fedora Release Engineering - 0.4.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From d65dc61ad48101b356c009fab29e749978b35006 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 14 Jan 2012 01:44:35 -0600 Subject: [PATCH 10/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index fe63a59..76afbfc 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -64,6 +64,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Sat Jan 14 2012 Fedora Release Engineering - 0.4.9-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Feb 07 2011 Fedora Release Engineering - 0.4.9-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From 2f2c7621a22af90a2134a3577b86f0d7372b3717 Mon Sep 17 00:00:00 2001 From: Milos Jakubicek Date: Sat, 21 Jan 2012 15:40:21 +0100 Subject: [PATCH 11/19] fix build with gcc 4.7 --- valknut-gcc4.7.patch | 10 ++++++++++ valknut.spec | 9 ++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 valknut-gcc4.7.patch diff --git a/valknut-gcc4.7.patch b/valknut-gcc4.7.patch new file mode 100644 index 0000000..e0c14ad --- /dev/null +++ b/valknut-gcc4.7.patch @@ -0,0 +1,10 @@ +--- valknut/main.cpp.orig 2012-01-20 10:57:33.179724911 +0100 ++++ valknut/main.cpp 2012-01-20 14:33:48.958199340 +0100 +@@ -22,6 +22,7 @@ + #endif + + #include ++#include + #ifndef WIN32 + #include + #endif diff --git a/valknut.spec b/valknut.spec index 76afbfc..be3e3ae 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -10,6 +10,9 @@ Source0: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}.tar.bz2 Source1: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}-oxygen-icons.tar.gz Source2: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}-gnome-icons.tar.gz Source3: valknut.desktop +# Patch to build with gcc 4.7, filed into upstream bugtracker as: +# https://sourceforge.net/tracker/?func=detail&aid=3477008&group_id=181579&atid=897767 +Patch0: valknut-gcc4.7.patch BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: dclib-devel >= 0.3.23 @@ -24,6 +27,7 @@ derivatives. Valknut also interoperates with all common DC hub software. %prep %setup -q +%patch0 %build %configure --enable-mt @@ -64,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Fri Jan 20 2012 Miloš Jakubíček - 0.4.9-6 +- Fix building with gcc 4.7 (added valknut-gcc4.7.patch) + * Sat Jan 14 2012 Fedora Release Engineering - 0.4.9-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From c3561dd1db10bc8eec9796b57ea0b96345d1b06d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 21 Jul 2012 21:24:33 -0500 Subject: [PATCH 12/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index be3e3ae..cb00e0a 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -68,6 +68,9 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Sun Jul 22 2012 Fedora Release Engineering - 0.4.9-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Fri Jan 20 2012 Miloš Jakubíček - 0.4.9-6 - Fix building with gcc 4.7 (added valknut-gcc4.7.patch) From 8863d7fbc6d2320067dd177d1e32e1f547a7858d Mon Sep 17 00:00:00 2001 From: Parag Nemade Date: Sat, 9 Feb 2013 21:40:42 +0530 Subject: [PATCH 13/19] Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077 - spec cleanup --- valknut.spec | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/valknut.spec b/valknut.spec index cb00e0a..1d3001e 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -13,7 +13,6 @@ Source3: valknut.desktop # Patch to build with gcc 4.7, filed into upstream bugtracker as: # https://sourceforge.net/tracker/?func=detail&aid=3477008&group_id=181579&atid=897767 Patch0: valknut-gcc4.7.patch -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRequires: dclib-devel >= 0.3.23 BuildRequires: qt-devel, desktop-file-utils, bzip2-devel @@ -35,28 +34,22 @@ make -k %{?_smp_mflags} %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" rm ${RPM_BUILD_ROOT}%{_datadir}/applications/valknut.desktop # install oxygen icon theme tar xzf %{SOURCE1} -C ${RPM_BUILD_ROOT}%{_datadir}/%{name}/icons/appl # install gnome icons theme tar xzf %{SOURCE2} -C ${RPM_BUILD_ROOT}%{_datadir}/%{name}/icons/appl -desktop-file-install --vendor fedora \ +desktop-file-install \ --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ %{SOURCE3} -%clean -rm -rf $RPM_BUILD_ROOT - - %files -%defattr(-,root,root,-) %doc AUTHORS README COPYING %{_bindir}/valknut %{_datadir}/valknut -%{_datadir}/applications/fedora-valknut.desktop +%{_datadir}/applications/valknut.desktop %{_datadir}/pixmaps/valknut.png %{_datadir}/icons/hicolor/128x128/apps/valknut.png %{_datadir}/icons/hicolor/16x16/apps/valknut.png @@ -68,6 +61,10 @@ rm -rf $RPM_BUILD_ROOT %{_mandir}/man1/valknut.1.gz %changelog +* Sat Feb 09 2013 Parag Nemade - 0.4.9-8 +- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077 +- spec cleanup + * Sun Jul 22 2012 Fedora Release Engineering - 0.4.9-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From b69b48f981f7c9e98da92da556049b2e59f2ba36 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 00:54:35 -0500 Subject: [PATCH 14/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index 1d3001e..135eccb 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -61,6 +61,9 @@ desktop-file-install \ %{_mandir}/man1/valknut.1.gz %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.4.9-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Sat Feb 09 2013 Parag Nemade - 0.4.9-8 - Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077 - spec cleanup From e04caf06fe0e163d4c03b284bd7a76e9e8b41c7d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sat, 7 Jun 2014 22:15:04 -0500 Subject: [PATCH 15/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index 135eccb..fdd562d 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -61,6 +61,9 @@ desktop-file-install \ %{_mandir}/man1/valknut.1.gz %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.4.9-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.4.9-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 1686c9b43cf59b511a3c155fe03829a192028e48 Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Mon, 18 Aug 2014 07:27:52 +0000 Subject: [PATCH 16/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index fdd562d..90223cc 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -61,6 +61,9 @@ desktop-file-install \ %{_mandir}/man1/valknut.1.gz %changelog +* Mon Aug 18 2014 Fedora Release Engineering - 0.4.9-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sun Jun 08 2014 Fedora Release Engineering - 0.4.9-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From c4295b158dce7b9de9901494c6c7dab706904106 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sun, 3 May 2015 00:20:41 +0200 Subject: [PATCH 17/19] Rebuilt for GCC 5 C++11 ABI change --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index 90223cc..fe9cb35 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -61,6 +61,9 @@ desktop-file-install \ %{_mandir}/man1/valknut.1.gz %changelog +* Sat May 02 2015 Kalev Lember - 0.4.9-12 +- Rebuilt for GCC 5 C++11 ABI change + * Mon Aug 18 2014 Fedora Release Engineering - 0.4.9-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From fb05705046178d0e17e85791c1be8b29574b09d3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 01:48:37 +0000 Subject: [PATCH 18/19] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- valknut.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/valknut.spec b/valknut.spec index fe9cb35..6020f0a 100644 --- a/valknut.spec +++ b/valknut.spec @@ -1,6 +1,6 @@ Name: valknut Version: 0.4.9 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Valknut is a QT Direct Connect client Group: Applications/Internet @@ -61,6 +61,9 @@ desktop-file-install \ %{_mandir}/man1/valknut.1.gz %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.4.9-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat May 02 2015 Kalev Lember - 0.4.9-12 - Rebuilt for GCC 5 C++11 ABI change From 567b51e7686477967f92ec5566540c008b56dcec Mon Sep 17 00:00:00 2001 From: Till Maas Date: Sun, 6 Dec 2015 16:58:53 +0100 Subject: [PATCH 19/19] 2015-12-06: Retired orphaned package, because it was orphaned for more than six weeks. --- .gitignore | 3 - dead.package | 3 + sources | 3 - valknut-gcc4.7.patch | 10 --- valknut.desktop | 9 --- valknut.spec | 181 ------------------------------------------- 6 files changed, 3 insertions(+), 206 deletions(-) delete mode 100644 .gitignore create mode 100644 dead.package delete mode 100644 sources delete mode 100644 valknut-gcc4.7.patch delete mode 100644 valknut.desktop delete mode 100644 valknut.spec diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 121910b..0000000 --- a/.gitignore +++ /dev/null @@ -1,3 +0,0 @@ -valknut-0.4.9.tar.bz2 -valknut-0.4.9-oxygen-icons.tar.gz -valknut-0.4.9-gnome-icons.tar.gz diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..0164146 --- /dev/null +++ b/dead.package @@ -0,0 +1,3 @@ +2015-12-06: Retired orphaned package, because it was orphaned for +more than six weeks. + diff --git a/sources b/sources deleted file mode 100644 index f72a124..0000000 --- a/sources +++ /dev/null @@ -1,3 +0,0 @@ -c25d68c447cb9deb4262befdde9fccea valknut-0.4.9.tar.bz2 -d239bde0200907a7912e30f10d9aef9f valknut-0.4.9-oxygen-icons.tar.gz -5e41ef96a728a7bef7a4f64e86c60cdc valknut-0.4.9-gnome-icons.tar.gz diff --git a/valknut-gcc4.7.patch b/valknut-gcc4.7.patch deleted file mode 100644 index e0c14ad..0000000 --- a/valknut-gcc4.7.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- valknut/main.cpp.orig 2012-01-20 10:57:33.179724911 +0100 -+++ valknut/main.cpp 2012-01-20 14:33:48.958199340 +0100 -@@ -22,6 +22,7 @@ - #endif - - #include -+#include - #ifndef WIN32 - #include - #endif diff --git a/valknut.desktop b/valknut.desktop deleted file mode 100644 index a3c0f35..0000000 --- a/valknut.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Valknut -Comment=Direct Connect client -Icon=valknut -Exec=valknut --disable-tray -Terminal=false -Type=Application -Categories=Network;Application;X-Fedora; diff --git a/valknut.spec b/valknut.spec deleted file mode 100644 index 6020f0a..0000000 --- a/valknut.spec +++ /dev/null @@ -1,181 +0,0 @@ -Name: valknut -Version: 0.4.9 -Release: 13%{?dist} -Summary: Valknut is a QT Direct Connect client - -Group: Applications/Internet -License: GPLv2+ and LGPLv3+ -URL: http://sourceforge.net/projects/wxdcgui/ -Source0: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}.tar.bz2 -Source1: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}-oxygen-icons.tar.gz -Source2: http://dl.sourceforge.net/wxdcgui/%{name}-%{version}-gnome-icons.tar.gz -Source3: valknut.desktop -# Patch to build with gcc 4.7, filed into upstream bugtracker as: -# https://sourceforge.net/tracker/?func=detail&aid=3477008&group_id=181579&atid=897767 -Patch0: valknut-gcc4.7.patch - -BuildRequires: dclib-devel >= 0.3.23 -BuildRequires: qt-devel, desktop-file-utils, bzip2-devel -BuildRequires: openssl-devel - -%description -Valknut is a program that uses the Direct Connect protocol. It is compatible -with other DC clients, such as the original DC from Neomodus, DC++ and -derivatives. Valknut also interoperates with all common DC hub software. - - -%prep -%setup -q -%patch0 - -%build -%configure --enable-mt -make -k %{?_smp_mflags} - - -%install -make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p" -rm ${RPM_BUILD_ROOT}%{_datadir}/applications/valknut.desktop -# install oxygen icon theme -tar xzf %{SOURCE1} -C ${RPM_BUILD_ROOT}%{_datadir}/%{name}/icons/appl -# install gnome icons theme -tar xzf %{SOURCE2} -C ${RPM_BUILD_ROOT}%{_datadir}/%{name}/icons/appl - -desktop-file-install \ - --dir ${RPM_BUILD_ROOT}%{_datadir}/applications \ - %{SOURCE3} - -%files -%doc AUTHORS README COPYING -%{_bindir}/valknut -%{_datadir}/valknut -%{_datadir}/applications/valknut.desktop -%{_datadir}/pixmaps/valknut.png -%{_datadir}/icons/hicolor/128x128/apps/valknut.png -%{_datadir}/icons/hicolor/16x16/apps/valknut.png -%{_datadir}/icons/hicolor/22x22/apps/valknut.png -%{_datadir}/icons/hicolor/24x24/apps/valknut.png -%{_datadir}/icons/hicolor/32x32/apps/valknut.png -%{_datadir}/icons/hicolor/48x48/apps/valknut.png -%{_datadir}/icons/hicolor/64x64/apps/valknut.png -%{_mandir}/man1/valknut.1.gz - -%changelog -* Fri Jun 19 2015 Fedora Release Engineering - 0.4.9-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat May 02 2015 Kalev Lember - 0.4.9-12 -- Rebuilt for GCC 5 C++11 ABI change - -* Mon Aug 18 2014 Fedora Release Engineering - 0.4.9-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sun Jun 08 2014 Fedora Release Engineering - 0.4.9-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 0.4.9-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sat Feb 09 2013 Parag Nemade - 0.4.9-8 -- Remove vendor tag from desktop file as per https://fedorahosted.org/fesco/ticket/1077 -- spec cleanup - -* Sun Jul 22 2012 Fedora Release Engineering - 0.4.9-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Fri Jan 20 2012 Miloš Jakubíček - 0.4.9-6 -- Fix building with gcc 4.7 (added valknut-gcc4.7.patch) - -* Sat Jan 14 2012 Fedora Release Engineering - 0.4.9-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Mon Feb 07 2011 Fedora Release Engineering - 0.4.9-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Sun Jul 26 2009 Fedora Release Engineering - 0.4.9-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Wed Feb 25 2009 Fedora Release Engineering - 0.4.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - - -* Mon Feb 16 2009 Milos Jakubicek - 0.4.9-1 -- Update to 0.4.9 -- Removed gcc4.4 patch (merged upstream) -- Fixed typo in description -- Fixed license tag -- Added oxygen/gnome icons themes as sources - -* Wed Feb 4 2009 Milos Jakubicek - 0.4.8-2 -- Added valknut-gcc44.patch to fix the build with gcc 4.4 - -* Wed Jan 28 2009 Milos Jakubicek - 0.4.8-1 -- Update to 0.4.8 -- Switch to QT4 -- Removed Source2:valknut.png (part of the source package now) -- Fixed desktop file -- Man pages -- Many bugfixes, code cleanup etc. -- Upload slot changes -- Major feature changes (together with dclib) mentioned in NEWS from 0.4.0 to 0.4.7: - 0.4.6: Segment size adjustable, Download folders from search, Warnings about settings, - 0.4.5: More search results returned, Switching active/passive mode, StrongDC compatible encryption, - Partial list uploads, Search window improvements, User list icon changes - 0.4.0: Nick tab completion improvements, Chat command improvements, Filelist storage changes, - Public hubs display improved, /rebuild command fixed and improved, Folder search results - -* Sun Jan 18 2009 Tomas Mraz 0.3.11-5 -- rebuild with new openssl - -* Fri Apr 04 2008 Luke Macken 0.3.11-4 -- Add qt3-devel to BuildRequires to fix build issue (#440837) - -* Fri Feb 8 2008 Luke Macken 0.3.11-3 -- Rebuild for gcc 4.3 - -* Wed Dec 5 2007 Luke Macken 0.3.11-2 -- Rebuild - -* Sun Oct 14 2007 Luke Macken 0.3.11-1 -- 0.3.11 - -* Tue Aug 27 2007 Luke Macken 0.3.10-1 -- 0.3.10 -- Update License to GPLv2 - -* Sat Mar 3 2007 Luke Macken 0.3.8.1-1 -- 0.3.8.1 - -* Mon Jan 3 2007 Luke Macken 0.3.8-1 -- 0.3.8 from new upstream -- Remove valknut-0.3.7-extra-qualification.patch - -* Sun Sep 3 2006 Luke Macken 0.3.7-9 -- Rebuild for FC6 - -* Sun Apr 30 2006 Luke Macken 0.3.7-8 -- Execute with --disable-tray in desktop file, since it is horribly broken. - -* Tue Feb 28 2006 Luke Macken 0.3.7-7 -- Add patch to remove extra qualification build error - -* Wed Feb 15 2006 Luke Macken 0.3.7-6 -- Rebuild for FE5 - -* Wed Nov 09 2005 Luke Macken 0.3.7-5 -- Rebuild for new openssl - -* Tue Oct 03 2005 Luke Macken 0.3.7-4 -- Add openssl-devel to BuildRequires - -* Mon Oct 03 2005 Luke Macken 0.3.7-3 -- Add bzip2-devel to BuildRequires - -* Mon Oct 03 2005 Luke Macken 0.3.7-2 -- Requires desktop-file-utils -- Use environment variables instead of hardcoding QTDIR -- Remove duplicate category from desktop file -- Use -p when calling 'install' - -* Thu Sep 29 2005 Luke Macken 0.3.7-1 -- Packaged for Fedora Extras