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 15C6C158091 for ; Sun, 12 Jun 2022 07:33:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 068BEE0886; Sun, 12 Jun 2022 07:33:55 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E4417E0886 for ; Sun, 12 Jun 2022 07:33:54 +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 6425A341A6A for ; Sun, 12 Jun 2022 07:33:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 707AE50A for ; Sun, 12 Jun 2022 07:33:50 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1655018822.43bc5e50f8cc9737891ec600ec8bb602d5e03e53.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-themes/gentoo-xcursors/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r2.ebuild X-VCS-Directories: x11-themes/gentoo-xcursors/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 43bc5e50f8cc9737891ec600ec8bb602d5e03e53 X-VCS-Branch: master Date: Sun, 12 Jun 2022 07:33:50 +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: c9a156c4-6163-4793-a9c5-30123e658709 X-Archives-Hash: 6cc09809e9c26ff3cdad6ae53fd7ec1a commit: 43bc5e50f8cc9737891ec600ec8bb602d5e03e53 Author: Ronny (tastytea) Gutbrod tastytea de> AuthorDate: Fri Jun 3 14:55:56 2022 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun Jun 12 07:27:02 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43bc5e50 x11-themes/gentoo-xcursors: fix install location, update EAPI 7 -> 8 Switch to default install location¹, because the Gentoo-specific path is problematic². Symlinks are added at old location for backwards compatibility. ¹ ² Closes: https://bugs.gentoo.org/848606 Signed-off-by: Ronny (tastytea) Gutbrod tastytea.de> Closes: https://github.com/gentoo/gentoo/pull/25740 Signed-off-by: Joonas Niilola gentoo.org> .../gentoo-xcursors-0.3.2-r2.ebuild | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r2.ebuild b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r2.ebuild new file mode 100644 index 000000000000..170c5bdcc09c --- /dev/null +++ b/x11-themes/gentoo-xcursors/gentoo-xcursors-0.3.2-r2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="A high quality set of animated mouse cursors" +HOMEPAGE="https://schlomp.space/tastytea/gentoo-xcursors" +SRC_URI="https://schlomp.space/tastytea/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86" + +src_install() { + insinto /usr/share/icons + doins -r cursors/* + + # Add symlinks in Gentoo-specific location for backwards compatibility + mkdir -p ${ED}/usr/share/cursors/xorg-x11 || die + cd ${ED}/usr/share/cursors/xorg-x11 || die + for cursorset in ../../icons/*; do + dosym ${cursorset} /usr/share/cursors/xorg-x11/${cursorset##*/} + done +} + +pkg_postinst() { + einfo "To use this set of cursors, consult ." + einfo "The three sets installed are gentoo, gentoo-silver and gentoo-blue." +}