Accepting request 1276204 from network:utilities

- Update to version 3.3.5+223:
  * fix custom sync interval initial error state
  * update blueprint repo url
  * restore search term before selecting sidebar item
  * restore search term before selecting sidebar item
  * Article View Style updates
  * warning about short update intervals
  * fmt
  * close article on deselect article list (fixes #751)
  * visual fixes
  * use default values for new setting keys
- enable updating vendor tarball, fixes bsc#1242632, bsc#1242810
- remove aarch64 workaround, got fixed in Factory
- needs clang-devel, as a crate doesn't build otherwise
- remove suse_update_desktop_file macro (forwarded request 1276200 from rrahl0)

OBS-URL: https://build.opensuse.org/request/show/1276204
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/newsflash?expand=0&rev=11
This commit is contained in:
2025-05-09 16:51:56 +00:00
committed by Git OBS Bridge
8 changed files with 40 additions and 21 deletions

View File

@@ -3,10 +3,10 @@
<service name="obs_scm" mode="manual">
<param name="scm">git</param>
<param name="url">https://gitlab.com/news-flash/news_flash_gtk.git</param>
<param name="revision">refs/tags/v.3.3.5</param>
<param name="versionformat">@PARENT_TAG@</param>
<param name="revision">master</param>
<param name="versionformat">@PARENT_TAG@+@TAG_OFFSET@</param>
<param name="versionrewrite-pattern">v.(.*)</param>
<param name="changesgenerate">disable</param>
<param name="changesgenerate">enable</param>
<param name="filename">newsflash</param>
</service>
<service name="tar" mode="buildtime" />
@@ -17,7 +17,7 @@
<service name="cargo_vendor" mode="manual">
<param name="srcdir">news_flash_gtk</param>
<param name="compression">zst</param>
<param name="update">false</param>
<param name="update">true</param>
</service>
<service name="set_version" mode="manual" />
</services>

4
_servicedata Normal file
View File

@@ -0,0 +1,4 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://gitlab.com/news-flash/news_flash_gtk.git</param>
<param name="changesrevision">32da905b9303dd426f91ff19cbe0b36069092569</param></service></servicedata>

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:49ca1c8cdb4e818a20f68270b93cc0b120c953d129f06730f3aa39b83f4730ba
size 13848077

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a537504d811728e7b5afa731ad744b001f6377f47e638ed5c061f144464dc2b9
size 13655053

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Fri May 09 10:50:29 UTC 2025 - Richard Rahl <rrahl0@opensuse.org>
- Update to version 3.3.5+223:
* fix custom sync interval initial error state
* update blueprint repo url
* restore search term before selecting sidebar item
* restore search term before selecting sidebar item
* Article View Style updates
* warning about short update intervals
* fmt
* close article on deselect article list (fixes #751)
* visual fixes
* use default values for new setting keys
- enable updating vendor tarball, fixes bsc#1242632, bsc#1242810
- remove aarch64 workaround, got fixed in Factory
- needs clang-devel, as a crate doesn't build otherwise
- remove suse_update_desktop_file macro
-------------------------------------------------------------------
Tue Sep 24 21:16:06 UTC 2024 - Richard Rahl <rrahl0@opensuse.org>

View File

@@ -1,4 +1,4 @@
name: newsflash
version: 3.3.5
mtime: 1727165978
commit: 57d461a7dc5069c6f49651e7cd022ef82d987105
version: 3.3.5+223
mtime: 1746653161
commit: 32da905b9303dd426f91ff19cbe0b36069092569

View File

@@ -1,7 +1,7 @@
#
# spec file for package newsflash
#
# Copyright (c) 2024 SUSE LLC
# Copyright (c) 2025 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -19,7 +19,7 @@
%define _lto_cflags %{nil}
%define appname io.gitlab.news_flash.NewsFlash
Name: newsflash
Version: 3.3.5
Version: 3.3.5+223
Release: 0
Summary: The spiritual successor to FeedReader
License: GPL-3.0-only
@@ -28,6 +28,7 @@ Source0: %{name}-%{version}.tar.zst
Source1: vendor.tar.zst
BuildRequires: appstream-glib
BuildRequires: cargo-packaging
BuildRequires: clang-devel
BuildRequires: desktop-file-utils
BuildRequires: gcc-c++
BuildRequires: gettext-tools
@@ -36,7 +37,6 @@ BuildRequires: hicolor-icon-theme
BuildRequires: meson
BuildRequires: pkgconfig
BuildRequires: python3-gobject
BuildRequires: update-desktop-files
BuildRequires: xdg-utils
BuildRequires: pkgconfig(blueprint-compiler)
BuildRequires: pkgconfig(clapper-gtk-0.0)
@@ -50,9 +50,6 @@ BuildRequires: pkgconfig(libxml-2.0)
BuildRequires: pkgconfig(openssl)
BuildRequires: pkgconfig(sqlite3)
BuildRequires: pkgconfig(webkitgtk-6.0)
%ifarch aarch64
BuildRequires: typelib(ClapperGtk)
%endif
%description
NewsFlash is a program designed to complement an already existing web-based RSS reader account.
@@ -74,8 +71,6 @@ sed -i "s|version: '0.0.0'|version: '%{version}'|g" meson.build
%install
%meson_install
%suse_update_desktop_file %{appname}
%find_lang %{name}
%files
@@ -83,9 +78,10 @@ sed -i "s|version: '0.0.0'|version: '%{version}'|g" meson.build
%doc README.md
%{_bindir}/%{appname}
%{_datadir}/applications/%{appname}.desktop
%{_datadir}/dbus-1/services/%{appname}.service
%{_datadir}/metainfo/%{appname}.appdata.xml
%{_iconsdir}/hicolor/scalable/apps/%{appname}.svg
%{_iconsdir}/hicolor/symbolic/apps/%{appname}-symbolic.svg
%{_datadir}/metainfo/%{appname}.appdata.xml
%files lang -f %{name}.lang

View File

@@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a41653e5aa596944dad60b9017e4eeb2df57a7bf38a7f2c194d3748ee0bee53
size 52008794
oid sha256:410a1e7e568c9f4a9643758f9c24adaff66b1acf92f3b1ae383c8d3f9d46f0a9
size 64390145