Accepting request 695601 from GNOME:Next
Scripted push of project GNOME:Next OBS-URL: https://build.opensuse.org/request/show/695601 OBS-URL: https://build.opensuse.org/package/show/GNOME:Factory/seahorse?expand=0&rev=191
This commit is contained in:
parent
a147cb51ab
commit
202afedc11
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:9eab0704e79fa343ab37e5890fd357717f2c479f166d90ba02d40b0379eda78b
|
||||
size 1428904
|
3
seahorse-3.32.tar.xz
Normal file
3
seahorse-3.32.tar.xz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:a2542fbedfb203485a0afc6968cab4b5247f0cadf80d941b5a8a53a80ceeacf3
|
||||
size 1277728
|
@ -1,3 +1,51 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 12 20:52:57 UTC 2019 - Bjørn Lie <bjorn.lie@gmail.com>
|
||||
|
||||
- Update to version 3.32:
|
||||
+ Fix regression: no more context menu in sidebar.
|
||||
+ gkr: Fix crash when renaming keyring.
|
||||
+ pgp: Don't use a custom person icon.
|
||||
+ gpgme: Don't use gpgme_op_edit for exporting or making a UID
|
||||
primary.
|
||||
+ Port more GSimpleAsyncResult to GTask.
|
||||
+ flatpak: fix network permissions.
|
||||
+ Updated translations.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Feb 20 13:37:45 UTC 2019 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.31.91:
|
||||
+ Remove deprecated g_type_class_add_private.
|
||||
+ flatpak: Add dependencies for key sharing/importing.
|
||||
+ gkr:
|
||||
- Recognize GNOME Web (Epiphany) passwords and adjust UI.
|
||||
- Recognize user-specific Wi-Fi passwords.
|
||||
- Use application icon for password of known installed app.
|
||||
- Fix Chrome password recognition.
|
||||
- Add password strength indicator when adding a new password.
|
||||
+ pgp:
|
||||
- Always use gpgme_op_export_start when exporting.
|
||||
- Cleanup the UI of the key properties dialog.
|
||||
+ Add an empty state indicator.
|
||||
+ Add <ctrl>f as an accelerator for the search bar.
|
||||
+ Start migration of GSimpleAsyncResult to GTask.
|
||||
+ Migrate some widget from SeahorseWidget to GtkTemplate.
|
||||
- Add pkgconfig(pwquality) BuildRequires: New dependency.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 9 08:33:50 UTC 2019 - bjorn.lie@gmail.com
|
||||
|
||||
- Update to version 3.31.1:
|
||||
+ Port most uses of Gtk.Action to GLib.Action.
|
||||
+ New app icon.
|
||||
+ Use a header bar.
|
||||
+ Updated password properties dialog.
|
||||
+ Updated SSH key properties dialog.
|
||||
+ Update view when new item is added.
|
||||
+ UI tweaks to the KeyManager list.
|
||||
+ pgp: small cleanups.
|
||||
+ Vala fixes.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Dec 11 23:33:24 UTC 2018 - bjorn.lie@gmail.com
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package seahorse
|
||||
#
|
||||
# Copyright (c) 2018 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@ -17,13 +17,14 @@
|
||||
|
||||
|
||||
Name: seahorse
|
||||
Version: 3.30.1.1
|
||||
Version: 3.32
|
||||
Release: 0
|
||||
Summary: GNOME interface for gnupg
|
||||
License: GPL-2.0-or-later AND LGPL-2.1-or-later AND GFDL-1.1-only
|
||||
Group: Productivity/Security
|
||||
URL: http://projects.gnome.org/seahorse/
|
||||
Source: http://download.gnome.org/sources/seahorse/3.30/%{name}-%{version}.tar.xz
|
||||
URL: https://wiki.gnome.org/Apps/Seahorse
|
||||
Source0: https://download.gnome.org/sources/seahorse/3.32/%{name}-%{version}.tar.xz
|
||||
|
||||
BuildRequires: fdupes
|
||||
BuildRequires: gpg2
|
||||
BuildRequires: libgpgme-devel
|
||||
@ -47,6 +48,7 @@ BuildRequires: pkgconfig(gobject-2.0) >= 2.44
|
||||
BuildRequires: pkgconfig(gtk+-3.0) >= 3.22
|
||||
BuildRequires: pkgconfig(libsecret-1) >= 0.16
|
||||
BuildRequires: pkgconfig(libsoup-2.4) >= 2.33.92
|
||||
BuildRequires: pkgconfig(pwquality)
|
||||
Obsoletes: %{name}-devel < %{version}
|
||||
|
||||
%description
|
||||
@ -71,14 +73,14 @@ translation-update-upstream
|
||||
|
||||
%build
|
||||
%meson \
|
||||
-Dpgp-support=true \
|
||||
-Dcheck-compatible-gpg=true \
|
||||
-Dpkcs11-support=true \
|
||||
-Dkeyservers-support=true \
|
||||
-Dhkp-support=true \
|
||||
-Dldap-support=true \
|
||||
-Dkey-sharing=true \
|
||||
%{nil}
|
||||
-Dpgp-support=true \
|
||||
-Dcheck-compatible-gpg=true \
|
||||
-Dpkcs11-support=true \
|
||||
-Dkeyservers-support=true \
|
||||
-Dhkp-support=true \
|
||||
-Dldap-support=true \
|
||||
-Dkey-sharing=true \
|
||||
%{nil}
|
||||
%meson_build
|
||||
|
||||
%check
|
||||
@ -95,12 +97,10 @@ translation-update-upstream
|
||||
%doc %{_datadir}/help/C/%{name}/
|
||||
%{_bindir}/seahorse
|
||||
%{_libexecdir}/seahorse/
|
||||
%{_datadir}/metainfo/seahorse.appdata.xml
|
||||
%{_datadir}/applications/seahorse.desktop
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.gschema.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.manager.gschema.xml
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.window.gschema.xml
|
||||
%{_datadir}/icons/hicolor/*/*/seahorse*
|
||||
%{_datadir}/applications/org.gnome.seahorse.Application.desktop
|
||||
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.*xml
|
||||
%{_datadir}/icons/hicolor/
|
||||
%{_datadir}/metainfo/org.gnome.seahorse.Application.appdata.xml
|
||||
%{_datadir}/seahorse/
|
||||
%{_mandir}/man1/seahorse.1%{?ext_man}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user