Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package wf-recorder for openSUSE:Factory checked in at 2024-03-13 22:18:06 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wf-recorder (Old) and /work/SRC/openSUSE:Factory/.wf-recorder.new.1770 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wf-recorder" Wed Mar 13 22:18:06 2024 rev:6 rq:1157085 version:0.4.1+git0 Changes: -------- --- /work/SRC/openSUSE:Factory/wf-recorder/wf-recorder.changes 2023-08-23 14:59:52.106231945 +0200 +++ /work/SRC/openSUSE:Factory/.wf-recorder.new.1770/wf-recorder.changes 2024-03-13 22:19:00.549223575 +0100 @@ -1,0 +2,9 @@ +Thu Mar 7 09:09:22 UTC 2024 - jun wang <jgw...@suse.com> + +- Update to version 0.4.1 + * bump meson.build version to 0.4.1 + * don't fail when git-metadata is unavailable (#226) + * mention Alpine package (#227) + * Fix typo in main.cpp (#229) + +------------------------------------------------------------------- Old: ---- wf-recorder-0.4.0+git0.obscpio wf-recorder-0.4.0+git0.tar.gz New: ---- wf-recorder-0.4.1+git0.obscpio wf-recorder-0.4.1+git0.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wf-recorder.spec ++++++ --- /var/tmp/diff_new_pack.5duXd3/_old 2024-03-13 22:19:03.109317950 +0100 +++ /var/tmp/diff_new_pack.5duXd3/_new 2024-03-13 22:19:03.113318098 +0100 @@ -1,7 +1,7 @@ # # spec file for package wf-recorder # -# Copyright (c) 2023 SUSE LLC +# Copyright (c) 2024 SUSE LLC # Copyright (c) 2018 Michael Aquilina # # All modifications and additions to the file contributed by third parties @@ -18,7 +18,7 @@ Name: wf-recorder -Version: 0.4.0+git0 +Version: 0.4.1+git0 Release: 0%{?dist} Summary: Utility program for screen recording of wlroots-based compositors License: MIT ++++++ _service ++++++ --- /var/tmp/diff_new_pack.5duXd3/_old 2024-03-13 22:19:03.137318983 +0100 +++ /var/tmp/diff_new_pack.5duXd3/_new 2024-03-13 22:19:03.141319130 +0100 @@ -2,7 +2,7 @@ <service name="obs_scm" mode="disabled"> <param name="scm">git</param> <param name="url">https://github.com/ammen99/wf-recorder.git</param> - <param name="revision">7e42d6c4dcb650808cc9ec3b7c2375764e5a2662</param> + <param name="revision">d3c26b210f374060fb790602aa573b650363989a</param> <param name="versionformat">@PARENT_TAG@+git@TAG_OFFSET@</param> <param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-replacement">\1</param> ++++++ _servicedata ++++++ --- /var/tmp/diff_new_pack.5duXd3/_old 2024-03-13 22:19:03.161319867 +0100 +++ /var/tmp/diff_new_pack.5duXd3/_new 2024-03-13 22:19:03.161319867 +0100 @@ -1,6 +1,5 @@ <servicedata> <service name="tar_scm"> <param name="url">https://github.com/ammen99/wf-recorder.git</param> - <param name="changesrevision">7e42d6c4dcb650808cc9ec3b7c2375764e5a2662</param></service></servicedata> -(No newline at EOF) + <param name="changesrevision">d3c26b210f374060fb790602aa573b650363989a</param></service></servicedata> ++++++ wf-recorder-0.4.0+git0.obscpio -> wf-recorder-0.4.1+git0.obscpio ++++++ ++++ no output (probably identical) ++++++ wf-recorder-0.4.0+git0.tar.gz -> wf-recorder-0.4.1+git0.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wf-recorder-0.4.0+git0/README.md new/wf-recorder-0.4.1+git0/README.md --- old/wf-recorder-0.4.0+git0/README.md 2023-08-23 10:52:14.000000000 +0200 +++ new/wf-recorder-0.4.1+git0/README.md 2023-09-05 07:18:17.000000000 +0200 @@ -4,6 +4,13 @@ # installation +## Alpine Linux + +wf-recorder is available in the community repositories: +``` +apk add wf-recorder +``` + ## Arch Linux Arch users can install wf-recorder from the Community repo. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wf-recorder-0.4.0+git0/meson.build new/wf-recorder-0.4.1+git0/meson.build --- old/wf-recorder-0.4.0+git0/meson.build 2023-08-23 10:52:14.000000000 +0200 +++ new/wf-recorder-0.4.1+git0/meson.build 2023-09-05 07:18:17.000000000 +0200 @@ -2,7 +2,7 @@ 'wf-recorder', 'c', 'cpp', - version: '0.4.0', + version: '0.4.1', license: 'MIT', meson_version: '>=0.54.0', default_options: [ @@ -24,8 +24,8 @@ version = '"@0@"'.format(meson.project_version()) git = find_program('git', native: true, required: false) if git.found() - git_commit = run_command([git, 'rev-parse', '--short', 'HEAD'], check: true) - git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: true) + git_commit = run_command([git, 'rev-parse', '--short', 'HEAD'], check: false) + git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false) if git_commit.returncode() == 0 and git_branch.returncode() == 0 version = '"@0@-@1@ (" __DATE__ ", branch \'@2@\')"'.format( meson.project_version(), diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/wf-recorder-0.4.0+git0/src/main.cpp new/wf-recorder-0.4.1+git0/src/main.cpp --- old/wf-recorder-0.4.0+git0/src/main.cpp 2023-08-23 10:52:14.000000000 +0200 +++ new/wf-recorder-0.4.1+git0/src/main.cpp 2023-09-05 07:18:17.000000000 +0200 @@ -791,7 +791,7 @@ If b-frames are not supported by your hardware, set this to 0. -B. --buffrate This option is used to specify the buffers expected framerate. this - may help when encoders are expecting specifc or limited framerate. + may help when encoders are expecting specific or limited framerate. -C, --audio-codec Specifies the codec of the audio. These can be found by running: ffmpeg -encoders