Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package gnome-passwordsafe for openSUSE:Factory checked in at 2021-07-20 15:39:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnome-passwordsafe (Old) and /work/SRC/openSUSE:Factory/.gnome-passwordsafe.new.2632 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnome-passwordsafe" Tue Jul 20 15:39:01 2021 rev:5 rq:907065 version:5.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnome-passwordsafe/gnome-passwordsafe.changes 2020-12-29 15:53:45.276278538 +0100 +++ /work/SRC/openSUSE:Factory/.gnome-passwordsafe.new.2632/gnome-passwordsafe.changes 2021-07-20 15:39:31.581479060 +0200 @@ -1,0 +2,26 @@ +Thu Jul 15 09:51:02 UTC 2021 - Paolo Stivanin <i...@paolostivanin.com> + +- Update to 5.0: + * New Features: + * Copy username button with an associated Ctrl-Shift-B + shortcut + * Mnemonics support + * Menu to create new entries and groups + * Customization: 10 new icons and one more color to customize + entries + * Improvements: + * Notifications are no longer system-wide + * General system stability improvements to enhance the user's + experience + * Fixes: + * Fixes crash when creating new Safe in password compare + function + * Fixes crash when opening file on remote filesystem + * When keyfile is moved or removed, application now won't + corrupt database and instead won't save. +- Add fix-mime.patch: this patch is based on upstream commit + ff8a7e3e64 and fixes an issue with the mimetype install dir. + It changes the path from 'share/mime/application' to + 'share/mime/packages'. + +------------------------------------------------------------------- Old: ---- PasswordSafe-4.0.tar.bz2 New: ---- PasswordSafe-5.0.tar.bz2 fix-mime.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnome-passwordsafe.spec ++++++ --- /var/tmp/diff_new_pack.BUmcLq/_old 2021-07-20 15:39:32.937481485 +0200 +++ /var/tmp/diff_new_pack.BUmcLq/_new 2021-07-20 15:39:32.937481485 +0200 @@ -1,7 +1,7 @@ # # spec file for package gnome-passwordsafe # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2021 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -19,16 +19,18 @@ %define appname PasswordSafe %define appid org.gnome.PasswordSafe Name: gnome-passwordsafe -Version: 4.0 +Version: 5.0 Release: 0 Summary: A password manager for GNOME License: GPL-3.0-or-later Group: Productivity/Security URL: https://gitlab.gnome.org/World/%{appname} Source: %{url}/-/archive/%{version}/%{appname}-%{version}.tar.bz2 +# PATCH-FIX-UPSTREAM fix-mime.patch -- based on commit ff8a7e3e64 +Patch0: fix-mime.patch BuildRequires: meson BuildRequires: pkgconfig -BuildRequires: python3-base +BuildRequires: python3-base >= 3.7.0 BuildRequires: python3-construct BuildRequires: python3-pykeepass >= 3.2.1 BuildRequires: update-desktop-files @@ -52,6 +54,7 @@ %prep %setup -q -n %{appname}-%{version} +%patch0 -p1 %build %meson @@ -73,8 +76,8 @@ %{_datadir}/glib-2.0/schemas/%{appid}.gschema.xml %{_datadir}/icons/hicolor/symbolic/apps/%{appid}-symbolic.svg %{_datadir}/icons/hicolor/scalable/apps/%{appid}.svg -%dir %{_datadir}/metainfo %{_datadir}/metainfo/%{appid}.appdata.xml +%{_datadir}/mime/packages/%{appid}.xml %files lang -f passwordsafe.lang ++++++ PasswordSafe-4.0.tar.bz2 -> PasswordSafe-5.0.tar.bz2 ++++++ ++++ 64721 lines of diff (skipped) ++++++ fix-mime.patch ++++++ >From ff8a7e3e64b0f477e643be4cbf1d3b03f9b32f16 Mon Sep 17 00:00:00 2001 From: henry-nicolas <nico...@babsetnico.net> Date: Sun, 7 Feb 2021 21:40:34 +0000 Subject: [PATCH] mimetype install dir fix share/mime/applications is for mime type cache share/mime/packages is for software to state which mime type they can handle Lintian was complaining about this --- data/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/meson.build b/data/meson.build index 98d80eb96..46f637353 100644 --- a/data/meson.build +++ b/data/meson.build @@ -25,7 +25,7 @@ install_data( # Install mimetype file install_data( project_id + '.xml', - install_dir: 'share/mime/application' + install_dir: 'share/mime/packages' ) desktop_conf = configuration_data() -- GitLab