Compare commits
17 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
ffa977e0e2 | ||
|
|
eca22baae6 | ||
|
|
b50b6a2874 | ||
|
|
5acf9c3c62 | ||
|
|
9d0b414337 | ||
|
|
71c292e210 | ||
|
|
6e8d9ad79a | ||
|
|
28847dfa81 | ||
|
|
7b389d10d1 | ||
|
|
c1fcce7e80 | ||
|
|
d343c6244a | ||
|
|
f01e647eda | ||
|
|
b771161fa7 | ||
|
|
9c07fc49b6 | ||
|
|
4ea048b4c6 | ||
|
|
0463f5d787 | ||
|
|
bce6839680 |
3 changed files with 58 additions and 15 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
|
@ -8,3 +8,5 @@
|
|||
/darkplaces-0.8.1.tar.xz
|
||||
/d0_blind_id-0.8.2.tar.xz
|
||||
/darkplaces-0.8.2.tar.xz
|
||||
/darkplaces-0.8.5.tar.xz
|
||||
/darkplaces-0.8.6.tar.xz
|
||||
|
|
|
|||
2
sources
2
sources
|
|
@ -1 +1 @@
|
|||
SHA512 (darkplaces-0.8.2.tar.xz) = d94c98f05785d5c568e4890aa1030d23d35ed92c03067388bdaac5ff0febe12deae54c4e1b700bcbe84873a532053df8ccbdc8bad1d070c7091dae565d705682
|
||||
SHA512 (darkplaces-0.8.6.tar.xz) = 4aaaa70891c499f25d4fddeaa9923fef1408f670fc34a0595a38d7eaae03e47fbcd3da8e7c2b035fcc8c1dd417e0369778b596fd8745198fe6f33feea1b6b64c
|
||||
|
|
|
|||
69
xonotic.spec
69
xonotic.spec
|
|
@ -1,21 +1,21 @@
|
|||
%global _hardened_build 1
|
||||
%global dpver 20170401
|
||||
%global dpver 20230620
|
||||
|
||||
%global dqmirror1 http://distcache.freebsd.org/ports-distfiles/quake-data/quakesw-1.0.6.tar.gz
|
||||
%global dqmirror2 https://www.libsdl.org/projects/quake/data/quakesw-1.0.6.tar.gz
|
||||
|
||||
Summary: Multiplayer, deathmatch oriented first person shooter
|
||||
Name: xonotic
|
||||
Version: 0.8.2
|
||||
Release: 14%{?dist}
|
||||
License: GPLv2+ and LGPLv2+ and BSD
|
||||
Version: 0.8.6
|
||||
Release: 7%{?dist}
|
||||
License: GPL-2.0-or-later and LGPL-2.0-or-later
|
||||
URL: http://www.xonotic.org/
|
||||
# Custom tarball:
|
||||
# wget http://dl.xonotic.org/xonotic-%{version}.zip
|
||||
# unzip xonotic-%{version}.zip
|
||||
# cd Xonotic/source/
|
||||
# cp ../misc/logos/icons_png/xonotic_256.png darkplaces/
|
||||
# tar -cf darkplaces-%{version}.tar.xz darkplaces/
|
||||
# tar -cJf darkplaces-%{version}.tar.xz darkplaces/
|
||||
Source0: darkplaces-%{version}.tar.xz
|
||||
Source1: %{name}.desktop
|
||||
Source10: darkplaces-quake.sh
|
||||
|
|
@ -43,8 +43,6 @@ BuildRequires: zlib-devel
|
|||
Requires: xonotic-data = %{version}
|
||||
Requires: darkplaces = %{dpver}-%{release}
|
||||
Requires: opengl-games-utils
|
||||
Obsoletes: nexuiz <= 2.5.2
|
||||
Provides: nexuiz = %{name}-%{version}
|
||||
|
||||
%description
|
||||
Xonotic is a fast-paced, chaotic, and intense multiplayer first person shooter,
|
||||
|
|
@ -54,8 +52,6 @@ focused on providing basic, old style deathmatches.
|
|||
Summary: Dedicated server for the Xonotic first person shooter
|
||||
Requires: xonotic-data = %{version}
|
||||
Requires: darkplaces-server = %{dpver}-%{release}
|
||||
Obsoletes: nexuiz-server <= 2.5.2
|
||||
Provides: nexuiz-server = %{name}-%{version}
|
||||
|
||||
|
||||
%description server
|
||||
|
|
@ -118,16 +114,16 @@ sed -i 's/\r//' darkplaces.txt
|
|||
sed -i 's,/usr/X11R6/,/usr/,g' makefile makefile.inc
|
||||
sed -i 's/nexuiz/xonotic/g' makefile makefile.inc
|
||||
|
||||
%patch0 -p2
|
||||
%patch -P 0 -p2
|
||||
|
||||
%build
|
||||
export DP_FS_BASEDIR=%{_datadir}/xonotic
|
||||
#export DP_CRYPTO_STATIC_LIBDIR="."
|
||||
#export DP_CRYPTO_RIJNDAEL_STATIC_LIBDIR="."
|
||||
make release OPTIM_RELEASE="$RPM_OPT_FLAGS" STRIP=:
|
||||
make cl-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS" STRIP=:
|
||||
make sdl-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS" STRIP=:
|
||||
make sv-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS" STRIP=:
|
||||
make release OPTIM_RELEASE="$RPM_OPT_FLAGS -std=gnu17" STRIP=:
|
||||
make cl-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS -std=gnu17" STRIP=:
|
||||
make sdl-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS -std=gnu17" STRIP=:
|
||||
make sv-xonotic OPTIM_RELEASE="$RPM_OPT_FLAGS -std=gnu17" STRIP=:
|
||||
|
||||
%install
|
||||
rm -rf %{buildroot}
|
||||
|
|
@ -274,6 +270,51 @@ EOF
|
|||
|
||||
|
||||
%changelog
|
||||
* Fri Jul 25 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-7
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild
|
||||
|
||||
* Mon Feb 17 2025 Gwyn Ciesla <gwync@protonmail.com> - 0.8.6-6
|
||||
- Set PrefersNonDefaultGPU to false, BZ 2345949.
|
||||
|
||||
* Sun Jan 19 2025 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild
|
||||
|
||||
* Sat Jul 20 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild
|
||||
|
||||
* Sat Jan 27 2024 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild
|
||||
|
||||
* Sat Jul 22 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.6-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild
|
||||
|
||||
* Tue Jun 20 2023 Gwyn Ciesla <gwync@protonmail.com> - 0.8.6-1
|
||||
- 0.8.6
|
||||
|
||||
* Wed Mar 01 2023 Gwyn Ciesla <gwync@protonmail.com> - 0.8.5-4
|
||||
- migrated to SPDX license
|
||||
|
||||
* Sat Jan 21 2023 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.5-3
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild
|
||||
|
||||
* Sun Jul 31 2022 Gwyn Ciesla <gwync@protonmail.com> - 0.8.5-2
|
||||
- Correct date.
|
||||
|
||||
* Fri Jul 29 2022 Gwyn Ciesla <gwync@protonmail.com> - 0.8.5-1
|
||||
- 0.8.5
|
||||
|
||||
* Sat Jul 23 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-18
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild
|
||||
|
||||
* Thu Feb 24 2022 Daniel Rusek <mail@asciiwolf.com> - 0.8.2-17
|
||||
- Set PrefersNonDefaultGPU to true
|
||||
|
||||
* Sat Jan 22 2022 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-16
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
||||
|
||||
* Fri Jul 23 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-15
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
||||
|
||||
* Thu Jan 28 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.8.2-14
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue