From 0d5ef3e3d56fb4e58bab183fe0ae3a86b0f3e5e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Bar=C4=87?= Date: Sat, 20 Jun 2026 14:40:57 +0200 Subject: [PATCH] x11-themes/fluent-icon-theme: bump to 2026.06.19 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maciej Barć --- x11-themes/fluent-icon-theme/Manifest | 1 + .../fluent-icon-theme-2026.06.19.ebuild | 57 +++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 x11-themes/fluent-icon-theme/fluent-icon-theme-2026.06.19.ebuild diff --git a/x11-themes/fluent-icon-theme/Manifest b/x11-themes/fluent-icon-theme/Manifest index ad67393820892..90d8afc0c7f8f 100644 --- a/x11-themes/fluent-icon-theme/Manifest +++ b/x11-themes/fluent-icon-theme/Manifest @@ -1,2 +1,3 @@ DIST fluent-icon-theme-2024.02.25.tar.gz 6397963 BLAKE2B 5f7d46c5dbabe3744fcb2d21869794d0883fe57d15ac88d928b35f2bd41ea201486a0cc7cdd9937d3f24bd2c169e9e4aa2afa4ebdc9bd7abcc7b9328472ab44e SHA512 5a671360bf0d2b4e904d710b7cf72fde6580c4c1496a3fbcadf90a826e38936714dae511f35be3f2fdea370f602bcff4d1260dd0d230e6bcba6426f406247cec DIST fluent-icon-theme-2025.08.21.gh.tar.gz 6926044 BLAKE2B 1cd89f26e8e0a89d776ba2007105bb5a6c9d3d1192812fa1660688b8be35a9d0bf056a040bc670a5541ca8618a7e91779e5322056de6962768e2d0d1019c9c4e SHA512 a82c93528206826df6f1d54a2aad4adc34a4b3e848ecba7744dc34bb0611b20e08154cd6c81e399f036e2e0ac85a317fe1aff55bfed60d0593f9099abe682dfd +DIST fluent-icon-theme-2026.06.19.gh.tar.gz 7026340 BLAKE2B 16f0cd4499d2ab18ae9d2ccbe9491d165f03632ba0d65b56a6c66f027805f3fa0825fcb9e859fdc0395f9f0609932eb806138df12ab9ce2c9dd673c1b1e4dfaa SHA512 6588c7f38013f4a6b75bcf485e7aab697c7671d0c50d57ef66ea68b77aabb0ce3a14a03e39c1b9eb29aaf18b82ee89137363b60c2efbf4c6fce096dc0b59068b diff --git a/x11-themes/fluent-icon-theme/fluent-icon-theme-2026.06.19.ebuild b/x11-themes/fluent-icon-theme/fluent-icon-theme-2026.06.19.ebuild new file mode 100644 index 0000000000000..3885aabde6e85 --- /dev/null +++ b/x11-themes/fluent-icon-theme/fluent-icon-theme-2026.06.19.ebuild @@ -0,0 +1,57 @@ +# Copyright 2022-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +# ie. 2021.12.20 -> 2021-12-20 +MY_PV="${PV//./-}" +MY_PN="${PN^}" + +inherit xdg + +DESCRIPTION="Fluent icon theme for Linux desktops" +HOMEPAGE="https://github.com/vinceliuice/Fluent-icon-theme/" + +if [[ "${PV}" == *9999* ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/vinceliuice/${MY_PN}" +else + SRC_URI="https://github.com/vinceliuice/${MY_PN}/archive/${MY_PV}.tar.gz + -> ${P}.gh.tar.gz" + S="${WORKDIR}/${MY_PN}-${MY_PV}" + KEYWORDS="~amd64 ~x86" +fi + +LICENSE="GPL-3+" +SLOT="0" +IUSE="+hardlink round" +RESTRICT="binchecks strip test" + +BDEPEND=" + sys-apps/util-linux[hardlink(-)?] +" + +src_prepare() { + default + sed -i '/gtk-update-icon-cache/d' install.sh || die +} + +src_install() { + dodir /usr/share/icons + local -a myinstallopts=( + --all + --dest "${ED}/usr/share/icons" + $(usev round '--round') + ) + bash ./install.sh "${myinstallopts[@]}" || die "install script failed" + + if use hardlink ; then + einfo "Linking duplicate icons... (may take a long time)" + hardlink -pot "${ED}/usr/share/icons" || die "hardlink failed" + fi + + # Installs broken symlink. By design, but we remove it due to QA warnings. + find "${ED}" -xtype l -delete || die "removing broken symlinks failed" + + einstalldocs +}