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 BFF4A158083 for ; Sat, 21 Sep 2024 12:06:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8E51E29B1; Sat, 21 Sep 2024 12:06:45 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8D9AFE29B1 for ; Sat, 21 Sep 2024 12:06:45 +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 961453431A4 for ; Sat, 21 Sep 2024 12:06:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 34EA027FD for ; Sat, 21 Sep 2024 12:06:43 +0000 (UTC) From: "Petr Vaněk" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Petr Vaněk" Message-ID: <1726920358.fe1e3e186d72f64d5d6dbaeb37400b07448f0826.arkamar@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/chameleon-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild X-VCS-Directories: x11-themes/chameleon-xcursors/ X-VCS-Committer: arkamar X-VCS-Committer-Name: Petr Vaněk X-VCS-Revision: fe1e3e186d72f64d5d6dbaeb37400b07448f0826 X-VCS-Branch: master Date: Sat, 21 Sep 2024 12:06:43 +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: bd47a4c9-2600-450b-86cd-3959875c7dba X-Archives-Hash: fdf070e25f3839d9aacc525501b71267 commit: fe1e3e186d72f64d5d6dbaeb37400b07448f0826 Author: Petr Vaněk gentoo org> AuthorDate: Sat Sep 21 12:05:24 2024 +0000 Commit: Petr Vaněk gentoo org> CommitDate: Sat Sep 21 12:05:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1e3e18 x11-themes/chameleon-xcursors: drop 0.5-r2 Signed-off-by: Petr Vaněk gentoo.org> .../chameleon-xcursors-0.5-r2.ebuild | 35 ---------------------- 1 file changed, 35 deletions(-) diff --git a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild b/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild deleted file mode 100644 index 441b3f9c7b87..000000000000 --- a/x11-themes/chameleon-xcursors/chameleon-xcursors-0.5-r2.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit xdg - -COLOURS=( "Anthracite" "DarkSkyBlue" "SkyBlue" "Pearl" "White" ) -MY_PN="Chameleon" - -DESCRIPTION="Style neutral scalable cursor theme" -HOMEPAGE="https://store.kde.org/p/999948/" -for COLOUR in "${COLOURS[@]}"; do - SRC_URI="${SRC_URI} mirror://gentoo/${MY_PN}-${COLOUR}-${PV}.tar.bz2" -done -S="${WORKDIR}" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" - -RDEPEND="x11-libs/libXcursor" - -src_install() { - dodir /usr/share/cursors/xorg-x11/ - - for COLOUR in "${COLOURS[@]}"; do - for SIZE in Large Regular Small; do - local name="${MY_PN}-${COLOUR}-${SIZE}" - rm "${WORKDIR}"/${name}-${PV}/{COPYRIGHT,LICENSE} || die - insinto /usr/share/cursors/xorg-x11/${name} - doins -r "${WORKDIR}"/${name}-${PV} - done - done -}