Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package newsboat for openSUSE:Factory 
checked in at 2023-06-26 18:16:18
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/newsboat (Old)
 and      /work/SRC/openSUSE:Factory/.newsboat.new.15902 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "newsboat"

Mon Jun 26 18:16:18 2023 rev:25 rq:1095315 version:2.32

Changes:
--------
--- /work/SRC/openSUSE:Factory/newsboat/newsboat.changes        2023-03-27 
18:16:58.547326814 +0200
+++ /work/SRC/openSUSE:Factory/.newsboat.new.15902/newsboat.changes     
2023-06-26 18:16:31.886587002 +0200
@@ -1,0 +2,41 @@
+Sun Jun 25 19:31:42 UTC 2023 - Joshua Smith <jsmith...@gmail.com>
+
+- Update to version 2.32:
+  Added:
+  * contrib: a filter to remove Substack's "Subscribe now" prompts
+    from the posts (NunoSempere)
+  * contrib: an image pager which can spot all the images in a
+    post and display them with either `feh` or `kitty`'s `icat`
+    (whyrgola)
+  * Tags in OPML export. This is implemented as a new option,
+    `--export-to-opml2`, because the output format is OPML version
+    2.0 rather than the 1.0 that `--export-to-opml` produces.
+    We intend to make OPML 2.0 the default in some future major
+    release of Newsboat (#871) (Gwyneth Morgan)
+  Changed:
+  * Enclosures are only enqueued if their MIME type looks like
+    a podcast or is empty. This prevents Newsboat from e.g.
+    enqueueing images from Mastodon feeds (#2367) (Dennis van der
+    Schagt)
+  * Asciidoctor is a truly optional dependency now. `make all`
+    still builds docs, but at least one can `make newsboat`
+    and such without installing Asciidoctor (#2353) (Alexander
+    Batischev)
+  * Newlines are now removed from the author's name (#2434)
+    (blankie)
+  * If the same URL is used in `<a>` and/or `<img>`/`<iframe>`,
+    it's marked as "image" or "iframe" rather than simply a
+    "link" (#2432) (blankie)
+  * `goto-title` operation now searches for the titles *as you
+    see them*, i.e. if a feed doesn't have a title and Newsboat
+    displays its URL instead, `goto-feed` will use that URL rather
+    than the (empty) title (#2451) (blankie)
+  * Updated translations: Dutch (Dennis van der Schagt), German
+    (Lysander Trischler), Italian (Mauro Scomparin), Polish
+    (Carno), Russian and Ukrainian (Alexander Batischev), Swedish
+    (Dennis Öberg), Turkish (Emir SARI)
+  * Updated vendored library expected-lite to 0.6.3
+  * Bumped minimum supported Rust version to 1.66.1
+- Removed newsboat-gcc12.patch due to upstream fix (#2056)
+
+-------------------------------------------------------------------

Old:
----
  newsboat-2.31.tar.xz
  newsboat-2.31.tar.xz.asc
  newsboat-gcc12.patch

New:
----
  _servicedata
  cargo_config
  newsboat-2.32.tar.xz
  newsboat-2.32.tar.xz.asc

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ newsboat.spec ++++++
--- /var/tmp/diff_new_pack.hs4dla/_old  2023-06-26 18:16:34.102596847 +0200
+++ /var/tmp/diff_new_pack.hs4dla/_new  2023-06-26 18:16:34.106596865 +0200
@@ -17,7 +17,7 @@
 
 
 Name:           newsboat
-Version:        2.31
+Version:        2.32
 Release:        0
 Summary:        RSS/Atom Feed Reader for Text Terminals
 License:        MIT
@@ -27,9 +27,9 @@
 Source1:        
https://newsboat.org/releases/%{version}/%{name}-%{version}.tar.xz.asc
 Source2:        https://newsboat.org/newsboat.pgp#/%{name}.keyring
 Source3:        vendor.tar.xz
+Source4:        cargo_config
 # pbleser: introduce OPTFLAGS make variable, instead of hard-coded -ggdb
 Patch0:         newsbeuter-makefile.patch
-Patch1:         newsboat-gcc12.patch
 BuildRequires:  cargo
 BuildRequires:  gcc-c++
 BuildRequires:  gettext-devel
@@ -61,20 +61,14 @@
 %prep
 %setup -qa3
 %patch0 -p1
-%patch1 -p1
 mkdir cargo-home
-cat >cargo-home/config <<EOF
-[source.crates-io]
-registry = 'https://github.com/rust-lang/crates.io-index'
-replace-with = 'vendored-sources'
-[source.vendored-sources]
-directory = './vendor'
-EOF
+install -Dm644 %{SOURCE4} .cargo/config
 sed -i 's/#!\/usr\/bin\/env perl/#!\/usr\/bin\/perl/' ./contrib/pinboard.pl
 sed -i 's/#!\/usr\/bin\/env python3/#!\/usr\/bin\/python3/' 
./doc/examples/example-exec-script.py
 sed -i 's/#!\/usr\/bin\/env python3/#!\/usr\/bin\/python3/' 
./contrib/exportOPMLWithTags.py
 sed -i 's/#!\/usr\/bin\/env python3/#!\/usr\/bin\/python3/' 
./contrib/move_url.py
 sed -i 's/#!\/usr\/bin\/env python/#!\/usr\/bin\/python3/' 
./contrib/newsboat_reorganize.py
+sed -i 's/#!\/bin\/sh/#!\/usr\/bin\/bash/' 
./doc/examples/example-bookmark-plugin.sh
 sed -i 's/#!\/usr\/bin\/env bash/#!\/usr\/bin\/bash/' 
./contrib/image-preview/nbrun
 sed -i 's/#!\/usr\/bin\/env bash/#!\/usr\/bin\/bash/' 
./contrib/image-preview/vifmimg
 sed -i 's/#!\/usr\/bin\/env bash/#!\/usr\/bin\/bash/' 
./contrib/bookmark-buku.sh
@@ -84,8 +78,7 @@
 export CARGO_HOME=`pwd`/cargo-home/
 ./config.sh
 
-%make_build \
-         OPTFLAGS="%{optflags}"
+%make_build OPTFLAGS="%{optflags}"
 
 %install
 export CARGO_HOME=`pwd`/cargo-home/

++++++ _service ++++++
--- /var/tmp/diff_new_pack.hs4dla/_old  2023-06-26 18:16:34.138597007 +0200
+++ /var/tmp/diff_new_pack.hs4dla/_new  2023-06-26 18:16:34.138597007 +0200
@@ -1,5 +1,9 @@
 <services>
-  <service name="cargo_audit" mode="disabled">
+  <service name="cargo_vendor" mode="disabled">
+    <param name="srcdir">newsboat</param>
+    <param name="compression">xz</param>
+    <param name="update">true</param>
   </service>
+  <service name="cargo_audit" mode="disabled"/>
 </services>
 

++++++ _servicedata ++++++
<servicedata>
<service name="tar_scm">
                <param 
name="url">https://github.com/newsboat/newsboat.git</param>
              <param 
name="changesrevision">6335e994b9e727e3228841e230b3675adab11501</param></service></servicedata>
(No newline at EOF)

++++++ cargo_config ++++++
[source.crates-io]
replace-with = "vendored-sources"

[source.vendored-sources]
directory = "vendor"
(No newline at EOF)

++++++ newsboat-2.31.tar.xz -> newsboat-2.32.tar.xz ++++++
++++ 12179 lines of diff (skipped)


++++++ vendor.tar.xz ++++++
/work/SRC/openSUSE:Factory/newsboat/vendor.tar.xz 
/work/SRC/openSUSE:Factory/.newsboat.new.15902/vendor.tar.xz differ: char 26, 
line 1

Reply via email to