mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
sys-libs/gwenhywfar: drop 5.12.0-r1
Closes: https://bugs.gentoo.org/955181 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
This commit is contained in:
parent
6363d5e258
commit
390003d762
@ -1,2 +1 @@
|
||||
DIST gwenhywfar-5.12.0.tar.gz 2721790 BLAKE2B 99c875ff9de6908ebba92cda1fdca62a6c12d3c3994328b207e36003a0ce478abd6777a4a0a73669c9b85a28591429f14ca73a32695f7ee8d226a4aca69f9922 SHA512 0075eb626f0022ecd4ffdd59de7f0817d2def685e1d2cfbca9a32faa4b8d4d213bea631f24c5385da0b8c7743fd6d1887a46f08afa371195d911409ec7655791
|
||||
DIST gwenhywfar-5.12.1.tar.gz 2734237 BLAKE2B e31df2122c6acda76e5698b6abbb13b98189ae6f25de3bc5ba12d676f60581bbc44897af179fa340532e7540cc9f350e7a5010a355a1ae253bae35ea707f58ea SHA512 0c2523e1b7d4744663d1a7bdc5e516fb1c757881402189c2315d844bc1fa86b1d3bdc72add3c6fa4ee24a46c7dabc12691b785b8dc63877963c840f2da494e57
|
||||
|
||||
@ -1,32 +0,0 @@
|
||||
https://bugs.gentoo.org/955862
|
||||
https://github.com/aqbanking/gwenhywfar/commit/3a31e47cf14a4683c13ad81b57af0dd8b56d5353
|
||||
|
||||
From 3a31e47cf14a4683c13ad81b57af0dd8b56d5353 Mon Sep 17 00:00:00 2001
|
||||
From: Micha Lenk <micha@lenk.info>
|
||||
Date: Sun, 23 Feb 2025 21:44:55 +0100
|
||||
Subject: [PATCH] Remove double declaration of HtmlObject_Grid_new
|
||||
|
||||
This fixes a build failure when compiling with GCC 15 due to conflicting
|
||||
declarations of HtmlObject_Grid_new.
|
||||
|
||||
The build failure was initially reported by Matthias Klose <doko@debian.org> as
|
||||
Debian bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1097194
|
||||
---
|
||||
src/html/o_grid_p.h | 3 ---
|
||||
1 file changed, 3 deletions(-)
|
||||
|
||||
diff --git a/src/html/o_grid_p.h b/src/html/o_grid_p.h
|
||||
index 33f218be..7c2ebd18 100644
|
||||
--- a/src/html/o_grid_p.h
|
||||
+++ b/src/html/o_grid_p.h
|
||||
@@ -15,9 +15,6 @@
|
||||
#include "o_grid_l.h"
|
||||
|
||||
|
||||
-HTML_OBJECT *HtmlObject_Grid_new();
|
||||
-
|
||||
-
|
||||
typedef struct OBJECT_GRID OBJECT_GRID;
|
||||
struct OBJECT_GRID {
|
||||
int rows;
|
||||
|
||||
@ -1,81 +0,0 @@
|
||||
# Copyright 1999-2025 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
inherit qmake-utils
|
||||
|
||||
DESCRIPTION="Multi-platform helper library for other libraries"
|
||||
HOMEPAGE="https://www.aquamaniac.de/sites/aqbanking/index.php"
|
||||
SRC_URI="https://www.aquamaniac.de/rdm/attachments/download/529/${P}.tar.gz"
|
||||
|
||||
LICENSE="LGPL-2.1"
|
||||
SLOT="0/79" # correspond with libgwenhywfar.so version
|
||||
KEYWORDS="amd64 ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
|
||||
IUSE="debug gtk qt5 test" # doc (is broken, bug #950614
|
||||
|
||||
# broken upstream, reported but got no reply
|
||||
RESTRICT="test"
|
||||
|
||||
DEPEND="
|
||||
dev-libs/libgcrypt:0=
|
||||
dev-libs/libgpg-error
|
||||
dev-libs/libxml2:2=
|
||||
dev-libs/openssl:0=
|
||||
net-libs/gnutls:=
|
||||
virtual/libiconv
|
||||
virtual/libintl
|
||||
virtual/opengl
|
||||
gtk? ( x11-libs/gtk+:3 )
|
||||
qt5? (
|
||||
dev-qt/qtconcurrent:5
|
||||
dev-qt/qtcore:5
|
||||
dev-qt/qtdbus:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtnetwork:5
|
||||
dev-qt/qtopengl:5
|
||||
dev-qt/qtprintsupport:5
|
||||
dev-qt/qtsql:5
|
||||
dev-qt/qtwidgets:5
|
||||
dev-qt/qtxml:5
|
||||
)
|
||||
"
|
||||
RDEPEND="${DEPEND}"
|
||||
BDEPEND="
|
||||
sys-devel/gettext
|
||||
virtual/pkgconfig
|
||||
"
|
||||
# doc? ( app-text/doxygen )
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${PN}-5.12.0-c23.patch
|
||||
)
|
||||
|
||||
src_configure() {
|
||||
local myeconfargs=(
|
||||
--with-docpath="${EPREFIX}/usr/share/doc/${PF}/apidoc"
|
||||
--with-libxml2-code=yes
|
||||
$(use_enable debug)
|
||||
#$(use_enable doc full-doc)
|
||||
)
|
||||
use qt5 && myeconfargs+=(
|
||||
--with-qt5-moc="$(qt5_get_bindir)/moc"
|
||||
--with-qt5-qmake="$(qt5_get_bindir)/qmake"
|
||||
)
|
||||
|
||||
local guis=()
|
||||
use gtk && guis+=( gtk3 )
|
||||
use qt5 && guis+=( qt5 )
|
||||
econf "${myeconfargs[@]}" "--with-guis=${guis[*]}"
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake
|
||||
#use doc && emake srcdoc
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
#use doc && emake DESTDIR="${D}" install-srcdoc
|
||||
find "${D}" -name '*.la' -type f -delete || die
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user