devel/py-game: Update to 2.5.0

This commit is contained in:
Wen Heping 2023-06-26 07:26:09 +08:00
commit 867643b684

View file

@ -1,6 +1,5 @@
PORTNAME= game
DISTVERSION= 2.4.0
PORTREVISION= 1
DISTVERSION= 2.5.0
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -1,3 +1,3 @@
TIMESTAMP = 1685617005
SHA256 (pygame-2.4.0.tar.gz) = e3603e70e96ee30af1954ce57d4922a059402f368013e7138e90f1c03d185267
SIZE (pygame-2.4.0.tar.gz) = 13203507
TIMESTAMP = 1687734216
SHA256 (pygame-2.5.0.tar.gz) = edd5745b79435976d92c0a7318aedcafcb7ac4567125ac6ba88aa473559ef9ab
SIZE (pygame-2.5.0.tar.gz) = 15560194

View file

@ -1,17 +0,0 @@
--- src_c/rwobject.c.orig 2023-06-06 07:10:40 UTC
+++ src_c/rwobject.c
@@ -33,11 +33,10 @@
#if defined(_WIN32)
#define PG_LSEEK _lseeki64
-#elif defined(__APPLE__)
-/* Mac does not implement lseek64 */
-#define PG_LSEEK lseek
-#else
+#elif defined(__GLIBC__)
#define PG_LSEEK lseek64
+#else
+#define PG_LSEEK lseek
#endif
typedef struct {