Date: Sat, 14 Dec 2024 10:31:01 GMT From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 6a02c54abaf3 - main - x11/hyprcursor: unbreak build after 06c18b031f1d Message-ID: <202412141031.4BEAV1nQ011989@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=6a02c54abaf3dbcd24217307dd6ccb344832e0a1 commit 6a02c54abaf3dbcd24217307dd6ccb344832e0a1 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2024-12-14 10:28:47 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2024-12-14 10:30:45 +0000 x11/hyprcursor: unbreak build after 06c18b031f1d hyprcursor-util/src/main.cpp:260:19: error: implicit instantiation of undefined template 'std::basic_ofstream<char>' 260 | std::ofstream manifest(out + "/manifest.hl", std::ios::trunc); | ^ /usr/include/c++/v1/__fwd/fstream.h:26:28: note: template is declared here 26 | class _LIBCPP_TEMPLATE_VIS basic_ofstream; | ^ hyprcursor-util/src/main.cpp:292:41: error: implicit instantiation of undefined template 'std::basic_ifstream<char>' 292 | std::ifstream xconfig("/tmp/hyprcursor-util/" + xcursor.path().stem().string() + ".conf"); | ^ /usr/include/c++/v1/__fwd/fstream.h:24:28: note: template is declared here 24 | class _LIBCPP_TEMPLATE_VIS basic_ifstream; | ^ hyprcursor-util/src/main.cpp:370:23: error: implicit instantiation of undefined template 'std::basic_ofstream<char>' 370 | std::ofstream meta(CURSORDIR + "/meta.hl", std::ios::trunc); | ^ /usr/include/c++/v1/__fwd/fstream.h:26:28: note: template is declared here 26 | class _LIBCPP_TEMPLATE_VIS basic_ofstream; | ^ Reported by: pkg-fallout --- x11/hyprcursor/Makefile | 1 + x11/hyprcursor/distinfo | 2 ++ 2 files changed, 3 insertions(+) diff --git a/x11/hyprcursor/Makefile b/x11/hyprcursor/Makefile index 7792f6caf967..a9fd9bb4d9d3 100644 --- a/x11/hyprcursor/Makefile +++ b/x11/hyprcursor/Makefile @@ -5,6 +5,7 @@ CATEGORIES= x11 PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ PATCHFILES+= f8e8455e998e.patch:-p1 # https://github.com/hyprwm/hyprcursor/pull/66 +PATCHFILES+= 2b522b0350ea.patch:-p1 # https://github.com/hyprwm/hyprcursor/pull/71 MAINTAINER= jbeich@FreeBSD.org COMMENT= Hyprland cursor format, library and utilities diff --git a/x11/hyprcursor/distinfo b/x11/hyprcursor/distinfo index e51b70494e2a..b5fcd576363f 100644 --- a/x11/hyprcursor/distinfo +++ b/x11/hyprcursor/distinfo @@ -3,3 +3,5 @@ SHA256 (hyprwm-hyprcursor-v0.1.10_GH0.tar.gz) = 67e845404164fee4c5694209b3d5f93a SIZE (hyprwm-hyprcursor-v0.1.10_GH0.tar.gz) = 26654 SHA256 (f8e8455e998e.patch) = b72cf7ab70b9c193c62ddcee45e70106ba4b5f26e9aded6fee8b41f7630876d2 SIZE (f8e8455e998e.patch) = 1028 +SHA256 (2b522b0350ea.patch) = 1a2cd00c853fe2cef4325da1fc71a279b0661a6d16f208a528e5f1897102e368 +SIZE (2b522b0350ea.patch) = 1830
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202412141031.4BEAV1nQ011989>