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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4621E15808D for ; Mon, 18 Apr 2022 12:45:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C32B7E0919; Mon, 18 Apr 2022 12:45:13 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BF9F8E090E for ; Mon, 18 Apr 2022 12:45:12 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 84C2C341463 for ; Mon, 18 Apr 2022 12:45:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA718355 for ; Mon, 18 Apr 2022 12:45:09 +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: <1650285895.50842fd59a77c290db8528a7b29c8549dd9f098d.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-qt/qtchooser/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-qt/qtchooser/qtchooser-66-r1.ebuild X-VCS-Directories: dev-qt/qtchooser/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 50842fd59a77c290db8528a7b29c8549dd9f098d X-VCS-Branch: master Date: Mon, 18 Apr 2022 12:45: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: de890d01-3771-4672-b809-5c3cf720b817 X-Archives-Hash: a873fdbf4c1b3bedd8eda82a05c45035 commit: 50842fd59a77c290db8528a7b29c8549dd9f098d Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Apr 18 12:25:49 2022 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Apr 18 12:44:55 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50842fd5 dev-qt/qtchooser: Drop 66-r1 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-qt/qtchooser/qtchooser-66-r1.ebuild | 73 --------------------------------- 1 file changed, 73 deletions(-) diff --git a/dev-qt/qtchooser/qtchooser-66-r1.ebuild b/dev-qt/qtchooser/qtchooser-66-r1.ebuild deleted file mode 100644 index ceb2c47c2cbc..000000000000 --- a/dev-qt/qtchooser/qtchooser-66-r1.ebuild +++ /dev/null @@ -1,73 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit qmake-utils toolchain-funcs - -DESCRIPTION="Tool to quickly switch between multiple Qt installations" -HOMEPAGE="https://code.qt.io/cgit/qtsdk/qtchooser.git/" - -if [[ ${PV} == *9999* ]]; then - EGIT_REPO_URI="https://code.qt.io/qtsdk/qtchooser.git" - inherit git-r3 -else - SRC_URI="http://download.qt.io/official_releases/${PN}/${P}.tar.xz" - KEYWORDS="ppc ppc64" -fi - -LICENSE="|| ( LGPL-2.1 GPL-3 )" -SLOT="0" -IUSE="test" -RESTRICT="!test? ( test )" - -DEPEND="test? ( - dev-qt/qtcore:5 - dev-qt/qttest:5 - )" -RDEPEND=" - !/dev/null || die - eqmake5 - popd >/dev/null || die - - qtchooser_make check -} - -src_install() { - qtchooser_make INSTALL_ROOT="${D}" install - - # install configuration file - cat > "${T}/qt5-${CHOST}.conf" <<-_EOF_ || die - $(qt5_get_bindir) - $(qt5_get_libdir) - _EOF_ - - ( - insinto /etc/xdg/qtchooser - doins "${T}/qt5-${CHOST}.conf" - ) - - # convenience symlinks - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/5.conf - dosym qt5-"${CHOST}".conf /etc/xdg/qtchooser/qt5.conf - dosym qt5.conf /etc/xdg/qtchooser/default.conf - - # TODO: bash and zsh completion - # newbashcomp scripts/${PN}.bash ${PN} -}