Hello community,

here is the log from the commit of package doomsday for openSUSE:Factory 
checked in at 2013-01-04 11:38:02
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/doomsday (Old)
 and      /work/SRC/openSUSE:Factory/.doomsday.new (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "doomsday", Maintainer is ""

Changes:
--------
New Changes file:

--- /dev/null   2012-12-21 01:49:00.356010756 +0100
+++ /work/SRC/openSUSE:Factory/.doomsday.new/doomsday.changes   2013-01-04 
11:38:04.000000000 +0100
@@ -0,0 +1,18 @@
+-------------------------------------------------------------------
+Thu Oct  4 21:59:29 UTC 2012 - [email protected]
+
+- Update to new upstream release 1.9.9
+* Faster map loading thanks to optimizations in the BSP builder.
+* Improved music support for OS X 10.6+ and Linux: SF2 soundfonts
+  can be used with the original games' MIDI music.
+
+-------------------------------------------------------------------
+Mon Jul  9 18:28:47 UTC 2012 - [email protected]
+
+- Bump importance of timidity from Suggested to Recommended. (Few
+  users actually have FMOD (alternative output plugin) installed.)
+
+-------------------------------------------------------------------
+Sun Jun 24 19:33:23 UTC 2012 - [email protected]
+
+- Initial package (version 1.9.8) for build.opensuse.org

New:
----
  deng-nodate.diff
  doomsday-1.9.9.tar.xz
  doomsday.changes
  doomsday.spec

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ doomsday.spec ++++++
#
# spec file for package doomsday
#
# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#


Name:           doomsday
Version:        1.9.9
Release:        0
Summary:        The Doomsday Engine: DOOM/Hertic/Hexen port with pretty graphics
# md2tool (apparently GPL-2.0 only) is not shipped in binary form
License:        GPL-2.0+
Group:          Amusements/Games/3D/Shoot
Url:            http://dengine.net/

#DL-URL:        http://downloads.sf.net/deng/doomsday-1.9.9.tar.gz
Source:         %name-%version.tar.xz
Patch1:         deng-nodate.diff

BuildRoot:      %{_tmppath}/%{name}-%{version}-build
BuildRequires:  Mesa-devel
BuildRequires:  SDL-devel
BuildRequires:  SDL_mixer-devel
BuildRequires:  gcc-c++
BuildRequires:  libpng-devel
BuildRequires:  libqt4-devel >= 4.6
BuildRequires:  ncurses-devel
BuildRequires:  xorg-x11-devel
BuildRequires:  xz
BuildRequires:  zlib-devel

%if 0%{?suse_version}
Recommends:     timidity timidity-eawpats
%endif
Provides:       jdoom = %version-%release
Provides:       jheretic = %version-%release
Provides:       jhexen = %version-%release
Obsoletes:      deng < %version-%release
Provides:       deng = %version-%release

%description
The Doomsday Engine is a source port with support for Doom, Heretic,
and Hexen. It does not support BOOM extensions.

%package launcher
Summary:        Graphical launcher for Doomsday
Requires:       %name = %version
%if 0%{?fedora_version}
BuildRequires:  python
Requires:       wxPython
%else
%py_requires
Requires:       python-wxWidgets
%endif
%if 0%{?suse_version} >= 1130 || 0%{?fedora_version}
BuildArch:      noarch
%endif

%description launcher
Snowberry is the official frontend of the Doomsday Engine. It is a
portable graphical game launcher, with support for configuring the
various types of games supported by Doomsday. It offers to save your
settings for launching a particular game (e.g., Doom).

%prep
%if 0%{?__xz:1}
%setup -q
%else
tar --use=xz -xf "%{S:0}";
%setup -DTq
%endif
%patch -P 1 -p1

%build
pushd doomsday;
find . -type f -name "*.h" -exec perl -i -pe 's{__DATE__}{""}gs' "{}" "+";
%if 0%{?fedora_version}
alias qmake="qmake-qt4";
%endif
qmake QMAKE_CFLAGS+="%optflags" QMAKE_CXXFLAGS+="%optflags" QMAKE_STRIP="true";
make %{?_smp_mflags};
popd;

%install
b="%buildroot";
pushd doomsday/;
make install INSTALL_ROOT="$b";
mkdir -p "$b/%_libexecdir/%name";
mv "$b/%_bindir"/* "$b/%_libexecdir/%name/";
mkdir -p "$b/%_libdir/%name";
mv "$b/%_libdir"/*.so.* "$b/%_libdir"/*.so "$b/%_libdir/%name/";
popd;

for i in doomsday launch-doomsday; do
        cat >"$b/%_bindir/$i" <<-EOF
                #!/bin/sh
                if ! set | grep -q "^DOOMWADDIR="; then
                        DOOMWADDIR="/usr/share/doom";
                        export DOOMWADDIR;
                fi;
                LD_LIBRARY_PATH="\$LD_LIBRARY_PATH:%_libdir/%name" exec 
"%_libexecdir/%name/$i" -libdir "%_libdir/%name" "\$@";
        EOF
done;
chmod a+x "$b/%_bindir"/{doomsday,launch-doomsday};

%files
%defattr(-,root,root)
%_bindir/doomsday
%dir %_libexecdir/%name
%_libexecdir/%name/doomsday
%dir %_libdir/%name
%_libdir/%name/lib*
%dir %_datadir/%name
%_datadir/%name/data
%_datadir/applications/doomsday-engine.desktop

%files launcher
%defattr(-,root,root)
%_bindir/launch-doomsday
%dir %_libexecdir/%name
%_libexecdir/%name/launch-doomsday
%dir %_datadir/%name
%_datadir/%name/snowberry

%changelog
++++++ deng-nodate.diff ++++++
---
 doomsday/engine/portable/include/dd_def.h          |    2 +-
 doomsday/plugins/dehread/include/version.h         |    2 +-
 doomsday/plugins/directsound/include/version.h     |    2 +-
 doomsday/plugins/exampleplugin/include/version.h   |    2 +-
 doomsday/plugins/fluidsynth/include/version.h      |    2 +-
 doomsday/plugins/fmod/include/version.h            |    2 +-
 doomsday/plugins/jdoom/include/version.h           |    2 +-
 doomsday/plugins/jdoom64/include/version.h         |    2 +-
 doomsday/plugins/jheretic/include/version.h        |    2 +-
 doomsday/plugins/jhexen/include/version.h          |    2 +-
 doomsday/plugins/openal/include/version.h          |    2 +-
 doomsday/plugins/wadmapconverter/include/version.h |    2 +-
 doomsday/plugins/winmm/include/version.h           |    2 +-
 13 files changed, 13 insertions(+), 13 deletions(-)

Index: doomsday-1.9.9/doomsday/engine/portable/include/dd_def.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/engine/portable/include/dd_def.h
+++ doomsday-1.9.9/doomsday/engine/portable/include/dd_def.h
@@ -83,7 +83,7 @@ extern "C" {
 
 #define DOOMSDAY_VER_ID     DOOMSDAY_RELEASE_TYPE DOOMSDAY_VER_ID_64BIT 
DOOMSDAY_VER_ID_DEBUG DOOMSDAY_VER_ID_RANGECHECK DOOMSDAY_VER_ID_BUILD
 
-#define DOOMSDAY_VERSION_FULLTEXT     DOOMSDAY_VERSION_TEXT" 
("DOOMSDAY_VER_ID") "__DATE__" "__TIME__
+#define DOOMSDAY_VERSION_FULLTEXT     DOOMSDAY_VERSION_TEXT" 
("DOOMSDAY_VER_ID")"
 
 #define SAFEDIV(x,y)    (!(y) || !((x)/(y))? 1 : (x)/(y))
 #define ORDER(x,y,a,b)  ( (x)<(y)? ((a)=(x),(b)=(y)) : ((b)=(x),(a)=(y)) )
Index: doomsday-1.9.9/doomsday/plugins/dehread/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/dehread/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/dehread/include/version.h
@@ -39,7 +39,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for reading DeHackEd patches."
 
 #define PLUGIN_VERSION_TEXT "2.0.0"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DEHREAD_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DEHREAD_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 2,0,0,0 // For WIN32 version info.
 
 #endif /// LIBDEHREAD_VERSION_H
Index: doomsday-1.9.9/doomsday/plugins/directsound/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/directsound/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/directsound/include/version.h
@@ -46,7 +46,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for audio playback via 
DirectSound"
 
 #define PLUGIN_VERSION_TEXT "1.2.5"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DSDIRECTSOUND_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DSDIRECTSOUND_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,2,5,0 // For WIN32 version info.
 
 #endif
Index: doomsday-1.9.9/doomsday/plugins/exampleplugin/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/exampleplugin/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/exampleplugin/include/version.h
@@ -53,7 +53,7 @@
 #define PLUGIN_DOCSURL      DOOMSDAY_DOCSURL
 
 #define PLUGIN_VERSION_TEXT "1.1.0"
-#define PLUGIN_VERSION_TEXTLONG "Version" PLUGIN_VERSION_TEXT " " __DATE__ " 
(" EXAMPLE_PLUGIN_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version" PLUGIN_VERSION_TEXT " (" 
EXAMPLE_PLUGIN_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,1,0,0 // For WIN32 version info.
 
 // For WIN32 version info:
Index: doomsday-1.9.9/doomsday/plugins/fluidsynth/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/fluidsynth/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/fluidsynth/include/version.h
@@ -38,7 +38,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for music playback via FluidSynth"
 
 #define PLUGIN_VERSION_TEXT "1.0.0"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DSFLUIDSYNTH_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DSFLUIDSYNTH_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,0,0,0 // For WIN32 version info.
 
 #endif
Index: doomsday-1.9.9/doomsday/plugins/fmod/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/fmod/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/fmod/include/version.h
@@ -38,7 +38,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for audio playback via Firelight 
Technologies' FMOD Ex "
 
 #define PLUGIN_VERSION_TEXT "1.0.1"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DSFMOD_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DSFMOD_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,0,1,0 // For WIN32 version info.
 
 #endif
Index: doomsday-1.9.9/doomsday/plugins/jdoom/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/jdoom/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/jdoom/include/version.h
@@ -57,7 +57,7 @@
 #define PLUGIN_DOCSURL      DOOMSDAY_DOCSURL
 
 #define PLUGIN_VERSION_TEXT "1.16.2"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" JDOOM_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
JDOOM_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,16,2,0 // For WIN32 version info.
 
 // For WIN32 version info:
Index: doomsday-1.9.9/doomsday/plugins/jdoom64/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/jdoom64/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/jdoom64/include/version.h
@@ -56,7 +56,7 @@
 #define PLUGIN_DOCSURL      DOOMSDAY_DOCSURL
 
 #define PLUGIN_VERSION_TEXT "0.9.1"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" JDOOM64_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
JDOOM64_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 0,9,1,0 // For WIN32 version info.
 
 // For WIN32 version info:
Index: doomsday-1.9.9/doomsday/plugins/jheretic/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/jheretic/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/jheretic/include/version.h
@@ -57,7 +57,7 @@
 #define PLUGIN_DOCSURL      DOOMSDAY_DOCSURL
 
 #define PLUGIN_VERSION_TEXT "1.5.2"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" JHERETIC_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
JHERETIC_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,5,2,0 // For WIN32 version info.
 
 // For WIN32 version info:
Index: doomsday-1.9.9/doomsday/plugins/jhexen/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/jhexen/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/jhexen/include/version.h
@@ -57,7 +57,7 @@
 #define PLUGIN_DOCSURL      DOOMSDAY_DOCSURL
 
 #define PLUGIN_VERSION_TEXT "1.4.2"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" JHEXEN_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
JHEXEN_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,4,2,0 // For WIN32 version info.
 
 // For WIN32 version info:
Index: doomsday-1.9.9/doomsday/plugins/openal/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/openal/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/openal/include/version.h
@@ -46,7 +46,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for audio playback via OpenAL"
 
 #define PLUGIN_VERSION_TEXT "1.2.4"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DSOPENAL_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DSOPENAL_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,2,4,0 // For WIN32 version info.
 
 #endif
Index: doomsday-1.9.9/doomsday/plugins/wadmapconverter/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/wadmapconverter/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/wadmapconverter/include/version.h
@@ -40,7 +40,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for loading id tech 1 format 
maps."
 
 #define PLUGIN_VERSION_TEXT "1.1.0"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" WADMAPCONVERTER_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
WADMAPCONVERTER_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,1,0,0 // For WIN32 version info.
 
 #endif /* __WADMAPCONVERTER_VERSION_H__ */
Index: doomsday-1.9.9/doomsday/plugins/winmm/include/version.h
===================================================================
--- doomsday-1.9.9.orig/doomsday/plugins/winmm/include/version.h
+++ doomsday-1.9.9/doomsday/plugins/winmm/include/version.h
@@ -46,7 +46,7 @@
 #define PLUGIN_DETAILS      "Doomsday plugin for audio playback via Windows 
Multimedia."
 
 #define PLUGIN_VERSION_TEXT "1.0.5"
-#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " " __DATE__ " 
(" DSWINMM_VER_ID ")"
+#define PLUGIN_VERSION_TEXTLONG "Version " PLUGIN_VERSION_TEXT " (" 
DSWINMM_VER_ID ")"
 #define PLUGIN_VERSION_NUMBER 1,0,5,0 // For WIN32 version info.
 
 #endif
-- 
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to