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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1808E1581E7 for ; Sun, 21 Apr 2024 20:04:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A6C1E2A13; Sun, 21 Apr 2024 20:04:27 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0DB1FE2A13 for ; Sun, 21 Apr 2024 20:04:27 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5BA8B343537 for ; Sun, 21 Apr 2024 20:04:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 43CC71750 for ; Sun, 21 Apr 2024 20:04:22 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1713728969.325bda641b0458f09f569427afcff25571aa9063.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: x11-libs/qtermwidget/ X-VCS-Repository: proj/qt X-VCS-Files: x11-libs/qtermwidget/metadata.xml x11-libs/qtermwidget/qtermwidget-9999.ebuild X-VCS-Directories: x11-libs/qtermwidget/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: 325bda641b0458f09f569427afcff25571aa9063 X-VCS-Branch: master Date: Sun, 21 Apr 2024 20:04:22 +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: e8e50694-5c39-42c8-a5a0-c4f082b6179a X-Archives-Hash: f8489b5fba0378f781e728dc65fe31c7 commit: 325bda641b0458f09f569427afcff25571aa9063 Author: Jimi Huotari gentoo org> AuthorDate: Sun Apr 21 18:36:19 2024 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sun Apr 21 19:49:29 2024 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=325bda64 x11-libs/qtermwidget: add 9999 Initial qt6 version. Signed-off-by: Jimi Huotari gentoo.org> x11-libs/qtermwidget/metadata.xml | 16 +++++++++++++++ x11-libs/qtermwidget/qtermwidget-9999.ebuild | 29 ++++++++++++++++++++++++++++ 2 files changed, 45 insertions(+) diff --git a/x11-libs/qtermwidget/metadata.xml b/x11-libs/qtermwidget/metadata.xml new file mode 100644 index 00000000..df199347 --- /dev/null +++ b/x11-libs/qtermwidget/metadata.xml @@ -0,0 +1,16 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + QTermWidget is an opensource project based on konsole (a KDE application). + The main goal of this project is to provide unicode-enabled, embeddable + Qt widget for using as a built-in console or terminal emulation widget. + + + lxqt/qtermwidget + + diff --git a/x11-libs/qtermwidget/qtermwidget-9999.ebuild b/x11-libs/qtermwidget/qtermwidget-9999.ebuild new file mode 100644 index 00000000..ba127471 --- /dev/null +++ b/x11-libs/qtermwidget/qtermwidget-9999.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="Qt terminal emulator widget" +HOMEPAGE="https://lxqt-project.org/" + +if [[ ${PV} == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" + KEYWORDS="~amd64" +fi + +LICENSE="BSD GPL-2 LGPL-2+" +SLOT="0/${PV}" + +BDEPEND=" + >=dev-qt/qttools-6.6:6[linguist] + >=dev-util/lxqt-build-tools-2.0.0 +" +DEPEND=" + >=dev-qt/qtbase-6.6:6[gui,widgets] +" +RDEPEND="${DEPEND}"