Accepting request 889325 from games:tools
Update to new upstream release 5.2.2 (forwarded request 889299 from susnux) OBS-URL: https://build.opensuse.org/request/show/889325 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/deutex?expand=0&rev=10
This commit is contained in:
commit
51074f49ee
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d61c0d5b1fce3f8271c2358d35b41f70a08da662e387edb8a03ca1deb156831f
|
|
||||||
size 165784
|
|
Binary file not shown.
3
deutex-5.2.2.tar.zst
Normal file
3
deutex-5.2.2.tar.zst
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:10ed0e7a533ec97cb6d03548d4258fbec88852a45b5ea4cf5434376ad4174b5f
|
||||||
|
size 172022
|
2
deutex-5.2.2.tar.zst.sig
Normal file
2
deutex-5.2.2.tar.zst.sig
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
untrusted comment: verify with deutex.pub
|
||||||
|
RWQFKSch/pCmBvZHyTLsRc3Y3Tyj9/oz25IFWLo88lsRmcSy+gsd5iQH/huDC1+bXmCUkWZWLyNYFSzLTCRdhaWp7fuwoM4LHAY=
|
@ -1,3 +1,11 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Apr 29 12:32:44 UTC 2021 - Ferdinand Thiessen <rpm@fthiessen.de>
|
||||||
|
|
||||||
|
- Update to new upstream release 5.2.2
|
||||||
|
* Hexen graphics are now treated a bit more specially,
|
||||||
|
the last entry in the palette no longer counting as a candidate
|
||||||
|
to produce transparency in the output file.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Fri Aug 23 17:57:35 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
Fri Aug 23 17:57:35 UTC 2019 - Jan Engelhardt <jengelh@inai.de>
|
||||||
|
|
||||||
@ -52,7 +60,7 @@ Mon Jan 1 07:58:11 UTC 2018 - avindra@opensuse.org
|
|||||||
* Levels are extracted/inserted in a way to preserve GL nodes.
|
* Levels are extracted/inserted in a way to preserve GL nodes.
|
||||||
* Inserting pictures with a height of 1 pixel no longer causes
|
* Inserting pictures with a height of 1 pixel no longer causes
|
||||||
a malloc error, and allows the operation of rebuilding a
|
a malloc error, and allows the operation of rebuilding a
|
||||||
Doom 1 or 2 IWAD.
|
Doom 1 or 2 IWAD.
|
||||||
* Texture lump file names can now be overridden.
|
* Texture lump file names can now be overridden.
|
||||||
* Support reading and writing sprite offsets based on PNG
|
* Support reading and writing sprite offsets based on PNG
|
||||||
"grAb" chunks (cf. grabpng package) in a manner compatible
|
"grAb" chunks (cf. grabpng package) in a manner compatible
|
||||||
|
17
deutex.spec
17
deutex.spec
@ -17,18 +17,19 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: deutex
|
Name: deutex
|
||||||
Version: 5.2.1
|
Version: 5.2.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: WAD composer for Doom and related games
|
Summary: WAD composer for Doom and related games
|
||||||
License: GPL-2.0-or-later
|
License: GPL-2.0-or-later
|
||||||
Group: Development/Tools/Other
|
Group: Development/Tools/Other
|
||||||
#Historic-URL: http://www.teaser.fr/~amajorel/deutex/
|
#Historic-URL: http://www.teaser.fr/~amajorel/deutex/
|
||||||
URL: https://github.com/Doom-Utils/deutex
|
URL: https://github.com/Doom-Utils/deutex
|
||||||
Source: https://github.com/Doom-Utils/deutex/releases/download/v%version/%name-%version.tar.xz
|
Source: https://github.com/Doom-Utils/deutex/releases/download/v%version/%name-%version.tar.zst
|
||||||
Source2: https://github.com/Doom-Utils/deutex/releases/download/v%version/%name-%version.tar.xz.sig
|
Source2: https://github.com/Doom-Utils/deutex/releases/download/v%version/%name-%version.tar.zst.sig
|
||||||
BuildRequires: asciidoc
|
BuildRequires: asciidoc
|
||||||
BuildRequires: automake
|
BuildRequires: automake
|
||||||
BuildRequires: pkg-config
|
BuildRequires: pkg-config
|
||||||
|
BuildRequires: zstd
|
||||||
|
|
||||||
%description
|
%description
|
||||||
DeuTex is a .wad file composer for Doom, Heretic, Hexen and Strife.
|
DeuTex is a .wad file composer for Doom, Heretic, Hexen and Strife.
|
||||||
@ -42,12 +43,18 @@ example, from PPM to Doom picture format). In addition, DeuTex has
|
|||||||
functions such as merging WADs.
|
functions such as merging WADs.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
|
%if 0%{?suse_version} < 1550
|
||||||
|
# Leap <= 15.3 does not support tar with zstd
|
||||||
|
%setup -T -c
|
||||||
|
tar -I zstd --strip-components=1 -xf %{SOURCE0}
|
||||||
|
%else
|
||||||
%autosetup -p1
|
%autosetup -p1
|
||||||
|
%endif
|
||||||
|
|
||||||
%build
|
%build
|
||||||
autoreconf -fiv
|
autoreconf -fiv
|
||||||
%configure
|
%configure --enable-man
|
||||||
make %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
%make_install
|
||||||
|
Loading…
Reference in New Issue
Block a user