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 EACFE158091 for ; Sun, 8 May 2022 13:49:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D792BE0844; Sun, 8 May 2022 13:49: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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AAE5CE0844 for ; Sun, 8 May 2022 13:49: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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 92A9A3415D6 for ; Sun, 8 May 2022 13:49:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CFA68D3 for ; Sun, 8 May 2022 13:49:24 +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: <1652017734.a16004c3908ca89b5bcb8be39b3e5959385e4182.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: app-misc/qtxdg-tools/ X-VCS-Repository: proj/qt X-VCS-Files: app-misc/qtxdg-tools/metadata.xml app-misc/qtxdg-tools/qtxdg-tools-9999.ebuild X-VCS-Directories: app-misc/qtxdg-tools/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: a16004c3908ca89b5bcb8be39b3e5959385e4182 X-VCS-Branch: master Date: Sun, 8 May 2022 13:49:24 +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: c998d049-b9b1-46ee-9ae8-3dc0a58be218 X-Archives-Hash: 937618c3c679eab26d5d8c750569bfdb commit: a16004c3908ca89b5bcb8be39b3e5959385e4182 Author: Jimi Huotari gentoo org> AuthorDate: Tue May 3 20:55:58 2022 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sun May 8 13:48:54 2022 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=a16004c3 app-misc/qtxdg-tools: new package A package containing the user tools split off of 'libqtxdg'. 0. https://github.com/lxqt/libqtxdg/commit/b2866bb9ecd9f117793af7956 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Jimi Huotari gentoo.org> app-misc/qtxdg-tools/metadata.xml | 11 +++++++++++ app-misc/qtxdg-tools/qtxdg-tools-9999.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 38 insertions(+) diff --git a/app-misc/qtxdg-tools/metadata.xml b/app-misc/qtxdg-tools/metadata.xml new file mode 100644 index 00000000..b1e73efb --- /dev/null +++ b/app-misc/qtxdg-tools/metadata.xml @@ -0,0 +1,11 @@ + + + + + lxqt@gentoo.org + LXQt + + + lxqt/qtxdg-tools + + diff --git a/app-misc/qtxdg-tools/qtxdg-tools-9999.ebuild b/app-misc/qtxdg-tools/qtxdg-tools-9999.ebuild new file mode 100644 index 00000000..c2f3e5d5 --- /dev/null +++ b/app-misc/qtxdg-tools/qtxdg-tools-9999.ebuild @@ -0,0 +1,27 @@ +# Copyright 2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="User Tools from libqtxdg" +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 ~arm ~arm64 ~ppc64 ~riscv ~x86" +fi + +LICENSE="LGPL-2.1" +SLOT="0" + +BDEPEND=">=dev-util/lxqt-build-tools-0.11.0" +RDEPEND=" + >=dev-libs/libqtxdg-3.9.1 + >=dev-qt/qtcore-5.15:5 +" +DEPEND="${RDEPEND}"