pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/games/love09 love09: update to 0.9.2



details:   https://anonhg.NetBSD.org/pkgsrc/rev/51fceaf8979c
branches:  trunk
changeset: 313515:51fceaf8979c
user:      maya <maya%pkgsrc.org@localhost>
date:      Mon Oct 01 23:20:41 2018 +0000

description:
love09: update to 0.9.2

We would benefit from having the latest branch in each 0.9.x, as they're
backwards compatible (but not forwards!).

changes:

0.9.2:

    The lua 5.3 UTF-8 module was added, bringing easy handling of UTF-8 in strings.
    Added [wiki]love.joystick.loadGamepadMappings[/wiki] and [wiki]love.joystick.saveGamepadMappings[/wiki] to easily load and store gamepad mapping databases. See 
[wiki]love.joystick.setGamepadMapping[/wiki] for more details.
    Added relative mouse mode ([wiki]love.mouse.setRelativeMode[/wiki]) and the corresponding [wiki]love.mousemoved[/wiki].
    Added symlink support to love.filesystem, as well as [wiki]love.filesystem.getRealDirectory[/wiki], making development and debugging easier.
    Fixed a bunch of memory leaks, crashes and other bugs.
    Renamed FSAA to MSAA.
    The 'console' option now tries to re-use its console, and it can open earlier, allowing its use in early stages of game loading.
    Replace several error messages with clearer, more obvious ones.

0.9.1:

? Canvases can now be used with SpriteBatches, ParticleSystems, and Meshes. Canvases and Images are now both sub-types of the new [wiki]Texture[/wiki] type, which those three things accept. 
[wiki]SpriteBatch:setTexture[/wiki] (etc.) have been added, and [wiki]SpriteBatch:setImage[/wiki] (etc.) is now deprecated, but not removed yet.

? Better support for retina displays in OS X has been added. To take advantage of it, you will need to enable the new "highdpi" window flag in either [wiki]love.conf[/wiki] or 
[wiki]love.window.setMode[/wiki]. When this is done on a compatible computer, the pixel resolution of the window will be double what the requested window size is. You will almost certainly need to 
adjust your code if you want to use this properly! The new function [wiki]love.window.getPixelScale[/wiki] can help immensely.

? Canvases now have antialiasing support. You will need to request it when creating the Canvas, with the new function variant [wiki]love.graphics.newCanvas[/wiki](width, height, texturetype, fsaa).

? A new function [wiki]Source:clone[/wiki] has been added. This lets you create multiple static Sources which play the same sound much more efficiently (in terms of loading time, memory usage, and 
code duplication.)

? Some nasty bugs have been fixed, including an off-by-one issue in [wiki]Joystick:isDown[/wiki], love.graphics.setCanvas breaking everything when love.graphics.setScissor is used sometimes, and 
8-bit [wiki]SoundData[/wiki] sounding completely wrong when loaded into a [wiki]Source[/wiki].

diffstat:

 games/love09/Makefile                |    4 +-
 games/love09/distinfo                |   10 +-
 games/love09/patches/patch-configure |  576 -----------------------------------
 3 files changed, 7 insertions(+), 583 deletions(-)

diffs (truncated from 608 to 300 lines):

diff -r e5562b9cee27 -r 51fceaf8979c games/love09/Makefile
--- a/games/love09/Makefile     Mon Oct 01 21:45:31 2018 +0000
+++ b/games/love09/Makefile     Mon Oct 01 23:20:41 2018 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.1 2018/09/30 19:17:24 maya Exp $
+# $NetBSD: Makefile,v 1.2 2018/10/01 23:20:41 maya Exp $
 
-DISTNAME=      love-0.9.0-linux-src
+DISTNAME=      love-0.9.2-linux-src
 PKGNAME=       ${DISTNAME:S/-linux-src//:S/love/love09/}
 CATEGORIES=    games
 MASTER_SITES=  https://bitbucket.org/rude/love/downloads/
diff -r e5562b9cee27 -r 51fceaf8979c games/love09/distinfo
--- a/games/love09/distinfo     Mon Oct 01 21:45:31 2018 +0000
+++ b/games/love09/distinfo     Mon Oct 01 23:20:41 2018 +0000
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.1 2018/09/30 19:17:24 maya Exp $
+$NetBSD: distinfo,v 1.2 2018/10/01 23:20:41 maya Exp $
 
-SHA1 (love-0.9.0-linux-src.tar.gz) = d4ed3bd6a5f9c2359fbc86e43f87eda7f0b2111e
-RMD160 (love-0.9.0-linux-src.tar.gz) = 497563e79ea00b8390d43c2f0966076e4e23ce66
-Size (love-0.9.0-linux-src.tar.gz) = 1389352 bytes
-SHA1 (patch-configure) = 3514e45780d24aa28250349231f718fd3b787d48
+SHA1 (love-0.9.2-linux-src.tar.gz) = ed4479cc44f7f38d733c6e2ba1d54d0c5f80abde
+RMD160 (love-0.9.2-linux-src.tar.gz) = c6aa9b2d1d5c01670c331e59668c8ea92992b326
+SHA512 (love-0.9.2-linux-src.tar.gz) = a6948eb77334b1a73a3595268eca8bd7a04a723e9e027ef4b1b8133b4365c06b0a0c4d4e09040ab74bd1f8564d70ec8d07c61aa67d75d86ecba41b2baca629ab
+Size (love-0.9.2-linux-src.tar.gz) = 1451535 bytes
 SHA1 (patch-src_common_config.h) = 93ce979d98590ca74e0437f5a265eec093073f80
diff -r e5562b9cee27 -r 51fceaf8979c games/love09/patches/patch-configure
--- a/games/love09/patches/patch-configure      Mon Oct 01 21:45:31 2018 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,576 +0,0 @@
-$NetBSD: patch-configure,v 1.1 2018/09/30 19:17:24 maya Exp $
-
-Use portable test(1) comparison operator.
-https://bitbucket.org/rude/love/issue/866/unportable-test-1-comparison-operator-in
-
---- configure.orig     2013-12-13 22:37:10.000000000 +0000
-+++ configure
-@@ -18583,7 +18583,7 @@ else
-   LOVE_BUILD_EXE_FALSE=
- fi
- 
-- if test "x$enable_mpg123" == xno; then
-+ if test "x$enable_mpg123" = xno; then
-   LOVE_NOMPG123_TRUE=
-   LOVE_NOMPG123_FALSE='#'
- else
-@@ -18612,11 +18612,11 @@ else
- fi
- 
- 
--if test x"$enable_audio" == xtrue; then
-+if test x"$enable_audio" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_AUDIO /**/" >>confdefs.h
- 
- fi
-- if test x$enable_audio == xtrue; then
-+ if test x$enable_audio = xtrue; then
-   LOVE_MODULE_AUDIO_TRUE=
-   LOVE_MODULE_AUDIO_FALSE='#'
- else
-@@ -18633,11 +18633,11 @@ else
- fi
- 
- 
--if test x"$enable_audio_null" == xtrue; then
-+if test x"$enable_audio_null" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_AUDIO_NULL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_audio_null == xtrue; then
-+ if test x$enable_audio_null = xtrue; then
-   LOVE_IMPLEMENTATION_AUDIO_NULL_TRUE=
-   LOVE_IMPLEMENTATION_AUDIO_NULL_FALSE='#'
- else
-@@ -18654,11 +18654,11 @@ else
- fi
- 
- 
--if test x"$enable_audio_openal" == xtrue; then
-+if test x"$enable_audio_openal" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_AUDIO_OPENAL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_audio_openal == xtrue; then
-+ if test x$enable_audio_openal = xtrue; then
-   LOVE_IMPLEMENTATION_AUDIO_OPENAL_TRUE=
-   LOVE_IMPLEMENTATION_AUDIO_OPENAL_FALSE='#'
- else
-@@ -18675,11 +18675,11 @@ else
- fi
- 
- 
--if test x"$enable_event" == xtrue; then
-+if test x"$enable_event" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_EVENT /**/" >>confdefs.h
- 
- fi
-- if test x$enable_event == xtrue; then
-+ if test x$enable_event = xtrue; then
-   LOVE_MODULE_EVENT_TRUE=
-   LOVE_MODULE_EVENT_FALSE='#'
- else
-@@ -18696,11 +18696,11 @@ else
- fi
- 
- 
--if test x"$enable_event_sdl" == xtrue; then
-+if test x"$enable_event_sdl" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_EVENT_SDL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_event_sdl == xtrue; then
-+ if test x$enable_event_sdl = xtrue; then
-   LOVE_IMPLEMENTATION_EVENT_SDL_TRUE=
-   LOVE_IMPLEMENTATION_EVENT_SDL_FALSE='#'
- else
-@@ -18717,11 +18717,11 @@ else
- fi
- 
- 
--if test x"$enable_filesystem" == xtrue; then
-+if test x"$enable_filesystem" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_FILESYSTEM /**/" >>confdefs.h
- 
- fi
-- if test x$enable_filesystem == xtrue; then
-+ if test x$enable_filesystem = xtrue; then
-   LOVE_MODULE_FILESYSTEM_TRUE=
-   LOVE_MODULE_FILESYSTEM_FALSE='#'
- else
-@@ -18738,11 +18738,11 @@ else
- fi
- 
- 
--if test x"$enable_filesystem_physfs" == xtrue; then
-+if test x"$enable_filesystem_physfs" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_FILESYSTEM_PHYSFS /**/" >>confdefs.h
- 
- fi
-- if test x$enable_filesystem_physfs == xtrue; then
-+ if test x$enable_filesystem_physfs = xtrue; then
-   LOVE_IMPLEMENTATION_FILESYSTEM_PHYSFS_TRUE=
-   LOVE_IMPLEMENTATION_FILESYSTEM_PHYSFS_FALSE='#'
- else
-@@ -18759,11 +18759,11 @@ else
- fi
- 
- 
--if test x"$enable_font" == xtrue; then
-+if test x"$enable_font" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_FONT /**/" >>confdefs.h
- 
- fi
-- if test x$enable_font == xtrue; then
-+ if test x$enable_font = xtrue; then
-   LOVE_MODULE_FONT_TRUE=
-   LOVE_MODULE_FONT_FALSE='#'
- else
-@@ -18780,11 +18780,11 @@ else
- fi
- 
- 
--if test x"$enable_font_freetype" == xtrue; then
-+if test x"$enable_font_freetype" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_FONT_FREETYPE /**/" >>confdefs.h
- 
- fi
-- if test x$enable_font_freetype == xtrue; then
-+ if test x$enable_font_freetype = xtrue; then
-   LOVE_IMPLEMENTATION_FONT_FREETYPE_TRUE=
-   LOVE_IMPLEMENTATION_FONT_FREETYPE_FALSE='#'
- else
-@@ -18801,11 +18801,11 @@ else
- fi
- 
- 
--if test x"$enable_graphics" == xtrue; then
-+if test x"$enable_graphics" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_GRAPHICS /**/" >>confdefs.h
- 
- fi
-- if test x$enable_graphics == xtrue; then
-+ if test x$enable_graphics = xtrue; then
-   LOVE_MODULE_GRAPHICS_TRUE=
-   LOVE_MODULE_GRAPHICS_FALSE='#'
- else
-@@ -18822,11 +18822,11 @@ else
- fi
- 
- 
--if test x"$enable_graphics_opengl" == xtrue; then
-+if test x"$enable_graphics_opengl" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_GRAPHICS_OPENGL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_graphics_opengl == xtrue; then
-+ if test x$enable_graphics_opengl = xtrue; then
-   LOVE_IMPLEMENTATION_GRAPHICS_OPENGL_TRUE=
-   LOVE_IMPLEMENTATION_GRAPHICS_OPENGL_FALSE='#'
- else
-@@ -18843,11 +18843,11 @@ else
- fi
- 
- 
--if test x"$enable_image" == xtrue; then
-+if test x"$enable_image" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_IMAGE /**/" >>confdefs.h
- 
- fi
-- if test x$enable_image == xtrue; then
-+ if test x$enable_image = xtrue; then
-   LOVE_MODULE_IMAGE_TRUE=
-   LOVE_MODULE_IMAGE_FALSE='#'
- else
-@@ -18864,11 +18864,11 @@ else
- fi
- 
- 
--if test x"$enable_image_magpie" == xtrue; then
-+if test x"$enable_image_magpie" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_IMAGE_MAGPIE /**/" >>confdefs.h
- 
- fi
-- if test x$enable_image_magpie == xtrue; then
-+ if test x$enable_image_magpie = xtrue; then
-   LOVE_IMPLEMENTATION_IMAGE_MAGPIE_TRUE=
-   LOVE_IMPLEMENTATION_IMAGE_MAGPIE_FALSE='#'
- else
-@@ -18885,11 +18885,11 @@ else
- fi
- 
- 
--if test x"$enable_joystick" == xtrue; then
-+if test x"$enable_joystick" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_JOYSTICK /**/" >>confdefs.h
- 
- fi
-- if test x$enable_joystick == xtrue; then
-+ if test x$enable_joystick = xtrue; then
-   LOVE_MODULE_JOYSTICK_TRUE=
-   LOVE_MODULE_JOYSTICK_FALSE='#'
- else
-@@ -18906,11 +18906,11 @@ else
- fi
- 
- 
--if test x"$enable_joystick_sdl" == xtrue; then
-+if test x"$enable_joystick_sdl" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_JOYSTICK_SDL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_joystick_sdl == xtrue; then
-+ if test x$enable_joystick_sdl = xtrue; then
-   LOVE_IMPLEMENTATION_JOYSTICK_SDL_TRUE=
-   LOVE_IMPLEMENTATION_JOYSTICK_SDL_FALSE='#'
- else
-@@ -18927,11 +18927,11 @@ else
- fi
- 
- 
--if test x"$enable_keyboard" == xtrue; then
-+if test x"$enable_keyboard" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_KEYBOARD /**/" >>confdefs.h
- 
- fi
-- if test x$enable_keyboard == xtrue; then
-+ if test x$enable_keyboard = xtrue; then
-   LOVE_MODULE_KEYBOARD_TRUE=
-   LOVE_MODULE_KEYBOARD_FALSE='#'
- else
-@@ -18948,11 +18948,11 @@ else
- fi
- 
- 
--if test x"$enable_keyboard_sdl" == xtrue; then
-+if test x"$enable_keyboard_sdl" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_KEYBOARD_SDL /**/" >>confdefs.h
- 
- fi
-- if test x$enable_keyboard_sdl == xtrue; then
-+ if test x$enable_keyboard_sdl = xtrue; then
-   LOVE_IMPLEMENTATION_KEYBOARD_SDL_TRUE=
-   LOVE_IMPLEMENTATION_KEYBOARD_SDL_FALSE='#'
- else
-@@ -18969,11 +18969,11 @@ else
- fi
- 
- 
--if test x"$enable_love" == xtrue; then
-+if test x"$enable_love" = xtrue; then
-     $as_echo "#define LOVE_ENABLE_LOVE /**/" >>confdefs.h
- 
- fi
-- if test x$enable_love == xtrue; then
-+ if test x$enable_love = xtrue; then
-   LOVE_MODULE_LOVE_TRUE=
-   LOVE_MODULE_LOVE_FALSE='#'
- else



Home | Main Index | Thread Index | Old Index