aboutsummaryrefslogtreecommitdiff
path: root/games/libretro-gpsp
diff options
context:
space:
mode:
authorLi-Wen Hsu <lwhsu@FreeBSD.org>2021-03-14 05:16:30 +0000
committerLi-Wen Hsu <lwhsu@FreeBSD.org>2021-03-14 05:16:30 +0000
commitff736705d4bdcabc9f932f743463123e5bd37bf5 (patch)
treedb102cdd95467c1bbaa8cbb57c3c57b175c8fb90 /games/libretro-gpsp
parent7ab8f388f169fe129109c358772be6107973942e (diff)
downloadports-ff736705d4bdcabc9f932f743463123e5bd37bf5.tar.gz
ports-ff736705d4bdcabc9f932f743463123e5bd37bf5.zip
games/libretro-gpsp: update to 20210215
PR: 253653 Submitted by: Daniel Menelkir <menelkir@itroll.org> (maintainer)
Notes
Notes: svn path=/head/; revision=568328
Diffstat (limited to 'games/libretro-gpsp')
-rw-r--r--games/libretro-gpsp/Makefile4
-rw-r--r--games/libretro-gpsp/distinfo6
-rw-r--r--games/libretro-gpsp/files/patch-libco_aarch64.c17
3 files changed, 5 insertions, 22 deletions
diff --git a/games/libretro-gpsp/Makefile b/games/libretro-gpsp/Makefile
index 867455491f1e..03a1ce74662c 100644
--- a/games/libretro-gpsp/Makefile
+++ b/games/libretro-gpsp/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$
PORTNAME= libretro-gpsp
-PORTVERSION= 0.20200504
+PORTVERSION= 0.20210215
CATEGORIES= games
MAINTAINER= menelkir@itroll.org
@@ -15,7 +15,7 @@ USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= libretro
GH_PROJECT= gpsp
-GH_TAGNAME= d8cf63b
+GH_TAGNAME= 300d0c0
PLIST_FILES= lib/libretro/gpsp_libretro.so
diff --git a/games/libretro-gpsp/distinfo b/games/libretro-gpsp/distinfo
index 478dc6938cf3..18f47932ea23 100644
--- a/games/libretro-gpsp/distinfo
+++ b/games/libretro-gpsp/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1588709812
-SHA256 (libretro-gpsp-0.20200504-d8cf63b_GH0.tar.gz) = 4eefb3d19e911b6a19e945637e441dfa3e22af14088f8698ea4b257b278d105c
-SIZE (libretro-gpsp-0.20200504-d8cf63b_GH0.tar.gz) = 251726
+TIMESTAMP = 1613702012
+SHA256 (libretro-gpsp-0.20210215-300d0c0_GH0.tar.gz) = 8ba6000fd42c7de908c22f69d7cceee78ff02cfe8201027376bd7d23c2681079
+SIZE (libretro-gpsp-0.20210215-300d0c0_GH0.tar.gz) = 323510
diff --git a/games/libretro-gpsp/files/patch-libco_aarch64.c b/games/libretro-gpsp/files/patch-libco_aarch64.c
deleted file mode 100644
index a96a0a96fa89..000000000000
--- a/games/libretro-gpsp/files/patch-libco_aarch64.c
+++ /dev/null
@@ -1,17 +0,0 @@
---- libco/aarch64.c.orig 2020-04-28 06:29:00 UTC
-+++ libco/aarch64.c
-@@ -12,7 +12,13 @@
- #include <stdint.h>
-
- #ifndef IOS
--#include <malloc.h>
-+#include <sys/param.h>
-+
-+void *
-+memalign(size_t align, size_t size)
-+{
-+ return (aligned_alloc(align, roundup(size, align)));
-+}
- #endif
-
- #ifdef __cplusplus