gui-libs/hyprcursor: treeclean

Closes: https://bugs.gentoo.org/962536 (pkgremoved)
Signed-off-by: Eli Schwartz <eschwartz@gentoo.org>
This commit is contained in:
Eli Schwartz
2026-03-27 17:22:25 -04:00
parent 1e157ace39
commit 5e2f9a4620
9 changed files with 0 additions and 245 deletions

View File

@@ -1,4 +0,0 @@
DIST hyprcursor-0.1.10.gh.tar.gz 26654 BLAKE2B a1e0ed408523eda33b72bcef038c6fcd53fe5366663404502693c5c5f8429d781e052f96dfb9d2b2bd8444ac13987b9eca99d2e81eaea5445362232959d664e5 SHA512 7ce320f50af19e73e77dabef4840d6e8e6f56b2e505ff888dc0a14413110a30c8a3bfdc9bfc0d5458c9b387dabd9b4cbe35297209feffcfc622098af49044bb4
DIST hyprcursor-0.1.11.gh.tar.gz 27535 BLAKE2B 93c0ac57ad6fe36d7b3a3910c5c649beea9d2b63f84629b8f2013549375c3cc30d4ea145fb1f4069fc7c6019c30b9eaccd0940fd26f7ec18c1185f4025b55ef6 SHA512 61c2a68ab4ad08de5521c75508938bb70cc479a300de0831994b0a93980b47206a310bd2712074c6359b81f2ce8fa15ee4d0a518e489bccba865aefbc1e15278
DIST hyprcursor-0.1.12.tar.gz 28714 BLAKE2B 619f077bcadeb434300526f981275196cf28d5e866d4b99606219ac27b4a70cd0ae6497674d3b053aa25d17b796ef30e66f333dedc06d54ceb580d2cad0abe6e SHA512 2ebe8b424905ada5db00625fa839d0475815f5fce44dc50d5528e7f4e5d5684bc6a8e4b1e254dbca2fe42e80eb79efbd57371e0a37bec91939d81a91fb45a34c
DIST hyprcursor-0.1.13.tar.gz 28681 BLAKE2B a094bc3528b9d8c767de66a43e0ce5ea820b19bd08941b2d8435a799d3daab97790f56be0e99aaa44332e7a4e79cb539ad37248acfb4920fa597fd1c24fae43b SHA512 ba602d0cdd8b58c9c24763199dcc4ec580152ae5c27dd8e74ee537ed7b7702c4657e8c34afeee4f238d1ff9ede7ca3efbd8fd0a67562beace2c462201d0b904d

View File

@@ -1,39 +0,0 @@
From 2b522b0350ea8a1878ded84d90e080691bdb8f0e Mon Sep 17 00:00:00 2001
From: Jan Beich <jbeich@FreeBSD.org>
Date: Sat, 14 Dec 2024 11:24:52 +0100
Subject: [PATCH] util: add missing header for libc++
hyprcursor-util/src/main.cpp:260:19: error: implicit instantiation of undefined template 'std::basic_ofstream<char>'
260 | std::ofstream manifest(out + "/manifest.hl", std::ios::trunc);
| ^
/usr/include/c++/v1/__fwd/fstream.h:26:28: note: template is declared here
26 | class _LIBCPP_TEMPLATE_VIS basic_ofstream;
| ^
hyprcursor-util/src/main.cpp:292:41: error: implicit instantiation of undefined template 'std::basic_ifstream<char>'
292 | std::ifstream xconfig("/tmp/hyprcursor-util/" + xcursor.path().stem().string() + ".conf");
| ^
/usr/include/c++/v1/__fwd/fstream.h:24:28: note: template is declared here
24 | class _LIBCPP_TEMPLATE_VIS basic_ifstream;
| ^
hyprcursor-util/src/main.cpp:370:23: error: implicit instantiation of undefined template 'std::basic_ofstream<char>'
370 | std::ofstream meta(CURSORDIR + "/meta.hl", std::ios::trunc);
| ^
/usr/include/c++/v1/__fwd/fstream.h:26:28: note: template is declared here
26 | class _LIBCPP_TEMPLATE_VIS basic_ofstream;
| ^
---
hyprcursor-util/src/main.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/hyprcursor-util/src/main.cpp b/hyprcursor-util/src/main.cpp
index b6235cb..97e6573 100644
--- a/hyprcursor-util/src/main.cpp
+++ b/hyprcursor-util/src/main.cpp
@@ -2,6 +2,7 @@
#include <zip.h>
#include <optional>
#include <filesystem>
+#include <fstream>
#include <array>
#include <format>
#include <algorithm>

View File

@@ -1,27 +0,0 @@
From f8e8455e998e0ff8b4708220006a479d1d7e4e8b Mon Sep 17 00:00:00 2001
From: Jan Beich <jbeich@FreeBSD.org>
Date: Tue, 1 Oct 2024 01:01:47 +0200
Subject: [PATCH] lib: add missing header for libc++ after 5a95d8512b3e
libhyprcursor/hyprcursor.cpp:23:27: error: implicit instantiation of undefined template 'std::basic_stringstream<char>'
23 | std::stringstream envXdgStream(envXdgData);
| ^
/usr/include/c++/v1/__fwd/sstream.h:29:28: note: template is declared here
29 | class _LIBCPP_TEMPLATE_VIS basic_stringstream;
| ^
---
libhyprcursor/hyprcursor.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/libhyprcursor/hyprcursor.cpp b/libhyprcursor/hyprcursor.cpp
index 3a83a26..f7fb82c 100644
--- a/libhyprcursor/hyprcursor.cpp
+++ b/libhyprcursor/hyprcursor.cpp
@@ -2,6 +2,7 @@
#include "internalSharedTypes.hpp"
#include "internalDefines.hpp"
#include <array>
+#include <sstream>
#include <cstdio>
#include <filesystem>
#include <zip.h>

View File

@@ -1,31 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The hyprland cursor format, library and utilities"
HOMEPAGE="https://github.com/hyprwm/hyprcursor"
SRC_URI="https://github.com/hyprwm/hyprcursor/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~riscv"
# Disable tests since as per upstream, tests require a theme to be installed
# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
RESTRICT="test"
RDEPEND="
dev-cpp/tomlplusplus
>=dev-libs/hyprlang-0.4.2
dev-libs/libzip
gnome-base/librsvg:2
x11-libs/cairo
"
PATCHES=(
"${FILESDIR}"/0.1.10-llvm-fix.patch
"${FILESDIR}"/0.1.10-fstream.patch
)

View File

@@ -1,26 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The hyprland cursor format, library and utilities"
HOMEPAGE="https://github.com/hyprwm/hyprcursor"
SRC_URI="https://github.com/hyprwm/hyprcursor/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~riscv"
# Disable tests since as per upstream, tests require a theme to be installed
# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
RESTRICT="test"
RDEPEND="
dev-cpp/tomlplusplus
>=dev-libs/hyprlang-0.4.2
dev-libs/libzip
gnome-base/librsvg:2
x11-libs/cairo
"

View File

@@ -1,32 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The hyprland cursor format, library and utilities"
HOMEPAGE="https://github.com/hyprwm/hyprcursor"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
else
SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="amd64 ~riscv"
fi
LICENSE="BSD"
SLOT="0"
# Disable tests since as per upstream, tests require a theme to be installed
# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
RESTRICT="test"
RDEPEND="
dev-cpp/tomlplusplus
>=dev-libs/hyprlang-0.4.2
dev-libs/libzip
gnome-base/librsvg:2
x11-libs/cairo
"

View File

@@ -1,32 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The hyprland cursor format, library and utilities"
HOMEPAGE="https://github.com/hyprwm/hyprcursor"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
else
SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~riscv"
fi
LICENSE="BSD"
SLOT="0"
# Disable tests since as per upstream, tests require a theme to be installed
# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
RESTRICT="test"
RDEPEND="
dev-cpp/tomlplusplus
>=dev-libs/hyprlang-0.4.2
dev-libs/libzip
gnome-base/librsvg:2
x11-libs/cairo
"

View File

@@ -1,32 +0,0 @@
# Copyright 2023-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="The hyprland cursor format, library and utilities"
HOMEPAGE="https://github.com/hyprwm/hyprcursor"
if [[ ${PV} == *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
else
SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~riscv"
fi
LICENSE="BSD"
SLOT="0"
# Disable tests since as per upstream, tests require a theme to be installed
# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
RESTRICT="test"
RDEPEND="
dev-cpp/tomlplusplus
>=dev-libs/hyprlang-0.4.2
dev-libs/libzip
gnome-base/librsvg:2
x11-libs/cairo
"

View File

@@ -1,22 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person" proxied="yes">
<email>julien@jroy.ca</email>
<name>Julien Roy</name>
</maintainer>
<maintainer type="person" proxied="yes">
<email>johnmh@johnmh.me</email>
<name>John M. Harris, Jr.</name>
</maintainer>
<maintainer type="project" proxied="proxy">
<email>proxy-maint@gentoo.org</email>
<name>Proxy Maintainers</name>
</maintainer>
<upstream>
<changelog>https://github.com/hyprwm/hyprcursor/releases</changelog>
<doc>https://github.com/hyprwm/hyprcursor/tree/main/docs</doc>
<bugs-to>https://github.com/hyprwm/hyprcursor/issues</bugs-to>
<remote-id type="github">hyprwm/hyprcursor</remote-id>
</upstream>
</pkgmetadata>