FeedReader: remove package
* uses libsoup2, archived upstream
This commit is contained in:
parent
5cf0e9e009
commit
2920f85cac
|
@ -1,23 +0,0 @@
|
|||
Source: @pullmoll
|
||||
Upstream: no
|
||||
Reason: In musl libc stdin, stdout, and stderr are FILE const*
|
||||
|
||||
The unreadCount option may print intialization messages before the
|
||||
number of unread articles. This _may_ break existing apps relying
|
||||
on the output being just one number, while I know of no such app.
|
||||
If someone knows how to temporarily disable stdout with musl libc
|
||||
please modify this patch and move it to ../patches.
|
||||
|
||||
--- src/FeedReaderMain.vala 2019-07-13 21:09:05.000000000 +0200
|
||||
+++ src/FeedReaderMain.vala 2020-04-14 01:26:11.436124423 +0200
|
||||
@@ -98,10 +98,7 @@
|
||||
|
||||
if(unreadCount)
|
||||
{
|
||||
- var old_stdout =(owned)stdout;
|
||||
- stdout = FileStream.open("/dev/null", "w");
|
||||
Logger.init(verbose);
|
||||
- stdout =(owned)old_stdout;
|
||||
stdout.printf("%u\n", DataBase.readOnly().get_unread_total());
|
||||
return 0;
|
||||
}
|
|
@ -1,26 +0,0 @@
|
|||
# Template file for 'FeedReader'
|
||||
pkgname=FeedReader
|
||||
version=2.11.0
|
||||
revision=2
|
||||
build_style=meson
|
||||
hostmakedepends="glib-devel intltool itstool pkg-config vala"
|
||||
makedepends="gnome-online-accounts-devel gst-plugins-base1-devel json-glib-devel
|
||||
libcurl-devel libgee08-devel libnotify-devel libpeas-devel libsecret-devel
|
||||
rest-devel vala-devel webkit2gtk-devel gumbo-parser-devel libsoup-devel"
|
||||
short_desc="Modern desktop RSS desktop client"
|
||||
maintainer="Enno Boland <gottox@voidlinux.org>"
|
||||
license="GPL-3.0-only"
|
||||
homepage="https://jangernert.github.io/FeedReader/"
|
||||
distfiles="https://github.com/jangernert/${pkgname}/archive/v${version}.tar.gz"
|
||||
checksum=9f679cc08e5673e9e90541b0a0c4066990deacddfe2692f6611799d99bdf5b3e
|
||||
|
||||
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
||||
makedepends+=" libexecinfo-devel"
|
||||
LDFLAGS+=" -lexecinfo"
|
||||
fi
|
||||
|
||||
pre_configure() {
|
||||
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
||||
patch -Np0 -i ${FILESDIR}/fix-FeedServerMain_vala.patch
|
||||
fi
|
||||
}
|
|
@ -9,6 +9,7 @@ license="Public Domain"
|
|||
homepage="https://voidlinux.org"
|
||||
|
||||
replaces="
|
||||
FeedReader<=2.11.0_2
|
||||
ImageMagick6<=6.9.12.12_2
|
||||
MoinMoin<=1.9.11_1
|
||||
MultiMC<=0.6.13_1
|
||||
|
|
Loading…
Reference in New Issue