From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B7BFA15813A for ; Mon, 13 Jan 2025 15:51:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9964E0802; Mon, 13 Jan 2025 15:51:58 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0D9CE0802 for ; Mon, 13 Jan 2025 15:51:58 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E6CDC33FDEE for ; Mon, 13 Jan 2025 15:51:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 465491DC9 for ; Mon, 13 Jan 2025 15:51:56 +0000 (UTC) From: "David Roman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Roman" Message-ID: <1736783535.15c24c525f80e5cbe2a65d0471902ad85af78cb4.davidroman@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-libs/hyprland-qt-support/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-libs/hyprland-qt-support/Manifest gui-libs/hyprland-qt-support/hyprland-qt-support-0.1.0.ebuild gui-libs/hyprland-qt-support/metadata.xml X-VCS-Directories: gui-libs/hyprland-qt-support/ X-VCS-Committer: davidroman X-VCS-Committer-Name: David Roman X-VCS-Revision: 15c24c525f80e5cbe2a65d0471902ad85af78cb4 X-VCS-Branch: dev Date: Mon, 13 Jan 2025 15:51:56 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 857479f8-119c-4f03-b2d3-6c500ae25831 X-Archives-Hash: 733d332391ae6837a098a8ee2831827e commit: 15c24c525f80e5cbe2a65d0471902ad85af78cb4 Author: Johannes Huber gmx de> AuthorDate: Sun Jan 12 10:19:20 2025 +0000 Commit: David Roman gmail com> CommitDate: Mon Jan 13 15:52:15 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=15c24c52 gui-libs/hyprland-qt-support: new package Signed-off-by: Johannes Huber gmx.de> Signed-off-by: David Roman gmail.com> gui-libs/hyprland-qt-support/Manifest | 1 + .../hyprland-qt-support-0.1.0.ebuild | 36 ++++++++++++++++++++++ gui-libs/hyprland-qt-support/metadata.xml | 14 +++++++++ 3 files changed, 51 insertions(+) diff --git a/gui-libs/hyprland-qt-support/Manifest b/gui-libs/hyprland-qt-support/Manifest new file mode 100644 index 000000000..a322bd7c9 --- /dev/null +++ b/gui-libs/hyprland-qt-support/Manifest @@ -0,0 +1 @@ +DIST hyprland-qt-support-0.1.0.tar.gz 12955 BLAKE2B de52303f8c6e55f3d5e85dcba373cb8b46f945ee864171669725c55f50311e5d6edb28b101672e9b5df9fdf50c3ce732c463752814cc63c132200e520a2e117c SHA512 674cc42cb2b9767e36c0c269d419e04c680982ca5e064f403881f235530860d0946fb42ce56abf96324c54550eea1ed3984ef42b6c15165b0d0165683554c6db diff --git a/gui-libs/hyprland-qt-support/hyprland-qt-support-0.1.0.ebuild b/gui-libs/hyprland-qt-support/hyprland-qt-support-0.1.0.ebuild new file mode 100644 index 000000000..3a2ccb72a --- /dev/null +++ b/gui-libs/hyprland-qt-support/hyprland-qt-support-0.1.0.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt6 Qml style provider for hypr* apps" +HOMEPAGE="https://wiki.hyprland.org/Hypr-Ecosystem/hyprland-qt-support" +SRC_URI="https://github.com/hyprwm/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +DEPEND=" + >=dev-libs/hyprlang-0.6.0 + dev-qt/qtbase:6 + dev-qt/qtdeclarative:6 +" + +RDEPEND=" + ${DEPEND} +" + +BDEPEND=" + virtual/pkgconfig +" + +src_configure() { + local mycmakeargs=( + -DINSTALL_QML_PREFIX="${EPFREIX}/$(get_libdir)/qt6/qml" + ) + + cmake_src_configure +} diff --git a/gui-libs/hyprland-qt-support/metadata.xml b/gui-libs/hyprland-qt-support/metadata.xml new file mode 100644 index 000000000..8b4f5c64b --- /dev/null +++ b/gui-libs/hyprland-qt-support/metadata.xml @@ -0,0 +1,14 @@ + + + + + johu@gmx.de + Johannes Huber + + + https://wiki.hyprland.org/Hypr-Ecosystem/hyprland-qt-support + https://github.com/hyprwm/hyprland-qt-support/releases + https://github.com/hyprwm/hyprland-qt-support/issues + hyprwm/hyprland-qt-support + +