From: "Takuya Wakazono" <pastalian46@gmail.com>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprlock/files/, gui-apps/hyprlock/
Date: Fri, 30 Aug 2024 13:27:49 +0000 (UTC) [thread overview]
Message-ID: <1725023833.e8176604765a5fa0d225039c1769c7032f6f3987.pastalian46@gentoo> (raw)
commit: e8176604765a5fa0d225039c1769c7032f6f3987
Author: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Fri Aug 30 13:13:02 2024 +0000
Commit: Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Fri Aug 30 13:17:13 2024 +0000
URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e8176604
gui-apps/hyprlock: drop 0.3.0-r3
Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>
gui-apps/hyprlock/Manifest | 1 -
...hyprlock-0.3.0-cmake-install-pam-file-fix.patch | 24 -----------
.../files/hyprlock-0.3.0-fix-CFLAGS-CXXFLAGS.patch | 29 -------------
gui-apps/hyprlock/hyprlock-0.3.0-r3.ebuild | 48 ----------------------
4 files changed, 102 deletions(-)
diff --git a/gui-apps/hyprlock/Manifest b/gui-apps/hyprlock/Manifest
index f4d738e29..79be81f6e 100644
--- a/gui-apps/hyprlock/Manifest
+++ b/gui-apps/hyprlock/Manifest
@@ -1,2 +1 @@
-DIST hyprlock-0.3.0.tar.gz 61599 BLAKE2B f9bd1b358f55a860441d66d07361f3fe0d19f3f81612714e5dfa3fa6a9fa30f206416fd255365ef0469e50e13048e9378b5f5f79ee37904bf97618e2e08348dc SHA512 3c2262e19f62259efdd2fec0c05f473d60b71809e75b253529e56b31337eee6ca176ead36101a023d777d8989613df765d002358c45aadba6db6593fbca7dd2c
DIST hyprlock-0.4.1.tar.gz 64302 BLAKE2B c6c745b6efa453aa2eff71d65e25c26499ada675c983d62c36c72f1a2ef8e6e4415cf7d53a7e405971366470149a8b40e855923ae7dc86e01e32ff1d257353b5 SHA512 f3831f51a18907e400ba8ab17e16aec7edc25eff207da6cb70b1a06eb1b8312d3061b077cc6ff59d5475bc17322a3f1e47bd9e6adc9041617b8797366eb6d7b5
diff --git a/gui-apps/hyprlock/files/hyprlock-0.3.0-cmake-install-pam-file-fix.patch b/gui-apps/hyprlock/files/hyprlock-0.3.0-cmake-install-pam-file-fix.patch
deleted file mode 100644
index fbdf38c84..000000000
--- a/gui-apps/hyprlock/files/hyprlock-0.3.0-cmake-install-pam-file-fix.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From d9a6229434fba475ea42b634ee2f03919236798d Mon Sep 17 00:00:00 2001
-From: Vaxry <vaxry@vaxry.net>
-Date: Wed, 10 Apr 2024 22:42:54 +0100
-Subject: [PATCH] pam: always install pam file
-
----
- CMakeLists.txt | 7 +------
- 1 file changed, 1 insertion(+), 6 deletions(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e4d73c4..3cc75f1 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -83,9 +83,4 @@ protocol("unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml" "linux-dmabuf-unst
- # Installation
- install(TARGETS hyprlock)
-
--install(CODE "
-- if (NOT EXISTS \"${CMAKE_INSTALL_FULL_SYSCONFDIR}/pam.d/hyprlock\")
-- install(FILES \"${CMAKE_SOURCE_DIR}/pam/hyprlock\" DESTINATION \"${CMAKE_INSTALL_FULL_SYSCONFDIR}/pam.d\")
-- endif()
--")
--
-+install(FILES ${CMAKE_SOURCE_DIR}/pam/hyprlock DESTINATION ${CMAKE_INSTALL_FULL_SYSCONFDIR}/pam.d)
diff --git a/gui-apps/hyprlock/files/hyprlock-0.3.0-fix-CFLAGS-CXXFLAGS.patch b/gui-apps/hyprlock/files/hyprlock-0.3.0-fix-CFLAGS-CXXFLAGS.patch
deleted file mode 100644
index 6f1652c53..000000000
--- a/gui-apps/hyprlock/files/hyprlock-0.3.0-fix-CFLAGS-CXXFLAGS.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From 8b3826337c13f98611b71abc0030e9a962303cf3 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Gon=C3=A7alo=20Negrier=20Duarte?=
- <gonegrier.duarte@gmail.com>
-Date: Wed, 21 Feb 2024 15:31:55 +0000
-Subject: [PATCH] Removed added CFLAGS/CXXFLAGS by CMakeLists.txt
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte@gmail.com>
----
- CMakeLists.txt | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 6aac750..a9df5b1 100644
---- a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -13,7 +13,6 @@ if(CMAKE_BUILD_TYPE MATCHES Debug OR CMAKE_BUILD_TYPE MATCHES DEBUG)
- message(STATUS "Configuring hyprlock in Debug with CMake")
- add_compile_definitions(HYPRLAND_DEBUG)
- else()
-- add_compile_options(-O3)
- message(STATUS "Configuring hyprlock in Release with CMake")
- endif()
-
---
-2.43.2
-
diff --git a/gui-apps/hyprlock/hyprlock-0.3.0-r3.ebuild b/gui-apps/hyprlock/hyprlock-0.3.0-r3.ebuild
deleted file mode 100644
index c926d5131..000000000
--- a/gui-apps/hyprlock/hyprlock-0.3.0-r3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Hyprland's GPU-accelerated screen locking utility"
-HOMEPAGE="https://github.com/hyprwm/hyprlock"
-
-if [[ "${PV}" = *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
-else
- SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="
- dev-libs/date
- dev-libs/wayland
- media-libs/mesa[opengl]
- sys-libs/pam
- dev-libs/glib:2
- >=dev-libs/hyprlang-0.4.0
- media-libs/libglvnd
- x11-libs/cairo
- x11-libs/libxkbcommon
- x11-libs/libdrm
- x11-libs/pango
-"
-DEPEND="
- ${RDEPEND}
- dev-libs/wayland-protocols
-"
-
-BDEPEND="
- dev-util/wayland-scanner
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}/hyprlock-0.3.0-fix-CFLAGS-CXXFLAGS.patch"
- "${FILESDIR}/hyprlock-0.3.0-cmake-install-pam-file-fix.patch"
-)
next reply other threads:[~2024-08-30 13:27 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-30 13:27 Takuya Wakazono [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-01-13 8:54 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprlock/files/, gui-apps/hyprlock/ Takuya Wakazono
2024-10-30 10:15 Anthony Ruhier
2024-07-22 16:29 John M. Harris, Jr.
2024-07-22 16:26 John M. Harris, Jr.
2024-02-21 16:00 Gonçalo Negrier Duarte
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1725023833.e8176604765a5fa0d225039c1769c7032f6f3987.pastalian46@gentoo \
--to=pastalian46@gmail.com \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox