git: 622876077556 - main - x11-wm/phoc: update to 0.33.0
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 28 Oct 2023 11:00:48 UTC
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=622876077556307f333304be26685eb53831ab45 commit 622876077556307f333304be26685eb53831ab45 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2023-10-28 09:42:21 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2023-10-28 11:00:39 +0000 x11-wm/phoc: update to 0.33.0 Changes: https://gitlab.gnome.org/World/Phosh/phoc/-/releases/v0.33.0 Reported by: GitLab (notify releases) --- x11-wm/phoc/Makefile | 2 +- x11-wm/phoc/distinfo | 6 +++--- x11-wm/phoc/files/patch-examples_meson.build | 13 +++++++++++++ 3 files changed, 17 insertions(+), 4 deletions(-) diff --git a/x11-wm/phoc/Makefile b/x11-wm/phoc/Makefile index db8b3934a075..2e540d58feee 100644 --- a/x11-wm/phoc/Makefile +++ b/x11-wm/phoc/Makefile @@ -1,6 +1,6 @@ PORTNAME= phoc DISTVERSIONPREFIX= v -DISTVERSION= 0.32.0 +DISTVERSION= 0.33.0 CATEGORIES= x11-wm wayland MAINTAINER= jbeich@FreeBSD.org diff --git a/x11-wm/phoc/distinfo b/x11-wm/phoc/distinfo index 82c0a7d6b2f9..5f3b4fb8b9a0 100644 --- a/x11-wm/phoc/distinfo +++ b/x11-wm/phoc/distinfo @@ -1,5 +1,5 @@ -TIMESTAMP = 1696503763 -SHA256 (phoc-v0.32.0.tar.bz2) = ed485f25b0c0805cb0c1e73166f5d5f85875b88bc6b4730eaaa0db790780b303 -SIZE (phoc-v0.32.0.tar.bz2) = 213948 +TIMESTAMP = 1698486141 +SHA256 (phoc-v0.33.0.tar.bz2) = d348a8c22e30f4168170509d0f4922e20dc752389e630b20718134af7ce08683 +SIZE (phoc-v0.33.0.tar.bz2) = 215097 SHA256 (gmobile-v0.0.1-11-gff85498.tar.bz2) = a2a8587b03b386da62c22e486fbb752a8913becbc8c45c2aabd43b9e63ed07a7 SIZE (gmobile-v0.0.1-11-gff85498.tar.bz2) = 20328 diff --git a/x11-wm/phoc/files/patch-examples_meson.build b/x11-wm/phoc/files/patch-examples_meson.build new file mode 100644 index 000000000000..f9757e4f1b03 --- /dev/null +++ b/x11-wm/phoc/files/patch-examples_meson.build @@ -0,0 +1,13 @@ +ld: error: undefined symbol: pthread_create +>>> referenced by idle.c +>>> examples/idle.p/idle.c.o:(main) + +--- examples/meson.build.orig 2023-10-28 09:42:21 UTC ++++ examples/meson.build +@@ -27,5 +27,5 @@ executable('idle', + + executable('idle', + sources: ['idle.c', client_protos_headers, protos_sources], +- dependencies: [glib, wayland_client], ++ dependencies: [glib, wayland_client, dependency('threads')], + )