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 E5F0F15817D for ; Sat, 15 Jun 2024 14:57:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0642E2AD6; Sat, 15 Jun 2024 14:57:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BCADEE2AD6 for ; Sat, 15 Jun 2024 14:57:19 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0A1A333BE9F for ; Sat, 15 Jun 2024 14:57:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 940261D0F for ; Sat, 15 Jun 2024 14:57:17 +0000 (UTC) From: "Jimi Huotari" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jimi Huotari" Message-ID: <1718463416.cd617652c0ffaf8e9348a318a8d201fc495f835a.chiitoo@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: lxqt-base/liblxqt/ X-VCS-Repository: repo/gentoo X-VCS-Files: lxqt-base/liblxqt/liblxqt-2.0.0.ebuild X-VCS-Directories: lxqt-base/liblxqt/ X-VCS-Committer: chiitoo X-VCS-Committer-Name: Jimi Huotari X-VCS-Revision: cd617652c0ffaf8e9348a318a8d201fc495f835a X-VCS-Branch: master Date: Sat, 15 Jun 2024 14:57:17 +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: 74137c1b-42ec-4285-a586-62579992f031 X-Archives-Hash: 087522fcaffd43f49ef015bf15128297 commit: cd617652c0ffaf8e9348a318a8d201fc495f835a Author: Jimi Huotari gentoo org> AuthorDate: Sat Jun 15 14:55:20 2024 +0000 Commit: Jimi Huotari gentoo org> CommitDate: Sat Jun 15 14:56:56 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd617652 lxqt-base/liblxqt: drop 2.0.0 Signed-off-by: Jimi Huotari gentoo.org> lxqt-base/liblxqt/liblxqt-2.0.0.ebuild | 43 ---------------------------------- 1 file changed, 43 deletions(-) diff --git a/lxqt-base/liblxqt/liblxqt-2.0.0.ebuild b/lxqt-base/liblxqt/liblxqt-2.0.0.ebuild deleted file mode 100644 index cf0a296de331..000000000000 --- a/lxqt-base/liblxqt/liblxqt-2.0.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="Common base library for the LXQt desktop environment" -HOMEPAGE="https://lxqt-project.org/" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/lxqt/${PN}.git" -else - SRC_URI="https://github.com/lxqt/${PN}/releases/download/${PV}/${P}.tar.xz" - KEYWORDS="~amd64" -fi - -LICENSE="LGPL-2.1+ BSD" -SLOT="0/$(ver_cut 1-2)" -IUSE="+backlight" - -BDEPEND=" - >=dev-qt/qttools-6.6:6[linguist] - >=dev-util/lxqt-build-tools-2.0.0 -" -DEPEND=" - >=dev-libs/libqtxdg-4.0.0 - >=dev-qt/qtbase-6.6:6[dbus,gui,widgets,xml] - kde-frameworks/kwindowsystem:6[X] - x11-libs/libX11 - x11-libs/libXScrnSaver - backlight? ( sys-auth/polkit-qt ) -" -RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( - -DBUILD_BACKLIGHT_LINUX_BACKEND=$(usex backlight) - ) - - cmake_src_configure -}