summaryrefslogtreecommitdiff
path: root/gui-libs/hyprcursor
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-28 07:14:12 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2026-03-28 07:14:12 +0000
commit092c8f0bee28da7e426bd12abf9919b8459ef84f (patch)
treeca07b70dd2ff9d2c074672ecba68f6994d31ab84 /gui-libs/hyprcursor
parentb2887c7ab46ed23ad0f71c82db7c9444661c69fc (diff)
downloadbaldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.tar.gz
baldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.tar.xz
baldeagleos-repo-092c8f0bee28da7e426bd12abf9919b8459ef84f.zip
Adding metadata
Diffstat (limited to 'gui-libs/hyprcursor')
-rw-r--r--gui-libs/hyprcursor/Manifest4
-rw-r--r--gui-libs/hyprcursor/files/0.1.10-fstream.patch39
-rw-r--r--gui-libs/hyprcursor/files/0.1.10-llvm-fix.patch27
-rw-r--r--gui-libs/hyprcursor/hyprcursor-0.1.10-r1.ebuild31
-rw-r--r--gui-libs/hyprcursor/hyprcursor-0.1.11.ebuild26
-rw-r--r--gui-libs/hyprcursor/hyprcursor-0.1.12.ebuild32
-rw-r--r--gui-libs/hyprcursor/hyprcursor-0.1.13.ebuild32
-rw-r--r--gui-libs/hyprcursor/hyprcursor-9999.ebuild32
-rw-r--r--gui-libs/hyprcursor/metadata.xml22
9 files changed, 0 insertions, 245 deletions
diff --git a/gui-libs/hyprcursor/Manifest b/gui-libs/hyprcursor/Manifest
deleted file mode 100644
index 18b455fa9ec7..000000000000
--- a/gui-libs/hyprcursor/Manifest
+++ /dev/null
@@ -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
diff --git a/gui-libs/hyprcursor/files/0.1.10-fstream.patch b/gui-libs/hyprcursor/files/0.1.10-fstream.patch
deleted file mode 100644
index e46df53dc9b1..000000000000
--- a/gui-libs/hyprcursor/files/0.1.10-fstream.patch
+++ /dev/null
@@ -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>
diff --git a/gui-libs/hyprcursor/files/0.1.10-llvm-fix.patch b/gui-libs/hyprcursor/files/0.1.10-llvm-fix.patch
deleted file mode 100644
index 9c8661221b4a..000000000000
--- a/gui-libs/hyprcursor/files/0.1.10-llvm-fix.patch
+++ /dev/null
@@ -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>
diff --git a/gui-libs/hyprcursor/hyprcursor-0.1.10-r1.ebuild b/gui-libs/hyprcursor/hyprcursor-0.1.10-r1.ebuild
deleted file mode 100644
index d895802878b4..000000000000
--- a/gui-libs/hyprcursor/hyprcursor-0.1.10-r1.ebuild
+++ /dev/null
@@ -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
-)
diff --git a/gui-libs/hyprcursor/hyprcursor-0.1.11.ebuild b/gui-libs/hyprcursor/hyprcursor-0.1.11.ebuild
deleted file mode 100644
index 037608bf10e0..000000000000
--- a/gui-libs/hyprcursor/hyprcursor-0.1.11.ebuild
+++ /dev/null
@@ -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
-"
diff --git a/gui-libs/hyprcursor/hyprcursor-0.1.12.ebuild b/gui-libs/hyprcursor/hyprcursor-0.1.12.ebuild
deleted file mode 100644
index f5b309d1541b..000000000000
--- a/gui-libs/hyprcursor/hyprcursor-0.1.12.ebuild
+++ /dev/null
@@ -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
-"
diff --git a/gui-libs/hyprcursor/hyprcursor-0.1.13.ebuild b/gui-libs/hyprcursor/hyprcursor-0.1.13.ebuild
deleted file mode 100644
index 5f4df09be1be..000000000000
--- a/gui-libs/hyprcursor/hyprcursor-0.1.13.ebuild
+++ /dev/null
@@ -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
-"
diff --git a/gui-libs/hyprcursor/hyprcursor-9999.ebuild b/gui-libs/hyprcursor/hyprcursor-9999.ebuild
deleted file mode 100644
index 5f4df09be1be..000000000000
--- a/gui-libs/hyprcursor/hyprcursor-9999.ebuild
+++ /dev/null
@@ -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
-"
diff --git a/gui-libs/hyprcursor/metadata.xml b/gui-libs/hyprcursor/metadata.xml
deleted file mode 100644
index bd1a5a1f0e0b..000000000000
--- a/gui-libs/hyprcursor/metadata.xml
+++ /dev/null
@@ -1,22 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://liguros.gitlab.io/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>julien@jroy.ca</email>
- <name>Julien Roy</name>
- </maintainer>
- <maintainer type="person">
- <email>johnmh@johnmh.me</email>
- <name>John M. Harris, Jr.</name>
- </maintainer>
- <maintainer type="project">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <upstream>
- <changelog>https://github.com/hyprwm/hyprcursor/releases</changelog>
- <bugs-to>https://github.com/hyprwm/hyprcursor/issues</bugs-to>
- <doc>https://github.com/hyprwm/hyprcursor/tree/main/docs</doc>
- </upstream>
- <origin>gentoo-staging</origin>
-</pkgmetadata> \ No newline at end of file