summaryrefslogtreecommitdiff
path: root/dev-libs/librepfunc
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /dev-libs/librepfunc
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'dev-libs/librepfunc')
-rw-r--r--dev-libs/librepfunc/Manifest1
-rw-r--r--dev-libs/librepfunc/files/gcc-15-fix.patch36
-rw-r--r--dev-libs/librepfunc/files/librepfunc-1.10.0-makefile.patch20
-rw-r--r--dev-libs/librepfunc/librepfunc-1.10.0-r1.ebuild22
-rw-r--r--dev-libs/librepfunc/librepfunc-1.10.0.ebuild19
-rw-r--r--dev-libs/librepfunc/metadata.xml19
6 files changed, 0 insertions, 117 deletions
diff --git a/dev-libs/librepfunc/Manifest b/dev-libs/librepfunc/Manifest
deleted file mode 100644
index 6976886c978f..000000000000
--- a/dev-libs/librepfunc/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST librepfunc-1.10.0.tar.gz 32247 BLAKE2B 23136c1308d69348c1a71d0932cc894b5ad851b505ea7e3ca9cc2e7f7c619e793742fc91e41e2f57c91d447e032019e4b99731acc379aad9ac41c6439b2c18c3 SHA512 8750d6a20cbd0279a14170772ca94e2149d79507b1d697ffd80455874603247d4d91052df575c3923e86099f2993e71ea868d65d4d851ef383c051be4f01bb1c
diff --git a/dev-libs/librepfunc/files/gcc-15-fix.patch b/dev-libs/librepfunc/files/gcc-15-fix.patch
deleted file mode 100644
index 0ecb4e487670..000000000000
--- a/dev-libs/librepfunc/files/gcc-15-fix.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-commit 90c9c9ba279fcd1e6a3b68a1620de76e7634f885
-Author: wirbel <womp@herr-der-mails.de>
-Date: Wed Dec 10 13:57:42 2025 +0100
-
- gcc-15 fix
-
-diff --git a/StrToInt.cpp b/StrToInt.cpp
-index a38192d..fb8f1a0 100644
---- a/StrToInt.cpp
-+++ b/StrToInt.cpp
-@@ -31,10 +31,8 @@ std::intmax_t StrToIntT(const std::basic_string<T>& s, size_t* pos, size_t base,
- }
- catch(const std::exception& e) {
- std::cerr << f
-- << ": ERROR: cannot convert '"
-- << (const T*)s.c_str()
-- << "' to integer: "
-- << (const T*)e.what() << std::endl;
-+ << ": ERROR: cannot convert to integer: "
-+ << e.what() << std::endl;
- return err;
- }
- }
-diff --git a/StrToWstr.cpp b/StrToWstr.cpp
-index 3493335..026439e 100644
---- a/StrToWstr.cpp
-+++ b/StrToWstr.cpp
-@@ -9,6 +9,8 @@
-
- /* NOTE: this code needs to be modified in future,
- * as C++17 deprecated std::codecvt_utf8
-+ *
-+ * https://www.geeksforgeeks.org/cpp/wcstombs-function-in-c-stl/
- */
-
- std::string WStrToStr(std::wstring ws) {
diff --git a/dev-libs/librepfunc/files/librepfunc-1.10.0-makefile.patch b/dev-libs/librepfunc/files/librepfunc-1.10.0-makefile.patch
deleted file mode 100644
index 8e09d74357a7..000000000000
--- a/dev-libs/librepfunc/files/librepfunc-1.10.0-makefile.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- a/Makefile
-+++ b/Makefile
-@@ -32,7 +32,7 @@
- #/******************************************************************************
- # * if you prefer verbose non-coloured build messages, remove the '@' here:
- # *****************************************************************************/
--CXX = @g++
-+CXX ?= $(CXX)
- CXXFLAGS += -g -O3 -fPIC -Wall -Wextra -Werror=overloaded-virtual -Wfatal-errors
- CXXFLAGS += -DVERSION=\"$(VERSION)\"
- DEFINES = -D_POSIX_C_SOURCE
-@@ -44,7 +44,7 @@
- # * packages instead of fixing your broken distro, you may overwrite the
- # * package_name here.
- # *****************************************************************************/
--package_name ?= $(LIBRARY_PATCH)
-+package_name ?= librepfunc-$(MAJOR).$(MINOR).$(PATCH)
-
-
- #/******************************************************************************
diff --git a/dev-libs/librepfunc/librepfunc-1.10.0-r1.ebuild b/dev-libs/librepfunc/librepfunc-1.10.0-r1.ebuild
deleted file mode 100644
index 404d0f50aadf..000000000000
--- a/dev-libs/librepfunc/librepfunc-1.10.0-r1.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A collection of functions, classes and so on, for vdr plugins"
-HOMEPAGE="https://github.com/wirbel-at-vdr-portal/librepfunc"
-SRC_URI="https://github.com/wirbel-at-vdr-portal/librepfunc/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-
-PATCHES=(
- "${FILESDIR}/${P}-makefile.patch"
- "${FILESDIR}/gcc-15-fix.patch"
-)
-
-src_install() {
- emake DESTDIR="${D}" libdir="/usr/$(get_libdir)/" pkgconfigdir="/usr/$(get_libdir)/pkgconfig" install
- einstalldocs
-}
diff --git a/dev-libs/librepfunc/librepfunc-1.10.0.ebuild b/dev-libs/librepfunc/librepfunc-1.10.0.ebuild
deleted file mode 100644
index 9171f4231e26..000000000000
--- a/dev-libs/librepfunc/librepfunc-1.10.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="A collection of functions, classes and so on, for vdr plugins"
-HOMEPAGE="https://github.com/wirbel-at-vdr-portal/librepfunc"
-SRC_URI="https://github.com/wirbel-at-vdr-portal/librepfunc/archive/refs/tags/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-
-PATCHES=( "${FILESDIR}/${P}-makefile.patch" )
-
-src_install() {
- emake DESTDIR="${D}" libdir="/usr/$(get_libdir)/" pkgconfigdir="/usr/$(get_libdir)/pkgconfig" install
- einstalldocs
-}
diff --git a/dev-libs/librepfunc/metadata.xml b/dev-libs/librepfunc/metadata.xml
deleted file mode 100644
index e4fbf0d91383..000000000000
--- a/dev-libs/librepfunc/metadata.xml
+++ /dev/null
@@ -1,19 +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>martin.dummer@gmx.net</email>
- <name>Martin Dummer</name>
- </maintainer>
- <maintainer type="project" proxied="proxy">
- <email>proxy-maint@gentoo.org</email>
- <name>Proxy Maintainers</name>
- </maintainer>
- <maintainer type="project">
- <email>vdr@gentoo.org</email>
- <name>Gentoo VDR Project</name>
- </maintainer>
- <upstream>
- <remote-id type="github">wirbel-at-vdr-portal/librepfunc</remote-id>
- </upstream>
-</pkgmetadata>