From 087783be66d8fbdaadd425391085bae1cf689937 Mon Sep 17 00:00:00 2001 From: Troy Dawson Date: Thu, 21 Mar 2024 19:20:30 +0000 Subject: [PATCH] polkit-gnome package is retired on branch c10s for BAKERY-412 --- .gitignore | 14 - ...alog-make-the-label-wrap-at-70-chars.patch | 32 -- 02-select-default-user.patch | 71 ----- 04-autorestart.patch | 170 ----------- 06-authentication-failure-string.patch | 17 -- 07-use-accountsservice.patch | 131 -------- 08-fresh-x11-timestamps.patch | 37 --- dead.package | 1 + polkit-gnome.spec | 286 ------------------ remove_g_type_init.patch | 10 - sources | 1 - 11 files changed, 1 insertion(+), 769 deletions(-) delete mode 100644 .gitignore delete mode 100644 0001-auth-dialog-make-the-label-wrap-at-70-chars.patch delete mode 100644 02-select-default-user.patch delete mode 100644 04-autorestart.patch delete mode 100644 06-authentication-failure-string.patch delete mode 100644 07-use-accountsservice.patch delete mode 100644 08-fresh-x11-timestamps.patch create mode 100644 dead.package delete mode 100644 polkit-gnome.spec delete mode 100644 remove_g_type_init.patch delete mode 100644 sources diff --git a/.gitignore b/.gitignore deleted file mode 100644 index 3bef7a9..0000000 --- a/.gitignore +++ /dev/null @@ -1,14 +0,0 @@ -polkit-gnome-0.92.tar.bz2 -polkit-gnome-0.93.tar.bz2 -polkit-gnome-0.94.tar.bz2 -polkit-gnome-0.95.git20090913.tar.bz2 -polkit-gnome-0.95.tar.bz2 -polkit-gnome-0.96.tar.bz2 -polkit-gnome-0.97.tar.bz2 -/polkit-gnome-0.100.tar.bz2 -/polkit-gnome-0.101.tar.bz2 -/polkit-gnome-0.102.tar.xz -/polkit-gnome-0.103.tar.xz -/polkit-gnome-0.104.tar.xz -/polkit-gnome-0.105.tar.xz -/polkit-gnome-a0763a2.tar.gz diff --git a/0001-auth-dialog-make-the-label-wrap-at-70-chars.patch b/0001-auth-dialog-make-the-label-wrap-at-70-chars.patch deleted file mode 100644 index 5a5f288..0000000 --- a/0001-auth-dialog-make-the-label-wrap-at-70-chars.patch +++ /dev/null @@ -1,32 +0,0 @@ -From 277ab6123451d2d1c15a1f851dd2e038905814a5 Mon Sep 17 00:00:00 2001 -From: Lars Uebernickel -Date: Fri, 17 Oct 2014 15:35:25 +0200 -Subject: [PATCH] auth dialog: make the label wrap at 70 chars - -Because GtkWindow doesn't have a default width anymore. - -https://bugzilla.gnome.org/show_bug.cgi?id=738688 ---- - src/polkitgnomeauthenticationdialog.c | 2 ++ - 1 file changed, 2 insertions(+) - -Index: policykit-1-gnome-0.105/src/polkitgnomeauthenticationdialog.c -=================================================================== ---- policykit-1-gnome-0.105.orig/src/polkitgnomeauthenticationdialog.c -+++ policykit-1-gnome-0.105/src/polkitgnomeauthenticationdialog.c -@@ -661,6 +661,7 @@ polkit_gnome_authentication_dialog_const - g_free (s); - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); -+ gtk_label_set_max_width_chars (GTK_LABEL (label), 70); - gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); - - /* secondary message */ -@@ -688,6 +689,7 @@ polkit_gnome_authentication_dialog_const - } - gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_label_set_line_wrap (GTK_LABEL (label), TRUE); -+ gtk_label_set_max_width_chars (GTK_LABEL (label), 70); - gtk_box_pack_start (GTK_BOX (main_vbox), label, FALSE, FALSE, 0); - - /* user combobox */ diff --git a/02-select-default-user.patch b/02-select-default-user.patch deleted file mode 100644 index d19f87d..0000000 --- a/02-select-default-user.patch +++ /dev/null @@ -1,71 +0,0 @@ -# Description: Select the current user to authenticate with by default -# Ubuntu: https://launchpad.net/bugs/435227 -# Upstream: http://bugzilla.gnome.org/show_bug.cgi?id=596188 - -Index: policykit-1-gnome/src/polkitgnomeauthenticationdialog.c -=================================================================== ---- policykit-1-gnome.orig/src/polkitgnomeauthenticationdialog.c 2011-03-04 00:06:46.599981036 +0100 -+++ policykit-1-gnome/src/polkitgnomeauthenticationdialog.c 2011-03-04 00:07:11.211981036 +0100 -@@ -138,7 +138,7 @@ - static void - create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) - { -- int n; -+ int n, i, selected_index = 0; - GtkComboBox *combo; - GtkTreeIter iter; - GtkCellRenderer *renderer; -@@ -162,7 +162,7 @@ - - - /* For each user */ -- for (n = 0; dialog->priv->users[n] != NULL; n++) -+ for (i = 0, n = 0; dialog->priv->users[n] != NULL; n++) - { - gchar *gecos; - gchar *real_name; -@@ -224,6 +224,14 @@ - USERNAME_COL, dialog->priv->users[n], - -1); - -+ i++; -+ if (passwd->pw_uid == getuid ()) -+ { -+ selected_index = i; -+ g_free (dialog->priv->selected_user); -+ dialog->priv->selected_user = g_strdup (dialog->priv->users[n]); -+ } -+ - g_free (real_name); - g_object_unref (pixbuf); - } -@@ -252,8 +260,8 @@ - user_combobox_set_sensitive, - NULL, NULL); - -- /* Initially select the "Select user..." ... */ -- gtk_combo_box_set_active (GTK_COMBO_BOX (combo), 0); -+ /* Select the default user */ -+ gtk_combo_box_set_active (GTK_COMBO_BOX (combo), selected_index); - - /* Listen when a new user is selected */ - g_signal_connect (GTK_WIDGET (combo), -@@ -719,16 +727,13 @@ - gtk_widget_set_tooltip_markup (label, s); - g_free (s); - -- if (have_user_combobox) -+ /* Disable password entry and authenticate until have a user selected */ -+ if (have_user_combobox && gtk_combo_box_get_active (GTK_COMBO_BOX (dialog->priv->user_combobox)) == 0) - { -- /* ... and make the password entry and "Authenticate" button insensitive */ - gtk_widget_set_sensitive (dialog->priv->prompt_label, FALSE); - gtk_widget_set_sensitive (dialog->priv->password_entry, FALSE); - gtk_widget_set_sensitive (dialog->priv->auth_button, FALSE); - } -- else -- { -- } - - gtk_widget_realize (GTK_WIDGET (dialog)); - diff --git a/04-autorestart.patch b/04-autorestart.patch deleted file mode 100644 index df7e7a0..0000000 --- a/04-autorestart.patch +++ /dev/null @@ -1,170 +0,0 @@ -## Description: Add gnome session restart support to ensure we always have -## a authentication agent running -## Author: Michael Vogt -## Origin: inspired by the at-spi dbus support code -## Bug: http://launchpad.net/bugs/623819 -Index: policykit-1-gnome-0.105/src/main.c -=================================================================== ---- policykit-1-gnome-0.105.orig/src/main.c 2011-10-25 11:30:59.000000000 -0400 -+++ policykit-1-gnome-0.105/src/main.c 2011-12-19 09:23:47.635697248 -0500 -@@ -38,11 +38,150 @@ - - static GDBusConnection *session_bus_connection = NULL; - -+// session management support for auto-restart -+#define SM_DBUS_NAME "org.gnome.SessionManager" -+#define SM_DBUS_PATH "/org/gnome/SessionManager" -+#define SM_DBUS_INTERFACE "org.gnome.SessionManager" -+#define SM_CLIENT_DBUS_INTERFACE "org.gnome.SessionManager.ClientPrivate" -+ -+static GDBusProxy *sm_proxy; -+static GDBusProxy *client_proxy = NULL; -+ -+static GMainLoop *loop; -+ -+ -+static void -+stop_cb (void) -+{ -+ g_main_loop_quit (loop); -+} -+ -+static gboolean -+end_session_response (gboolean is_okay, const gchar *reason) -+{ -+ GVariant *res; -+ GError *error = NULL; -+ -+ res = g_dbus_proxy_call_sync (client_proxy, -+ "EndSessionResponse", -+ g_variant_new ("(bs)", -+ is_okay, -+ reason), -+ G_DBUS_CALL_FLAGS_NONE, -+ -1, /* timeout */ -+ NULL, /* GCancellable */ -+ &error); -+ if (! res) { -+ g_warning ("Failed to call EndSessionResponse: %s", error->message); -+ g_error_free (error); -+ return FALSE; -+ } -+ -+ g_variant_unref (res); -+ return TRUE; -+} -+ -+static void -+query_end_session_cb (void) -+{ -+ end_session_response (TRUE, ""); -+} -+ -+static void -+end_session_cb (void) -+{ -+ end_session_response (TRUE, ""); -+ g_main_loop_quit (loop); -+} -+ -+static void -+signal_cb (GDBusProxy *proxy, gchar *sender_name, gchar *signal_name, -+ GVariant *parameters, gpointer user_data) -+{ -+ if (strcmp (signal_name, "Stop") == 0) { -+ stop_cb (); -+ } else if (strcmp (signal_name, "QueryEndSession") == 0) { -+ query_end_session_cb (); -+ } else if (strcmp (signal_name, "EndSession") == 0) { -+ end_session_cb (); -+ } -+} -+ -+static gboolean -+register_client_to_gnome_session (void) -+{ -+ GError *error = NULL; -+ GVariant *res; -+ const char *startup_id; -+ const char *app_id; -+ char *client_id; -+ -+ startup_id = g_getenv ("DESKTOP_AUTOSTART_ID"); -+ app_id = "polkit-gnome-authentication-agent-1.desktop"; -+ -+ sm_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION, -+ G_DBUS_PROXY_FLAGS_NONE, -+ NULL, /* GDBusInterfaceInfo */ -+ SM_DBUS_NAME, -+ SM_DBUS_PATH, -+ SM_DBUS_INTERFACE, -+ NULL, /* GCancellable */ -+ &error); -+ if (sm_proxy == NULL) { -+ g_message("Failed to get session manager: %s", error->message); -+ g_error_free (error); -+ return FALSE; -+ } -+ -+ res = g_dbus_proxy_call_sync (sm_proxy, -+ "RegisterClient", -+ g_variant_new ("(ss)", -+ app_id, -+ startup_id), -+ G_DBUS_CALL_FLAGS_NONE, -+ -1, /* timeout */ -+ NULL, /* GCancellable */ -+ &error); -+ if (! res) { -+ g_warning ("Failed to register client: %s", error->message); -+ g_error_free (error); -+ return FALSE; -+ } -+ -+ if (! g_variant_is_of_type (res, G_VARIANT_TYPE ("(o)"))) { -+ g_warning ("RegisterClient returned unexpected type %s", -+ g_variant_get_type_string (res)); -+ return FALSE; -+ } -+ -+ g_variant_get (res, "(&o)", &client_id); -+ -+ // implement the signals to fix "policykit agent not responding" -+ // error (LP: #623819) -+ client_proxy = g_dbus_proxy_new_for_bus_sync (G_BUS_TYPE_SESSION, -+ G_DBUS_PROXY_FLAGS_NONE, -+ NULL, /* GDBusInterfaceInfo */ -+ SM_DBUS_NAME, -+ client_id, -+ SM_CLIENT_DBUS_INTERFACE, -+ NULL, /* GCancellable */ -+ &error); -+ g_variant_unref (res); -+ if (client_proxy == NULL) { -+ g_message("Failed to get client proxy: %s", error->message); -+ g_error_free (error); -+ return FALSE; -+ } -+ -+ g_signal_connect (client_proxy, "g-signal", G_CALLBACK (signal_cb), NULL); -+ -+ return TRUE; -+} -+ - int - main (int argc, char **argv) - { - gint ret; -- GMainLoop *loop; - PolkitAgentListener *listener; - GError *error; - -@@ -101,6 +240,8 @@ - */ - session_bus_connection = g_bus_get_sync (G_BUS_TYPE_SESSION, NULL, NULL); - -+ register_client_to_gnome_session(); -+ - g_main_loop_run (loop); - - ret = 0; diff --git a/06-authentication-failure-string.patch b/06-authentication-failure-string.patch deleted file mode 100644 index d5ce982..0000000 --- a/06-authentication-failure-string.patch +++ /dev/null @@ -1,17 +0,0 @@ -Description: Improve error message displayed when authentication fails -Bug: https://bugzilla.gnome.org/show_bug.cgi?id=592978 -Bug-Ubuntu: http://launchpad.net/bugs/411559 - -Index: policykit-1-gnome-0.105/src/polkitgnomeauthenticator.c -=================================================================== ---- policykit-1-gnome-0.105.orig/src/polkitgnomeauthenticator.c 2011-12-19 09:25:02.275695807 -0500 -+++ policykit-1-gnome-0.105/src/polkitgnomeauthenticator.c 2011-12-19 09:25:02.343695805 -0500 -@@ -454,7 +454,7 @@ - { - gchar *s; - -- s = g_strconcat ("", _("Authentication Failure"), "", NULL); -+ s = g_strconcat ("", _("Your authentication attempt was unsuccessful. Please try again."), "", NULL); - polkit_gnome_authentication_dialog_set_info_message ( - POLKIT_GNOME_AUTHENTICATION_DIALOG (authenticator->dialog), - s); diff --git a/07-use-accountsservice.patch b/07-use-accountsservice.patch deleted file mode 100644 index c5e5d17..0000000 --- a/07-use-accountsservice.patch +++ /dev/null @@ -1,131 +0,0 @@ -Description: get user icon from accountsservice instead of looking in ~/.face -Author: Marc Deslauriers -Forwarded: yes -Bug: https://bugzilla.gnome.org/show_bug.cgi?id=669857 -Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/policykit-1-gnome/+bug/928249 - -Index: policykit-1-gnome-0.105/src/polkitgnomeauthenticationdialog.c -=================================================================== ---- policykit-1-gnome-0.105.orig/src/polkitgnomeauthenticationdialog.c 2012-02-11 00:10:48.850913210 -0500 -+++ policykit-1-gnome-0.105/src/polkitgnomeauthenticationdialog.c 2012-02-11 00:22:04.462930509 -0500 -@@ -135,6 +135,102 @@ - } - } - -+static GdkPixbuf * -+get_user_icon (char *username) -+{ -+ GError *error; -+ GDBusConnection *connection; -+ GVariant *find_user_result; -+ GVariant *get_icon_result; -+ GVariant *icon_result_variant; -+ const gchar *user_path; -+ const gchar *icon_filename; -+ GdkPixbuf *pixbuf; -+ -+ error = NULL; -+ connection = g_bus_get_sync (G_BUS_TYPE_SYSTEM, NULL, &error); -+ -+ if (connection == NULL) -+ { -+ g_warning ("Unable to connect to system bus: %s", error->message); -+ g_error_free (error); -+ return NULL; -+ } -+ -+ find_user_result = g_dbus_connection_call_sync (connection, -+ "org.freedesktop.Accounts", -+ "/org/freedesktop/Accounts", -+ "org.freedesktop.Accounts", -+ "FindUserByName", -+ g_variant_new ("(s)", -+ username), -+ G_VARIANT_TYPE ("(o)"), -+ G_DBUS_CALL_FLAGS_NONE, -+ -1, -+ NULL, -+ &error); -+ -+ if (find_user_result == NULL) -+ { -+ g_warning ("Accounts couldn't find user: %s", error->message); -+ g_error_free (error); -+ return NULL; -+ } -+ -+ user_path = g_variant_get_string (g_variant_get_child_value (find_user_result, 0), -+ NULL); -+ -+ get_icon_result = g_dbus_connection_call_sync (connection, -+ "org.freedesktop.Accounts", -+ user_path, -+ "org.freedesktop.DBus.Properties", -+ "Get", -+ g_variant_new ("(ss)", -+ "org.freedesktop.Accounts.User", -+ "IconFile"), -+ G_VARIANT_TYPE ("(v)"), -+ G_DBUS_CALL_FLAGS_NONE, -+ -1, -+ NULL, -+ &error); -+ -+ g_variant_unref (find_user_result); -+ -+ if (get_icon_result == NULL) -+ { -+ g_warning ("Accounts couldn't find user icon: %s", error->message); -+ g_error_free (error); -+ return NULL; -+ } -+ -+ g_variant_get_child (get_icon_result, 0, "v", &icon_result_variant); -+ icon_filename = g_variant_get_string (icon_result_variant, NULL); -+ -+ if (icon_filename == NULL) -+ { -+ g_warning ("Accounts didn't return a valid filename for user icon"); -+ pixbuf = NULL; -+ } -+ else -+ { -+ /* TODO: we probably shouldn't hard-code the size to 16x16 */ -+ pixbuf = gdk_pixbuf_new_from_file_at_size (icon_filename, -+ 16, -+ 16, -+ &error); -+ if (pixbuf == NULL) -+ { -+ g_warning ("Couldn't open user icon: %s", error->message); -+ g_error_free (error); -+ } -+ } -+ -+ g_variant_unref (icon_result_variant); -+ g_variant_unref (get_icon_result); -+ -+ return pixbuf; -+} -+ - static void - create_user_combobox (PolkitGnomeAuthenticationDialog *dialog) - { -@@ -197,16 +293,7 @@ - g_free (gecos); - - /* Load users face */ -- pixbuf = NULL; -- if (passwd->pw_dir != NULL) -- { -- gchar *path; -- path = g_strdup_printf ("%s/.face", passwd->pw_dir); -- /* TODO: we probably shouldn't hard-code the size to 16x16 */ -- pixbuf = gdk_pixbuf_new_from_file_at_scale (path, 16, 16, TRUE, NULL); -- g_free (path); -- } -- -+ pixbuf = get_user_icon (dialog->priv->users[n]); - /* fall back to avatar-default icon */ - if (pixbuf == NULL) - { diff --git a/08-fresh-x11-timestamps.patch b/08-fresh-x11-timestamps.patch deleted file mode 100644 index 234cc6e..0000000 --- a/08-fresh-x11-timestamps.patch +++ /dev/null @@ -1,37 +0,0 @@ -Description: use fresh X11 timestamps when displaying authentication dialog - to circumvent focus-stealing prevention. -Author: Jeffrey Knockel -Bug-Ubuntu: https://bugs.launchpad.net/ubuntu/+source/policykit-gnome/+bug/946171 -Bug: https://bugzilla.gnome.org/show_bug.cgi?id=676076 - -Index: policykit-1-gnome-0.105/src/polkitgnomeauthenticator.c -=================================================================== ---- policykit-1-gnome-0.105.orig/src/polkitgnomeauthenticator.c 2012-07-27 00:39:09.000000000 -0600 -+++ policykit-1-gnome-0.105/src/polkitgnomeauthenticator.c 2012-07-27 00:40:27.185547436 -0600 -@@ -26,6 +26,7 @@ - #include - #include - #include -+#include - - #include - #include -@@ -307,7 +308,17 @@ - } - - gtk_widget_show_all (GTK_WIDGET (authenticator->dialog)); -- gtk_window_present (GTK_WINDOW (authenticator->dialog)); -+ GdkWindow *window = gtk_widget_get_window (GTK_WIDGET (authenticator->dialog)); -+ -+ if (GDK_IS_X11_WINDOW (window)) -+ { -+ gtk_window_present_with_time (GTK_WINDOW (authenticator->dialog), gdk_x11_get_server_time (window)); -+ } -+ else -+ { -+ gtk_window_present (GTK_WINDOW (authenticator->dialog)); -+ } -+ - password = polkit_gnome_authentication_dialog_run_until_response_for_prompt (POLKIT_GNOME_AUTHENTICATION_DIALOG (authenticator->dialog), - modified_request, - echo_on, diff --git a/dead.package b/dead.package new file mode 100644 index 0000000..a722929 --- /dev/null +++ b/dead.package @@ -0,0 +1 @@ +polkit-gnome package is retired on branch c10s for BAKERY-412 \ No newline at end of file diff --git a/polkit-gnome.spec b/polkit-gnome.spec deleted file mode 100644 index 2ed3c69..0000000 --- a/polkit-gnome.spec +++ /dev/null @@ -1,286 +0,0 @@ -%global commit0 a0763a246a81188f60b0f9810143e49224dc752f -%global date 20170423 -%global shortcommit0 %(c=%{commit0}; echo ${c:0:7}) - -Summary: PolicyKit integration for the GNOME desktop -Name: polkit-gnome -Version: 0.106 -Release: 0.16%{?commit0:.%{date}git%{shortcommit0}}%{?dist} -License: LGPLv2+ -URL: http://www.freedesktop.org/wiki/Software/PolicyKit -Source0: https://github.com/GNOME/PolicyKit-gnome/archive/%{commit0}.tar.gz#/%{name}-%{shortcommit0}.tar.gz -#Source0: https://ftp.gnome.org/pub/gnome/sources/polkit-gnome/%{version}/%{name}-%{version}.tar.xz -Patch0: 02-select-default-user.patch -Patch1: 04-autorestart.patch -Patch2: 06-authentication-failure-string.patch -Patch3: 07-use-accountsservice.patch -Patch4: 08-fresh-x11-timestamps.patch -Patch5: 0001-auth-dialog-make-the-label-wrap-at-70-chars.patch -Patch6: remove_g_type_init.patch - -BuildRequires: make -BuildRequires: gtk3-devel -BuildRequires: glib2-devel >= 2.25.11 -BuildRequires: polkit-devel >= 0.97-1 -BuildRequires: intltool -BuildRequires: gobject-introspection-devel -BuildRequires: gnome-common -BuildRequires: gtk-doc - -Obsoletes: PolicyKit-gnome <= 0.10 -Provides: PolicyKit-gnome = 0.11 -Obsoletes: PolicyKit-gnome-libs <= 0.10 -Provides: PolicyKit-gnome-libs = 0.11 -Obsoletes: polkit-gnome-devel < 0.102-2 -Provides: polkit-gnome-devel = 0.102-2 -Obsoletes: polkit-gnome-docs < 0.102-2 -Provides: polkit-gnome-docs = 0.102-2 - -Provides: PolicyKit-authentication-agent = %{version} - -Requires: polkit >= 0.97 - -%description -polkit-gnome provides an authentication agent for PolicyKit -that matches the look and feel of the GNOME desktop. - -%prep -%autosetup -p1 -n PolicyKit-gnome-%{?commit0}%{?!commit0:%{version}} -NOCONFIGURE=1 ./autogen.sh - -%build -%configure --disable-static --enable-compile-warnings=no -%{make_build} V=1 - -%install -%{make_install} - -%find_lang polkit-gnome-1 - -%ldconfig_scriptlets - -%files -f polkit-gnome-1.lang -%doc AUTHORS README NEWS -%license COPYING -%{_libexecdir}/* - - -%changelog -* Thu Jan 25 2024 Fedora Release Engineering - 0.106-0.16.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Sun Jan 21 2024 Fedora Release Engineering - 0.106-0.15.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild - -* Fri Jul 21 2023 Fedora Release Engineering - 0.106-0.14.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Fri Jan 20 2023 Fedora Release Engineering - 0.106-0.13.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Fri Jul 22 2022 Fedora Release Engineering - 0.106-0.12.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - -* Fri Jan 21 2022 Fedora Release Engineering - 0.106-0.11.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Wed Jan 5 2022 Alexej Kowalew <616b2f@gmail.com> - 0.106-0.10 -- fix crashes under wayland - -* Fri Jul 23 2021 Fedora Release Engineering - 0.106-0.9.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Wed Jan 27 2021 Fedora Release Engineering - 0.106-0.8.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Tue Jul 28 2020 Fedora Release Engineering - 0.106-0.7.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Thu Jan 30 2020 Fedora Release Engineering - 0.106-0.6.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Fri Jul 26 2019 Fedora Release Engineering - 0.106-0.5.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Sat Feb 02 2019 Fedora Release Engineering - 0.106-0.4.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Fri Jul 13 2018 Fedora Release Engineering - 0.106-0.3.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Fri Feb 09 2018 Fedora Release Engineering - 0.106-0.2.20170423gita0763a2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Thu Sep 14 2017 Leigh Scott - 0.106-0.1.20170423gita0763a2 -- Switch to git for improved locale support - -* Thu Sep 14 2017 Leigh Scott - 0.105-14 -- Fix source url -- Remove build requires desktop-file-utils -- Add version to PolicyKit-authentication-agent provides -- Spec file clean up - -* Thu Aug 03 2017 Fedora Release Engineering - 0.105-13 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Thu Jul 27 2017 Fedora Release Engineering - 0.105-12 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Sat Feb 11 2017 Fedora Release Engineering - 0.105-11 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Thu Feb 04 2016 Fedora Release Engineering - 0.105-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Aug 27 2015 Leigh Scott - 0.105-9 -- add ububtu fixes as upstream is dead - -* Thu Jun 18 2015 Leigh Scott - 0.105-8 -- use license tag for COPYING - -* Sun Aug 17 2014 Fedora Release Engineering - 0.105-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Sat Jun 07 2014 Fedora Release Engineering - 0.105-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Sun Aug 04 2013 Fedora Release Engineering - 0.105-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Thu Feb 14 2013 Fedora Release Engineering - 0.105-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild - -* Fri Jul 27 2012 Fedora Release Engineering - 0.105-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Sat Jan 14 2012 Fedora Release Engineering - 0.105-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Nov 2 2011 Matthias Clasen - 0.105-1 -- Update to 0.105 - -* Wed Oct 26 2011 Fedora Release Engineering - 0.104-2 -- Rebuilt for glibc bug#747377 - -* Tue Oct 18 2011 Matthias Clasen - 0.104-1 -- Update to 0.104 - -* Tue Oct 11 2011 Matthias Clasen - 0.103-2 -- Try to fix Obsoletes/Provides - -* Mon Sep 19 2011 Matthias Clasen - 0.103-1 -- Update to 0.103 -- Build against gtk3 -- Drop no-longer-needed subpackages - -* Tue Aug 16 2011 Matthias Clasen - 0.102-1 -- Update to 0.102 - -* Thu Mar 03 2011 David Zeuthen - 0.101-1 -- New upstream version - -* Mon Feb 21 2011 David Zeuthen - 0.100-1 -- New upstream version -- Note: The auto-start desktop file for the authentication agent is no - longer shipped with this package. This is now the responsibility of - each desktop environment. - -* Wed Feb 09 2011 Fedora Release Engineering - 0.97-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Nov 10 2010 Dan HorĂ¡k - 0.97-7 -- Add gtk-doc as BR - -* Mon Aug 23 2010 Matthias Clasen - 0.97-6 -- Co-own /usr/share/gtk-doc (#604411) - -* Wed Aug 18 2010 Matthias Clasen - 0.97-5 -- Rebuild to work around bodhi limitations - -* Mon Aug 09 2010 David Zeuthen - 0.97-4 -- Bump polkit req to 0.97 since we have to chainbuild anyway. Sigh. - -* Mon Aug 09 2010 David Zeuthen - 0.97-3 -- Nuke patch that was committed upstream - -* Mon Aug 09 2010 David Zeuthen - 0.97-2 -- Fix up BRs - -* Mon Aug 09 2010 David Zeuthen - 0.97-1 -- Update to 0.97 - -* Mon Jun 14 2010 Matthias Clasen - 0.96-2 -- Use lock icons that exist in current icon theme -- Minor spec file fixes - -* Fri Jan 15 2010 David Zeuthen - 0.96-1 -- Update to release 0.96 -- Disable introspection support for the time being - -* Tue Jan 5 2010 Kevin Kofler - 0.95-2 -- Don't autostart in KDE on F13+ - -* Fri Nov 13 2009 David Zeuthen - 0.95-1 -- Update to release 0.95 -- Drop upstreamed patches - -* Wed Oct 7 2009 Matthias Clasen - 0.95.0.git20090913.6 -- Prevent the statusicon from eating whitespace - -* Mon Sep 14 2009 David Zeuthen - 0.95-0.git20090913.5 -- add Provides: PolicyKit-authentication-agent to satify what PolicyKit-gnome - also provided - -* Mon Sep 14 2009 David Zeuthen - 0.95-0.git20090913.4 -- Refine how Obsolete: is used and also add Provides: (thanks Jesse - Keating and nim-nim) - -* Mon Sep 14 2009 David Zeuthen - 0.95-0.git20090913.3 -- Obsolete old PolicyKit-gnome packages - -* Sun Sep 13 2009 David Zeuthen - 0.95-0.git20090913.2 -- Update BR - -* Sun Sep 13 2009 David Zeuthen - 0.95-0.git20090913.1 -- Update BR - -* Sun Sep 13 2009 David Zeuthen - 0.95-0.git20090913 -- Update to git snapshot -- Turn on GObject introspection - -* Wed Sep 2 2009 Matthias Clasen - 0.94-4 -- Just remove the OnlyShowIn, it turns out everybody wants this - -* Sat Aug 29 2009 Matthias Clasen - 0.94-3 -- Require a new enough polkit (#517479) - -* Sat Aug 29 2009 Matthias Clasen - 0.94-2 -- Show in KDE, too (#519674) - -* Wed Aug 12 2009 David Zeuthen - 0.94-1 -- Update to upstream release 0.94 - -* Sun Jul 26 2009 Fedora Release Engineering - 0.93-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Jul 20 2009 David Zeuthen - 0.93-2 -- Rebuild - -* Mon Jul 20 2009 David Zeuthen - 0.93-1 -- Update to 0.93 - -* Tue Jun 9 2009 Matthias Clasen - 0.9.2-3 -- Fix BuildRequires - -* Tue Jun 09 2009 David Zeuthen - 0.92-2 -- Change license to LGPLv2+ -- Remove Requires: gnome-session - -* Mon Jun 08 2009 David Zeuthen - 0.92-1 -- Update to 0.92 release - -* Wed May 27 2009 David Zeuthen - 0.92-0.git20090527 -- Update to 0.92 snapshot - -* Mon Feb 9 2009 David Zeuthen - 0.91-1 -- Initial spec file. diff --git a/remove_g_type_init.patch b/remove_g_type_init.patch deleted file mode 100644 index 6297ad7..0000000 --- a/remove_g_type_init.patch +++ /dev/null @@ -1,10 +0,0 @@ ---- a/src/main.c -+++ b/src/main.c -@@ -46,7 +46,6 @@ - PolkitAgentListener *listener; - GError *error; - -- g_type_init (); - gtk_init (&argc, &argv); - - loop = NULL; diff --git a/sources b/sources deleted file mode 100644 index d9e7fee..0000000 --- a/sources +++ /dev/null @@ -1 +0,0 @@ -SHA512 (polkit-gnome-a0763a2.tar.gz) = 30de2b59396b21fab8664c695d8ae4d74459ee79765bb41aaea1baa37fbd9eaaeae9ae3946014bf94ef12690f079444292481c8d0785c81f4b1cf7ab6762f8a7