Author: miriam Date: 2010-02-01 21:17:49 +0000 (Mon, 01 Feb 2010) New Revision: 10765
Added: packages/trunk/love/debian/README.source Removed: packages/trunk/love/debian/patches/cstrings.patch packages/trunk/love/debian/patches/no-ILvoid-type.diff Modified: packages/trunk/love/debian/changelog packages/trunk/love/debian/control packages/trunk/love/debian/patches/gcc-4.4.patch packages/trunk/love/debian/patches/series packages/trunk/love/debian/rules Log: New upstream release Added: packages/trunk/love/debian/README.source =================================================================== --- packages/trunk/love/debian/README.source (rev 0) +++ packages/trunk/love/debian/README.source 2010-02-01 21:17:49 UTC (rev 10765) @@ -0,0 +1,2 @@ +This package uses quilt for patch management, for more information see +the file /usr/share/doc/quilt/README.source in the quilt package. Modified: packages/trunk/love/debian/changelog =================================================================== --- packages/trunk/love/debian/changelog 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/changelog 2010-02-01 21:17:49 UTC (rev 10765) @@ -1,3 +1,13 @@ +love (0.6.0-1) UNRELEASED; urgency=low + + [ Miriam Ruiz ] + * New Upstream Release + * Upgraded Standards-Version from 3.8.1 to 3.8.3 + * Added build dependencies: pkg-config, libmpg123-dev, libflac++-dev + * Refreshed gcc-4.4.patch and removed the rest of patches + + -- Miriam Ruiz <[email protected]> Mon, 01 Feb 2010 22:00:07 +0100 + love (0.5.0-2) unstable; urgency=low [ Miriam Ruiz ] Modified: packages/trunk/love/debian/control =================================================================== --- packages/trunk/love/debian/control 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/control 2010-02-01 21:17:49 UTC (rev 10765) @@ -4,10 +4,10 @@ Maintainer: Debian Games Team <[email protected]> Uploaders: Miriam Ruiz <[email protected]> Build-Depends: debhelper (>= 7), autotools-dev, quilt, dh-buildinfo, sng, - libboost-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, liblua5.1-0-dev, - libphysfs-dev, libdevil-dev, libfreetype6-dev, - lua5.1, liblua5.1-expat0 -Standards-Version: 3.8.1 + pkg-config, libboost-dev, libsdl1.2-dev, libsdl-mixer1.2-dev, + liblua5.1-0-dev, libphysfs-dev, libdevil-dev, libfreetype6-dev, + libmpg123-dev, libflac++-dev, lua5.1, liblua5.1-expat0 +Standards-Version: 3.8.3 Homepage: http://love2d.org/ Vcs-Svn: svn://svn.debian.org/svn/pkg-games/packages/trunk/love/ Vcs-Browser: http://svn.debian.org/wsvn/pkg-games/packages/trunk/love/?op=log @@ -29,6 +29,7 @@ Package: love-dbg Section: debug +Priority: extra Architecture: any Depends: ${shlibs:Depends}, ${misc:Depends}, love (= ${binary:Version}) Description: 2D game development framework - debugging symbols Deleted: packages/trunk/love/debian/patches/cstrings.patch =================================================================== --- packages/trunk/love/debian/patches/cstrings.patch 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/patches/cstrings.patch 2010-02-01 21:17:49 UTC (rev 10765) @@ -1,13 +0,0 @@ -# Copyright (C) 2008 Miriam Ruiz <[email protected]> -# Distributed under the same license as the game. See debian/copyright. - -Index: love-0.5-0/src/physfs/File.cpp -=================================================================== ---- love-0.5-0.orig/src/physfs/File.cpp 2008-10-15 18:59:09.000000000 +0200 -+++ love-0.5-0/src/physfs/File.cpp 2008-10-15 18:59:25.000000000 +0200 -@@ -1,4 +1,5 @@ - #include "File.h" -+#include <string.h> - - namespace love_physfs - { Modified: packages/trunk/love/debian/patches/gcc-4.4.patch =================================================================== --- packages/trunk/love/debian/patches/gcc-4.4.patch 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/patches/gcc-4.4.patch 2010-02-01 21:17:49 UTC (rev 10765) @@ -1,11 +1,9 @@ # See: http://bugs.debian.org/505703 # Thanks to Martin Michlmayr <[email protected]> -Index: love-0.5.0/src/opengl/ImageFont.cpp -=================================================================== ---- love-0.5.0.orig/src/opengl/ImageFont.cpp 2009-05-14 09:58:30.000000000 +0200 -+++ love-0.5.0/src/opengl/ImageFont.cpp 2009-05-14 09:58:53.000000000 +0200 -@@ -1,6 +1,7 @@ +--- a/src/modules/graphics/opengl/ImageFont.cpp ++++ b/src/modules/graphics/opengl/ImageFont.cpp +@@ -21,6 +21,7 @@ #include "ImageFont.h" #include <SDL_opengl.h> Deleted: packages/trunk/love/debian/patches/no-ILvoid-type.diff =================================================================== --- packages/trunk/love/debian/patches/no-ILvoid-type.diff 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/patches/no-ILvoid-type.diff 2010-02-01 21:17:49 UTC (rev 10765) @@ -1,31 +0,0 @@ ---- love-0.5.0.orig/src/opengl/Image.cpp -+++ love-0.5.0/src/opengl/Image.cpp -@@ -376,7 +376,7 @@ - ilBindImage(image); - - // Create the new image -- ilTexImage(width, height, depth, bpp, format, type, (ILvoid*)d); -+ ilTexImage(width, height, depth, bpp, format, type, (void*)d); - - // Set new "real" dimensions - this->textureWidth = width; -@@ -518,7 +518,7 @@ - ilBindImage(image); - - // Create the new image -- ilTexImage(width, height, depth, bpp, format, type, (ILvoid*)data); -+ ilTexImage(width, height, depth, bpp, format, type, (void*)data); - - // Set the new image dimensions. - this->textureWidth = width; ---- love-0.5.0.orig/src/opengl/love_opengl.cpp -+++ love-0.5.0/src/opengl/love_opengl.cpp -@@ -1598,7 +1598,7 @@ - - ilGenImages(1, &image); - ilBindImage(image); -- ilTexImage(w, h, 1, 3, IL_RGB, IL_UNSIGNED_BYTE, (ILvoid*)pixels); -+ ilTexImage(w, h, 1, 3, IL_RGB, IL_UNSIGNED_BYTE, (void*)pixels); - - // Create the image. - ilSaveL(IL_BMP, pixels, 0); Modified: packages/trunk/love/debian/patches/series =================================================================== --- packages/trunk/love/debian/patches/series 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/patches/series 2010-02-01 21:17:49 UTC (rev 10765) @@ -1,3 +1 @@ -cstrings.patch -no-ILvoid-type.diff gcc-4.4.patch Modified: packages/trunk/love/debian/rules =================================================================== --- packages/trunk/love/debian/rules 2010-01-31 19:32:02 UTC (rev 10764) +++ packages/trunk/love/debian/rules 2010-02-01 21:17:49 UTC (rev 10765) @@ -21,8 +21,8 @@ --prefix=/usr \ --mandir=\$${prefix}/share/man \ --infodir=\$${prefix}/share/info \ - CFLAGS="$(CFLAGS)" \ - LDFLAGS="-Wl,-z,defs -Wl,-as-needed" + CFLAGS="$(CFLAGS) `pkg-config flac++ --cflags`" \ + LDFLAGS="-Wl,-z,defs -Wl,-as-needed `pkg-config flac++ --libs`" touch $@ build-arch: build-arch-stamp _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/mailman/listinfo/pkg-games-commits

