diff options
Diffstat (limited to 'games')
-rw-r--r-- | games/0ad/Makefile | 3 | ||||
-rw-r--r-- | games/0ad/distinfo | 10 | ||||
-rw-r--r-- | games/0ad/files/patch-GL-OOB-fix | 48 | ||||
-rw-r--r-- | games/0ad/files/patch-build_workspaces_update-workspaces.sh | 13 | ||||
-rw-r--r-- | games/DDNet/Makefile | 3 | ||||
-rw-r--r-- | games/DDNet/distinfo | 6 | ||||
-rw-r--r-- | games/abbayedesmorts/Makefile | 2 | ||||
-rw-r--r-- | games/abbayedesmorts/distinfo | 6 | ||||
-rw-r--r-- | games/abbayedesmorts/files/patch-Makefile | 8 | ||||
-rw-r--r-- | games/crossfire-client/Makefile | 2 | ||||
-rw-r--r-- | games/crossfire-client/distinfo | 6 | ||||
-rw-r--r-- | games/crossfire-client/pkg-plist | 17 | ||||
-rw-r--r-- | games/gcompris-qt/Makefile | 2 | ||||
-rw-r--r-- | games/gcompris-qt/distinfo | 6 | ||||
-rw-r--r-- | games/powder-toy-devel/Makefile | 3 | ||||
-rw-r--r-- | games/powder-toy-devel/distinfo | 6 | ||||
-rw-r--r-- | games/powder-toy-devel/files/patch-resources_meson.build | 11 | ||||
-rw-r--r-- | games/sgt-puzzles/Makefile | 4 | ||||
-rw-r--r-- | games/sgt-puzzles/distinfo | 6 | ||||
-rw-r--r-- | games/veloren-weekly/Makefile | 4 | ||||
-rw-r--r-- | games/veloren-weekly/distinfo | 6 |
21 files changed, 57 insertions, 115 deletions
diff --git a/games/0ad/Makefile b/games/0ad/Makefile index d46fdf00ecc5..8eb1d8a53731 100644 --- a/games/0ad/Makefile +++ b/games/0ad/Makefile @@ -1,6 +1,5 @@ PORTNAME= 0ad -DISTVERSION= 0.27.0 -PORTREVISION= 11 +DISTVERSION= 0.27.1 CATEGORIES= games MASTER_SITES= https://releases.wildfiregames.com/ DISTFILES= ${PORTNAME}-${DISTVERSION}-unix-build.tar.xz \ diff --git a/games/0ad/distinfo b/games/0ad/distinfo index ae481ae4d049..9c0617992796 100644 --- a/games/0ad/distinfo +++ b/games/0ad/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1738253090 -SHA256 (0ad-0.27.0-unix-build.tar.xz) = aa94857009750d5f61dbf016bc150e3bdcbdb3acdfc8ad20b73ab8b43e9a1ba6 -SIZE (0ad-0.27.0-unix-build.tar.xz) = 152170976 -SHA256 (0ad-0.27.0-unix-data.tar.xz) = 3e48855ab8e1ef81270338462c8270b015213f14f5e054aab92ad74d5ea59dea -SIZE (0ad-0.27.0-unix-data.tar.xz) = 1367701984 +TIMESTAMP = 1752758686 +SHA256 (0ad-0.27.1-unix-build.tar.xz) = a0a5355eeb5968d24f283770736150d974dafecba07754d4662707dc17016bfb +SIZE (0ad-0.27.1-unix-build.tar.xz) = 153554512 +SHA256 (0ad-0.27.1-unix-data.tar.xz) = 837e2d6ddf138b025fc02017245d7581a4bb84fd94b42c0e605d321b7017a998 +SIZE (0ad-0.27.1-unix-data.tar.xz) = 1367955136 diff --git a/games/0ad/files/patch-GL-OOB-fix b/games/0ad/files/patch-GL-OOB-fix deleted file mode 100644 index 1f5548cc6684..000000000000 --- a/games/0ad/files/patch-GL-OOB-fix +++ /dev/null @@ -1,48 +0,0 @@ -From a1f7568df9814d0dc399fc1e4f1c122da24a8f05 Mon Sep 17 00:00:00 2001 -From: Vladislav Belov <vladislavbelovdev@gmail.com> -Date: Fri, 7 Feb 2025 22:24:00 +0100 -Subject: [PATCH] Fixes out of bounds during GL buffer binding. - ---- - source/renderer/backend/gl/DeviceCommandContext.cpp | 4 ++++ - source/renderer/backend/gl/DeviceCommandContext.h | 2 +- - 2 files changed, 5 insertions(+), 1 deletion(-) - -diff --git a/source/renderer/backend/gl/DeviceCommandContext.cpp b/source/renderer/backend/gl/DeviceCommandContext.cpp -index dacdd4377b..87bc323305 100644 ---- source/renderer/backend/gl/DeviceCommandContext.cpp -+++ source/renderer/backend/gl/DeviceCommandContext.cpp -@@ -246,6 +246,9 @@ CDeviceCommandContext::CDeviceCommandContext(CDevice* device) - for (size_t index = 0; index < m_BoundBuffers.size(); ++index) - { - const CBuffer::Type type = static_cast<CBuffer::Type>(index); -+ // Currently we don't support upload buffers for GL. -+ if (type == CBuffer::Type::UPLOAD) -+ continue; - const GLenum target = BufferTypeToGLTarget(type); - const GLuint handle = 0; - m_BoundBuffers[index].first = target; -@@ -1456,6 +1459,7 @@ CDeviceCommandContext::ScopedBufferBind::ScopedBufferBind( - { - ENSURE(buffer); - m_CacheIndex = static_cast<size_t>(buffer->GetType()); -+ ENSURE(m_CacheIndex < m_DeviceCommandContext->m_BoundBuffers.size()); - const GLenum target = BufferTypeToGLTarget(buffer->GetType()); - const GLuint handle = buffer->GetHandle(); - if (m_DeviceCommandContext->m_BoundBuffers[m_CacheIndex].first == target && -diff --git a/source/renderer/backend/gl/DeviceCommandContext.h b/source/renderer/backend/gl/DeviceCommandContext.h -index 5f1a251007..3d23d89c06 100644 ---- source/renderer/backend/gl/DeviceCommandContext.h -+++ source/renderer/backend/gl/DeviceCommandContext.h -@@ -221,7 +221,7 @@ private: - }; - - using BoundBuffer = std::pair<GLenum, GLuint>; -- std::array<BoundBuffer, 2> m_BoundBuffers; -+ std::array<BoundBuffer, 4> m_BoundBuffers; - class ScopedBufferBind - { - public: --- -2.43.5 - diff --git a/games/0ad/files/patch-build_workspaces_update-workspaces.sh b/games/0ad/files/patch-build_workspaces_update-workspaces.sh deleted file mode 100644 index 7768c92a886a..000000000000 --- a/games/0ad/files/patch-build_workspaces_update-workspaces.sh +++ /dev/null @@ -1,13 +0,0 @@ ---- build/workspaces/update-workspaces.sh.orig 2025-01-28 19:57:28 UTC -+++ build/workspaces/update-workspaces.sh -@@ -1,10 +1,5 @@ - #!/bin/sh - --if [ "$(id -u)" = "0" ]; then -- echo "Running as root will mess up file permissions. Aborting ..." 1>&2 -- exit 1 --fi -- - die() - { - echo ERROR: "$*" diff --git a/games/DDNet/Makefile b/games/DDNet/Makefile index d1efec599dac..c40019fdfc2f 100644 --- a/games/DDNet/Makefile +++ b/games/DDNet/Makefile @@ -1,6 +1,5 @@ PORTNAME= DDNet -PORTVERSION= 19.2 -PORTREVISION= 6 +PORTVERSION= 19.3 CATEGORIES= games MASTER_SITES= https://ddnet.tw/downloads/ DISTFILES= ${DISTNAME}${EXTRACT_SUFX} diff --git a/games/DDNet/distinfo b/games/DDNet/distinfo index 7773e669bd4d..fda7aaf49f8e 100644 --- a/games/DDNet/distinfo +++ b/games/DDNet/distinfo @@ -1,6 +1,6 @@ -TIMESTAMP = 1747241716 -SHA256 (DDNet-19.2.tar.xz) = 954e996e682e975a7105931d7ff49315b50273f9f085df2b541ba394cb610619 -SIZE (DDNet-19.2.tar.xz) = 37027408 +TIMESTAMP = 1750949896 +SHA256 (DDNet-19.3.tar.xz) = 5c5726572f9deb00d7bc215a352ec18a0e41b6a34d4442d55c894baa9dd9bb7c +SIZE (DDNet-19.3.tar.xz) = 37037164 SHA256 (rust/crates/cc-1.0.73.crate) = 2fff2a6927b3bb87f9595d67196a70493f627687a71d87a0d692242c33f58c11 SIZE (rust/crates/cc-1.0.73.crate) = 57880 SHA256 (rust/crates/cxx-1.0.71.crate) = 5469a6f42296f4fd40789b397383718f9a0bd75d2f9b7cedbb249996811fba27 diff --git a/games/abbayedesmorts/Makefile b/games/abbayedesmorts/Makefile index 85ef8224e12f..49b871b6761d 100644 --- a/games/abbayedesmorts/Makefile +++ b/games/abbayedesmorts/Makefile @@ -1,5 +1,5 @@ PORTNAME= abbayedesmorts -PORTVERSION= 2.0.4 +PORTVERSION= 2.0.5 DISTVERSIONPREFIX= v CATEGORIES= games diff --git a/games/abbayedesmorts/distinfo b/games/abbayedesmorts/distinfo index d5e9a9e8a55b..d099592ba3b1 100644 --- a/games/abbayedesmorts/distinfo +++ b/games/abbayedesmorts/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1730916500 -SHA256 (nevat-abbayedesmorts-gpl-v2.0.4_GH0.tar.gz) = e957b2327d5d2c0b21aedfe580f9caf6de2c587cdc8715286831be98d8d09f01 -SIZE (nevat-abbayedesmorts-gpl-v2.0.4_GH0.tar.gz) = 1982877 +TIMESTAMP = 1751287221 +SHA256 (nevat-abbayedesmorts-gpl-v2.0.5_GH0.tar.gz) = dd0933e3c48cdd3d6cf7125a0bafd5be806e5708d1e47cf519a3721d7436e1f3 +SIZE (nevat-abbayedesmorts-gpl-v2.0.5_GH0.tar.gz) = 1984621 diff --git a/games/abbayedesmorts/files/patch-Makefile b/games/abbayedesmorts/files/patch-Makefile index 9467ce065d21..22c149936d7e 100644 --- a/games/abbayedesmorts/files/patch-Makefile +++ b/games/abbayedesmorts/files/patch-Makefile @@ -1,6 +1,6 @@ ---- Makefile.orig 2024-09-23 21:18:05 UTC +--- Makefile.orig 2025-06-26 16:14:20 UTC +++ Makefile -@@ -47,13 +47,11 @@ $(PROG): $(OBJS) +@@ -59,13 +59,11 @@ $(PROG): $(OBJS) all: $(PROG) $(PROG): $(OBJS) @@ -10,9 +10,9 @@ .SUFFIXES: .c .o .c.o: -- @echo compile $< +- @echo Compiling $< - @$(CC) $(CFLAGS) -c $< -o $@ + $(CC) $(CFLAGS) -c $< -o $@ clean: - @echo cleaning... + @echo Cleaning... diff --git a/games/crossfire-client/Makefile b/games/crossfire-client/Makefile index e3e8248ed151..373ec8e28cf0 100644 --- a/games/crossfire-client/Makefile +++ b/games/crossfire-client/Makefile @@ -1,5 +1,5 @@ PORTNAME= crossfire-client -DISTVERSION= 1.75.3 +DISTVERSION= 1.75.4 CATEGORIES= games MASTER_SITES= SF/crossfire/${PORTNAME}/${DISTVERSION} diff --git a/games/crossfire-client/distinfo b/games/crossfire-client/distinfo index 7d5f4bd0ce29..0e718809d2a8 100644 --- a/games/crossfire-client/distinfo +++ b/games/crossfire-client/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1712812048 -SHA256 (crossfire-client-1.75.3.tar.gz) = 2ade184bc5ccfc3b56666d8ef93050dfc1ec1f62ebd9d3d923371e1859b01c47 -SIZE (crossfire-client-1.75.3.tar.gz) = 1052116 +TIMESTAMP = 1752807272 +SHA256 (crossfire-client-1.75.4.tar.gz) = 14b7d5f0a637d4e947d91955ae4d973035c25bfbec3e9d57dbddcf8221780189 +SIZE (crossfire-client-1.75.4.tar.gz) = 12980965 diff --git a/games/crossfire-client/pkg-plist b/games/crossfire-client/pkg-plist index b62dabbc3f45..a164fa303175 100644 --- a/games/crossfire-client/pkg-plist +++ b/games/crossfire-client/pkg-plist @@ -19,28 +19,45 @@ share/applications/crossfire-client.desktop %%DATADIR%%/sounds/bugle_charge.wav %%DATADIR%%/sounds/chord.wav %%DATADIR%%/sounds/claws.ogg +%%DATADIR%%/sounds/claws.ogg.LICENSE %%DATADIR%%/sounds/click1.wav %%DATADIR%%/sounds/click2.wav %%DATADIR%%/sounds/drip.wav %%DATADIR%%/sounds/fire-spell.wav +%%DATADIR%%/sounds/fire-spell.wav.LICENSE %%DATADIR%%/sounds/first_try.wav %%DATADIR%%/sounds/fist.ogg +%%DATADIR%%/sounds/fist.ogg.LICENSE %%DATADIR%%/sounds/gong.wav %%DATADIR%%/sounds/knife.ogg +%%DATADIR%%/sounds/knife.ogg.LICENSE %%DATADIR%%/sounds/lightning1.wav %%DATADIR%%/sounds/magic.wav %%DATADIR%%/sounds/miss-1.ogg +%%DATADIR%%/sounds/miss-1.ogg.LICENSE +%%DATADIR%%/sounds/music/navar.ogg +%%DATADIR%%/sounds/music/navar.ogg.LICENSE +%%DATADIR%%/sounds/music/scorn.mp3 +%%DATADIR%%/sounds/music/scorn.mp3.LICENSE +%%DATADIR%%/sounds/music/scorncounty.mp3 +%%DATADIR%%/sounds/music/scorncounty.mp3.LICENSE +%%DATADIR%%/sounds/music/wilderness.ogg +%%DATADIR%%/sounds/music/wilderness.ogg.LICENSE %%DATADIR%%/sounds/ouch1.wav %%DATADIR%%/sounds/painb.wav +%%DATADIR%%/sounds/painb.wav.LICENSE %%DATADIR%%/sounds/phit2.wav %%DATADIR%%/sounds/potion.ogg +%%DATADIR%%/sounds/potion.ogg.LICENSE %%DATADIR%%/sounds/sci_fi_gun.wav %%DATADIR%%/sounds/sounds.conf %%DATADIR%%/sounds/squish.wav %%DATADIR%%/sounds/step_lth1.ogg +%%DATADIR%%/sounds/step_lth1.ogg.LICENSE %%DATADIR%%/sounds/su-fanf.wav %%DATADIR%%/sounds/swish.wav %%DATADIR%%/sounds/sword-1.ogg +%%DATADIR%%/sounds/sword-1.ogg.LICENSE %%DATADIR%%/themes/Black %%DATADIR%%/themes/Standard %%DATADIR%%/ui/caelestis.ui diff --git a/games/gcompris-qt/Makefile b/games/gcompris-qt/Makefile index fb0fc1e5b5ad..e02485a23301 100644 --- a/games/gcompris-qt/Makefile +++ b/games/gcompris-qt/Makefile @@ -1,5 +1,5 @@ PORTNAME= gcompris-qt -DISTVERSION= 25.0.12 +DISTVERSION= 25.1.1 CATEGORIES= games education kde MASTER_SITES= https://gcompris.net/download/qt/src/ diff --git a/games/gcompris-qt/distinfo b/games/gcompris-qt/distinfo index 4b1d5ca936d0..1d3e38cbdeab 100644 --- a/games/gcompris-qt/distinfo +++ b/games/gcompris-qt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1739965115 -SHA256 (gcompris-qt-25.0.12.tar.xz) = 729ba42b5ed57075156a44e20f6cd7250e079b1dfb10695bb4fa48d34f3ec6d7 -SIZE (gcompris-qt-25.0.12.tar.xz) = 49402852 +TIMESTAMP = 1753027099 +SHA256 (gcompris-qt-25.1.1.tar.xz) = 636de9168bf5fd628faf061845f188f2c385d2da7f92c4b0449139ce6c6da12a +SIZE (gcompris-qt-25.1.1.tar.xz) = 49417124 diff --git a/games/powder-toy-devel/Makefile b/games/powder-toy-devel/Makefile index f5b9a6bc05f4..78bf51bac594 100644 --- a/games/powder-toy-devel/Makefile +++ b/games/powder-toy-devel/Makefile @@ -1,6 +1,5 @@ PORTNAME= powder-toy -DISTVERSION= snapshot-387 -PORTREVISION= 1 +DISTVERSION= snapshot-388 CATEGORIES= games PKGNAMESUFFIX= -devel diff --git a/games/powder-toy-devel/distinfo b/games/powder-toy-devel/distinfo index 2dbca6d3012f..0ef924b68d55 100644 --- a/games/powder-toy-devel/distinfo +++ b/games/powder-toy-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1746627455 -SHA256 (The-Powder-Toy-The-Powder-Toy-snapshot-387_GH0.tar.gz) = 5d104e80fcaa88e5d46c483b1321873cd00a5c5cfcc9a3de42348fce05008801 -SIZE (The-Powder-Toy-The-Powder-Toy-snapshot-387_GH0.tar.gz) = 804316 +TIMESTAMP = 1750851927 +SHA256 (The-Powder-Toy-The-Powder-Toy-snapshot-388_GH0.tar.gz) = 67e92507e1363b6e4e1633047b356fee41cf1d8251b66ff5fe2afb5fa62064b8 +SIZE (The-Powder-Toy-The-Powder-Toy-snapshot-388_GH0.tar.gz) = 808032 diff --git a/games/powder-toy-devel/files/patch-resources_meson.build b/games/powder-toy-devel/files/patch-resources_meson.build deleted file mode 100644 index 86e9f6720ece..000000000000 --- a/games/powder-toy-devel/files/patch-resources_meson.build +++ /dev/null @@ -1,11 +0,0 @@ ---- resources/meson.build.orig 2024-12-25 03:50:36 UTC -+++ resources/meson.build -@@ -98,7 +98,7 @@ elif host_platform == 'darwin' - output: 'Info.plist', - configuration: conf_data, - ) --elif host_platform == 'linux' -+else - embedded_files += [ - [ 'icon_exe_png', rendered_icons['icon_exe'] ], - [ 'icon_cps_png', rendered_icons['icon_cps'] ], diff --git a/games/sgt-puzzles/Makefile b/games/sgt-puzzles/Makefile index 630ab8a652ce..1e69421701b1 100644 --- a/games/sgt-puzzles/Makefile +++ b/games/sgt-puzzles/Makefile @@ -1,5 +1,5 @@ PORTNAME= puzzles -PORTVERSION= 20250523 +PORTVERSION= 20250714 CATEGORIES= games # upstream does not preserve older versions, mirroring is mandatory MASTER_SITES= https://www.chiark.greenend.org.uk/~sgtatham/puzzles/ \ @@ -20,7 +20,7 @@ USES= cmake gnome magick:build perl5 pkgconfig USE_PERL5= build CMAKE_ARGS= -DNAME_PREFIX:STRING=sgt- -COMMITHASH= 7fa0305 +COMMITHASH= 880288c DATADIR= ${PREFIX}/share/sgt-puzzles PORTDATA= * diff --git a/games/sgt-puzzles/distinfo b/games/sgt-puzzles/distinfo index d6a3bff1393d..cc8b93d6da0b 100644 --- a/games/sgt-puzzles/distinfo +++ b/games/sgt-puzzles/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1748028542 -SHA256 (puzzles-20250523.7fa0305.tar.gz) = 927521883305d297215f30950a7b4a897615256f075c1a00307f9af4eeb9d9b9 -SIZE (puzzles-20250523.7fa0305.tar.gz) = 2467677 +TIMESTAMP = 1752706930 +SHA256 (puzzles-20250714.880288c.tar.gz) = 325db97a98368abd0daa03c2416a499dfa99537c34a78a590870b67acba5d42c +SIZE (puzzles-20250714.880288c.tar.gz) = 2467414 diff --git a/games/veloren-weekly/Makefile b/games/veloren-weekly/Makefile index acd54dcbec19..8463e7be4eeb 100644 --- a/games/veloren-weekly/Makefile +++ b/games/veloren-weekly/Makefile @@ -1,5 +1,5 @@ PORTNAME= veloren -PORTVERSION= s20250709 +PORTVERSION= s20250715 CATEGORIES= games wayland PKGNAMESUFFIX= -weekly @@ -25,7 +25,7 @@ RUN_DEPENDS= ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:audio/alsa-pl USES= cargo xorg USE_XORG= xcb USE_GITLAB= yes -GL_TAGNAME= v0.17.0-841-g17dfbc9249 # git describe --match='v[0-9]*' weekly +GL_TAGNAME= v0.17.0-871-g058a217934 # git describe --match='v[0-9]*' weekly CARGO_ENV= VELOREN_USERDATA_STRATEGY=system SHADERC_LIB_DIR="${LOCALBASE}/lib" PLIST_FILES= bin/${PORTNAME}-server-cli \ bin/${PORTNAME}-voxygen \ diff --git a/games/veloren-weekly/distinfo b/games/veloren-weekly/distinfo index 28be1d34e9f7..efa7113c5cc5 100644 --- a/games/veloren-weekly/distinfo +++ b/games/veloren-weekly/distinfo @@ -1,4 +1,4 @@ -TIMESTAMP = 1752045185 +TIMESTAMP = 1752618450 SHA256 (rust/crates/ab_glyph-0.2.29.crate) = ec3672c180e71eeaaac3a541fbbc5f5ad4def8b747c595ad30d674e43049f7b0 SIZE (rust/crates/ab_glyph-0.2.29.crate) = 20011 SHA256 (rust/crates/ab_glyph_rasterizer-0.1.8.crate) = c71b1793ee61086797f5c80b6efa2b8ffa6d5dd703f118545808a7f2e27f7046 @@ -1871,5 +1871,5 @@ SHA256 (veloren-conrod-c74446362371dc837b8b4b6d6ddcd7693b48d9b6_GL0.tar.gz) = 43 SIZE (veloren-conrod-c74446362371dc837b8b4b6d6ddcd7693b48d9b6_GL0.tar.gz) = 808402 SHA256 (DaforLynx-kira-v0.10.7-with-config_GH0.tar.gz) = ffc38b7c73cb6419d02a21a3905cd0b00b3a544711230c5b11ef77301b7b9bb2 SIZE (DaforLynx-kira-v0.10.7-with-config_GH0.tar.gz) = 4379268 -SHA256 (veloren-v0.17.0-841-g17dfbc9249.tar.bz2) = 4aef2f6e0e6cc60a62685ff41a879a29eb25bcf4841ae80064e8e8f1ac656fbd -SIZE (veloren-v0.17.0-841-g17dfbc9249.tar.bz2) = 330959739 +SHA256 (veloren-v0.17.0-871-g058a217934.tar.bz2) = f3d25dea8116f8470f66f96a2dbf73d2371d0afe2601837634ce795a50ee9fd2 +SIZE (veloren-v0.17.0-871-g058a217934.tar.bz2) = 330937585 |