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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id ED488138335 for ; Mon, 18 Feb 2019 23:29:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23FF2E0636; Mon, 18 Feb 2019 23:29:57 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EEFB5E08D6 for ; Mon, 18 Feb 2019 23:29:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9FC75335CFE for ; Mon, 18 Feb 2019 23:29:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1978F543 for ; Mon, 18 Feb 2019 23:29:53 +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: <1550531454.b52fba4b9c8ebf52d76d781df09c9f4326027e81.chiitoo@gentoo> Subject: [gentoo-commits] proj/qt:master commit in: dev-libs/libqtxdg/ X-VCS-Repository: proj/qt X-VCS-Files: dev-libs/libqtxdg/Manifest dev-libs/libqtxdg/libqtxdg-3.3.0.ebuild X-VCS-Directories: dev-libs/libqtxdg/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: b52fba4b9c8ebf52d76d781df09c9f4326027e81 X-VCS-Branch: master Date: Mon, 18 Feb 2019 23:29:53 +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: 27301811-3c08-432d-a11c-1e719068abc8 X-Archives-Hash: 1034a71b2ffd791f5e35cec4d5a48e4c commit: b52fba4b9c8ebf52d76d781df09c9f4326027e81 Author: Jimi Huotari gentoo org> AuthorDate: Mon Feb 18 23:04:41 2019 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Mon Feb 18 23:10:54 2019 +0000 URL: https://gitweb.gentoo.org/proj/qt.git/commit/?id=b52fba4b dev-libs/libqtxdg: add 3.3.0 for testing Package-Manager: Portage-2.3.61, Repoman-2.3.12 Signed-off-by: Jimi Huotari gentoo.org> dev-libs/libqtxdg/Manifest | 1 + dev-libs/libqtxdg/libqtxdg-3.3.0.ebuild | 48 +++++++++++++++++++++++++++++++++ 2 files changed, 49 insertions(+) diff --git a/dev-libs/libqtxdg/Manifest b/dev-libs/libqtxdg/Manifest new file mode 100644 index 00000000..cf9d7aa8 --- /dev/null +++ b/dev-libs/libqtxdg/Manifest @@ -0,0 +1 @@ +DIST libqtxdg-3.3.0.tar.xz 68412 BLAKE2B c78b1548883bdb77bd5de81c48487b08a6f1b0959e2d1e9b54a301935a76a4bcf60451379ea33dbd289dc4517282d335a0d616a0c4c31eb1e0e7ab3efcbe814f SHA512 e71e251870886aa71a1ce9372962cfa93c96ee91518f01758b4c015d36d1f4c95bf94eb8a54683bb2ab221c96514be4adb0387e18dcbaacde9d783fe9e6867d4 diff --git a/dev-libs/libqtxdg/libqtxdg-3.3.0.ebuild b/dev-libs/libqtxdg/libqtxdg-3.3.0.ebuild new file mode 100644 index 00000000..936e7f64 --- /dev/null +++ b/dev-libs/libqtxdg/libqtxdg-3.3.0.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit cmake-utils virtualx + +DESCRIPTION="A Qt implementation of XDG standards" +HOMEPAGE="https://lxqt.org/" + +if [[ ${PV} == *9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" +else + SRC_URI="https://downloads.lxqt.org/downloads/${PN}/${PV}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~x86" +fi + +LICENSE="LGPL-2.1+ Nokia-Qt-LGPL-Exception-1.1" +SLOT="0" +IUSE="test" + +BDEPEND=" + virtual/pkgconfig + test? ( dev-qt/qttest:5 ) +" +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtdbus:5 + dev-qt/qtgui:5= + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + dev-qt/qtxml:5 + x11-misc/xdg-utils +" +DEPEND="${RDEPEND}" + +src_configure() { + local mycmakeargs=( + -DBUILD_TESTS=$(usex test) + ) + cmake-utils_src_configure +} + +src_test() { + # Tests don't work with C + LC_ALL=en_US.utf8 virtx cmake-utils_src_test +}