forked from pool/seahorse
Accepting request 99126 from GNOME:Factory
Pushing G:F OBS-URL: https://build.opensuse.org/request/show/99126 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/seahorse?expand=0&rev=69
This commit is contained in:
commit
7c7c5dd681
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4d67bd14d75f47335d2f4628a39f8f9c27f0b66e000f7c02ac04297465c694c5
|
|
||||||
size 2346267
|
|
3
seahorse-3.3.3.tar.xz
Normal file
3
seahorse-3.3.3.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f1ad97b95e2b60820dd7cdb6166a65ca2bccc42cd6ce035300e60bf391f59a61
|
||||||
|
size 1967716
|
@ -1,40 +0,0 @@
|
|||||||
commit bf10531f540db1941fb3418c01b01b45d7d196e9
|
|
||||||
Author: Vincent Untz <vuntz@gnome.org>
|
|
||||||
Date: Thu Oct 13 19:09:04 2011 +0200
|
|
||||||
|
|
||||||
Fix crash when adding a non-LDAP keyserver
|
|
||||||
|
|
||||||
https://bugzilla.gnome.org/show_bug.cgi?id=661683
|
|
||||||
|
|
||||||
diff --git a/libseahorse/seahorse-prefs.c b/libseahorse/seahorse-prefs.c
|
|
||||||
index 93f6c2f..8afbc7a 100644
|
|
||||||
--- a/libseahorse/seahorse-prefs.c
|
|
||||||
+++ b/libseahorse/seahorse-prefs.c
|
|
||||||
@@ -233,20 +233,21 @@ calculate_keyserver_uri (SeahorseWidget *swidget)
|
|
||||||
const gchar *host = NULL;
|
|
||||||
const gchar *port = NULL;
|
|
||||||
GtkWidget *widget;
|
|
||||||
- GList *types;
|
|
||||||
+ gchar **types;
|
|
||||||
gint active;
|
|
||||||
gchar *uri;
|
|
||||||
+ guint i;
|
|
||||||
|
|
||||||
/* Figure out the scheme */
|
|
||||||
widget = GTK_WIDGET (seahorse_widget_get_widget (swidget, "keyserver-type"));
|
|
||||||
g_return_val_if_fail (widget != NULL, NULL);
|
|
||||||
|
|
||||||
active = gtk_combo_box_get_active (GTK_COMBO_BOX (widget));
|
|
||||||
- if (active >= 0) {
|
|
||||||
- types = g_object_get_data (G_OBJECT (swidget), "keyserver-types");
|
|
||||||
- scheme = (const gchar*)g_list_nth_data (types, active);
|
|
||||||
- if (scheme && !scheme[0])
|
|
||||||
- scheme = NULL;
|
|
||||||
+ types = g_object_get_data (G_OBJECT (swidget), "keyserver-types");
|
|
||||||
+ if (active >= 0 && types) {
|
|
||||||
+ for (i = 0; types[i] != NULL && i < active; i++);
|
|
||||||
+ if (i == active && types[active] && types[active][0])
|
|
||||||
+ scheme = types[active];
|
|
||||||
}
|
|
||||||
|
|
||||||
/* The host */
|
|
@ -1,3 +1,58 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Dec 19 12:38:37 UTC 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.3.3:
|
||||||
|
+ Support for PKCS#11 key generation
|
||||||
|
+ Support for creating certificate requests
|
||||||
|
+ Certificate actions happen from certificate window.
|
||||||
|
+ Reimplement export functionality
|
||||||
|
+ Refactor deletion, unlocking, refreshing, and showing
|
||||||
|
properties
|
||||||
|
+ Add way to lookup places, and refresh appropriate place after
|
||||||
|
import
|
||||||
|
+ Fixes for glib 2.31.x deprecations
|
||||||
|
+ Fix bugs, build issues, translations
|
||||||
|
- Add xz BuildRequires because we can't build a package for a
|
||||||
|
xz-compressed tarball without explicitly specifying that... See
|
||||||
|
bnc#697467 for more details.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Nov 21 13:24:08 UTC 2011 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.3.2:
|
||||||
|
+ Refactoring of how actions work
|
||||||
|
+ Add ability to lock and unlock places from the sidebar
|
||||||
|
+ Implement login to smart cards and PKCS#11 tokens
|
||||||
|
+ Remove experimental check selection on sidebar
|
||||||
|
+ Listing of private keys on smart cards and PKCS#11 tokens
|
||||||
|
+ Showing matching keys and certificates together, in listing and
|
||||||
|
properties
|
||||||
|
+ Build fixes
|
||||||
|
+ Don't crash if gpg or gpg2 don't run correctly.
|
||||||
|
+ Fix problems editing PGP key servers
|
||||||
|
+ Don't load key signatures unless showing key properties
|
||||||
|
+ Updated translations.
|
||||||
|
- Drop seahorse-fix-crash-on-keyserver-add.patch: fixed upstream.
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu Oct 27 08:58:37 UTC 2011 - dimstar@opensuse.org
|
||||||
|
|
||||||
|
- Update to version 3.3.1.1:
|
||||||
|
+ Fix build issues when pgp, ssh, or pkcs11 backends are disabled
|
||||||
|
+ Updated translations
|
||||||
|
- Changes from version 3.3.1:
|
||||||
|
+ Major refactoring of look and behavior of seahorse
|
||||||
|
+ Passwords, keys and certs are displayed together in the main
|
||||||
|
window
|
||||||
|
+ Places sidebar, which can be shown, to access where various
|
||||||
|
objects come from
|
||||||
|
+ Asynchronously initialize PKCS#11 modules
|
||||||
|
+ Use the new importer infrastructure in libgcr
|
||||||
|
+ Blacklist certain PKCS#11 tokens from showing up in seahorse
|
||||||
|
+ Code cleanup and refactoring
|
||||||
|
+ Build, translation fixes
|
||||||
|
+ Updated translations.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Oct 17 21:37:46 UTC 2011 - vuntz@opensuse.org
|
Mon Oct 17 21:37:46 UTC 2011 - vuntz@opensuse.org
|
||||||
|
|
||||||
|
@ -15,19 +15,14 @@
|
|||||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||||
#
|
#
|
||||||
|
|
||||||
# norootforbuild
|
|
||||||
|
|
||||||
|
|
||||||
Name: seahorse
|
Name: seahorse
|
||||||
License: GPLv2+
|
Version: 3.3.3
|
||||||
Group: Productivity/Security
|
Release: 0
|
||||||
Version: 3.2.1
|
|
||||||
Release: 1
|
|
||||||
Summary: GNOME interface for gnupg
|
Summary: GNOME interface for gnupg
|
||||||
|
License: GPL-2.0+
|
||||||
|
Group: Productivity/Security
|
||||||
Url: http://projects.gnome.org/seahorse/
|
Url: http://projects.gnome.org/seahorse/
|
||||||
Source: http://download.gnome.org/sources/seahorse/3.2/%{name}-%{version}.tar.bz2
|
Source: http://download.gnome.org/sources/seahorse/3.3/%{name}-%{version}.tar.xz
|
||||||
# PATCH-FIX-UPSTREAM seahorse-fix-crash-on-keyserver-add.patch bgo#661683 bnc#723908 vuntz@opensuse.org -- Fix crash when adding a keyserver
|
|
||||||
Patch0: seahorse-fix-crash-on-keyserver-add.patch
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: gnome-doc-utils-devel
|
BuildRequires: gnome-doc-utils-devel
|
||||||
BuildRequires: gpg2
|
BuildRequires: gpg2
|
||||||
@ -37,10 +32,12 @@ BuildRequires: openldap2-devel
|
|||||||
BuildRequires: openssh
|
BuildRequires: openssh
|
||||||
BuildRequires: translation-update-upstream
|
BuildRequires: translation-update-upstream
|
||||||
BuildRequires: update-desktop-files
|
BuildRequires: update-desktop-files
|
||||||
|
# Only needed because we don't (and won't) support building xz tarballs by default... See bnc#697467
|
||||||
|
BuildRequires: xz
|
||||||
BuildRequires: pkgconfig(avahi-client)
|
BuildRequires: pkgconfig(avahi-client)
|
||||||
BuildRequires: pkgconfig(avahi-glib)
|
BuildRequires: pkgconfig(avahi-glib)
|
||||||
BuildRequires: pkgconfig(gck-1)
|
BuildRequires: pkgconfig(gck-1) >= 3.3.3
|
||||||
BuildRequires: pkgconfig(gcr-3) >= 3.1.5
|
BuildRequires: pkgconfig(gcr-3) >= 3.3.3
|
||||||
BuildRequires: pkgconfig(gio-2.0)
|
BuildRequires: pkgconfig(gio-2.0)
|
||||||
BuildRequires: pkgconfig(gnome-keyring-1)
|
BuildRequires: pkgconfig(gnome-keyring-1)
|
||||||
BuildRequires: pkgconfig(gtk+-3.0)
|
BuildRequires: pkgconfig(gtk+-3.0)
|
||||||
@ -59,7 +56,6 @@ Seahorse is a GNOME interface for gnupg. It uses gpgme as the backend.
|
|||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
translation-update-upstream
|
translation-update-upstream
|
||||||
%patch0 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
@ -109,7 +105,6 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.window.gschema.xml
|
%{_datadir}/glib-2.0/schemas/org.gnome.seahorse.window.gschema.xml
|
||||||
%{_datadir}/icons/hicolor/*/*/seahorse.png
|
%{_datadir}/icons/hicolor/*/*/seahorse.png
|
||||||
%{_datadir}/icons/hicolor/*/*/seahorse-preferences.png
|
%{_datadir}/icons/hicolor/*/*/seahorse-preferences.png
|
||||||
%{_datadir}/pixmaps/seahorse/
|
|
||||||
%{_datadir}/seahorse/
|
%{_datadir}/seahorse/
|
||||||
%{_mandir}/man1/seahorse.1.*
|
%{_mandir}/man1/seahorse.1.*
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user