pkgsrc-WIP-changes archive

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

libretro-mame2014: Update to 20170805 - clang fixes accepted upstream



Module Name:	pkgsrc-wip
Committed By:	Nia Alarie <nia.alarie%gmail.com@localhost>
Pushed By:	nee
Date:		Sun Aug 6 10:59:40 2017 +0100
Changeset:	b9fb91c5a2aeebb938ec4b44b023447fbc8dfe3b

Modified Files:
	libretro-mame2014/Makefile
	libretro-mame2014/distinfo
Removed Files:
	libretro-mame2014/patches/patch-src_emu_hiscore.c

Log Message:
libretro-mame2014: Update to 20170805 - clang fixes accepted upstream

To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=b9fb91c5a2aeebb938ec4b44b023447fbc8dfe3b

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

diffstat:
 libretro-mame2014/Makefile                        |  4 +--
 libretro-mame2014/distinfo                        |  9 +++--
 libretro-mame2014/patches/patch-src_emu_hiscore.c | 42 -----------------------
 3 files changed, 6 insertions(+), 49 deletions(-)

diffs:
diff --git a/libretro-mame2014/Makefile b/libretro-mame2014/Makefile
index 28f24e5efc..6feeb33575 100644
--- a/libretro-mame2014/Makefile
+++ b/libretro-mame2014/Makefile
@@ -1,6 +1,6 @@
 # $NetBSD$
 
-DISTNAME=	libretro-mame2014-20170722
+DISTNAME=	libretro-mame2014-20170805
 CATEGORIES=	emulators
 MASTER_SITES=	${MASTER_SITE_GITHUB:=libretro/}
 
@@ -10,7 +10,7 @@ COMMENT=	Libretro core based on the Multiple Arcade Machine Emulator (v0.159)
 LICENSE=	no-commercial-use
 
 GITHUB_PROJECT=	mame2014-libretro
-GITHUB_TAG=	c2438a94638da31fbf5f5761d9a6c5a43db61c4d
+GITHUB_TAG=	0d8726c9df1e7d20d13f84b31e9b361170806d51
 
 EXTRACT_USING=	bsdtar
 USE_TOOLS=	gmake
diff --git a/libretro-mame2014/distinfo b/libretro-mame2014/distinfo
index b5166f16d6..0674719e38 100644
--- a/libretro-mame2014/distinfo
+++ b/libretro-mame2014/distinfo
@@ -1,8 +1,7 @@
 $NetBSD$
 
-SHA1 (libretro-mame2014-20170722-c2438a94638da31fbf5f5761d9a6c5a43db61c4d.tar.gz) = 089e4a5786521611bc4450ba2e271cf73b530e10
-RMD160 (libretro-mame2014-20170722-c2438a94638da31fbf5f5761d9a6c5a43db61c4d.tar.gz) = b86e7d1c426b7bc090f0b9cf8866cab63c896f18
-SHA512 (libretro-mame2014-20170722-c2438a94638da31fbf5f5761d9a6c5a43db61c4d.tar.gz) = 955664611712a75797fc92997e89578a5b446a5b717a359904809f75e724cb29144c37c89582ce08d789cdc42f4cd1981a1d844174f7f130727c2259462afd2e
-Size (libretro-mame2014-20170722-c2438a94638da31fbf5f5761d9a6c5a43db61c4d.tar.gz) = 55146194 bytes
+SHA1 (libretro-mame2014-20170805-0d8726c9df1e7d20d13f84b31e9b361170806d51.tar.gz) = 500874e0734a2c613e0799474541702dc7a09e33
+RMD160 (libretro-mame2014-20170805-0d8726c9df1e7d20d13f84b31e9b361170806d51.tar.gz) = cd2b1f0dd87acd1b45f4792c7b8bda9a751da547
+SHA512 (libretro-mame2014-20170805-0d8726c9df1e7d20d13f84b31e9b361170806d51.tar.gz) = 695a10813a6cf8fe9b530f7b7345058b36c7c6a8734b88669abe0ecca005118fc65efe60f63d98aa06d5dd15778e8449d12d41fddba1bf7e8b987fc4782d8d8d
+Size (libretro-mame2014-20170805-0d8726c9df1e7d20d13f84b31e9b361170806d51.tar.gz) = 55145948 bytes
 SHA1 (patch-Makefile) = 8cd384f6a58f66de5ddf881c090fdd2c4e3612db
-SHA1 (patch-src_emu_hiscore.c) = a6f36ae44d9cb6c98f5da51a602a184aab75a7b2
diff --git a/libretro-mame2014/patches/patch-src_emu_hiscore.c b/libretro-mame2014/patches/patch-src_emu_hiscore.c
deleted file mode 100644
index b1e7e71942..0000000000
--- a/libretro-mame2014/patches/patch-src_emu_hiscore.c
+++ /dev/null
@@ -1,42 +0,0 @@
-$NetBSD$
-
-Fix build with clang.
-
---- src/emu/hiscore.c.orig	2017-03-16 20:39:20.000000000 +0000
-+++ src/emu/hiscore.c
-@@ -36,7 +36,7 @@ static void copy_to_memory (running_mach
- 	int i;
- 	address_space *targetspace;
- 
--	if (strstr(machine.system().source_file,"cinemat.c") > 0)
-+	if (strstr(machine.system().source_file,"cinemat.c") != NULL)
- 	{
- 		targetspace = &machine.cpu[cpu]->memory().space(AS_DATA);
- 	}
-@@ -56,7 +56,7 @@ static void copy_from_memory (running_ma
- 	int i;
- 	address_space *targetspace;
- 
--	if (strstr(machine.system().source_file,"cinemat.c") > 0)
-+	if (strstr(machine.system().source_file,"cinemat.c") != NULL)
- 	{
- 		targetspace = &machine.cpu[cpu]->memory().space(AS_DATA);
- 	}
-@@ -154,7 +154,7 @@ static int safe_to_load (running_machine
- 	memory_range *mem_range = state.mem_range;
- 	address_space *srcspace;
- 
--	if (strstr(machine.system().source_file,"cinemat.c") > 0)
-+	if (strstr(machine.system().source_file,"cinemat.c") != NULL)
- 	{
- 		srcspace = &machine.cpu[mem_range->cpu]->memory().space(AS_DATA);
- 	}
-@@ -309,7 +309,7 @@ void hiscore_init (running_machine &mach
- 
- 	while (mem_range)
- 	{
--		if (strstr(machine.system().source_file,"cinemat.c") > 0)
-+		if (strstr(machine.system().source_file,"cinemat.c") != NULL)
- 		{
- 			initspace = &machine.cpu[mem_range->cpu]->memory().space(AS_DATA);
- 			initspace->write_byte(mem_range->addr, ~mem_range->start_value);


Home | Main Index | Thread Index | Old Index