From 95b85de3e5f4b97b37af6d15befac56f7187996d Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Wed, 20 Feb 2013 10:49:53 -0600 Subject: [PATCH 01/39] Initial import. --- .gitignore | 1 + sources | 1 + xonotic-data.spec | 65 +++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 67 insertions(+) create mode 100644 xonotic-data.spec diff --git a/.gitignore b/.gitignore index e69de29..dfce620 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/xonotic-data-0.6.0.tar.gz diff --git a/sources b/sources index e69de29..300e483 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +4e7033d5105ad0094e05bd145a72eecb xonotic-data-0.6.0.tar.gz diff --git a/xonotic-data.spec b/xonotic-data.spec new file mode 100644 index 0000000..add37c4 --- /dev/null +++ b/xonotic-data.spec @@ -0,0 +1,65 @@ +%global datadate 20120308 + +Summary: Game data for the Xonotic first person shooter +Name: xonotic-data +Version: 0.6.0 +Release: 3%{?dist} +License: GPLv2+ +Group: Amusements/Games +URL: http://www.xonotic.com/ +# Source is custom, obtained with : +# wget http://dl.xonotic.org/xonotic-%{version}.zip +# unzip xonotic-%{version}.zip +# mkdir xonotic-data-0.6.0/ +# mv Xonotic/data/ Xonotic/Docs/* \ +# Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-0.6.0/ +# tar -czf xonotic-0.6.0.tar.gz xonotic-data-0.6.0/ +Source0: %{name}-%{version}.tar.gz +BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +BuildArch: noarch +Obsoletes: nexuiz-data < 2.5.2 +Provides: nexuiz-data = %{name}-%{version} + +%description +Xonotic is a fast-paced, chaotic, and intense multiplayer first person shooter, +focused on providing basic, old style deathmatches. + +Data (textures, maps, sounds and models) required to play xonotic. + +%prep +%setup -q + +%build + +%install +rm -rf %{buildroot} +mkdir -p %{buildroot}%{_datadir}/xonotic/data/ +install -p data/xonotic-%{datadate}-data.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/xonotic-%{datadate}-maps.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/xonotic-%{datadate}-music.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/xonotic-%{datadate}-nexcompat.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/font-nimbussansl-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/font-xolonium-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ + +%clean +rm -rf %{buildroot} + +%files +%defattr(0644, root, root, 0755) +%doc GPL* COPYING +%{_datadir}/xonotic/ + +%changelog +* Wed Feb 20 2013 Jon Ciesla - 0.6.0-3 +- Fixed Provides. + +* Fri Feb 08 2013 Jon Ciesla - 0.6.0-2 +- Changed define to global. +- De-macroized many commands. + +* Mon Mar 12 2012 Jon Ciesla - 0.6.0-1 +- New upstream. + +* Thu Jan 26 2012 Jon Ciesla - 0.5.0-1 +- Initial version, based on nexuiz-data 2.5.2 package. \ No newline at end of file From b47f5dc997612b136f967f77e581fe62a8cb2ef5 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Fri, 22 Feb 2013 07:55:48 -0600 Subject: [PATCH 02/39] Fixed Obsoletes. --- xonotic-data.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index add37c4..87fc898 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.6.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.com/ @@ -17,7 +17,7 @@ URL: http://www.xonotic.com/ Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch -Obsoletes: nexuiz-data < 2.5.2 +Obsoletes: nexuiz-data <= 2.5.2 Provides: nexuiz-data = %{name}-%{version} %description @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Fri Feb 22 2013 Jon Ciesla - 0.6.0-4 +- Fixed Obsoletes. + * Wed Feb 20 2013 Jon Ciesla - 0.6.0-3 - Fixed Provides. From 2783c0de6bc632e771a7d35343bc5ccd32b8a258 Mon Sep 17 00:00:00 2001 From: Jon Ciesla Date: Fri, 14 Jun 2013 08:00:38 -0500 Subject: [PATCH 03/39] 0.7.0. --- .gitignore | 1 + sources | 2 +- xonotic-data.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index dfce620..7fb417d 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ /xonotic-data-0.6.0.tar.gz +/xonotic-data-0.7.0.tar.gz diff --git a/sources b/sources index 300e483..9dc3cf7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -4e7033d5105ad0094e05bd145a72eecb xonotic-data-0.6.0.tar.gz +0b37ff83aac398bddacd5fd700bd4fde xonotic-data-0.7.0.tar.gz diff --git a/xonotic-data.spec b/xonotic-data.spec index 87fc898..6520583 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20120308 +%global datadate 20130605 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.6.0 -Release: 4%{?dist} +Version: 0.7.0 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.com/ @@ -13,7 +13,7 @@ URL: http://www.xonotic.com/ # mkdir xonotic-data-0.6.0/ # mv Xonotic/data/ Xonotic/Docs/* \ # Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-0.6.0/ -# tar -czf xonotic-0.6.0.tar.gz xonotic-data-0.6.0/ +# tar -czf xonotic-data-0.6.0.tar.gz xonotic-data-0.6.0/ Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Thu Jun 13 2013 Jon Ciesla - 0.7.0-1 +- 0.7.0, BZ 974029. + * Fri Feb 22 2013 Jon Ciesla - 0.6.0-4 - Fixed Obsoletes. From d64e60afb155528e60cfeddced7c223f9421ba6d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 19 Jun 2013 21:48:34 +0400 Subject: [PATCH 04/39] update spec: in custom build info use version macros instead of specific version --- xonotic-data.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 6520583..14d1c39 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,17 +3,17 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.7.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.com/ # Source is custom, obtained with : # wget http://dl.xonotic.org/xonotic-%{version}.zip # unzip xonotic-%{version}.zip -# mkdir xonotic-data-0.6.0/ +# mkdir xonotic-data-%{version}/ # mv Xonotic/data/ Xonotic/Docs/* \ -# Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-0.6.0/ -# tar -czf xonotic-data-0.6.0.tar.gz xonotic-data-0.6.0/ +# Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-%{version}/ +# tar -czf xonotic-data-%{version}.tar.gz xonotic-data-%{version}/ Source0: %{name}-%{version}.tar.gz BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildArch: noarch @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Wed Jun 19 2013 Igor Gnatenko - 0.7.0-2 +- update spec: in custom build info use version macros instead of specific version + * Thu Jun 13 2013 Jon Ciesla - 0.7.0-1 - 0.7.0, BZ 974029. @@ -68,4 +71,4 @@ rm -rf %{buildroot} - New upstream. * Thu Jan 26 2012 Jon Ciesla - 0.5.0-1 -- Initial version, based on nexuiz-data 2.5.2 package. \ No newline at end of file +- Initial version, based on nexuiz-data 2.5.2 package. From 128ab47aaf6cb847c2bb41622134d2141ceae13c Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 26 Jun 2013 08:48:14 +0400 Subject: [PATCH 05/39] Fix incorrect url in spec (rhbz #978022) --- xonotic-data.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 14d1c39..eccaa1f 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,10 +3,10 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.7.0 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games -URL: http://www.xonotic.com/ +URL: http://www.xonotic.org/ # Source is custom, obtained with : # wget http://dl.xonotic.org/xonotic-%{version}.zip # unzip xonotic-%{version}.zip @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Wed Jun 25 2013 Igor Gnatenko - 0.7.0-3 +- Fix incorrect url in spec (rhbz #978022) + * Wed Jun 19 2013 Igor Gnatenko - 0.7.0-2 - update spec: in custom build info use version macros instead of specific version From 6efc3450d4ac7c9093ef3d6db26cfed1eb7fac6d Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 26 Jun 2013 08:50:24 +0400 Subject: [PATCH 06/39] Fix date in spec --- xonotic-data.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index eccaa1f..6146d19 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -51,7 +51,7 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog -* Wed Jun 25 2013 Igor Gnatenko - 0.7.0-3 +* Wed Jun 26 2013 Igor Gnatenko - 0.7.0-3 - Fix incorrect url in spec (rhbz #978022) * Wed Jun 19 2013 Igor Gnatenko - 0.7.0-2 From 49a2d96e31b81405c76006a48842dee06f6da7b1 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sun, 28 Jul 2013 11:10:42 +0400 Subject: [PATCH 07/39] Improved script to download and prepare sources Signed-off-by: Igor Gnatenko --- download-and-prepare.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 download-and-prepare.sh diff --git a/download-and-prepare.sh b/download-and-prepare.sh new file mode 100755 index 0000000..8b44ac7 --- /dev/null +++ b/download-and-prepare.sh @@ -0,0 +1,13 @@ +#!/bin/sh +version=`grep 'Version:' ./xonotic-data.spec | awk '{print($2)}'` +FILES_MOVE="Xonotic/data/ Xonotic/Docs/* Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk Xonotic/source/qcsrc/" +FILES_EXTR="Xonotic/data/* Xonotic/Docs/* Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk Xonotic/source/qcsrc/*" +wget http://dl.xonotic.org/xonotic-${version}.zip +rm -rf Xonotic xonotic-data-${version} +unzip xonotic-${version}.zip ${FILES_EXTR} +mkdir xonotic-data-${version}/ +mv ${FILES_MOVE} xonotic-data-${version}/ +rm -rf Xonotic +tar -czf xonotic-data-${version}.tar.gz xonotic-data-${version}/ +rm -rf xonotic-data-${version} +rm -f xonotic-${version}.zip From ed9d826567925e016560a78324d1183d4fcc8360 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 4 Aug 2013 03:44:52 -0500 Subject: [PATCH 08/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 6146d19..92cad37 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.7.0 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Sun Aug 04 2013 Fedora Release Engineering - 0.7.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Wed Jun 26 2013 Igor Gnatenko - 0.7.0-3 - Fix incorrect url in spec (rhbz #978022) From b9dee5bd5331d80e980251ee9a10cffa811fac21 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Sun, 8 Jun 2014 01:20:36 -0500 Subject: [PATCH 09/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 92cad37..135952f 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.7.0 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -51,6 +51,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Sun Jun 08 2014 Fedora Release Engineering - 0.7.0-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Sun Aug 04 2013 Fedora Release Engineering - 0.7.0-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From a9eed1b44f1dfa2ae25cd9fd722a50807a867024 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 17 Jan 2015 20:03:23 +0300 Subject: [PATCH 10/39] 0.8.0 (RHBZ #1183203) Signed-off-by: Igor Gnatenko --- .gitignore | 1 + download-and-prepare.sh | 2 +- sources | 2 +- xonotic-data.spec | 14 ++++++++------ 4 files changed, 11 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index 7fb417d..a95a39c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ /xonotic-data-0.6.0.tar.gz /xonotic-data-0.7.0.tar.gz +/xonotic-data-0.8.0.tar.xz diff --git a/download-and-prepare.sh b/download-and-prepare.sh index 8b44ac7..adb52ca 100755 --- a/download-and-prepare.sh +++ b/download-and-prepare.sh @@ -8,6 +8,6 @@ unzip xonotic-${version}.zip ${FILES_EXTR} mkdir xonotic-data-${version}/ mv ${FILES_MOVE} xonotic-data-${version}/ rm -rf Xonotic -tar -czf xonotic-data-${version}.tar.gz xonotic-data-${version}/ +tar -cf xonotic-data-${version}.tar.xz xonotic-data-${version}/ rm -rf xonotic-data-${version} rm -f xonotic-${version}.zip diff --git a/sources b/sources index 9dc3cf7..8fb9ef1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0b37ff83aac398bddacd5fd700bd4fde xonotic-data-0.7.0.tar.gz +d2f19d718e9a408bc90f9a8e0a4c5155 xonotic-data-0.8.0.tar.xz diff --git a/xonotic-data.spec b/xonotic-data.spec index 135952f..e3a07df 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20130605 +%global datadate 20150113 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.7.0 -Release: 5%{?dist} +Version: 0.8.0 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -13,9 +13,8 @@ URL: http://www.xonotic.org/ # mkdir xonotic-data-%{version}/ # mv Xonotic/data/ Xonotic/Docs/* \ # Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-%{version}/ -# tar -czf xonotic-data-%{version}.tar.gz xonotic-data-%{version}/ -Source0: %{name}-%{version}.tar.gz -BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) +# tar -czf xonotic-data-%{version}.tar.xz xonotic-data-%{version}/ +Source0: %{name}-%{version}.tar.g\xz BuildArch: noarch Obsoletes: nexuiz-data <= 2.5.2 Provides: nexuiz-data = %{name}-%{version} @@ -51,6 +50,9 @@ rm -rf %{buildroot} %{_datadir}/xonotic/ %changelog +* Sat Jan 17 2015 Igor Gnatenko - 0.8.0-1 +- 0.8.0 (RHBZ #1183203) + * Sun Jun 08 2014 Fedora Release Engineering - 0.7.0-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 0d6482ea6a3316e0770dc5dd9b6825e3c18b90e4 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 17 Jan 2015 20:13:31 +0300 Subject: [PATCH 11/39] fix spec Signed-off-by: Igor Gnatenko --- xonotic-data.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index e3a07df..366fb2d 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -14,10 +14,10 @@ URL: http://www.xonotic.org/ # mv Xonotic/data/ Xonotic/Docs/* \ # Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-%{version}/ # tar -czf xonotic-data-%{version}.tar.xz xonotic-data-%{version}/ -Source0: %{name}-%{version}.tar.g\xz +Source0: %{name}-%{version}.tar.xz BuildArch: noarch Obsoletes: nexuiz-data <= 2.5.2 -Provides: nexuiz-data = %{name}-%{version} +Provides: nexuiz-data = %{version}-%{release} %description Xonotic is a fast-paced, chaotic, and intense multiplayer first person shooter, From aa614bfc151e05af6f4b5c1d52bb98486f3353dc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Sat, 17 Jan 2015 21:33:46 +0300 Subject: [PATCH 12/39] spec fix Signed-off-by: Igor Gnatenko --- xonotic-data.spec | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 366fb2d..a7f2d87 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -29,6 +29,7 @@ Data (textures, maps, sounds and models) required to play xonotic. %setup -q %build +# Nothing to build %install rm -rf %{buildroot} @@ -37,15 +38,10 @@ install -p data/xonotic-%{datadate}-data.pk3 %{buildroot}%{_datadir}/xonotic/dat install -p data/xonotic-%{datadate}-maps.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p data/xonotic-%{datadate}-music.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p data/xonotic-%{datadate}-nexcompat.pk3 %{buildroot}%{_datadir}/xonotic/data/ -install -p data/font-nimbussansl-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p data/font-xolonium-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ -%clean -rm -rf %{buildroot} - %files -%defattr(0644, root, root, 0755) %doc GPL* COPYING %{_datadir}/xonotic/ From 4af7db39b9e05c841a1215a5a02e205b7463bfa0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 19 Jun 2015 04:15:29 +0000 Subject: [PATCH 13/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index a7f2d87..e7d9ac9 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.0 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Jun 19 2015 Fedora Release Engineering - 0.8.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jan 17 2015 Igor Gnatenko - 0.8.0-1 - 0.8.0 (RHBZ #1183203) From 0b20ddd71c3e576236fdacc0d60d37e93ff58fc2 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Fri, 4 Sep 2015 18:31:22 +0200 Subject: [PATCH 14/39] Update to 0.8.1 xonotic was updated to 0.8.1 in commit http://pkgs.fedoraproject.org/cgit/xonotic.git/commit/?id=88d7a888f40eda60d10f7c958e76a045ac217749 This updates the data package as well to match with the engine. --- .gitignore | 1 + sources | 2 +- xonotic-data.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index a95a39c..20c87a8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /xonotic-data-0.6.0.tar.gz /xonotic-data-0.7.0.tar.gz /xonotic-data-0.8.0.tar.xz +/xonotic-data-0.8.1.tar.xz diff --git a/sources b/sources index 8fb9ef1..51a61f9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -d2f19d718e9a408bc90f9a8e0a4c5155 xonotic-data-0.8.0.tar.xz +7697a6a585de59b0dc058b1b1cf9b79c xonotic-data-0.8.1.tar.xz diff --git a/xonotic-data.spec b/xonotic-data.spec index e7d9ac9..6e3144b 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20150113 +%global datadate 20150825 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.8.0 -Release: 2%{?dist} +Version: 0.8.1 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Sep 04 2015 Kalev Lember - 0.8.1-1 +- Update to 0.8.1 + * Fri Jun 19 2015 Fedora Release Engineering - 0.8.0-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From c367280210d66608862d313567e0985695a16855 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 5 Feb 2016 03:40:23 +0000 Subject: [PATCH 15/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 6e3144b..79930c6 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.1 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Feb 05 2016 Fedora Release Engineering - 0.8.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Fri Sep 04 2015 Kalev Lember - 0.8.1-1 - Update to 0.8.1 From b20487aa4196125a60e9d0bec3cbff3ed2631537 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 11 Feb 2017 18:01:18 +0000 Subject: [PATCH 16/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 79930c6..5136906 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.1 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Feb 11 2017 Fedora Release Engineering - 0.8.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Feb 05 2016 Fedora Release Engineering - 0.8.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 42727ac0c486174a444e52e4a950cc474e9cf3fd Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Tue, 4 Apr 2017 23:25:38 +0200 Subject: [PATCH 17/39] Update to 0.8.2 --- .gitignore | 1 + sources | 2 +- xonotic-data.spec | 9 ++++++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 20c87a8..04571d7 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /xonotic-data-0.7.0.tar.gz /xonotic-data-0.8.0.tar.xz /xonotic-data-0.8.1.tar.xz +/xonotic-data-0.8.2.tar.xz diff --git a/sources b/sources index 51a61f9..539e7b3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -7697a6a585de59b0dc058b1b1cf9b79c xonotic-data-0.8.1.tar.xz +SHA512 (xonotic-data-0.8.2.tar.xz) = 38fb3491bfbccd0c54ed2a9c22e321905b50efe2fd9684340392adfb652e4f3b8ac6f846e8c11014ff18c806334ac7a9d38b76bec3894dfd45365411e369e575 diff --git a/xonotic-data.spec b/xonotic-data.spec index 5136906..45337d2 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20150825 +%global datadate 20170401 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.8.1 -Release: 3%{?dist} +Version: 0.8.2 +Release: 1%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Tue Apr 04 2017 Kalev Lember - 0.8.2-1 +- Update to 0.8.2 + * Sat Feb 11 2017 Fedora Release Engineering - 0.8.1-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From f3b1e43ef8f78e557f628e1b4ed3170d6dfe06a2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 27 Jul 2017 22:17:38 +0000 Subject: [PATCH 18/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 45337d2..a4d004d 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Thu Jul 27 2017 Fedora Release Engineering - 0.8.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Tue Apr 04 2017 Kalev Lember - 0.8.2-1 - Update to 0.8.2 From 013fba8754cc6f72494e0b0fef0bb00bfbe394bc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 9 Feb 2018 21:52:28 +0000 Subject: [PATCH 19/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index a4d004d..c166b77 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 2%{?dist} +Release: 3%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Feb 09 2018 Fedora Release Engineering - 0.8.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Thu Jul 27 2017 Fedora Release Engineering - 0.8.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From 5c212a865f1e4a93e9f8f63b3f3064d378714618 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 14 Jul 2018 09:26:56 +0000 Subject: [PATCH 20/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index c166b77..3a383bf 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 3%{?dist} +Release: 4%{?dist} License: GPLv2+ Group: Amusements/Games URL: http://www.xonotic.org/ @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jul 14 2018 Fedora Release Engineering - 0.8.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Fri Feb 09 2018 Fedora Release Engineering - 0.8.2-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 9188ee8a3a623a3f18f89e480f02673b66db633e Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 28 Jan 2019 20:18:31 +0100 Subject: [PATCH 21/39] Remove obsolete Group tag References: https://fedoraproject.org/wiki/Changes/Remove_Group_Tag --- xonotic-data.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 3a383bf..246d060 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -5,7 +5,6 @@ Name: xonotic-data Version: 0.8.2 Release: 4%{?dist} License: GPLv2+ -Group: Amusements/Games URL: http://www.xonotic.org/ # Source is custom, obtained with : # wget http://dl.xonotic.org/xonotic-%{version}.zip From a335fe17d0334c03de75c176a8fd675457058c39 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 3 Feb 2019 12:38:25 +0000 Subject: [PATCH 22/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 246d060..3493e62 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 4%{?dist} +Release: 5%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -45,6 +45,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sun Feb 03 2019 Fedora Release Engineering - 0.8.2-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Sat Jul 14 2018 Fedora Release Engineering - 0.8.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild From 7d1d63def63815f26d97a0fa958d44f28dac12dd Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 20 Mar 2019 09:15:55 -0500 Subject: [PATCH 23/39] Include font pk3 --- xonotic-data.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 3493e62..0752bad 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 5%{?dist} +Release: 6%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -38,6 +38,7 @@ install -p data/xonotic-%{datadate}-maps.pk3 %{buildroot}%{_datadir}/xonotic/dat install -p data/xonotic-%{datadate}-music.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p data/xonotic-%{datadate}-nexcompat.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p data/font-xolonium-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ +install -p data/font-unifont-%{datadate}.pk3 %{buildroot}%{_datadir}/xonotic/data/ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %files @@ -45,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Wed Mar 20 2019 Gwyn Ciesla - 0.8.2-6 +- Install font pk3. + * Sun Feb 03 2019 Fedora Release Engineering - 0.8.2-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild From 092f7d200a95635c51324236f38e4cb96e10ca7c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jul 2019 04:26:05 +0000 Subject: [PATCH 24/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 0752bad..2cbdd0b 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 6%{?dist} +Release: 7%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jul 27 2019 Fedora Release Engineering - 0.8.2-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Wed Mar 20 2019 Gwyn Ciesla - 0.8.2-6 - Install font pk3. From 1e97884de56e711b14e64d6af8817355291498d4 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jan 2020 04:41:13 +0000 Subject: [PATCH 25/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 2cbdd0b..933fe23 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 7%{?dist} +Release: 8%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Jan 31 2020 Fedora Release Engineering - 0.8.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Sat Jul 27 2019 Fedora Release Engineering - 0.8.2-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From 304d2c30f6ecce762c0fd0d8e0540243260105b3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 29 Jul 2020 14:54:14 +0000 Subject: [PATCH 26/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 933fe23..496b2e1 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 8%{?dist} +Release: 9%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Wed Jul 29 2020 Fedora Release Engineering - 0.8.2-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Fri Jan 31 2020 Fedora Release Engineering - 0.8.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From cf2316c06a4876ffbd6bd9dac9c422ea0f6ee9a7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 28 Jan 2021 00:13:38 +0000 Subject: [PATCH 27/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 496b2e1..d92770d 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 9%{?dist} +Release: 10%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Thu Jan 28 2021 Fedora Release Engineering - 0.8.2-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Wed Jul 29 2020 Fedora Release Engineering - 0.8.2-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From cb4efeb62759078dd4ed232fa2e885d6909e4731 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 23 Jul 2021 21:46:50 +0000 Subject: [PATCH 28/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index d92770d..bab6d9d 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 10%{?dist} +Release: 11%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Jul 23 2021 Fedora Release Engineering - 0.8.2-11 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Thu Jan 28 2021 Fedora Release Engineering - 0.8.2-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 5fc3c9699a55db1c6ac64214683344056e632357 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jan 2022 05:19:45 +0000 Subject: [PATCH 29/39] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index bab6d9d..f3f6cbb 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 11%{?dist} +Release: 12%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jan 22 2022 Fedora Release Engineering - 0.8.2-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Fri Jul 23 2021 Fedora Release Engineering - 0.8.2-11 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 784aeca2787ee6ad8b903f7914262b7cf33f0e98 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 23 Jul 2022 13:21:52 +0000 Subject: [PATCH 30/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index f3f6cbb..e13aec8 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.2 -Release: 12%{?dist} +Release: 13%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -46,6 +46,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jul 23 2022 Fedora Release Engineering - 0.8.2-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + * Sat Jan 22 2022 Fedora Release Engineering - 0.8.2-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From a969eb8d47557148028bbb8818c217b316254cfc Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Fri, 29 Jul 2022 11:33:39 -0500 Subject: [PATCH 31/39] 0.8.5 --- .gitignore | 1 + sources | 2 +- xonotic-data.spec | 13 +++++++------ 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 04571d7..f45c717 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ /xonotic-data-0.8.0.tar.xz /xonotic-data-0.8.1.tar.xz /xonotic-data-0.8.2.tar.xz +/xonotic-data-0.8.5.tar.xz diff --git a/sources b/sources index 539e7b3..d888114 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xonotic-data-0.8.2.tar.xz) = 38fb3491bfbccd0c54ed2a9c22e321905b50efe2fd9684340392adfb652e4f3b8ac6f846e8c11014ff18c806334ac7a9d38b76bec3894dfd45365411e369e575 +SHA512 (xonotic-data-0.8.5.tar.xz) = 33ee8eeabd1169fdde63dab96debdede90aaec9acae91df7560dd3ca19ded511e492cd16a82e57f11005e14a91d6f7b72ac7d1a6d58c9800c3fb3020c1835dbf diff --git a/xonotic-data.spec b/xonotic-data.spec index e13aec8..991835f 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20170401 +%global datadate 20220627 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.8.2 -Release: 13%{?dist} +Version: 0.8.5 +Release: 1%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -11,12 +11,10 @@ URL: http://www.xonotic.org/ # unzip xonotic-%{version}.zip # mkdir xonotic-data-%{version}/ # mv Xonotic/data/ Xonotic/Docs/* \ -# Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-%{version}/ +# Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-data-%{version}/ # tar -czf xonotic-data-%{version}.tar.xz xonotic-data-%{version}/ Source0: %{name}-%{version}.tar.xz BuildArch: noarch -Obsoletes: nexuiz-data <= 2.5.2 -Provides: nexuiz-data = %{version}-%{release} %description Xonotic is a fast-paced, chaotic, and intense multiplayer first person shooter, @@ -46,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Jul 29 2022 Gwyn Ciesla - 0.8.5-1 +- 0.8.5 + * Sat Jul 23 2022 Fedora Release Engineering - 0.8.2-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From a5853978b88d29fc36554e0b9973dbddd1b9739d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 21 Jan 2023 07:42:10 +0000 Subject: [PATCH 32/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 991835f..c471b1a 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.5 -Release: 1%{?dist} +Release: 2%{?dist} License: GPLv2+ URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jan 21 2023 Fedora Release Engineering - 0.8.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Fri Jul 29 2022 Gwyn Ciesla - 0.8.5-1 - 0.8.5 From 04e7bf19deb8207ee9b5746effbd7e8ccd5e937d Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Wed, 1 Mar 2023 15:58:41 -0600 Subject: [PATCH 33/39] migrated to SPDX license --- xonotic-data.spec | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index c471b1a..4827bbb 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,8 +3,8 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.5 -Release: 2%{?dist} -License: GPLv2+ +Release: 3%{?dist} +License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : # wget http://dl.xonotic.org/xonotic-%{version}.zip @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Wed Mar 01 2023 Gwyn Ciesla - 0.8.5-3 +- migrated to SPDX license + * Sat Jan 21 2023 Fedora Release Engineering - 0.8.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From c43c3cb41f3cb09907084b9f4f8009380a883628 Mon Sep 17 00:00:00 2001 From: Gwyn Ciesla Date: Tue, 20 Jun 2023 14:41:58 -0500 Subject: [PATCH 34/39] 0.8.6 --- .gitignore | 1 + sources | 2 +- xonotic-data.spec | 11 +++++++---- 3 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f45c717..80e2eaf 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ /xonotic-data-0.8.1.tar.xz /xonotic-data-0.8.2.tar.xz /xonotic-data-0.8.5.tar.xz +/xonotic-data-0.8.6.tar.xz diff --git a/sources b/sources index d888114..c46ebb3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (xonotic-data-0.8.5.tar.xz) = 33ee8eeabd1169fdde63dab96debdede90aaec9acae91df7560dd3ca19ded511e492cd16a82e57f11005e14a91d6f7b72ac7d1a6d58c9800c3fb3020c1835dbf +SHA512 (xonotic-data-0.8.6.tar.xz) = b9a7d2a2e33c8bdf28a33286f22752381aebec9fce63abe9dc29bbaa2fa8d7bf5e2bd1d35fcb5e4cfec29ad0e405a3f4464692ec14d0b072cfefda3bb222e74e diff --git a/xonotic-data.spec b/xonotic-data.spec index 4827bbb..9bb78d4 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -1,9 +1,9 @@ -%global datadate 20220627 +%global datadate 20230620 Summary: Game data for the Xonotic first person shooter Name: xonotic-data -Version: 0.8.5 -Release: 3%{?dist} +Version: 0.8.6 +Release: 1%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -12,7 +12,7 @@ URL: http://www.xonotic.org/ # mkdir xonotic-data-%{version}/ # mv Xonotic/data/ Xonotic/Docs/* \ # Xonotic/GPL* Xonotic/COPYING Xonotic/key_0.d0pk xonotic-data-%{version}/ -# tar -czf xonotic-data-%{version}.tar.xz xonotic-data-%{version}/ +# tar -cJf xonotic-data-%{version}.tar.xz xonotic-data-%{version}/ Source0: %{name}-%{version}.tar.xz BuildArch: noarch @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Tue Jun 20 2023 Gwyn Ciesla - 0.8.6-1 +- 0.8.6 + * Wed Mar 01 2023 Gwyn Ciesla - 0.8.5-3 - migrated to SPDX license From 9ab9d17c6bde52a2347cfd7cc44aafa999c37214 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 22 Jul 2023 19:06:13 +0000 Subject: [PATCH 35/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 9bb78d4..1dfbabb 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.6 -Release: 1%{?dist} +Release: 2%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jul 22 2023 Fedora Release Engineering - 0.8.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Tue Jun 20 2023 Gwyn Ciesla - 0.8.6-1 - 0.8.6 From 661625c860a3c3a9b06247f0263a0579c717178b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 27 Jan 2024 09:57:00 +0000 Subject: [PATCH 36/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 1dfbabb..9a4068b 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.6 -Release: 2%{?dist} +Release: 3%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jan 27 2024 Fedora Release Engineering - 0.8.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + * Sat Jul 22 2023 Fedora Release Engineering - 0.8.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild From 2f0c17becdf3965a8e6e03c674d6941dd6c59d9e Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sat, 20 Jul 2024 10:17:55 +0000 Subject: [PATCH 37/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 9a4068b..5e0fb49 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.6 -Release: 3%{?dist} +Release: 4%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sat Jul 20 2024 Fedora Release Engineering - 0.8.6-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild + * Sat Jan 27 2024 Fedora Release Engineering - 0.8.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From fb192edbd67f01e7de37233aa60a8b587199b95a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Sun, 19 Jan 2025 16:06:35 +0000 Subject: [PATCH 38/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 5e0fb49..030e7a8 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.6 -Release: 4%{?dist} +Release: 5%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Sun Jan 19 2025 Fedora Release Engineering - 0.8.6-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild + * Sat Jul 20 2024 Fedora Release Engineering - 0.8.6-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From a63caf6c1d044a37f5787ecc9fde40d69f093f00 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 25 Jul 2025 20:58:48 +0000 Subject: [PATCH 39/39] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild --- xonotic-data.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/xonotic-data.spec b/xonotic-data.spec index 030e7a8..bd9cd40 100644 --- a/xonotic-data.spec +++ b/xonotic-data.spec @@ -3,7 +3,7 @@ Summary: Game data for the Xonotic first person shooter Name: xonotic-data Version: 0.8.6 -Release: 5%{?dist} +Release: 6%{?dist} License: GPL-2.0-or-later URL: http://www.xonotic.org/ # Source is custom, obtained with : @@ -44,6 +44,9 @@ install -p key_0.d0pk %{buildroot}%{_datadir}/xonotic/ %{_datadir}/xonotic/ %changelog +* Fri Jul 25 2025 Fedora Release Engineering - 0.8.6-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild + * Sun Jan 19 2025 Fedora Release Engineering - 0.8.6-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild