commit:     324af645ddca9ec2d41114f135450281ae355005
Author:     dsaf <ghostyn678+git <AT> gmail <DOT> com>
AuthorDate: Sun Mar  8 22:45:59 2026 +0000
Commit:     dsaf <ghostyn678+git <AT> gmail <DOT> com>
CommitDate: Sun Mar  8 22:51:29 2026 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=324af645

gui-apps/noctalia-qs: drop 0.0.5, add 0.0.6

* Drop 'breakpad' USE flag: Now requires dev-cpp/cpptrace::gentoo which does 
not feature the required build flags
* Use get_libdir instead of hard-coding

Signed-off-by: dsaf <ghostyn678+git <AT> gmail.com>

 gui-apps/noctalia-qs/Manifest                      |  2 +-
 gui-apps/noctalia-qs/metadata.xml                  |  7 ++-
 ...ia-qs-0.0.5.ebuild => noctalia-qs-0.0.6.ebuild} | 60 +++++++++++-----------
 gui-apps/noctalia-qs/noctalia-qs-9999.ebuild       | 58 ++++++++++-----------
 4 files changed, 61 insertions(+), 66 deletions(-)

diff --git a/gui-apps/noctalia-qs/Manifest b/gui-apps/noctalia-qs/Manifest
index 03d44d001d..d5e50aa110 100644
--- a/gui-apps/noctalia-qs/Manifest
+++ b/gui-apps/noctalia-qs/Manifest
@@ -1 +1 @@
-DIST noctalia-qs-0.0.5.tar.gz 469145 BLAKE2B 
b94ed96182ac5f6e2e2b0d6489046ab99e4816d0e3598edc7e8fbbf66bcc9c7b3922da7fddfef8922b0a2473066339480c0e14bc51fbac7f27270aea91573eec
 SHA512 
266c0e11908a6ca1c546e3cff88f5898402eedda49f983baad4682c05ab862f64ff32f7482db908c6dda9b0887a3255f595881c1d4987b9b1e1057a601f48d36
+DIST noctalia-qs-0.0.6.tar.gz 502178 BLAKE2B 
a797059ba04041563cfb4f59c0971d864fc8226c9d5463fdecdc7b88cfb9a0c01f3ff2d821dde6499bacef2ec59b223de9474884daca07377f2c6bf2e8285471
 SHA512 
e8490a6c6939243101431421951357e02b3b9a5145573dda91bd300ec3d0d00c5839c0c2e9b177308c14bff3011b8ef23ebb362d588f77c6c13a2c1b3cf11874

diff --git a/gui-apps/noctalia-qs/metadata.xml 
b/gui-apps/noctalia-qs/metadata.xml
index 37ae06464f..a74cffbfd2 100644
--- a/gui-apps/noctalia-qs/metadata.xml
+++ b/gui-apps/noctalia-qs/metadata.xml
@@ -6,12 +6,11 @@
                <name>dsaf</name>
        </maintainer>
        <longdescription>
-               noctalia-qs is a custom fork of Quickshell 
-               - a flexible QtQuick-based desktop shell toolkit for Wayland. 
-               It serves as the shell framework powering Noctalia Shell. 
+               noctalia-qs is a custom fork of Quickshell
+               - a flexible QtQuick-based desktop shell toolkit for Wayland.
+               It serves as the shell framework powering Noctalia Shell.
        </longdescription>
        <use>
-               <flag name="breakpad">Enable Google's 
<pkg>dev-util/breakpad</pkg> crash reporter</flag>
                <flag name="sockets">Enable Unix Sockets (WARNING: Disabling is 
unsafe!)</flag>
                <flag name="layer-shell">Enable wlroots layershell integration 
through the zwlr-layer-shell-v1 protocol</flag>
                <flag name="session-lock">Enable session lock support through 
the ext-session-lock-v1 protocol</flag>

diff --git a/gui-apps/noctalia-qs/noctalia-qs-0.0.5.ebuild 
b/gui-apps/noctalia-qs/noctalia-qs-0.0.6.ebuild
similarity index 53%
rename from gui-apps/noctalia-qs/noctalia-qs-0.0.5.ebuild
rename to gui-apps/noctalia-qs/noctalia-qs-0.0.6.ebuild
index 807ab5c0c2..1395334459 100644
--- a/gui-apps/noctalia-qs/noctalia-qs-0.0.5.ebuild
+++ b/gui-apps/noctalia-qs/noctalia-qs-0.0.6.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 inherit branding cmake
 
-GIT_REVISION=1a02ba2ee11b1afa8ec9a94f8b6b652bf4f14e1d
+GIT_REVISION=b58414209fce1669cff818e50468e926613baa10
 
 DESCRIPTION="Toolkit for building desktop widgets using QtQuick"
 HOMEPAGE="https://quickshell.org/";
@@ -23,7 +23,7 @@ SLOT="0"
 
 # Upstream recommends leaving all build options enabled by default
 IUSE="
-       +breakpad +jemalloc +sockets +wayland +layer-shell
+       +jemalloc +sockets +wayland +layer-shell
        +session-lock +toplevel-management +screencopy +X
        +pipewire +tray +mpris +pam +polkit +hyprland
        +hyprland-global-shortcuts +hyprland-focus-grab
@@ -59,39 +59,37 @@ BDEPEND="
        virtual/pkgconfig
        dev-cpp/cli11
        dev-qt/qtshadertools:6
-       breakpad? ( dev-util/breakpad )
        wayland? (
                dev-util/wayland-scanner
                dev-libs/wayland-protocols
        )
 "
 
-src_configure(){
-       mycmakeargs=(
-                       -DCMAKE_BUILD_TYPE=Release
-                       -DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-                       -DINSTALL_QML_PREFIX="lib64/qt6/qml"
-                       -DGIT_REVISION=${GIT_REVISION}
-                       -DCRASH_REPORTER=$(usex breakpad ON OFF)
-                       -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-                       -DSOCKETS=$(usex sockets ON OFF)
-                       -DWAYLAND=$(usex wayland ON OFF)
-                       -DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-                       -DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-                       -DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex 
toplevel-management ON OFF)
-                       -DSCREENCOPY=$(usex screencopy ON OFF)
-                       -DX11=$(usex X ON OFF)
-                       -DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-                       -DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-                       -DSERVICE_MPRIS=$(usex mpris ON OFF)
-                       -DSERVICE_PAM=$(usex pam ON OFF)
-                       -DSERVICE_POLKIT=$(usex polkit ON OFF)
-                       -DHYPRLAND=$(usex hyprland ON OFF)
-                       -DHYPRLAND_GLOBAL_SHORTCUTS=$(usex 
hyprland-global-shortcuts)
-                       -DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-                       -DI3=$(usex i3 ON OFF)
-                       -DI3_IPC=$(usex i3-ipc ON OFF)
-                       -DBLUETOOTH=$(usex bluetooth ON OFF)
-               )
-               cmake_src_configure
+src_configure() {
+       local mycmakeargs=(
+               -DCMAKE_BUILD_TYPE=Release
+               -DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
+               -DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
+               -DGIT_REVISION=${GIT_REVISION}
+               -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
+               -DSOCKETS=$(usex sockets ON OFF)
+               -DWAYLAND=$(usex wayland ON OFF)
+               -DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
+               -DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
+               -DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
+               -DSCREENCOPY=$(usex screencopy ON OFF)
+               -DX11=$(usex X ON OFF)
+               -DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
+               -DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
+               -DSERVICE_MPRIS=$(usex mpris ON OFF)
+               -DSERVICE_PAM=$(usex pam ON OFF)
+               -DSERVICE_POLKIT=$(usex polkit ON OFF)
+               -DHYPRLAND=$(usex hyprland ON OFF)
+               -DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
+               -DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
+               -DI3=$(usex i3 ON OFF)
+               -DI3_IPC=$(usex i3-ipc ON OFF)
+               -DBLUETOOTH=$(usex bluetooth ON OFF)
+       )
+       cmake_src_configure
 }

diff --git a/gui-apps/noctalia-qs/noctalia-qs-9999.ebuild 
b/gui-apps/noctalia-qs/noctalia-qs-9999.ebuild
index f6ee9d6029..ae39158b86 100644
--- a/gui-apps/noctalia-qs/noctalia-qs-9999.ebuild
+++ b/gui-apps/noctalia-qs/noctalia-qs-9999.ebuild
@@ -21,7 +21,7 @@ SLOT="0"
 
 # Upstream recommends leaving all build options enabled by default
 IUSE="
-       +breakpad +jemalloc +sockets +wayland +layer-shell
+       +jemalloc +sockets +wayland +layer-shell
        +session-lock +toplevel-management +screencopy +X
        +pipewire +tray +mpris +pam +polkit +hyprland
        +hyprland-global-shortcuts +hyprland-focus-grab
@@ -57,39 +57,37 @@ BDEPEND="
        virtual/pkgconfig
        dev-cpp/cli11
        dev-qt/qtshadertools:6
-       breakpad? ( dev-util/breakpad )
        wayland? (
                dev-util/wayland-scanner
                dev-libs/wayland-protocols
        )
 "
 
-src_configure(){
-       mycmakeargs=(
-                       -DCMAKE_BUILD_TYPE=Release
-                       -DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
-                       -DINSTALL_QML_PREFIX="lib64/qt6/qml"
-                       -DGIT_REVISION=${EGIT_COMMIT}
-                       -DCRASH_REPORTER=$(usex breakpad ON OFF)
-                       -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
-                       -DSOCKETS=$(usex sockets ON OFF)
-                       -DWAYLAND=$(usex wayland ON OFF)
-                       -DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
-                       -DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
-                       -DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex 
toplevel-management ON OFF)
-                       -DSCREENCOPY=$(usex screencopy ON OFF)
-                       -DX11=$(usex X ON OFF)
-                       -DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
-                       -DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
-                       -DSERVICE_MPRIS=$(usex mpris ON OFF)
-                       -DSERVICE_PAM=$(usex pam ON OFF)
-                       -DSERVICE_POLKIT=$(usex polkit ON OFF)
-                       -DHYPRLAND=$(usex hyprland ON OFF)
-                       -DHYPRLAND_GLOBAL_SHORTCUTS=$(usex 
hyprland-global-shortcuts)
-                       -DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
-                       -DI3=$(usex i3 ON OFF)
-                       -DI3_IPC=$(usex i3-ipc ON OFF)
-                       -DBLUETOOTH=$(usex bluetooth ON OFF)
-               )
-               cmake_src_configure
+src_configure() {
+       local mycmakeargs=(
+               -DCMAKE_BUILD_TYPE=Release
+               -DDISTRIBUTOR="${BRANDING_OS_NAME} GURU"
+               -DINSTALL_QML_PREFIX="$(get_libdir)/qt6/qml"
+               -DGIT_REVISION=${EGIT_COMMIT}
+               -DUSE_JEMALLOC=$(usex jemalloc ON OFF)
+               -DSOCKETS=$(usex sockets ON OFF)
+               -DWAYLAND=$(usex wayland ON OFF)
+               -DWAYLAND_WLR_LAYERSHELL=$(usex layer-shell ON OFF)
+               -DWAYLAND_SESSION_LOCK=$(usex session-lock ON OFF)
+               -DWAYLAND_TOPLEVEL_MANAGEMENT=$(usex toplevel-management ON OFF)
+               -DSCREENCOPY=$(usex screencopy ON OFF)
+               -DX11=$(usex X ON OFF)
+               -DSERVICE_PIPEWIRE=$(usex pipewire ON OFF)
+               -DSERVICE_STATUS_NOTIFIER=$(usex tray ON OFF)
+               -DSERVICE_MPRIS=$(usex mpris ON OFF)
+               -DSERVICE_PAM=$(usex pam ON OFF)
+               -DSERVICE_POLKIT=$(usex polkit ON OFF)
+               -DHYPRLAND=$(usex hyprland ON OFF)
+               -DHYPRLAND_GLOBAL_SHORTCUTS=$(usex hyprland-global-shortcuts)
+               -DHYPRLAND_FOCUS_GRAB=$(usex hyprland-focus-grab)
+               -DI3=$(usex i3 ON OFF)
+               -DI3_IPC=$(usex i3-ipc ON OFF)
+               -DBLUETOOTH=$(usex bluetooth ON OFF)
+       )
+       cmake_src_configure
 }

Reply via email to