git: 081a78103e1e - main - x11/hyprlock: update to 0.9.2

From: Hiroki Tagato <tagattie_at_FreeBSD.org>
Date: Thu, 09 Oct 2025 03:27:05 UTC
The branch main has been updated by tagattie:

URL: https://cgit.FreeBSD.org/ports/commit/?id=081a78103e1e81569a36cf774306113657187b0e

commit 081a78103e1e81569a36cf774306113657187b0e
Author:     Hiroki Tagato <tagattie@FreeBSD.org>
AuthorDate: 2025-10-09 03:26:05 +0000
Commit:     Hiroki Tagato <tagattie@FreeBSD.org>
CommitDate: 2025-10-09 03:27:00 +0000

    x11/hyprlock: update to 0.9.2
    
    While here, remove upstreamed patch.
    
    Changelog: https://github.com/hyprwm/hyprlock/releases/tag/v0.9.2
    
    Reported by:    GitHub (watch releases)
---
 x11/hyprlock/Makefile                   |  3 +--
 x11/hyprlock/distinfo                   |  6 +++---
 x11/hyprlock/files/patch-CMakeLists.txt | 30 ------------------------------
 3 files changed, 4 insertions(+), 35 deletions(-)

diff --git a/x11/hyprlock/Makefile b/x11/hyprlock/Makefile
index 8de5070af7e4..dbccb926deb8 100644
--- a/x11/hyprlock/Makefile
+++ b/x11/hyprlock/Makefile
@@ -1,7 +1,6 @@
 PORTNAME=	hyprlock
 DISTVERSIONPREFIX=	v
-DISTVERSION=	0.9.1
-PORTREVISION=	2
+DISTVERSION=	0.9.2
 CATEGORIES=	x11 wayland
 
 MAINTAINER=	tagattie@FreeBSD.org
diff --git a/x11/hyprlock/distinfo b/x11/hyprlock/distinfo
index 4823ecb9437d..a6cb5b96c4c7 100644
--- a/x11/hyprlock/distinfo
+++ b/x11/hyprlock/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1754034433
-SHA256 (hyprwm-hyprlock-v0.9.1_GH0.tar.gz) = 03f26ceba049546767a903a5e5bcd78fa4d261a5d116febd45633b88b9f16a97
-SIZE (hyprwm-hyprlock-v0.9.1_GH0.tar.gz) = 83699
+TIMESTAMP = 1759979750
+SHA256 (hyprwm-hyprlock-v0.9.2_GH0.tar.gz) = d4a8ef9115232b3545dd517e96f1251f91022765eb272b5e7057c20e3e7e8837
+SIZE (hyprwm-hyprlock-v0.9.2_GH0.tar.gz) = 84454
diff --git a/x11/hyprlock/files/patch-CMakeLists.txt b/x11/hyprlock/files/patch-CMakeLists.txt
deleted file mode 100644
index 7ec6a3c2d392..000000000000
--- a/x11/hyprlock/files/patch-CMakeLists.txt
+++ /dev/null
@@ -1,30 +0,0 @@
---- CMakeLists.txt.orig	2025-07-17 09:05:58 UTC
-+++ CMakeLists.txt
-@@ -86,14 +86,25 @@ pkg_check_modules(
-   pangocairo
-   libdrm
-   gbm
--  pam
-   hyprutils>=0.8.0
-   sdbus-c++>=2.0.0
-   hyprgraphics)
-+find_library(PAM_FOUND pam)
-+if(PAM_FOUND)
-+  message(STATUS "Found pam")
-+  set(PAM_LIB ${PAM_FOUND})
-+else()
-+  pkg_check_modules(PAM IMPORTED_TARGET pam)
-+  if(PAM_FOUND)
-+    set(PAM_LIB PkgConfig::PAM)
-+  else()
-+    message(FATAL_ERROR "The required library libpam was not found.")
-+  endif()
-+endif()
- 
- file(GLOB_RECURSE SRCFILES CONFIGURE_DEPENDS "src/*.cpp")
- add_executable(hyprlock ${SRCFILES})
--target_link_libraries(hyprlock PRIVATE pam rt Threads::Threads PkgConfig::deps
-+target_link_libraries(hyprlock PRIVATE ${PAM_LIB} rt Threads::Threads PkgConfig::deps
-                                        OpenGL::EGL OpenGL::GLES3)
- 
- # protocols