From 9b17fc23250dffe3b0ad8268a55d19d6f873247c Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Wed, 15 Apr 2009 06:41:38 +0000 Subject: [PATCH 01/28] Initialize branch F-11 for angrydd --- 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 e252ca69505857c0b9b463fced90661d0a1d9030 Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Fri, 24 Jul 2009 16:52:36 +0000 Subject: [PATCH 02/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 86b8644..c4b3ffa 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild From 9551fed0938366e7f77db7292963914a225b44b8 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Wed, 25 Nov 2009 22:39:47 +0000 Subject: [PATCH 03/28] 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 67db11c..bd88ffe 100644 --- a/Makefile +++ b/Makefile @@ -1,10 +1,10 @@ # Makefile for source rpm: angrydd -# $Id$ +# $Id: Makefile,v 1.1 2007/07/16 21:53:08 wtogami Exp $ NAME := angrydd 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 264f390dc9494b192f3aa6a6954501e973bf02a2 Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Thu, 26 Nov 2009 01:27:41 +0000 Subject: [PATCH 04/28] Fix typo that causes a failure to update the common directory. (releng #2781) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 67db11c..f323bd0 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ NAME := angrydd 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 2eb16af7a68d8382f710a8e28e9ea6642460944c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 10:00:01 +0000 Subject: [PATCH 05/28] 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 bd88ffe..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: angrydd -# $Id: Makefile,v 1.1 2007/07/16 21:53:08 wtogami Exp $ -NAME := angrydd -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 c227be947515cfc6bb71bdb89c3f33fe0e975ea1 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 28 Jul 2010 10:00:05 +0000 Subject: [PATCH 06/28] 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 f323bd0..0000000 --- a/Makefile +++ /dev/null @@ -1,21 +0,0 @@ -# Makefile for source rpm: angrydd -# $Id$ -NAME := angrydd -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 94623e7f398ea91d4baa41ab1e98026ec98a95eb Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Mon, 7 Feb 2011 19:11:57 -0600 Subject: [PATCH 07/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index c4b3ffa..eda1dd6 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Feb 07 2011 Fedora Release Engineering - 1.0.1-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + * Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild From a38b5e409ba2a5e2396c13f4086c38df81892060 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Wed, 22 Jun 2011 19:26:43 -0500 Subject: [PATCH 08/28] gtk2 req. --- angrydd.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/angrydd.spec b/angrydd.spec index eda1dd6..3b32bc8 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -13,7 +13,7 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: desktop-file-utils -Requires: pygame hicolor-icon-theme +Requires: pygame hicolor-icon-theme gtk2 %description In Angry, Drunken Dwarves (ADD), you are an angry, drunken dwarf. Why are you @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jun 22 2011 Jon Ciesla - 1.0.1-7 +- Explicitly require gtk2 for gtk-update-icon-cache, BZ 715424. + * Mon Feb 07 2011 Fedora Release Engineering - 1.0.1-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild From c86e93dd3f20073162caf22e50c0862049559e47 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 15:16:44 -0600 Subject: [PATCH 09/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 3b32bc8..dde9d64 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 1.0.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Wed Jun 22 2011 Jon Ciesla - 1.0.1-7 - Explicitly require gtk2 for gtk-update-icon-cache, BZ 715424. From f2b291cdcc2ec7dd1cf778cee97508fe34488279 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 11:00:32 -0500 Subject: [PATCH 10/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index dde9d64..ac443e8 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 1.0.1-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Thu Jan 12 2012 Fedora Release Engineering - 1.0.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 655cca684580d611eaca67068bc355e16ea04b60 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Sat, 9 Feb 2013 14:46:08 -0600 Subject: [PATCH 11/28] Drop vendor tag. --- angrydd.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/angrydd.spec b/angrydd.spec index ac443e8..0e2f26c 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -45,7 +45,7 @@ make install DESTDIR=$RPM_BUILD_ROOT mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/64x64/apps cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/64x64/apps/ -desktop-file-install --vendor="fedora" \ +desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE3} @@ -67,11 +67,14 @@ rm -rf $RPM_BUILD_ROOT %{_bindir}/* %{_datadir}/%{name} %{_mandir}/man*/* -%{_datadir}/applications/fedora-%{name}.desktop +%{_datadir}/applications/%{name}.desktop %{_datadir}/icons/hicolor/64x64/apps/%{name}.png %changelog +* Sat Feb 09 2013 Jon Ciesla - 1.0.1-10 +- Drop desktop vendor tag. + * Wed Jul 18 2012 Fedora Release Engineering - 1.0.1-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 75053c04b832a0e7f39c7c3fcf77e5b134b154ff Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:48:05 -0500 Subject: [PATCH 12/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 0e2f26c..095e047 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.0.1-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Sat Feb 09 2013 Jon Ciesla - 1.0.1-10 - Drop desktop vendor tag. From c92e1571ee40269e12dfbd3c3bea312000261b28 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:42:33 -0500 Subject: [PATCH 13/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 095e047..6beaf91 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.0.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sat Aug 03 2013 Fedora Release Engineering - 1.0.1-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 07280b1b64f2aab741454884b557026edd70eeb4 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:55:05 +0000 Subject: [PATCH 14/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 6beaf91..88bb6f3 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.0.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.0.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 5df3cdefcc404e36f1467bf4f508f11d2dd3085c Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 16:11:46 +0000 Subject: [PATCH 15/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 88bb6f3..d162ac9 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.0.1-14 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Tue Jun 16 2015 Fedora Release Engineering - 1.0.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From fa86a27ae2e8611434a6c597448cd0f0978e8279 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:58:20 +0000 Subject: [PATCH 16/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index d162ac9..715c858 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.0.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Wed Feb 03 2016 Fedora Release Engineering - 1.0.1-14 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 79300c049ff9180d58c34490e1fba9ce71f58ef4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:52:33 +0000 Subject: [PATCH 17/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 715c858..b9f6ab8 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -72,6 +72,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.0.1-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.0.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From 75bcd236e2bcbfe560389a02b059afe8d3fec56b Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 7 Jan 2018 19:10:17 +0100 Subject: [PATCH 18/28] Remove obsolete scriptlets Signed-off-by: Igor Gnatenko --- angrydd.spec | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/angrydd.spec b/angrydd.spec index b9f6ab8..b76ffa0 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -49,17 +49,6 @@ desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE3} -%post -touch --no-create %{_datadir}/icons/hicolor || : -%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : - -%postun -touch --no-create %{_datadir}/icons/hicolor || : -%{_bindir}/gtk-update-icon-cache --quiet %{_datadir}/icons/hicolor || : - -%clean -rm -rf $RPM_BUILD_ROOT - %files %defattr(-,root,root,-) @@ -72,6 +61,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jan 07 2018 Igor Gnatenko - 1.0.1-17 +- Remove obsolete scriptlets + * Wed Jul 26 2017 Fedora Release Engineering - 1.0.1-16 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild @@ -116,4 +108,4 @@ rm -rf $RPM_BUILD_ROOT * Sun Jul 15 2007 Rafał Psota 1.0.1-2 - fixed typo in .desktop * Sun May 27 2007 Rafał Psota 1.0.1-1 -- initial Fedora package \ No newline at end of file +- initial Fedora package From a2240bfddb45054f08679d2b39f17a51fd58c632 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 02:17:07 +0000 Subject: [PATCH 19/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index b76ffa0..faf7a53 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 17%{?dist} +Release: 18%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -61,6 +61,9 @@ desktop-file-install \ %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.0.1-18 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Sun Jan 07 2018 Igor Gnatenko - 1.0.1-17 - Remove obsolete scriptlets From 88e222a4ddc34b424ef3325131a50329a51e5786 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:01:39 +0100 Subject: [PATCH 20/28] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- angrydd.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index faf7a53..abaabbc 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -9,7 +9,6 @@ URL: http://www.sacredchao.net/~piman/angrydd/ Source0: http://www.sacredchao.net/~piman/%{name}/%{name}-%{version}.tar.gz Source1: %{name}.png Source3: %{name}.desktop -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch BuildRequires: desktop-file-utils From 39f77c49c81ddce59531f047c1d000f503249718 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:10:32 -0500 Subject: [PATCH 21/28] Remove needless use of %defattr --- angrydd.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index abaabbc..b06aede 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -50,7 +50,6 @@ desktop-file-install \ %files -%defattr(-,root,root,-) %doc COPYING README TODO %{_bindir}/* %{_datadir}/%{name} From 608a1e655b6326984b1349ef26531138765dc270 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 20:13:53 +0000 Subject: [PATCH 22/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index b06aede..3d81de6 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 18%{?dist} +Release: 19%{?dist} Summary: Falling blocks game Group: Amusements/Games @@ -59,6 +59,9 @@ desktop-file-install \ %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.0.1-19 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Wed Feb 07 2018 Fedora Release Engineering - 1.0.1-18 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 6d5600aab1b47af824b26ec46e4466f6285493f7 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 10 Sep 2018 09:35:34 -0500 Subject: [PATCH 23/28] Fix shebang handling. --- angrydd.spec | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/angrydd.spec b/angrydd.spec index 3d81de6..ff88721 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,9 +1,8 @@ Name: angrydd Version: 1.0.1 -Release: 19%{?dist} +Release: 20%{?dist} Summary: Falling blocks game -Group: Amusements/Games License: GPLv2 URL: http://www.sacredchao.net/~piman/angrydd/ Source0: http://www.sacredchao.net/~piman/%{name}/%{name}-%{version}.tar.gz @@ -12,7 +11,8 @@ Source3: %{name}.desktop BuildArch: noarch BuildRequires: desktop-file-utils -Requires: pygame hicolor-icon-theme gtk2 +BuildRequires: /usr/bin/pathfix.py +Requires: python2-pygame hicolor-icon-theme gtk2 %description In Angry, Drunken Dwarves (ADD), you are an angry, drunken dwarf. Why are you @@ -24,6 +24,7 @@ then break them, raining more gems down onto your opponent. The first person whose field fills up, loses. %prep +pathfix.py -pni "%{__python2} %{py2_shbang_opts}" . %setup -q sed -i 's|PREFIX ?= /usr/local|PREFIX ?= %{_prefix}|' Makefile @@ -48,6 +49,7 @@ desktop-file-install \ --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ %{SOURCE3} +pathfix.py -pni "%{__python2} %{py2_shbang_opts}" $RPM_BUILD_ROOT%{_datadir}/%{name}/angrydd.py %files %doc COPYING README TODO @@ -59,6 +61,9 @@ desktop-file-install \ %changelog +* Mon Sep 10 2018 Gwyn Ciesla - 1.0.1-20 +- Fix shebangs. + * Thu Jul 12 2018 Fedora Release Engineering - 1.0.1-19 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 39b03c23c7fd599cb8fa49754ad967fb4cff6a57 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 10 Sep 2018 09:59:47 -0500 Subject: [PATCH 24/28] BR --- angrydd.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index ff88721..c31b095 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -11,7 +11,7 @@ Source3: %{name}.desktop BuildArch: noarch BuildRequires: desktop-file-utils -BuildRequires: /usr/bin/pathfix.py +BuildRequires: /usr/bin/pathfix.py python2-devel Requires: python2-pygame hicolor-icon-theme gtk2 %description From 97ed8498563d15005210a3005adf28aa00ca5e78 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 13:19:30 +0000 Subject: [PATCH 25/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index c31b095..e3591a2 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 20%{?dist} +Release: 21%{?dist} Summary: Falling blocks game License: GPLv2 @@ -61,6 +61,9 @@ pathfix.py -pni "%{__python2} %{py2_shbang_opts}" $RPM_BUILD_ROOT%{_datadir}/%{n %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.0.1-21 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Mon Sep 10 2018 Gwyn Ciesla - 1.0.1-20 - Fix shebangs. From 19b6b6a37f199c510db9c491c7cf94c14050daa9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:54:41 +0000 Subject: [PATCH 26/28] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- angrydd.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index e3591a2..10cb9ca 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 21%{?dist} +Release: 22%{?dist} Summary: Falling blocks game License: GPLv2 @@ -61,6 +61,9 @@ pathfix.py -pni "%{__python2} %{py2_shbang_opts}" $RPM_BUILD_ROOT%{_datadir}/%{n %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.0.1-22 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jan 31 2019 Fedora Release Engineering - 1.0.1-21 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 9951ab087081b2e18f0216cca8499dc8c2fa0939 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 29 Oct 2019 16:32:54 +0100 Subject: [PATCH 27/28] Explicitly require NumPy for pygame.surfarray surfarray is a part of Pygame that requires NumPy, but pygame is otherwise usable without it. See: https://www.pygame.org/docs/ref/surfarray.html --- angrydd.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/angrydd.spec b/angrydd.spec index 10cb9ca..69fb57e 100644 --- a/angrydd.spec +++ b/angrydd.spec @@ -1,6 +1,6 @@ Name: angrydd Version: 1.0.1 -Release: 22%{?dist} +Release: 23%{?dist} Summary: Falling blocks game License: GPLv2 @@ -14,6 +14,9 @@ BuildRequires: desktop-file-utils BuildRequires: /usr/bin/pathfix.py python2-devel Requires: python2-pygame hicolor-icon-theme gtk2 +# Requirement for pygame.surfarray: +Requires: python2-numpy + %description In Angry, Drunken Dwarves (ADD), you are an angry, drunken dwarf. Why are you so angry? Who knows. But you've decided to take your aggression out on other @@ -61,6 +64,10 @@ pathfix.py -pni "%{__python2} %{py2_shbang_opts}" $RPM_BUILD_ROOT%{_datadir}/%{n %changelog +* Tue Oct 29 2019 Petr Viktorin - 1.0.1-23 +- Explicitly require NumPy for pygame.surfarray + See: https://www.pygame.org/docs/ref/surfarray.html + * Wed Jul 24 2019 Fedora Release Engineering - 1.0.1-22 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 8a2dd53e7588bbab3c0f11b41707d49ea28825c7 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Mon, 2 Dec 2019 10:13:48 -0600 Subject: [PATCH 28/28] Python 2 only. --- .gitignore | 1 - angrydd.desktop | 9 ---- angrydd.png | Bin 5479 -> 0 bytes angrydd.spec | 133 ------------------------------------------------ dead.package | 1 + sources | 1 - 6 files changed, 1 insertion(+), 144 deletions(-) delete mode 100644 .gitignore delete mode 100644 angrydd.desktop delete mode 100644 angrydd.png delete mode 100644 angrydd.spec create mode 100644 dead.package delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 1e014b6..0000000 --- a/.gitignore +++ /dev/null @@ -1 +0,0 @@ -angrydd-1.0.1.tar.gz diff --git a/angrydd.desktop b/angrydd.desktop deleted file mode 100644 index 98ebf55..0000000 --- a/angrydd.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Angry Drunken Dwarves -Comment=Build large gems, break them and defeat your opponent -Exec=angrydd -Icon=angrydd.png -Terminal=false -Type=Application -Categories=Game;BlocksGame; diff --git a/angrydd.png b/angrydd.png deleted file mode 100644 index 1fca46651d91bf8bc77b43ea8408585378fd26dc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5479 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 diff --git a/angrydd.spec b/angrydd.spec deleted file mode 100644 index 69fb57e..0000000 --- a/angrydd.spec +++ /dev/null @@ -1,133 +0,0 @@ -Name: angrydd -Version: 1.0.1 -Release: 23%{?dist} -Summary: Falling blocks game - -License: GPLv2 -URL: http://www.sacredchao.net/~piman/angrydd/ -Source0: http://www.sacredchao.net/~piman/%{name}/%{name}-%{version}.tar.gz -Source1: %{name}.png -Source3: %{name}.desktop -BuildArch: noarch - -BuildRequires: desktop-file-utils -BuildRequires: /usr/bin/pathfix.py python2-devel -Requires: python2-pygame hicolor-icon-theme gtk2 - -# Requirement for pygame.surfarray: -Requires: python2-numpy - -%description -In Angry, Drunken Dwarves (ADD), you are an angry, drunken dwarf. Why are you -so angry? Who knows. But you've decided to take your aggression out on other -dwarves, by dropping gems on their heads. Lots of gems. ADD is a member of the -classic "falling blocks" puzzle game family, similar to the Capcom game Puzzle -Fighter. The goal of the game is to build large gems by matching up colors, -then break them, raining more gems down onto your opponent. The first person -whose field fills up, loses. - -%prep -pathfix.py -pni "%{__python2} %{py2_shbang_opts}" . -%setup -q - -sed -i 's|PREFIX ?= /usr/local|PREFIX ?= %{_prefix}|' Makefile -sed -i 's|TO = share/games/angrydd|TO = share/angrydd|' Makefile -sed -i 's|install -m 644|install -p -m 644|' Makefile -sed -i 's|cp -R|cp -Rp|' Makefile -sed -i 's|install -d $(DESTDIR)$(PREFIX)/games|install -d $(DESTDIR)%{_bindir}|' Makefile -sed -i 's|ln -sf ../$(TO)/angrydd.py $(DESTDIR)$(PREFIX)/games/angrydd|ln -sf ../$(TO)/angrydd.py $(DESTDIR)%{_bindir}/angrydd|' Makefile - - -%build -#there's nothing to build - - -%install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT -mkdir -p $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/64x64/apps -cp -p %{SOURCE1} $RPM_BUILD_ROOT%{_datadir}/icons/hicolor/64x64/apps/ - -desktop-file-install \ - --dir=$RPM_BUILD_ROOT%{_datadir}/applications \ - %{SOURCE3} - -pathfix.py -pni "%{__python2} %{py2_shbang_opts}" $RPM_BUILD_ROOT%{_datadir}/%{name}/angrydd.py - -%files -%doc COPYING README TODO -%{_bindir}/* -%{_datadir}/%{name} -%{_mandir}/man*/* -%{_datadir}/applications/%{name}.desktop -%{_datadir}/icons/hicolor/64x64/apps/%{name}.png - - -%changelog -* Tue Oct 29 2019 Petr Viktorin - 1.0.1-23 -- Explicitly require NumPy for pygame.surfarray - See: https://www.pygame.org/docs/ref/surfarray.html - -* Wed Jul 24 2019 Fedora Release Engineering - 1.0.1-22 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jan 31 2019 Fedora Release Engineering - 1.0.1-21 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Mon Sep 10 2018 Gwyn Ciesla - 1.0.1-20 -- Fix shebangs. - -* Thu Jul 12 2018 Fedora Release Engineering - 1.0.1-19 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Wed Feb 07 2018 Fedora Release Engineering - 1.0.1-18 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Sun Jan 07 2018 Igor Gnatenko - 1.0.1-17 -- Remove obsolete scriptlets - -* Wed Jul 26 2017 Fedora Release Engineering - 1.0.1-16 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.0.1-15 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Wed Feb 03 2016 Fedora Release Engineering - 1.0.1-14 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Tue Jun 16 2015 Fedora Release Engineering - 1.0.1-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 1.0.1-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sat Aug 03 2013 Fedora Release Engineering - 1.0.1-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sat Feb 09 2013 Jon Ciesla - 1.0.1-10 -- Drop desktop vendor tag. - -* Wed Jul 18 2012 Fedora Release Engineering - 1.0.1-9 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Thu Jan 12 2012 Fedora Release Engineering - 1.0.1-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Jun 22 2011 Jon Ciesla - 1.0.1-7 -- Explicitly require gtk2 for gtk-update-icon-cache, BZ 715424. - -* Mon Feb 07 2011 Fedora Release Engineering - 1.0.1-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Fri Jul 24 2009 Fedora Release Engineering - 1.0.1-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Feb 23 2009 Fedora Release Engineering - 1.0.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Sun Aug 19 2007 Rafał Psota 1.0.1-3 -- License tag update -* Sun Jul 15 2007 Rafał Psota 1.0.1-2 -- fixed typo in .desktop -* Sun May 27 2007 Rafał Psota 1.0.1-1 -- initial Fedora package diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..bb567a7 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +Python 2 only. diff --git a/sources b/sources deleted file mode 100644 index a8191f4..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -3b0f9771eaae3ffb23d13576a54075e9 angrydd-1.0.1.tar.gz