Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package Srain for openSUSE:Factory checked in at 2023-11-14 21:41:48 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Srain (Old) and /work/SRC/openSUSE:Factory/.Srain.new.17445 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Srain" Tue Nov 14 21:41:48 2023 rev:13 rq:1125007 version:1.5.1 Changes: -------- --- /work/SRC/openSUSE:Factory/Srain/Srain.changes 2023-01-15 17:58:22.578277761 +0100 +++ /work/SRC/openSUSE:Factory/.Srain.new.17445/Srain.changes 2023-11-14 21:41:54.678129563 +0100 @@ -1,0 +2,7 @@ +Fri Nov 10 15:24:18 UTC 2023 - Dirk Müller <[email protected]> + +- update to 1.5.1: + * Fix the problem that the URL cannot be opened on MS Windows + (:issue:`391`) + +------------------------------------------------------------------- Old: ---- Srain-1.5.0.tar.gz New: ---- Srain-1.5.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Srain.spec ++++++ --- /var/tmp/diff_new_pack.mXRZs8/_old 2023-11-14 21:41:55.714167914 +0100 +++ /var/tmp/diff_new_pack.mXRZs8/_new 2023-11-14 21:41:55.714167914 +0100 @@ -17,7 +17,7 @@ Name: Srain -Version: 1.5.0 +Version: 1.5.1 Release: 0 Summary: An IRC client License: GPL-3.0-or-later AND ISC ++++++ Srain-1.5.0.tar.gz -> Srain-1.5.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/.github/workflows/build.yml new/srain-1.5.1/.github/workflows/build.yml --- old/srain-1.5.0/.github/workflows/build.yml 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/.github/workflows/build.yml 2023-03-26 07:04:33.000000000 +0200 @@ -65,10 +65,11 @@ # # As of meson 0.47.0 -Dopt= and -Dopt=[] both pass an empty list, # before this -Dopt= would pass a list with an empty string. - meson setup -Ddoc_builders=[] \ - --prefix=$MINGW_PREFIX \ - --datadir=$MINGW_PREFIX/share \ - --sysconfdir=$MINGW_PREFIX/etc \ + meson setup \ + -Ddoc_builders=[] \ + --prefix=$MINGW_PREFIX \ + --datadir=$MINGW_PREFIX/share \ + --sysconfdir=$MINGW_PREFIX/etc \ builddir; ninja -C builddir; - name: Install diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/.github/workflows/pack-debian.sh new/srain-1.5.1/.github/workflows/pack-debian.sh --- old/srain-1.5.0/.github/workflows/pack-debian.sh 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/.github/workflows/pack-debian.sh 2023-03-26 07:04:33.000000000 +0200 @@ -1,5 +1,8 @@ #!/bin/bash set -ex +# Silence all safe.directory errors: +# fatal: detected dubious ownership in repository at '/__w/srain/srain' +git config --global --add safe.directory '*'; # Fetch all tags. git fetch origin +refs/tags/*:refs/tags/*; git tag; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/.github/workflows/pack-mingw64.sh new/srain-1.5.1/.github/workflows/pack-mingw64.sh --- old/srain-1.5.0/.github/workflows/pack-mingw64.sh 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/.github/workflows/pack-mingw64.sh 2023-03-26 07:04:33.000000000 +0200 @@ -48,6 +48,9 @@ get_dll $gdbus mingw64_dlls+=$ret +# helper program to open browser link +help_program=$prefix/bin/gspawn-win64-helper.exe + mingw64_dlls=$(echo $mingw64_dlls | tr ' ' '\n' | sort -u) mkdir -pv $dst_bin @@ -65,6 +68,7 @@ echo 'Finished installing Srain' cp -rfv $gdbus $dst_bin/ +cp -rfv $help_program $dst_bin/ cp -rfv $mingw64_dlls $dst_bin/ cp -rfv $prefix/lib/gio $dst_lib/ cp -rfv $prefix/lib/gdk-pixbuf-2.0 $dst_lib/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/data/metainfo/srain.metainfo.xml.in.in new/srain-1.5.1/data/metainfo/srain.metainfo.xml.in.in --- old/srain-1.5.0/data/metainfo/srain.metainfo.xml.in.in 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/data/metainfo/srain.metainfo.xml.in.in 2023-03-26 07:04:33.000000000 +0200 @@ -68,7 +68,10 @@ </content_rating> <releases> - <release version="1.5.0" date="2022-10-30"> + <release version="1.5.1" date="2023-03-26"> + <url>https://srain.silverrainz.me/changelog.html#version-1-5-1</url> + </release> + <release version="1.5.0" date="2022-10-03"> <url>https://srain.silverrainz.me/changelog.html#version-1-5-0</url> </release> <release version="1.4.1" date="2022-07-30"> diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/docs/changelog.rst new/srain-1.5.1/docs/changelog.rst --- old/srain-1.5.0/docs/changelog.rst 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/docs/changelog.rst 2023-03-26 07:04:33.000000000 +0200 @@ -32,6 +32,17 @@ - XXX .. _version-latest: +.. _version-1.5.1: + +2023-03-26 Version 1.5.1 +======================== + +.. post:: 2023-03-26 + :category: Release + +- Bug fixes: + + - Fix the problem that the URL cannot be opened on MS Windows (:issue:`391`) .. _version-1.5.0: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/docs/conf.py new/srain-1.5.1/docs/conf.py --- old/srain-1.5.0/docs/conf.py 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/docs/conf.py 2023-03-26 07:04:33.000000000 +0200 @@ -62,7 +62,7 @@ # built documents. # # The short X.Y version. -version = '1.5.0' +version = '1.5.1' # The full version, including alpha/beta/rc tags. release = version diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/docs/requirements.txt new/srain-1.5.1/docs/requirements.txt --- old/srain-1.5.0/docs/requirements.txt 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/docs/requirements.txt 2023-03-26 07:04:33.000000000 +0200 @@ -1,4 +1,4 @@ -sphinx-book-theme +sphinx-book-theme==0.3.3 ablog sphinxnotes-strike sphinxnotes-mock diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/meson.build new/srain-1.5.1/meson.build --- old/srain-1.5.0/meson.build 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/meson.build 2023-03-26 07:04:33.000000000 +0200 @@ -4,7 +4,7 @@ project( 'srain', 'c', - version: '1.5.0', + version: '1.5.1', license: 'GPL3', meson_version: '>= 0.47.0' ) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/srain-1.5.0/src/meson.build new/srain-1.5.1/src/meson.build --- old/srain-1.5.0/src/meson.build 2022-10-02 16:07:44.000000000 +0200 +++ new/srain-1.5.1/src/meson.build 2023-03-26 07:04:33.000000000 +0200 @@ -11,7 +11,7 @@ meta_h.set_quoted('PACKAGE_BUGREPORT', app_bugreport) meta_h.set_quoted('PACKAGE_AUTHOR', 'Shengyu Zhang') meta_h.set_quoted('PACKAGE_EMAIL', '[email protected]') -meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2022') +meta_h.set_quoted('PACKAGE_COPYRIGHT_DATES', '2016 - 2023') meta_h.set_quoted('PACKAGE_DATA_DIR', data_dir) meta_h.set_quoted('PACKAGE_CONFIG_DIR', sys_conf_dir) @@ -135,8 +135,11 @@ include_directories('sui'), ] -executable(app_exec, srcs, +executable( + app_exec, srcs, include_directories: incdirs, dependencies: deps, install: true, - install_dir: bin_dir) + install_dir: bin_dir, + gui_app: true +)
