This is (probably) the last release from 4.x line of RSS Guard. A new 5.x
version is under development
* Added ability to turn off/on font anti-aliasing for the whole app
* Fixed random QThread-related crashes
* Fixed Article list/viewer behavior when feeds with very long descriptions
are selected.
- dropped patch fix_missing_returns.patch as merged into upstream
- ran spec_cleaner
OBS-URL: https://build.opensuse.org/package/show/X11:Utilities/rssguard?expand=0&rev=116
116 lines
3.6 KiB
RPMSpec
116 lines
3.6 KiB
RPMSpec
#
|
|
# spec file for package rssguard
|
|
#
|
|
# Copyright (c) 2025 SUSE LLC and contributors
|
|
#
|
|
# All modifications and additions to the file contributed by third parties
|
|
# remain the property of their copyright owners, unless otherwise agreed
|
|
# upon. The license for this file, and modifications and additions to the
|
|
# file, is the same license as for the pristine package itself (unless the
|
|
# license for the pristine package is not an Open Source License, in which
|
|
# case the license is the MIT License). An "Open Source License" is a
|
|
# license that conforms to the Open Source Definition (Version 1.9)
|
|
# published by the Open Source Initiative.
|
|
|
|
# Please submit bugfixes or comments via https://bugs.opensuse.org/
|
|
#
|
|
|
|
|
|
%define libver 4_8_6
|
|
Name: rssguard
|
|
Version: 4.8.6
|
|
Release: 0
|
|
Summary: RSS/ATOM/RDF feed reader
|
|
License: AGPL-3.0-or-later AND GPL-3.0-only
|
|
Group: Productivity/Networking/News/Clients
|
|
URL: https://github.com/martinrotter/rssguard
|
|
Source0: https://github.com/martinrotter/rssguard/archive/%{version}.tar.gz#/%{name}-%{version}.tar.gz
|
|
Source1: %{name}.changes
|
|
# PATCH-FIX-OPENSUSE rssguard-4.8.1-add_library_version.patch aloisio@gmx.com -- add version to shared library
|
|
Patch0: rssguard-4.8.1-add_library_version.patch
|
|
BuildRequires: fdupes
|
|
BuildRequires: hicolor-icon-theme
|
|
BuildRequires: pkgconfig
|
|
BuildRequires: cmake(Qt6Concurrent)
|
|
BuildRequires: cmake(Qt6Core) >= 6.3.0
|
|
BuildRequires: cmake(Qt6Core5Compat)
|
|
BuildRequires: cmake(Qt6DBus)
|
|
BuildRequires: cmake(Qt6LinguistTools)
|
|
BuildRequires: cmake(Qt6Multimedia)
|
|
BuildRequires: cmake(Qt6Network)
|
|
BuildRequires: cmake(Qt6OpenGL)
|
|
BuildRequires: cmake(Qt6OpenGLWidgets)
|
|
BuildRequires: cmake(Qt6Qml)
|
|
BuildRequires: cmake(Qt6Sql)
|
|
BuildRequires: cmake(Qt6WebEngineWidgets)
|
|
BuildRequires: cmake(Qt6Widgets)
|
|
BuildRequires: cmake(Qt6Xml)
|
|
BuildRequires: pkgconfig(mpv)
|
|
BuildRequires: pkgconfig(sqlite3)
|
|
BuildRequires: pkgconfig(zlib)
|
|
Recommends: nodejs
|
|
Recommends: npm
|
|
Obsoletes: %{name}-lang < %{version}
|
|
Provides: %{name}-lang = %{version}
|
|
|
|
%description
|
|
RSS Guard is a RSS/ATOM feed aggregator developed using the Qt framework.
|
|
It supports online feed synchronization.
|
|
|
|
%package -n lib%{name}-devel
|
|
Summary: Development headers for lib%{name}-%{libver}
|
|
Group: Development/Libraries/C and C++
|
|
Requires: lib%{name}-%{libver}
|
|
|
|
%description -n lib%{name}-devel
|
|
Development headers to be used with lib%{name}-%{libver}.
|
|
|
|
%package -n lib%{name}-%{libver}
|
|
Summary: Shared library for %{name}
|
|
|
|
%description -n lib%{name}-%{libver}
|
|
Shared library for %{name} to be used by external plugins.
|
|
|
|
%prep
|
|
%autosetup -p1
|
|
# remove executable bit
|
|
find src/librssguard -name "*.h" -exec chmod -x {} \;
|
|
|
|
%build
|
|
%cmake_qt6 -DBUILD_WITH_QT6:BOOL=ON \
|
|
%if 0%{?suse_version} > 1600 || 0%{?sle_version} > 150600
|
|
-DENABLE_MEDIAPLAYER_LIBMPV:BOOL=ON \
|
|
%else
|
|
-DENABLE_MEDIAPLAYER_LIBMPV:BOOL=OFF \
|
|
%endif
|
|
-DUSE_SYSTEM_SQLITE:BOOL=ON
|
|
%{qt6_build}
|
|
|
|
%install
|
|
%{qt6_install}
|
|
# install autostart
|
|
mkdir -pv %{buildroot}%{_datadir}/autostart
|
|
%fdupes -s %{buildroot}
|
|
|
|
%ldconfig_scriptlets -n lib%{name}-%{libver}
|
|
|
|
%files
|
|
%license LICENSE.md
|
|
%dir %{_datadir}/applications
|
|
%dir %{_datadir}/autostart
|
|
%dir %{_datadir}/metainfo
|
|
%dir %{_libdir}/%{name}
|
|
%{_bindir}/%{name}
|
|
%{_datadir}/applications/io.github.martinrotter.%{name}.desktop
|
|
%{_datadir}/icons/hicolor/*/apps/io.github.martinrotter.%{name}.png
|
|
%{_datadir}/metainfo/io.github.martinrotter.%{name}.metainfo.xml
|
|
%{_libdir}/%{name}/lib%{name}-*.so
|
|
|
|
%files -n librssguard-devel
|
|
%{_includedir}/lib%{name}
|
|
|
|
%files -n lib%{name}-%{libver}
|
|
%{_libdir}/lib%{name}-%{version}.so
|
|
|
|
%changelog
|