From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id ABD58138206 for ; Thu, 28 Apr 2016 14:53:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DAFE021C035; Thu, 28 Apr 2016 14:53:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5BD2921C035 for ; Thu, 28 Apr 2016 14:53:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 46403340B5D for ; Thu, 28 Apr 2016 14:53:12 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6765327 for ; Thu, 28 Apr 2016 14:53:09 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1461855179.7bc3ef44ab1fa22134955c90c89752ee41ba4fe1.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtlocation/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtlocation/Manifest dev-qt/qtlocation/metadata.xml dev-qt/qtlocation/qtlocation-5.6.0.ebuild X-VCS-Directories: dev-qt/qtlocation/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 7bc3ef44ab1fa22134955c90c89752ee41ba4fe1 X-VCS-Branch: master Date: Thu, 28 Apr 2016 14:53:09 +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-Archives-Salt: 384a4c3e-3e62-47ab-b4fe-adf0c459267c X-Archives-Hash: af753cee904494641adbbe00a45345e8 commit: 7bc3ef44ab1fa22134955c90c89752ee41ba4fe1 Author: Michael Palimaka gentoo org> AuthorDate: Thu Apr 28 14:52:19 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Thu Apr 28 14:52:59 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc3ef44 dev-qt/qtlocation: new package Imported from qt overlay. Package-Manager: portage-2.2.28 dev-qt/qtlocation/Manifest | 1 + dev-qt/qtlocation/metadata.xml | 17 +++++++++++++++++ dev-qt/qtlocation/qtlocation-5.6.0.ebuild | 30 ++++++++++++++++++++++++++++++ 3 files changed, 48 insertions(+) diff --git a/dev-qt/qtlocation/Manifest b/dev-qt/qtlocation/Manifest new file mode 100644 index 0000000..c55333a --- /dev/null +++ b/dev-qt/qtlocation/Manifest @@ -0,0 +1 @@ +DIST qtlocation-opensource-src-5.6.0.tar.xz 3076136 SHA256 360e1519d0fcafe4f86923d224e76d56dd785dfb0e1a19fd2e2b0016799653c9 SHA512 76cc7f27a043999af56f7bec408c46f0bb0709f651a3d84084f7ae92c3f50f6450420bdda31db17436111df537b94d51a9ca2819cce13ce83c538490d3f62a1d WHIRLPOOL b4bd14bb1882155ae9143d66ae99191dd95b89860ca609bbf5cffedec745f026369ce12df0bfd40c9b79d74f26036c184ebadee11dcd929a1f6a4d01634a2ab2 diff --git a/dev-qt/qtlocation/metadata.xml b/dev-qt/qtlocation/metadata.xml new file mode 100644 index 0000000..08d85fc --- /dev/null +++ b/dev-qt/qtlocation/metadata.xml @@ -0,0 +1,17 @@ + + + + + qt@gentoo.org + Gentoo Qt Project + + + https://bugreports.qt.io/ + http://doc.qt.io/ + + + + Must only be used by packages that are known to use private parts of the Qt API. + + + diff --git a/dev-qt/qtlocation/qtlocation-5.6.0.ebuild b/dev-qt/qtlocation/qtlocation-5.6.0.ebuild new file mode 100644 index 0000000..b0d8a77 --- /dev/null +++ b/dev-qt/qtlocation/qtlocation-5.6.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 +inherit qt5-build + +DESCRIPTION="The Location module for the Qt5 framework" + +if [[ ${QT5_BUILD_TYPE} == release ]]; then + KEYWORDS="~amd64 ~x86" +fi + +IUSE="" + +DEPEND=" + ~dev-qt/qtcore-${PV} + ~dev-qt/qtdeclarative-${PV} + ~dev-qt/qtgui-${PV} + ~dev-qt/qtnetwork-${PV} + ~dev-qt/qtpositioning-${PV} +" +RDEPEND="${DEPEND}" + +QT5_TARGET_SUBDIRS=( + src/3rdparty + src/location + src/imports/location + src/plugins/geoservices +)