Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package fuzzel for openSUSE:Factory checked in at 2023-04-08 17:39:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fuzzel (Old) and /work/SRC/openSUSE:Factory/.fuzzel.new.19717 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fuzzel" Sat Apr 8 17:39:08 2023 rev:7 rq:1077949 version:1.9.1 Changes: -------- --- /work/SRC/openSUSE:Factory/fuzzel/fuzzel.changes 2023-03-28 17:50:32.935317503 +0200 +++ /work/SRC/openSUSE:Factory/.fuzzel.new.19717/fuzzel.changes 2023-04-08 17:39:28.110185344 +0200 @@ -1,0 +2,15 @@ +Sat Apr 8 00:00:11 UTC 2023 - Soc Virnyl Estela <socvirnyl.est...@gmail.com> + +- Remove 0000-wayland-regression-dont-reference-app-when-null.patch +- Update to version 1.9.1 + - Fixed: + * Regression: default font size was unintentionally changed from 12pt in 1.8.2, to 8pt in 1.9.0. The old default of 12pt has now been restored. + * Regression: crash when pressing Enter and the match list is empty (e.g. when trying to execute a command line) +- Improvement of specfile + +------------------------------------------------------------------- +Thu Mar 30 13:28:52 UTC 2023 - Soc Virnyl Estela <socvirnyl.est...@gmail.com> + +- Add 0000-wayland-regression-dont-reference-app-when-null.patch + +------------------------------------------------------------------- Old: ---- fuzzel-1.9.0.tar.gz New: ---- fuzzel-1.9.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fuzzel.spec ++++++ --- /var/tmp/diff_new_pack.vKHNVw/_old 2023-04-08 17:39:28.594188123 +0200 +++ /var/tmp/diff_new_pack.vKHNVw/_new 2023-04-08 17:39:28.598188146 +0200 @@ -17,7 +17,7 @@ Name: fuzzel -Version: 1.9.0 +Version: 1.9.1 Release: 0 Summary: A Wayland-native application launcher, similar to rofi's drun mode License: MIT @@ -38,12 +38,17 @@ BuildRequires: pkgconfig(wayland-protocols) BuildRequires: pkgconfig(wayland-scanner) BuildRequires: pkgconfig(xkbcommon) +%if 0%{?sle_version} >= 150400 +BuildRequires: gcc11 +%else +BuildRequires: gcc >= 8 +%endif %description A Wayland-native application launcher, similar to rofi's drun mode. %prep -%autosetup -n %name +%autosetup -n %name -p1 %package zsh-completion Summary: Zsh Completion for %{name} @@ -66,13 +71,13 @@ %build export CFLAGS="%{optflags}" +%meson \ +-Denable-cairo=enabled -Dpng-backend=libpng -Dsvg-backend=nanosvg \ %if 0%{?sle_version} == 150400 && 0%{?is_opensuse} # For whatever reason, meson >= 0.58 should already support the c18 standard. -# Setting it to none. -%meson -Denable-cairo=enabled -Dpng-backend=libpng -Dsvg-backend=nanosvg -Dc_std=none -%else -%meson -Denable-cairo=enabled -Dpng-backend=libpng -Dsvg-backend=nanosvg + -Dc_std=c11 %endif + -Db_lto=true %meson_build ++++++ fuzzel-1.9.0.tar.gz -> fuzzel-1.9.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fuzzel/CHANGELOG.md new/fuzzel/CHANGELOG.md --- old/fuzzel/CHANGELOG.md 2023-03-27 21:00:59.000000000 +0200 +++ new/fuzzel/CHANGELOG.md 2023-03-30 15:52:59.000000000 +0200 @@ -1,5 +1,6 @@ # Changelog +* [1.9.1](#1-9-1) * [1.9.0](#1-9-0) * [1.8.2](#1-8-2) * [1.8.1](#1-8-1) @@ -20,6 +21,19 @@ * [1.4.1](#1-4-1) +## 1.9.1 + +### Fixed + +* Regression: default font size was unintentionally changed from 12pt + in 1.8.2, to 8pt in 1.9.0. The old default of 12pt has now been + restored. +* Regression: crash when pressing Enter and the match list is empty (e.g. when + trying to execute a command line) ([#222][222]). + +[222]: https://codeberg.org/dnkl/fuzzel/issues/222 + + ## 1.9.0 ### Added diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fuzzel/PKGBUILD new/fuzzel/PKGBUILD --- old/fuzzel/PKGBUILD 2023-03-27 21:00:59.000000000 +0200 +++ new/fuzzel/PKGBUILD 2023-03-30 15:52:59.000000000 +0200 @@ -3,7 +3,7 @@ SVG_BACKEND=librsvg # none|librsvg|nanosvg (librsvg force-enables cairo, nanosvg is bundled) pkgname=fuzzel -pkgver=1.9.0 +pkgver=1.9.1 pkgrel=1 pkgdesc="Simplistic application launcher for wayland" arch=('x86_64' 'aarch64') diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fuzzel/meson.build new/fuzzel/meson.build --- old/fuzzel/meson.build 2023-03-27 21:00:59.000000000 +0200 +++ new/fuzzel/meson.build 2023-03-30 15:52:59.000000000 +0200 @@ -1,5 +1,5 @@ project('fuzzel', 'c', - version: '1.9.0', + version: '1.9.1', license: 'MIT', meson_version: '>=0.58.0', default_options: [ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fuzzel/wayland.c new/fuzzel/wayland.c --- old/fuzzel/wayland.c 2023-03-27 21:00:59.000000000 +0200 +++ new/fuzzel/wayland.c 2023-03-30 15:52:59.000000000 +0200 @@ -523,7 +523,7 @@ : EXIT_SUCCESS; } else { char *xdg_activation_token = NULL; - if (wayl->xdg_activation_v1 != NULL) + if (wayl->xdg_activation_v1 != NULL && app != NULL) get_xdg_activation_token(seat, app->app_id, &xdg_activation_token); bool success = application_execute( @@ -1897,7 +1897,7 @@ FcPatternDestroy(pat_copy); if (have_pt_size != FcResultMatch && have_px_size != FcResultMatch) - pt_size = 8.0; + pt_size = 12.0; } FcPatternRemove(pat, FC_SIZE, 0);