From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1136080-garchives=archives.gentoo.org@lists.gentoo.org> 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 2E9BA138334 for <garchives@archives.gentoo.org>; Sat, 4 Jan 2020 23:46:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60EB2E09E7; Sat, 4 Jan 2020 23:46:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 B9C8FE09E1 for <gentoo-commits@lists.gentoo.org>; Sat, 4 Jan 2020 23:46:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 61F1134DD41 for <gentoo-commits@lists.gentoo.org>; Sat, 4 Jan 2020 23:46:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5F176B0 for <gentoo-commits@lists.gentoo.org>; Sat, 4 Jan 2020 23:46:03 +0000 (UTC) From: "Johannes Huber" <johu@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" <johu@gentoo.org> Message-ID: <1578181553.112f52e9b69ad555d62ffb74b9bdb701c49369f1.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/packagekit-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/packagekit-qt/packagekit-qt-1.0.1-r1.ebuild X-VCS-Directories: app-admin/packagekit-qt/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 112f52e9b69ad555d62ffb74b9bdb701c49369f1 X-VCS-Branch: master Date: Sat, 4 Jan 2020 23:46:03 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: b9a98687-2581-4386-b06a-914ea5039613 X-Archives-Hash: f1a6d6ec5d22b59cb15832c41df3ddf5 commit: 112f52e9b69ad555d62ffb74b9bdb701c49369f1 Author: Johannes Huber <johu <AT> gentoo <DOT> org> AuthorDate: Sat Jan 4 23:45:27 2020 +0000 Commit: Johannes Huber <johu <AT> gentoo <DOT> org> CommitDate: Sat Jan 4 23:45:53 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112f52e9 app-admin/packagekit-qt: Migrate to cmake eclass Package-Manager: Portage-2.3.84, Repoman-2.3.20 Signed-off-by: Johannes Huber <johu <AT> gentoo.org> .../packagekit-qt/packagekit-qt-1.0.1-r1.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/app-admin/packagekit-qt/packagekit-qt-1.0.1-r1.ebuild b/app-admin/packagekit-qt/packagekit-qt-1.0.1-r1.ebuild new file mode 100644 index 00000000000..c6d6da99c4d --- /dev/null +++ b/app-admin/packagekit-qt/packagekit-qt-1.0.1-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_PN="PackageKit-Qt" +MY_P=${MY_PN}-${PV} +inherit cmake + +DESCRIPTION="Qt PackageKit backend library" +HOMEPAGE="https://www.freedesktop.org/software/PackageKit/" +SRC_URI="https://github.com/hughsie/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0/1" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +BDEPEND=" + dev-libs/libxslt + virtual/pkgconfig +" +DEPEND=" + >=app-admin/packagekit-base-0.9 + dev-qt/qtcore:5 + dev-qt/qtdbus:5 +" +RDEPEND="${DEPEND}" + +S="${WORKDIR}/${MY_P}"