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 5A6D31395E2 for ; Wed, 23 Nov 2016 16:08:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 399B6E0B91; Wed, 23 Nov 2016 16:08:42 +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 1EAB9E0B91 for ; Wed, 23 Nov 2016 16:08:42 +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 1734034162B for ; Wed, 23 Nov 2016 16:08:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DAAE649A for ; Wed, 23 Nov 2016 16:08:39 +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: <1479917310.4f3eaa4f5c2d9a46d602f3b0d603bc0e2da66a9e.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qt-docs/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qt-docs/qt-docs-5.6.2_p0-r1.ebuild X-VCS-Directories: dev-qt/qt-docs/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 4f3eaa4f5c2d9a46d602f3b0d603bc0e2da66a9e X-VCS-Branch: master Date: Wed, 23 Nov 2016 16:08:39 +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: 5b49527d-3375-4565-ac43-bcd44860ec4d X-Archives-Hash: 09323e8c5850e93a7b6c1e352a7121f0 commit: 4f3eaa4f5c2d9a46d602f3b0d603bc0e2da66a9e Author: Michael Palimaka gentoo org> AuthorDate: Wed Nov 23 16:07:21 2016 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Nov 23 16:08:30 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f3eaa4f dev-qt/qt-docs: revision bump to remove colliding files Gentoo-bug: 597026 Package-Manager: portage-2.3.2 dev-qt/qt-docs/qt-docs-5.6.2_p0-r1.ebuild | 34 +++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-qt/qt-docs/qt-docs-5.6.2_p0-r1.ebuild b/dev-qt/qt-docs/qt-docs-5.6.2_p0-r1.ebuild new file mode 100644 index 00000000..840bb45 --- /dev/null +++ b/dev-qt/qt-docs/qt-docs-5.6.2_p0-r1.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit versionator + +MY_PV=$(get_version_component_range 1)$(get_version_component_range 2) +MY_P=${PV/_p/-}qt-everywhere-documentation-${PV%%_p*} + +DESCRIPTION="Documentation for Qt5, for use with Qt Creator and other tools" +HOMEPAGE="https://www.qt.io/" +SRC_URI="https://download.qt.io/online/qtsdkrepository/linux_x64/desktop/qt5_${MY_PV}_src_doc_examples/qt.${MY_PV}.doc/${MY_P}.7z" + +LICENSE="FDL-1.3" +SLOT="5" +KEYWORDS="~amd64 ~x86" + +DEPEND="app-arch/p7zip" + +S=${WORKDIR}/Docs/Qt-$(get_version_component_range 1-2) + +src_install() { + # ${PV} instead of ${PF} is intentional + local dest=/usr/share/doc/qt-${PV%%_p*} + insinto "${dest}" + doins -r * + docompress -x "${dest}" + + # these files are not shipped in any other version of qt-docs and collide with qtcore + # bug 597026 + rm -r "${ED}"/usr/share/doc/qt-5.6.2/global +}