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 1A675138359 for ; Fri, 23 Oct 2020 23:27:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 18672E0831; Fri, 23 Oct 2020 23:27:14 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 F24DCE0831 for ; Fri, 23 Oct 2020 23:27: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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9F6603409C8 for ; Fri, 23 Oct 2020 23:27:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1EBD93AA for ; Fri, 23 Oct 2020 23:27:11 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1603495614.ed3e36ac18b9bbe0944c666393153dbf4dd0c715.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-games/openscenegraph-qt/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-games/openscenegraph-qt/openscenegraph-qt-3.5.7.ebuild X-VCS-Directories: dev-games/openscenegraph-qt/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: ed3e36ac18b9bbe0944c666393153dbf4dd0c715 X-VCS-Branch: master Date: Fri, 23 Oct 2020 23:27:11 +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: 3e4f5cf9-c21e-46b9-ba5e-576668d504ef X-Archives-Hash: bb7150b06f648603b1676c90e49247e0 commit: ed3e36ac18b9bbe0944c666393153dbf4dd0c715 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Oct 23 17:52:35 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Oct 23 23:26:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed3e36ac dev-games/openscenegraph-qt: Drop 3.5.7 (r0) Package-Manager: Portage-3.0.8, Repoman-3.0.2 Signed-off-by: Andreas Sturmlechner gentoo.org> .../openscenegraph-qt-3.5.7.ebuild | 48 ---------------------- 1 file changed, 48 deletions(-) diff --git a/dev-games/openscenegraph-qt/openscenegraph-qt-3.5.7.ebuild b/dev-games/openscenegraph-qt/openscenegraph-qt-3.5.7.ebuild deleted file mode 100644 index 96ab9bcba0b..00000000000 --- a/dev-games/openscenegraph-qt/openscenegraph-qt-3.5.7.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -MY_PN="osgQt" -MY_P=${MY_PN}-${PV} -inherit cmake - -DESCRIPTION="Qt support for OpenSceneGraph" -HOMEPAGE="http://www.openscenegraph.org/" -SRC_URI="https://github.com/openscenegraph/${MY_PN}/archive/${PV}.tar.gz -> ${MY_P}.tar.gz" - -LICENSE="wxWinLL-3 LGPL-2.1" -SLOT="0/145" # NOTE: CHECK WHEN BUMPING! Subslot is SOVERSION -KEYWORDS="amd64 ~ppc64 x86" -IUSE="examples webkit" - -RDEPEND=" - >=dev-games/openscenegraph-3.6.3:= - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtopengl:5 - dev-qt/qtwidgets:5 - webkit? ( dev-qt/qtwebkit:5 ) -" -DEPEND="${RDEPEND}" -BDEPEND=" - virtual/pkgconfig -" - -S="${WORKDIR}/${MY_P}" - -PATCHES=( - "${FILESDIR}"/${PN}-3.5.5-cmake.patch - "${FILESDIR}"/${PN}-3.5.5-qt-5.11b3.patch -) - -src_configure() { - local mycmakeargs=( - -DDYNAMIC_OPENSCENEGRAPH=ON - -DDESIRED_QT_VERSION=5 - -DBUILD_OSG_EXAMPLES=$(usex examples) - $(cmake_use_find_package webkit Qt5WebKitWidgets) - ) - - cmake_src_configure -}