Compare commits

...

7 Commits

Author SHA1 Message Date
Markus Volk
02a2ca92ce hyprpicker: fix build 2024-12-30 08:31:55 +01:00
Markus Volk
d7bf20ded2 hyprland: update 2024-12-30 07:55:33 +01:00
Markus Volk
44ffa05799 hyprwayland-scanner: update 2024-12-30 07:55:33 +01:00
Markus Volk
04e04db59e hyprlang: update 2024-12-30 07:55:33 +01:00
Markus Volk
f2b168e886 hyprlock: update 2024-12-30 07:55:33 +01:00
Markus Volk
f69e53e2a5 hyprutils: update 2024-12-30 07:55:33 +01:00
Markus Volk
00cb504aa9 glaze: add libeigen dependency 2024-12-30 07:55:33 +01:00
8 changed files with 46 additions and 10 deletions

View File

@ -8,8 +8,8 @@ SRCREV = "dfdb2ea5e878e8eff9f863b50728d860f663764f"
PV = "4.2.3"
S = "${WORKDIR}/git"
DEPENDS += "gcc-sanitizers"
DEPENDS += "gcc-sanitizers libeigen"
RDEPENDS:${PN} = "libeigen"
inherit cmake
EXTRA_OECMAKE = "-DBUILD_TESTING=OFF"

View File

@ -45,7 +45,7 @@ RRECOMMENDS:${PN} ?= " \
SRC_URI = "gitsm://github.com/hyprwm/Hyprland.git;protocol=https;nobranch=1"
SRC_URI += "file://0001-meson.build-use-pkgconfig-for-glaze.patch"
SRCREV = "775111b6032185c9ef164d7ba1417a875c1d0287"
SRCREV = "cb211d83f68542e9fbf7567d57bdf528286cbf7e"
PV = "0.46.2"
S = "${WORKDIR}/git"

View File

@ -9,7 +9,7 @@ DEPENDS = "hyprutils"
SRC_URI = "git://github.com/hyprwm/hyprlang.git;protocol=https;branch=main"
S = "${WORKDIR}/git"
SRCREV = "1b0c5957312d4e70353f1916a86bec305d98ba65"
SRCREV = "55608efdaa387af7bfdc0eddb404c409958efa43"
PV = "0.6.0"
inherit cmake pkgconfig

View File

@ -13,6 +13,7 @@ DEPENDS = " \
hyprgraphics \
hyprlang \
hyprutils \
hyprwayland-scanner-native \
jpeg \
libdrm \
libpam \
@ -28,7 +29,7 @@ DEPENDS = " \
"
S = "${WORKDIR}/git"
SRCREV = "d12b4a7fbaf570fbe9322c09a777c124fbf15306"
SRCREV = "3d63d9b129d5def270bc8a2471347e6f97274e2b"
PV = "0.6.0"
inherit cmake pkgconfig features_check

View File

@ -0,0 +1,35 @@
From 15a51707cd18b398bf3a3abc077fd0f8245b3ceb Mon Sep 17 00:00:00 2001
From: Markus Volk <f_l_k@t-online.de>
Date: Mon, 30 Dec 2024 08:26:09 +0100
Subject: [PATCH] hyprpicker.cpp: drop wl_ressource
Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
src/hyprpicker.cpp | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/hyprpicker.cpp b/src/hyprpicker.cpp
index 2e8dbbf..ed07b99 100644
--- a/src/hyprpicker.cpp
+++ b/src/hyprpicker.cpp
@@ -573,7 +573,7 @@ void CHyprpicker::initKeyboard() {
}
void CHyprpicker::initMouse() {
- m_pPointer->setEnter([this](CCWlPointer* r, uint32_t serial, wl_resource* surface, wl_fixed_t surface_x, wl_fixed_t surface_y) {
+ m_pPointer->setEnter([this](CCWlPointer* r, uint32_t serial, wl_proxy* surface, wl_fixed_t surface_x, wl_fixed_t surface_y) {
auto x = wl_fixed_to_double(surface_x);
auto y = wl_fixed_to_double(surface_y);
@@ -590,7 +590,7 @@ void CHyprpicker::initMouse() {
m_pCursorShapeDevice->sendSetShape(serial, WP_CURSOR_SHAPE_DEVICE_V1_SHAPE_CROSSHAIR);
});
- m_pPointer->setLeave([this](CCWlPointer* r, uint32_t timeMs, wl_resource* surf) {
+ m_pPointer->setLeave([this](CCWlPointer* r, uint32_t timeMs, wl_proxy* surf) {
for (auto& ls : m_vLayerSurfaces) {
if (ls->pSurface->resource() == surf) {
renderSurface(ls.get(), true);
--
2.47.1

View File

@ -4,10 +4,10 @@ LICENSE = "BSD-3-Clause"
LIC_FILES_CHKSUM = "file://LICENSE;md5=936078e4e67b0e1e1bd1e862d4ffbc25"
SRC_URI = "git://github.com/hyprwm/hyprpicker.git;protocol=https;branch=main"
SRC_URI += "file://0001-hyprpicker.cpp-drop-wl_ressource.patch"
PV = "0.4.1"
S = "${WORKDIR}/git"
SRCREV = "116cec14a552191a9ad69ca96252ca12ecfa9826"
SRCREV = "46d2f5a817a89405cef941d8beb4551425acf3da"
DEPENDS = " \
cairo \

View File

@ -9,7 +9,7 @@ DEPENDS = "pixman"
SRC_URI = "git://github.com/hyprwm/hyprutils.git;protocol=https;branch=main"
S = "${WORKDIR}/git"
SRCREV = "5e45b1a1b9f02594843b3190deff0a68306525d2"
SRCREV = "8af7e4b9ded8b07a2293032aa494efb7c0eab3c5"
PV = "0.3.0"
inherit cmake pkgconfig

View File

@ -9,8 +9,8 @@ SRC_URI = "git://github.com/hyprwm/hyprwayland-scanner.git;protocol=https;branch
DEPENDS = "pugixml"
S = "${WORKDIR}/git"
SRCREV = "500c81a9e1a76760371049a8d99e008ea77aa59e"
PV = "0.4.2"
SRCREV = "de913476b59ee88685fdc018e77b8f6637a2ae0b"
PV = "0.4.4"
inherit cmake pkgconfig