diff --git a/.gitignore b/.gitignore index 61c541a..70c1c25 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -SOURCES/gnome-session-3.28.1.tar.xz +gnome-session-46.0.tar.xz diff --git a/SOURCES/0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch b/0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch similarity index 52% rename from SOURCES/0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch rename to 0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch index 2d0e830..dec5cd4 100644 --- a/SOURCES/0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch +++ b/0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch @@ -1,4 +1,4 @@ -From 15be30033e5b24a8c84a4d4338da0e8a3930303a Mon Sep 17 00:00:00 2001 +From e3d6f1c1d342d0c74f2125ea0efa2a9669aaa8df Mon Sep 17 00:00:00 2001 From: Hans de Goede Date: Tue, 14 Aug 2018 14:49:59 +0200 Subject: [PATCH] Fedora: Set grub boot-flags on shutdown / reboot @@ -18,37 +18,10 @@ the boot-menu not being hidden. 1 file changed, 12 insertions(+) diff --git a/gnome-session/gsm-manager.c b/gnome-session/gsm-manager.c -index 3cf421cd..924767af 100644 +index 6839a02d..589efb02 100644 --- a/gnome-session/gsm-manager.c +++ b/gnome-session/gsm-manager.c -@@ -3629,51 +3629,63 @@ on_shutdown_prepared (GsmSystem *system, - gboolean success, - GsmManager *manager) - { - g_debug ("GsmManager: on_shutdown_prepared, success: %d", success); - g_signal_handlers_disconnect_by_func (system, on_shutdown_prepared, manager); - - if (success) { - /* move to end-session phase */ - g_assert (manager->priv->phase == GSM_MANAGER_PHASE_QUERY_END_SESSION); - manager->priv->phase++; - start_phase (manager); - } else { - disconnect_shell_dialog_signals (manager); - gsm_shell_close_end_session_dialog (manager->priv->shell); - /* back to running phase */ - cancel_end_session (manager); - } - } - - static gboolean - do_query_end_session_exit (GsmManager *manager) - { - gboolean reboot = FALSE; - gboolean shutdown = FALSE; - - switch (manager->priv->logout_type) { - case GSM_MANAGER_LOGOUT_LOGOUT: +@@ -3823,10 +3823,22 @@ do_query_end_session_exit (GsmManager *manager) break; case GSM_MANAGER_LOGOUT_REBOOT: case GSM_MANAGER_LOGOUT_REBOOT_INTERACT: @@ -71,20 +44,6 @@ index 3cf421cd..924767af 100644 shutdown = TRUE; break; default: - g_warning ("Unexpected logout type %d in do_query_end_session_exit()", - manager->priv->logout_type); - break; - } - - if (reboot || shutdown) { - g_signal_connect (manager->priv->system, "shutdown-prepared", - G_CALLBACK (on_shutdown_prepared), manager); - gsm_system_prepare_shutdown (manager->priv->system, reboot); - return FALSE; /* don't leave query end session yet */ - } - - return TRUE; /* go to end session phase */ - } -- -2.31.1 +2.28.0 diff --git a/SOURCES/0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch b/0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch similarity index 100% rename from SOURCES/0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch rename to 0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch diff --git a/0001-systemd-Drop-blocking-inhibitors-before-shutdown.patch b/0001-systemd-Drop-blocking-inhibitors-before-shutdown.patch new file mode 100644 index 0000000..a4227f7 --- /dev/null +++ b/0001-systemd-Drop-blocking-inhibitors-before-shutdown.patch @@ -0,0 +1,109 @@ +From adfe5778edea1273076ed19c51875d5d4a062693 Mon Sep 17 00:00:00 2001 +From: Adrian Vovk +Date: Tue, 8 Apr 2025 11:13:57 -0400 +Subject: [PATCH] systemd: Drop blocking inhibitors before shutdown + +Starting in systemd v257, systemd simplified the logic it uses for +inhibitors. It'll now enforce blocking inhibitors, even for processes +running as the same user that took them. So, gnome-session needs to make +sure it's not holding any blocking inhibitors when it's time to shutdown, +otherwise systemd will refuse to shutdown. + +Fixes: https://gitlab.gnome.org/GNOME/gnome-session/-/issues/142 +--- + gnome-session/gsm-systemd.c | 51 +++++++++++++++++++++++++++---------- + 1 file changed, 38 insertions(+), 13 deletions(-) + +diff --git a/gnome-session/gsm-systemd.c b/gnome-session/gsm-systemd.c +index 9361496e..362491b4 100644 +--- a/gnome-session/gsm-systemd.c ++++ b/gnome-session/gsm-systemd.c +@@ -913,6 +913,25 @@ inhibit_done (GObject *source, + } + } + ++static void ++gsm_systemd_call_inhibit (GsmSystemd *manager, ++ char *what) ++{ ++ g_dbus_proxy_call_with_unix_fd_list (manager->priv->sd_proxy, ++ "Inhibit", ++ g_variant_new ("(ssss)", ++ what, ++ g_get_user_name (), ++ "user session inhibited", ++ "block"), ++ 0, ++ G_MAXINT, ++ NULL, ++ NULL, ++ inhibit_done, ++ manager); ++} ++ + static void + gsm_systemd_set_inhibitors (GsmSystem *system, + GsmInhibitorFlag flags) +@@ -936,19 +955,19 @@ gsm_systemd_set_inhibitors (GsmSystem *system, + + if (locks != NULL) { + g_debug ("Adding system inhibitor on %s", locks); +- g_dbus_proxy_call_with_unix_fd_list (manager->priv->sd_proxy, +- "Inhibit", +- g_variant_new ("(ssss)", +- locks, +- g_get_user_name (), +- "user session inhibited", +- "block"), +- 0, +- G_MAXINT, +- NULL, +- NULL, +- inhibit_done, +- manager); ++ gsm_systemd_call_inhibit (manager, locks); ++ } else { ++ drop_system_inhibitor (manager); ++ } ++} ++ ++static void ++gsm_systemd_reacquire_inhibitors (GsmSystemd *manager) ++{ ++ const gchar *locks = manager->priv->inhibit_locks; ++ if (locks != NULL) { ++ g_debug ("Reacquiring system inhibitor on %s", locks); ++ gsm_systemd_call_inhibit (manager, locks); + } else { + drop_system_inhibitor (manager); + } +@@ -976,6 +995,7 @@ reboot_or_poweroff_done (GObject *source, + g_debug ("GsmSystemd: shutdown preparation failed"); + systemd->priv->prepare_for_shutdown_expected = FALSE; + g_signal_emit_by_name (systemd, "shutdown-prepared", FALSE); ++ gsm_systemd_reacquire_inhibitors (systemd); + } else { + g_variant_unref (result); + } +@@ -993,6 +1013,10 @@ gsm_systemd_prepare_shutdown (GsmSystem *system, + + g_debug ("GsmSystemd: prepare shutdown"); + ++ /* if we're holding a blocking inhibitor to inhibit shutdown, systemd ++ * will prevent us from shutting down */ ++ drop_system_inhibitor (systemd); ++ + res = g_dbus_proxy_call_with_unix_fd_list_sync (systemd->priv->sd_proxy, + "Inhibit", + g_variant_new ("(ssss)", +@@ -1010,6 +1034,7 @@ gsm_systemd_prepare_shutdown (GsmSystem *system, + g_warning ("Failed to get delay inhibitor: %s", error->message); + g_error_free (error); + g_signal_emit_by_name (systemd, "shutdown-prepared", FALSE); ++ gsm_systemd_reacquire_inhibitors (systemd); + return; + } + +-- +2.47.1 + diff --git a/SOURCES/0001-gnome-session-avoid-setting-LC_-unless-LANG-and-regi.patch b/SOURCES/0001-gnome-session-avoid-setting-LC_-unless-LANG-and-regi.patch deleted file mode 100644 index 72115c8..0000000 --- a/SOURCES/0001-gnome-session-avoid-setting-LC_-unless-LANG-and-regi.patch +++ /dev/null @@ -1,63 +0,0 @@ -From a42ccfa0e8be2e658d081c3637ff0f43e2b38d3c Mon Sep 17 00:00:00 2001 -From: Takao Fujiwara -Date: Tue, 22 Oct 2019 20:44:04 +0900 -Subject: [PATCH] gnome-session: avoid setting LC_ unless LANG and region - disagree - -At the moment, gnome-session explicitly sets the various LC_ variables -to the user configured region. - -That's unnecessary, though. If the LC_ variables are unset, -applications know to use LANG. Furthermore, setting the LC_ variables -makes it so you can't override them with LANG anymore. - -This commit makes sure the LC_ variables only get set when absolutely -necesary. That is, when they are different than LANG. - -https://gitlab.gnome.org/GNOME/gnome-session/issues/37 ---- - gnome-session/gnome-session.in | 14 +++++++++----- - 1 file changed, 9 insertions(+), 5 deletions(-) - -diff --git a/gnome-session/gnome-session.in b/gnome-session/gnome-session.in -index 7d967d34..90566f1d 100755 ---- a/gnome-session/gnome-session.in -+++ b/gnome-session/gnome-session.in -@@ -1,25 +1,29 @@ - #!/bin/sh - - if [ "x$XDG_SESSION_TYPE" = "xwayland" ] && - [ "x$XDG_SESSION_CLASS" != "xgreeter" ] && - [ -n "$SHELL" ]; then - if [ "$1" != '-l' ]; then - exec bash -c "exec -l '$SHELL' -c '$0 -l $*'" - else - shift - fi - fi - - SETTING=$(gsettings get org.gnome.system.locale region) - REGION=${SETTING#\'} - REGION=${REGION%\'} - - if [ -n "$REGION" ]; then -- export LC_TIME=$REGION -- export LC_NUMERIC=$REGION -- export LC_MONETARY=$REGION -- export LC_MEASUREMENT=$REGION -- export LC_PAPER=$REGION -+ unset LC_TIME LC_NUMERIC LC_MONETARY LC_MEASUREMENT LC_PAPER -+ -+ if [ "$LANG" != "$REGION" ] ; then -+ export LC_TIME=$REGION -+ export LC_NUMERIC=$REGION -+ export LC_MONETARY=$REGION -+ export LC_MEASUREMENT=$REGION -+ export LC_PAPER=$REGION -+ fi - fi - - exec @libexecdir@/gnome-session-binary "$@" --- -2.41.0.rc2 - diff --git a/SOURCES/0001-gnome-session-don-t-validate-shell-before-using-it.patch b/SOURCES/0001-gnome-session-don-t-validate-shell-before-using-it.patch deleted file mode 100644 index 95a877c..0000000 --- a/SOURCES/0001-gnome-session-don-t-validate-shell-before-using-it.patch +++ /dev/null @@ -1,53 +0,0 @@ -From ae60cb25636b6f68d087591de11fd681f6f8c918 Mon Sep 17 00:00:00 2001 -From: Ray Strode -Date: Tue, 19 Nov 2019 09:29:16 -0500 -Subject: [PATCH] gnome-session: don't validate shell before using it - -Users sometimes set their shell to an invalid shell to prevent -login from proceeding. - -GNOME on Wayland still allows login in these cases. - -This commit makes the behavior match expectations by skipping -shell validity checks when deciding to run though a login shell. ---- - gnome-session/gnome-session.in | 5 +---- - 1 file changed, 1 insertion(+), 4 deletions(-) - -diff --git a/gnome-session/gnome-session.in b/gnome-session/gnome-session.in -index ce63df56..7d967d34 100755 ---- a/gnome-session/gnome-session.in -+++ b/gnome-session/gnome-session.in -@@ -1,28 +1,25 @@ - #!/bin/sh - - if [ "x$XDG_SESSION_TYPE" = "xwayland" ] && - [ "x$XDG_SESSION_CLASS" != "xgreeter" ] && -- [ -n "$SHELL" ] && -- grep -q "$SHELL" /etc/shells && -- ! (echo "$SHELL" | grep -q "false") && -- ! (echo "$SHELL" | grep -q "nologin"); then -+ [ -n "$SHELL" ]; then - if [ "$1" != '-l' ]; then - exec bash -c "exec -l '$SHELL' -c '$0 -l $*'" - else - shift - fi - fi - - SETTING=$(gsettings get org.gnome.system.locale region) - REGION=${SETTING#\'} - REGION=${REGION%\'} - - if [ -n "$REGION" ]; then - export LC_TIME=$REGION - export LC_NUMERIC=$REGION - export LC_MONETARY=$REGION - export LC_MEASUREMENT=$REGION - export LC_PAPER=$REGION - fi - - exec @libexecdir@/gnome-session-binary "$@" --- -2.21.0 - diff --git a/SOURCES/0001-main-only-log-check-accelerated-errors-when-debuggin.patch b/SOURCES/0001-main-only-log-check-accelerated-errors-when-debuggin.patch deleted file mode 100644 index e8e8f3b..0000000 --- a/SOURCES/0001-main-only-log-check-accelerated-errors-when-debuggin.patch +++ /dev/null @@ -1,107 +0,0 @@ -From 7cdf11b1b4b04f8cd366316f6c50a9bd0b4e67d3 Mon Sep 17 00:00:00 2001 -From: Ray Strode -Date: Wed, 6 May 2020 13:45:50 -0400 -Subject: [PATCH] main: only log check-accelerated errors when debugging - enabled - -The journal currently gets spammed with messages like: - -gnome-session: gnome-session-check-accelerated: GL Helper exited with code 512 -gnome-session: libEGL warning: DRI2: failed to authenticate -gnome-session: gnome-session-check-accelerated: GLES Helper exited with code 512 - -if a the machine lacks accelerated graphics. But lacking accelerated -graphics isn't actually an error (many servers do). - -This commit changes the messages to only show when debugging is enabled. ---- - gnome-session/main.c | 8 +++++++- - 1 file changed, 7 insertions(+), 1 deletion(-) - -diff --git a/gnome-session/main.c b/gnome-session/main.c -index b1ac3850..0e75eecf 100644 ---- a/gnome-session/main.c -+++ b/gnome-session/main.c -@@ -193,72 +193,78 @@ require_dbus_session (int argc, - g_return_val_if_fail (!g_str_has_prefix (argv[0], "dbus-launch"), - TRUE); - - /* +2 for our new arguments, +1 for NULL */ - new_argv = g_malloc ((argc + 3) * sizeof (*argv)); - - new_argv[0] = "dbus-launch"; - new_argv[1] = "--exit-with-session"; - for (i = 0; i < argc; i++) { - new_argv[i + 2] = argv[i]; - } - new_argv[i + 2] = NULL; - - if (!execvp ("dbus-launch", new_argv)) { - g_set_error (error, - G_SPAWN_ERROR, - G_SPAWN_ERROR_FAILED, - "No session bus and could not exec dbus-launch: %s", - g_strerror (errno)); - return FALSE; - } - - /* Should not be reached */ - return TRUE; - } - - static gboolean - check_gl (GError **error) - { - int status; -+ g_autofree char *error_output = NULL; -+ - char *argv[] = { LIBEXECDIR "/gnome-session-check-accelerated", NULL }; - - if (getenv ("DISPLAY") == NULL) { - /* Not connected to X11, someone else will take care of checking GL */ - return TRUE; - } - -- if (!g_spawn_sync (NULL, (char **) argv, NULL, 0, NULL, NULL, &gl_renderer, NULL, -+ if (!g_spawn_sync (NULL, (char **) argv, NULL, 0, NULL, NULL, &gl_renderer, &error_output, - &status, error)) { - return FALSE; - } - -+ if (error_output != NULL) { -+ g_debug ("%s", error_output); -+ } -+ - return g_spawn_check_exit_status (status, error); - } - - static void - initialize_gio (void) - { - char *disable_fuse = NULL; - char *use_vfs = NULL; - - disable_fuse = g_strdup (g_getenv ("GVFS_DISABLE_FUSE")); - use_vfs = g_strdup (g_getenv ("GIO_USE_VFS")); - - g_setenv ("GVFS_DISABLE_FUSE", "1", TRUE); - g_setenv ("GIO_USE_VFS", "local", TRUE); - g_vfs_get_default (); - - if (use_vfs) { - g_setenv ("GIO_USE_VFS", use_vfs, TRUE); - g_free (use_vfs); - } else { - g_unsetenv ("GIO_USE_VFS"); - } - - if (disable_fuse) { - g_setenv ("GVFS_DISABLE_FUSE", disable_fuse, TRUE); - g_free (disable_fuse); - } else { - g_unsetenv ("GVFS_DISABLE_FUSE"); - } - } --- -2.33.1 - diff --git a/SOURCES/0001-session-selector-show-cursor-explicitly.patch b/SOURCES/0001-session-selector-show-cursor-explicitly.patch deleted file mode 100644 index 2977d81..0000000 --- a/SOURCES/0001-session-selector-show-cursor-explicitly.patch +++ /dev/null @@ -1,124 +0,0 @@ -From 06271eea2a12970fbe73b3d3f2c6ae5d79339379 Mon Sep 17 00:00:00 2001 -From: Ray Strode -Date: Mon, 29 Jun 2020 15:15:48 -0400 -Subject: [PATCH] session-selector: show cursor explicitly - -Normally the window manager would show the cursor at start up, but -the session selector runs when no window manager is present. - -This commit makes the session selector explicitly set a cursor, so -users can interact with the dialog using the mouse. ---- - tools/gnome-session-selector.c | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/tools/gnome-session-selector.c b/tools/gnome-session-selector.c -index 71892c43..9225639e 100644 ---- a/tools/gnome-session-selector.c -+++ b/tools/gnome-session-selector.c -@@ -594,60 +594,61 @@ auto_save_next_session_if_needed (void) - static int - compare_sessions (GtkTreeModel *model, - GtkTreeIter *a, - GtkTreeIter *b, - gpointer data) - { - char *name_a, *name_b; - int result; - - gtk_tree_model_get (model, a, 0, &name_a, -1); - gtk_tree_model_get (model, b, 0, &name_b, -1); - - result = g_utf8_collate (name_a, name_b); - - g_free (name_a); - g_free (name_b); - - return result; - } - - static void - on_map (GtkWidget *widget, - gpointer data) - { - gdk_window_focus (gtk_widget_get_window (widget), GDK_CURRENT_TIME); - } - - int - main (int argc, char *argv[]) - { -+ GdkCursor *cursor; - GtkWidget *window; - GtkWidget *widget; - GtkCellRenderer *cell; - GtkTreeViewColumn *column; - GtkTreeSelection *selection; - GError *error; - - if (getenv ("SESSION_MANAGER") != NULL) - return 1; - - gtk_init (&argc, &argv); - if (argc > 1) { - g_print ("create and select session\n"); - if (!create_and_select_session (argv[1])) - return 1; - else - return 0; - } - - builder = gtk_builder_new (); - gtk_builder_set_translation_domain (builder, GETTEXT_PACKAGE); - - error = NULL; - if (!gtk_builder_add_from_file (builder, GTKBUILDER_DIR "/" "session-selector.ui", &error)) { - g_warning ("Could not load file 'session-selector.ui': %s", error->message); - exit (1); - } - - window = (GtkWidget *) gtk_builder_get_object (builder, "main-window"); - -@@ -663,36 +664,40 @@ main (int argc, char *argv[]) - session_list = (GtkWidget *) gtk_builder_get_object (builder, "session-list"); - - selection = gtk_tree_view_get_selection (GTK_TREE_VIEW (session_list)); - gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); - - populate_session_list (session_list); - - cell = gtk_cell_renderer_text_new (); - g_signal_connect (cell, "edited", G_CALLBACK (on_row_edited), NULL); - - column = gtk_tree_view_column_new_with_attributes ("", cell, "text", 0, NULL); - gtk_tree_view_append_column (GTK_TREE_VIEW (session_list), GTK_TREE_VIEW_COLUMN (column)); - - g_signal_connect (session_list, "row-activated", G_CALLBACK (on_row_activated), NULL); - - g_signal_connect (selection, "changed", - G_CALLBACK (on_selection_changed), NULL); - - widget = (GtkWidget *) gtk_builder_get_object (builder, "new-session"); - g_signal_connect (widget, "clicked", G_CALLBACK (on_new_session_clicked), NULL); - widget = (GtkWidget *) gtk_builder_get_object (builder, "remove-session"); - g_signal_connect (widget, "clicked", G_CALLBACK (on_remove_session_clicked), NULL); - widget = (GtkWidget *) gtk_builder_get_object (builder, "rename-session"); - g_signal_connect (widget, "clicked", G_CALLBACK (on_rename_session_clicked), NULL); - widget = (GtkWidget *) gtk_builder_get_object (builder, "continue-button"); - g_signal_connect (widget, "clicked", G_CALLBACK (on_continue_clicked), NULL); - - g_signal_connect (window, "map", G_CALLBACK (on_map), NULL); - gtk_widget_show (window); - -+ cursor = gdk_cursor_new_from_name (gtk_widget_get_display (window), -+ "default"); -+ gdk_window_set_cursor (gtk_widget_get_window (window), cursor); -+ - gtk_main (); - - auto_save_next_session_if_needed (); - - return 0; - } --- -2.26.0 - diff --git a/SOURCES/20-redhat-kiosk.conf b/SOURCES/20-redhat-kiosk.conf deleted file mode 100644 index acbd369..0000000 --- a/SOURCES/20-redhat-kiosk.conf +++ /dev/null @@ -1,3 +0,0 @@ -Section "ServerFlags" - Option "DontVTSwitch" "on" -EndSection diff --git a/SOURCES/50-redhat-kiosk.dconf b/SOURCES/50-redhat-kiosk.dconf deleted file mode 100644 index 5537b0d..0000000 --- a/SOURCES/50-redhat-kiosk.dconf +++ /dev/null @@ -1,38 +0,0 @@ -[org/gnome/desktop/a11y/applications] -screen-keyboard-enabled=true - -[org/gnome/desktop/interface] -gtk-im-module='ibus' -toolkit-accessibility=true - -[org/gnome/desktop/lockdown] -disable-command-line=true -disable-lock-screen=true -disable-application-handlers=true -disable-user-switching=true -user-administration-disabled=true - -[org/gnome/desktop/wm/keybindings] -always-on-top=@as [] -begin-move=@as [] -begin-resize=@as [] -close=@as [] -lower=@as [] -maximize=@as [] -maximize-horizontally=@as [] -maximize-vertically=@as [] -minimize=@as [] -panel-main-menu=@as [] -panel-run-dialog=@as [] -raise=@as [] -raise-or-lower=@as [] -show-desktop=@as [] -toggle-fullscreen=@as [] -toggle-maximized=@as [] -unmaximize=@as [] - -[org/gnome/desktop/wm/preferences] -num-workspaces=1 - -[org/gnome/mutter] -dynamic-workspaces=false diff --git a/SOURCES/50-redhat-kiosk.dconf.locks b/SOURCES/50-redhat-kiosk.dconf.locks deleted file mode 100644 index f8f173d..0000000 --- a/SOURCES/50-redhat-kiosk.dconf.locks +++ /dev/null @@ -1,8 +0,0 @@ -/org/gnome/desktop/a11y/applications/screen-keyboard-enabled -/org/gnome/desktop/interface/gtk-im-module -/org/gnome/desktop/interface/toolkit-accessibility -/org/gnome/desktop/lockdown/disable-command-line -/org/gnome/desktop/lockdown/disable-lock-screen -/org/gnome/desktop/lockdown/disable-application-handlers -/org/gnome/desktop/lockdown/disable-user-switching -/org/gnome/desktop/lockdown/user-administration-disabled diff --git a/SOURCES/com.redhat.Kiosk.Script.desktop b/SOURCES/com.redhat.Kiosk.Script.desktop deleted file mode 100644 index 8eb08d0..0000000 --- a/SOURCES/com.redhat.Kiosk.Script.desktop +++ /dev/null @@ -1,5 +0,0 @@ -[Desktop Entry] -Name=Kiosk -Type=Application -Exec=redhat-kiosk - diff --git a/SOURCES/com.redhat.Kiosk.WindowManager.desktop b/SOURCES/com.redhat.Kiosk.WindowManager.desktop deleted file mode 100644 index 29aa7b3..0000000 --- a/SOURCES/com.redhat.Kiosk.WindowManager.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Type=Application -Name=Mutter -Comment=Window manager -Exec=/usr/bin/mutter -Categories=GNOME;GTK;Core; -OnlyShowIn=GNOME; -NoDisplay=true -X-GNOME-Autostart-Phase=DisplayServer -X-GNOME-Provides=windowmanager; -X-GNOME-Autostart-Notify=true -X-GNOME-AutoRestart=false -X-GNOME-HiddenUnderSystemd=true diff --git a/SOURCES/com.redhat.Kiosk.desktop b/SOURCES/com.redhat.Kiosk.desktop deleted file mode 100644 index 2684a46..0000000 --- a/SOURCES/com.redhat.Kiosk.desktop +++ /dev/null @@ -1,6 +0,0 @@ -[Desktop Entry] -Name=Kiosk -Comment=Kiosk mode -Exec=/usr/bin/gnome-session --session=redhat-kiosk -DesktopNames=Red-Hat-Kiosk;GNOME; - diff --git a/SOURCES/com.redhat.KioskWithKeyboard.WindowManager.desktop b/SOURCES/com.redhat.KioskWithKeyboard.WindowManager.desktop deleted file mode 100644 index 9a89de7..0000000 --- a/SOURCES/com.redhat.KioskWithKeyboard.WindowManager.desktop +++ /dev/null @@ -1,13 +0,0 @@ -[Desktop Entry] -Type=Application -Name=GNOME Shell Kiosk Mode -Comment=Window manager -Exec=env DCONF_PROFILE=redhatkiosk /usr/bin/gnome-shell --mode=redhat-kiosk -Categories=GNOME;GTK;Core; -OnlyShowIn=GNOME; -NoDisplay=true -X-GNOME-Autostart-Phase=DisplayServer -X-GNOME-Provides=windowmanager; -X-GNOME-Autostart-Notify=true -X-GNOME-AutoRestart=false -X-GNOME-HiddenUnderSystemd=true diff --git a/SOURCES/com.redhat.KioskWithKeyboard.desktop b/SOURCES/com.redhat.KioskWithKeyboard.desktop deleted file mode 100644 index b4da81d..0000000 --- a/SOURCES/com.redhat.KioskWithKeyboard.desktop +++ /dev/null @@ -1,6 +0,0 @@ -[Desktop Entry] -Name=Kiosk (with on-screen keyboard) -Comment=Kiosk mode with on-screen keyboard -Exec=/usr/bin/env DCONF_PROFILE=redhatkiosk /usr/bin/gnome-session --session=redhat-kiosk-with-keyboard -DesktopNames=Red-Hat-Kiosk;GNOME; - diff --git a/SOURCES/gnome-xorg.desktop b/SOURCES/gnome-xorg.desktop deleted file mode 100644 index 9751406..0000000 --- a/SOURCES/gnome-xorg.desktop +++ /dev/null @@ -1,27 +0,0 @@ -[Desktop Entry] -Name[de]=Standard (X11 Anzeige-Server) -Name[es]=Estándar (servidor gráfico X11) -Name[fr]=Standard (serveur affichage X11) -Name[it]=Standard (server grafico X11) -Name[ja]=スタンダード (X11 ディスプレイサーバー) -Name[ko]=탠다드 (X11 디스플레이 서버) -Name[pt_BR]=Padrão (servidor de exibição X11) -Name[ru]=Стандартный (дисплейный сервер X11) -Name[zh_CN]=标准(X11 显示服务器) -Name[zh_TW]=標準(X11顯示服務器) -Name=Standard (X11 display server) -Comment[de]=Diese Sitzung meldet Sie bei GNOME an -Comment[es]=Esta sesión accede a GNOME -Comment[fr]=Cette session vous connecte dans GNOME -Comment[it]=Questa sessione esegue l'accesso in GNOME -Comment[ja]=このセッションで GNOME にログインします -Comment[ko]=이 세션을 사용하면 그놈에 로그인합니다 -Comment[pt_BR]=Essa sessão o leva ao GNOME -Comment[ru]=Этот сеанс позволяет вам войти в GNOME -Comment[zh_CN]=此会话将您登录到 GNOME -Comment[zh_TW]=這個工作階段讓您登入 GNOME -Comment=This session logs you into GNOME -Exec=gnome-session -TryExec=gnome-session -Type=Application -DesktopNames=GNOME diff --git a/SOURCES/gnome.desktop b/SOURCES/gnome.desktop deleted file mode 100644 index 840c0f3..0000000 --- a/SOURCES/gnome.desktop +++ /dev/null @@ -1,27 +0,0 @@ -[Desktop Entry] -Name[de]=Standard (Wayland Anzeige-Server) -Name[es]=Estándar (servidor gráfico Wayland) -Name[fr]=Standard (serveur affichage Wayland) -Name[it]=Standard (server grafico Wayland) -Name[ja]=スタンダード (Wayland ディスプレイサーバー) -Name[ko]=스탠다드 (Wayland 디스플레이 서버) -Name[pt_BR]=Padrão (servidor de exibição Wayland) -Name[ru]=Стандартный (дисплейный сервер Wayland) -Name[zh_CN]=标准(Wayland 显示服务器) -Name[zh_TW]=標準(Wayland顯示服務器) -Name=Standard (Wayland display server) -Comment[de]=Diese Sitzung meldet Sie bei GNOME an -Comment[es]=Esta sesión accede a GNOME -Comment[fr]=Cette session vous connecte dans GNOME -Comment[it]=Questa sessione esegue l'accesso in GNOME -Comment[ja]=このセッションで GNOME にログインします -Comment[ko]=이 세션을 사용하면 그놈에 로그인합니다 -Comment[pt_BR]=Essa sessão o leva ao GNOME -Comment[ru]=Этот сеанс позволяет вам войти в GNOME -Comment[zh_CN]=此会话将您登录到 GNOME -Comment[zh_TW]=這個工作階段讓您登入 GNOME -Comment=This session logs you into GNOME -Exec=gnome-session -TryExec=gnome-session -Type=Application -DesktopNames=GNOME diff --git a/SOURCES/redhat-kiosk b/SOURCES/redhat-kiosk deleted file mode 100755 index 8c11bfd..0000000 --- a/SOURCES/redhat-kiosk +++ /dev/null @@ -1,29 +0,0 @@ -#!/bin/sh - -if [ ! -e ~/.local/bin/redhat-kiosk ]; then - mkdir -p ~/.local/bin ~/.config - cat > ~/.local/bin/redhat-kiosk << EOF -#!/bin/sh -# This script is located in ~/.local/bin. -# It's provided as an example script to show how -# the kiosk session works. At the moment, the script -# just starts a text editor open to itself, but it -# should get customized to instead start a full screen -# application designed for the kiosk deployment. -# The "while true" bit just makes sure the application gets -# restarted if it dies for whatever reason. - -while true; do - gedit ~/.local/bin/redhat-kiosk -done - -EOF - - chmod +x ~/.local/bin/redhat-kiosk - touch ~/.config/gnome-initial-setup-done -fi - -export DCONF_PROFILE=redhatkiosk -systemctl --user import-environment DCONF_PROFILE - -exec ~/.local/bin/redhat-kiosk "$@" diff --git a/SOURCES/redhat-kiosk-with-keyboard.session b/SOURCES/redhat-kiosk-with-keyboard.session deleted file mode 100644 index bb3364c..0000000 --- a/SOURCES/redhat-kiosk-with-keyboard.session +++ /dev/null @@ -1,3 +0,0 @@ -[GNOME Session] -Name=Kiosk -RequiredComponents=com.redhat.KioskWithKeyboard.WindowManager;com.redhat.Kiosk.Script; diff --git a/SOURCES/redhat-kiosk.dconf.profile b/SOURCES/redhat-kiosk.dconf.profile deleted file mode 100644 index 3cb5276..0000000 --- a/SOURCES/redhat-kiosk.dconf.profile +++ /dev/null @@ -1,5 +0,0 @@ -user-db:user -system-db:redhatkiosk -system-db:local -system-db:site -system-db:distro diff --git a/SOURCES/redhat-kiosk.json b/SOURCES/redhat-kiosk.json deleted file mode 100644 index d467ae7..0000000 --- a/SOURCES/redhat-kiosk.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "parentMode": "user", - "hasOverview": false, - "hasRunDialog": false, - "allowSettings": false, - "panel": { "left": [""], - "center": [], - "right": ["keyboard"] - } -} - diff --git a/SOURCES/redhat-kiosk.session b/SOURCES/redhat-kiosk.session deleted file mode 100644 index 7e7fdbe..0000000 --- a/SOURCES/redhat-kiosk.session +++ /dev/null @@ -1,3 +0,0 @@ -[GNOME Session] -Name=Kiosk -RequiredComponents=com.redhat.Kiosk.WindowManager;com.redhat.Kiosk.Script; diff --git a/SPECS/gnome-session.spec b/SPECS/gnome-session.spec deleted file mode 100644 index 37a31ab..0000000 --- a/SPECS/gnome-session.spec +++ /dev/null @@ -1,1650 +0,0 @@ -%global _changelog_trimtime %(date +%s -d "1 year ago") - -%define po_package gnome-session-3.0 - -%if 0%{?fedora} -%else -%global with_session_selector 1 -%endif - -Name: gnome-session -Version: 3.28.1 -Release: 21%{?dist} -Summary: GNOME session manager - -License: GPLv2+ -URL: http://www.gnome.org -Source0: http://download.gnome.org/sources/gnome-session/3.28/%{name}-%{version}.tar.xz -Source1: gnome.desktop -Source2: gnome-xorg.desktop - -Source3: com.redhat.Kiosk.Script.desktop - -Source4: com.redhat.Kiosk.desktop -Source5: com.redhat.KioskWithKeyboard.desktop - -Source6: com.redhat.Kiosk.WindowManager.desktop -Source7: com.redhat.KioskWithKeyboard.WindowManager.desktop -Source8: redhat-kiosk.json - -Source9: redhat-kiosk.session -Source10: redhat-kiosk-with-keyboard.session - -Source11: redhat-kiosk - -Source12: 20-redhat-kiosk.conf - -Source13: 50-redhat-kiosk.dconf -Source14: 50-redhat-kiosk.dconf.locks -Source15: redhat-kiosk.dconf.profile - -Patch0: 0001-gnome-session-don-t-validate-shell-before-using-it.patch - -# Blacklist NV30: https://bugzilla.redhat.com/show_bug.cgi?id=745202 -Patch1: gnome-session-3.3.92-nv30.patch -Patch3: gnome-session-3.6.2-swrast.patch -# https://bugzilla.gnome.org/show_bug.cgi?id=772421 -Patch4: 0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch - -Patch10001: 0001-session-selector-show-cursor-explicitly.patch - -# Downstream patch to provide better grub integration -# https://bugzilla.redhat.com/show_bug.cgi?id=1914925 -Patch20001: 0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch - -# Make some debug spew only show up if debugging is enabled -# https://bugzilla.redhat.com/show_bug.cgi?id=1877997 -Patch30001: 0001-main-only-log-check-accelerated-errors-when-debuggin.patch - -# Allow user to override language settings -# https://bugzilla.redhat.com/show_bug.cgi?id=2170474 -Patch40001: 0001-gnome-session-avoid-setting-LC_-unless-LANG-and-regi.patch - -BuildRequires: meson -BuildRequires: gcc -BuildRequires: pkgconfig(egl) -BuildRequires: pkgconfig(gl) -BuildRequires: pkgconfig(glesv2) -BuildRequires: pkgconfig(gnome-desktop-3.0) -BuildRequires: pkgconfig(gtk+-3.0) -BuildRequires: pkgconfig(libsystemd) -BuildRequires: pkgconfig(ice) -BuildRequires: pkgconfig(json-glib-1.0) -BuildRequires: pkgconfig(sm) -BuildRequires: pkgconfig(x11) -BuildRequires: pkgconfig(xau) -BuildRequires: pkgconfig(xcomposite) -BuildRequires: pkgconfig(xext) -BuildRequires: pkgconfig(xrender) -BuildRequires: pkgconfig(xtrans) -BuildRequires: pkgconfig(xtst) - -BuildRequires: gettext -BuildRequires: intltool -BuildRequires: xmlto -BuildRequires: /usr/bin/xsltproc -BuildRequires: python3-devel - -# an artificial requires to make sure we get dconf, for now -Requires: dconf - -Requires: system-logos -Requires: system-backgrounds -# Needed for gnome-settings-daemon -Requires: control-center-filesystem - -Requires: gsettings-desktop-schemas >= 0.1.7 - -# pull in dbus-x11, see bug 209924 -Requires: dbus-x11 - -Conflicts: gnome-settings-daemon < 3.27.90 - -%description -gnome-session manages a GNOME desktop or GDM login session. It starts up -the other core GNOME components and handles logout and saving the session. - -%package xsession -Summary: Desktop file for gnome-session -Requires: %{name}%{?_isa} = %{version}-%{release} - -%description xsession -Desktop file to add GNOME to display manager session menu. - -%package wayland-session -Summary: Desktop file for wayland based gnome session -Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: xorg-x11-server-Xwayland%{?_isa} - -%description wayland-session -Desktop file to add GNOME on wayland to display manager session menu. - -%package kiosk-session -Summary: Desktop file for mutter based kiosk session -Requires: %{name}%{?_isa} = %{version}-%{release} -Requires: mutter -Recommends: gedit -Recommends: gnome-terminal -Recommends: gnome-control-center - -%description kiosk-session -Desktop file to add basic session used for setting up kiosk applications. - -%prep -%autosetup -p1 - -%build -%meson \ -%if 0%{?with_session_selector} - -Dsession_selector=true \ -%endif - -Dsystemd=true \ - -Dsystemd_journal=true -%meson_build - -%install -%meson_install - -# Rename GNOME to Standard -cp $RPM_SOURCE_DIR/gnome.desktop $RPM_BUILD_ROOT%{_datadir}/wayland-sessions -cp $RPM_SOURCE_DIR/gnome.desktop $RPM_BUILD_ROOT%{_datadir}/wayland-sessions/gnome-wayland.desktop -cp $RPM_SOURCE_DIR/gnome-xorg.desktop $RPM_BUILD_ROOT%{_datadir}/xsessions -cp $RPM_SOURCE_DIR/gnome-xorg.desktop $RPM_BUILD_ROOT%{_datadir}/xsessions/gnome.desktop - -install -D $RPM_SOURCE_DIR/com.redhat.Kiosk.Script.desktop -t $RPM_BUILD_ROOT%{_datadir}/applications - -install -D $RPM_SOURCE_DIR/com.redhat.Kiosk.WindowManager.desktop -t $RPM_BUILD_ROOT/%{_datadir}/applications -install -D $RPM_SOURCE_DIR/com.redhat.KioskWithKeyboard.WindowManager.desktop -t $RPM_BUILD_ROOT/%{_datadir}/applications - -install -D $RPM_SOURCE_DIR/com.redhat.Kiosk.desktop -t $RPM_BUILD_ROOT%{_datadir}/xsessions -install -D $RPM_SOURCE_DIR/com.redhat.KioskWithKeyboard.desktop -t $RPM_BUILD_ROOT%{_datadir}/xsessions - -install -D $RPM_SOURCE_DIR/redhat-kiosk.json -t $RPM_BUILD_ROOT%{_datadir}/gnome-shell/modes - -install -D $RPM_SOURCE_DIR/redhat-kiosk.session -t $RPM_BUILD_ROOT%{_datadir}/gnome-session/sessions -install -D $RPM_SOURCE_DIR/redhat-kiosk-with-keyboard.session -t $RPM_BUILD_ROOT%{_datadir}/gnome-session/sessions - -install -D $RPM_SOURCE_DIR/redhat-kiosk -t $RPM_BUILD_ROOT%{_bindir} - -install -D $RPM_SOURCE_DIR/20-redhat-kiosk.conf -t $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d - -install -D $RPM_SOURCE_DIR/50-redhat-kiosk.dconf $RPM_BUILD_ROOT%{_sysconfdir}/dconf/db/redhatkiosk.d/50-redhat-kiosk -install -D $RPM_SOURCE_DIR/50-redhat-kiosk.dconf.locks $RPM_BUILD_ROOT%{_sysconfdir}/dconf/db/redhatkiosk.d/locks/50-redhat-kiosk -install -D $RPM_SOURCE_DIR/redhat-kiosk.dconf.profile $RPM_BUILD_ROOT%{_sysconfdir}/dconf/profile/redhatkiosk - -install -D $RPM_SOURCE_DIR/20-redhat-kiosk.conf -t $RPM_BUILD_ROOT%{_datadir}/X11/xorg.conf.d - -%find_lang %{po_package} - -%ldconfig_scriptlets - -%posttrans - -# These files weren't packaged correctly in gnome-session-3.28.1-19.el8 so manually prune them -rmdir %{_sysconfdir}/dconf/db/redhat-kiosk.d/locks 2> /dev/null || : -rmdir %{_sysconfdir}/dconf/db/redhat-kiosk.d 2> /dev/null || : -rm -f %{_sysconfdir}/dconf/db/redhat-kiosk 2> /dev/null || : - -dconf update - -%files xsession -%{_datadir}/xsessions/* -%exclude %{_datadir}/xsessions/com.redhat.Kiosk.desktop - -%files wayland-session -%{_datadir}/wayland-sessions/* - -%files kiosk-session -%dir %{_sysconfdir}/dconf/db/redhatkiosk.d/locks -%dir %{_sysconfdir}/dconf/db/redhatkiosk.d -%ghost %{_sysconfdir}/dconf/db/redhatkiosk -%{_sysconfdir}/dconf/db/redhatkiosk.d/50-redhat-kiosk -%{_sysconfdir}/dconf/db/redhatkiosk.d/locks/50-redhat-kiosk -%{_sysconfdir}/dconf/profile/redhatkiosk -%{_datadir}/applications/com.redhat.Kiosk.Script.desktop -%{_datadir}/applications/com.redhat.Kiosk.WindowManager.desktop -%{_datadir}/applications/com.redhat.KioskWithKeyboard.WindowManager.desktop -%{_datadir}/gnome-shell/modes/redhat-kiosk.json -%{_datadir}/xsessions/com.redhat.Kiosk.desktop -%{_datadir}/xsessions/com.redhat.KioskWithKeyboard.desktop -%{_datadir}/gnome-session/sessions/redhat-kiosk.session -%{_datadir}/gnome-session/sessions/redhat-kiosk-with-keyboard.session -%{_datadir}/X11/xorg.conf.d/20-redhat-kiosk.conf -%{_bindir}/redhat-kiosk - -%files -f %{po_package}.lang -%doc AUTHORS NEWS README -%license COPYING -%doc %{_mandir}/man*/* -%{_bindir}/* -%{_libexecdir}/gnome-session-binary -%{_libexecdir}/gnome-session-check-accelerated -%{_libexecdir}/gnome-session-check-accelerated-gl-helper -%{_libexecdir}/gnome-session-check-accelerated-gles-helper -%{_libexecdir}/gnome-session-failed -%{_datadir}/gnome-session/ -%{_datadir}/doc/gnome-session/dbus/gnome-session.html -%{_datadir}/GConf/gsettings/gnome-session.convert -%{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml - -%changelog -* Wed May 31 2023 Ray Strode - 3.28.1-21 -- Allow users to override language settings in environment - Resolves: #2170474 - -* Wed Mar 01 2023 Ray Strode - 3.28.1-20 -- Work around dconf log spew by renaming dconf profile - Related: 2070976 - Resolves: #2174414 - -* Tue Feb 28 2023 Ray Strode - 3.28.1-19 -- Another fix - Related: #2070976 - -* Tue Feb 28 2023 Ray Strode - 3.28.1-18 -- Fix issue introduced in last build - Related: #2070976 - -* Tue Feb 28 2023 Ray Strode - 3.28.1-17 -- Don't force kiosk profile for user in non-kiosk sessions - after the user has been used for a kiosk session once - Related: #2070976 - -* Tue Feb 28 2023 Ray Strode - 3.28.1-16 -- Fix glitch where enabling on-screen keyboard requires initial - reboot - Related: #2070976 - -* Mon Feb 27 2023 Ray Strode - 3.28.1-15 -- Add new shell based variant of kiosk mode that supports - on-screen keyboard - Resolves: #2070976 - -* Tue Dec 21 2021 Ray Strode - 3.28.1-14 -- Make some debug spew only show up if debugging is enabled - Resolves: #1877997 - -* Mon Jul 26 2021 Ray Strode - 3.28.1-13 -- Add patch to tell grub boot was successful when user is - able to explicitly request shutdown/reboot. - Resolves: #1914925 - -* Tue Jul 20 2021 Ray Strode - 3.28.1-12 -- Introduce gnome-wayland session to allow users that use - Xorg on the login screen to try wayland for the user session. - Related: #1962211 - -* Fri Jun 04 2021 Ray Strode - 3.28.1-11 -- Exclude kiosk-session from xsession subpackage -- Disable VT switching when kiosk-session is installed - Related: #1955754 - -* Mon Jun 29 2020 Ray Strode - 3.28.1-10 -- Show cursor explicitly from session selector - Resolves: #1624430 - -* Tue May 19 2020 Ray Strode - 3.28.1-9 -- Add kiosk-session subpackage to help users set up RHEL for - kiosk/point-of-sale use. - Resolves: #1739556 - -* Wed Nov 20 2019 Tomas Pelka - 3.28.1-8 -- rebuild and version bump to avoid future conflict with z-stream version - Resolves: #1745147 - -* Tue Nov 19 2019 Ray Strode - 3.28.1-7 -- make /sbin/nologin fail on wayland - Resolves: #1745147 - -* Mon Jan 14 2019 Ray Strode - 3.28.1-6 -- Update desktop file names - Related: #1647713 - -* Thu Nov 01 2018 Ray Strode - 3.28.1-5 -- Drop usermode dependency, it's vestigial - Resolves: #1643696 - -* Fri Sep 07 2018 Ray Strode - 3.28.1-4 -- Require system-backgrounds - Related: #1626388 - -* Wed Aug 22 2018 Ray Strode - 3.28.1-3 -- Rename GNOME to Standard - Related: #1612915 - -* Mon Aug 13 2018 Ray Strode - 3.28.1-2 -- BuildRequire python3 binary - Resolves: #1615527 - -* Tue Apr 10 2018 Kalev Lember - 3.28.1-1 -- Update to 3.28.1 - -* Tue Mar 13 2018 Kalev Lember - 3.28.0-1 -- Update to 3.28.0 - -* Sun Mar 11 2018 Kalev Lember - 3.27.92-1 -- Update to 3.27.92 - -* Fri Mar 02 2018 Kalev Lember - 3.27.91-1 -- Update to 3.27.91 - -* Tue Feb 13 2018 Ray Strode - 3.27.90.1-1 -- Update to 3.27.90.1 - -* Tue Feb 13 2018 Björn Esser - 3.27.4-2 -- Rebuild against newer gnome-desktop3 package - -* Fri Feb 09 2018 Bastien Nocera - 3.27.4-1 -- Update to 3.27.4 -- Use meson as build system -- Adjust required session components for gnome-settings-daemon 3.27.90 - -* Wed Feb 07 2018 Fedora Release Engineering - 3.26.1-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Fri Feb 02 2018 Igor Gnatenko - 3.26.1-3 -- Switch to %%ldconfig_scriptlets - -* Thu Jan 11 2018 Igor Gnatenko - 3.26.1-2 -- Remove obsolete scriptlets - -* Sun Oct 08 2017 Kalev Lember - 3.26.1-1 -- Update to 3.26.1 - -* Wed Sep 13 2017 Kalev Lember - 3.26.0-1 -- Update to 3.26.0 - -* Fri Sep 08 2017 Kalev Lember - 3.25.92-1 -- Update to 3.25.92 - -* Tue Aug 15 2017 Kalev Lember - 3.25.90-1 -- Update to 3.25.90 - -* Mon Jul 31 2017 Kalev Lember - 3.25.4-1 -- Update to 3.25.4 - -* Wed Jul 26 2017 Fedora Release Engineering - 3.25.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon Jul 10 2017 Bastien Nocera - 3.25.3-1 -+ gnome-session-3.25.3-1 -- Update to 3.25.3 - -* Wed Jun 21 2017 Ray Strode - 3.24.1-2 -- Kill bus clients at log out - Resolves: #1340203 - -- Address crash in fail whale - Related: #1384508 - -* Wed Apr 12 2017 Kalev Lember - 3.24.1-1 -- Update to 3.24.1 - -* Tue Mar 21 2017 Kalev Lember - 3.24.0-1 -- Update to 3.24.0 - -* Thu Mar 16 2017 Kalev Lember - 3.23.92-1 -- Update to 3.23.92 - -* Tue Feb 28 2017 Richard Hughes - 3.23.91-1 -- Update to 3.23.91 - -* Tue Feb 14 2017 Richard Hughes - 3.23.4.1-1 -- Update to 3.23.4.1 - -* Fri Feb 10 2017 Fedora Release Engineering - 3.23.2-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Tue Oct 11 2016 Adam Jackson - 3.23.2-2 -- Prefer eglGetPlatformDisplay to eglGetDisplay - -* Tue Oct 11 2016 Bastien Nocera - 3.23.2-1 -+ gnome-session-3.23.2-1 -- Update to 3.23.2 - -* Mon Sep 19 2016 Kalev Lember - 3.22.0-1 -- Update to 3.22.0 -- Don't set group tags - -* Fri Aug 19 2016 Kalev Lember - 3.21.90-1 -- Update to 3.21.90 - -* Tue Jul 26 2016 Kalev Lember - 3.21.4-1 -- Update to 3.21.4 - -* Wed Jun 22 2016 Richard Hughes - 3.21.3-1 -- Update to 3.21.3 - -* Wed Apr 13 2016 Kalev Lember - 3.20.1-1 -- Update to 3.20.1 - -* Tue Mar 22 2016 Kalev Lember - 3.20.0-1 -- Update to 3.20.0 - -* Tue Mar 15 2016 Kalev Lember - 3.19.92-1 -- Update to 3.19.92 - -* Mon Mar 07 2016 Kalev Lember - 3.19.91-1 -- Update to 3.19.91 - -* Wed Feb 03 2016 Fedora Release Engineering - 3.19.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Thu Jan 21 2016 Kalev Lember - 3.19.4-1 -- Update to 3.19.4 - -* Wed Nov 11 2015 Ray Strode 3.19.2-0.1.20151111git858812a7 -- Add GNOME on Xorg session - -* Tue Nov 10 2015 Ray Strode 3.19.2-0.1.20151110git9bbaf36d -- Update to git snapshot - -* Fri Nov 06 2015 Ray Strode 3.18.1.2-2 -- Add patch to make crash logging more obvious - Related: gnome#757571 - -* Thu Oct 15 2015 Kalev Lember - 3.18.1.2-1 -- Update to 3.18.1.2 - -* Thu Oct 15 2015 Kalev Lember - 3.18.1.1-1 -- Update to 3.18.1.1 - -* Wed Oct 14 2015 Kalev Lember - 3.18.1-1 -- Update to 3.18.1 - -* Mon Sep 21 2015 Kalev Lember - 3.18.0-1 -- Update to 3.18.0 - -* Thu Sep 17 2015 Kalev Lember - 3.17.92-1 -- Update to 3.17.92 -- Use make_install macro - -* Wed Jul 22 2015 David King - 3.16.0-3 -- Bump for new gnome-desktop3 - -* Wed Jun 17 2015 Fedora Release Engineering - 3.16.0-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Mon Mar 23 2015 Kalev Lember - 3.16.0-1 -- Update to 3.16.0 - -* Wed Mar 18 2015 Kalev Lember - 3.15.92-1 -- Update to 3.15.92 -- Remove patch fuzz 2 and drop two upstreamed patches -- Tighten deps with the _isa macro - -* Sat Mar 07 2015 Bastien Nocera 3.15.90-2 -- Fix SessionIsActive property thereby fixing screens not going to sleep -- Disable GConf autostart support - -* Thu Feb 19 2015 David King - 3.15.90-1 -- Update to 3.15.90 - -* Thu Jan 29 2015 David King - 3.15.4-1 -- Update to 3.15.4 -- Use license macro for COPYING -- Use pkgconfig for BuildRequires - -* Mon Jan 05 2015 Ray Strode 3.15.3-2 -- Fix crasher - Resolves: #1176413 - -* Fri Dec 19 2014 Richard Hughes - 3.15.3-1 -- Update to 3.15.3 - -* Sat Nov 01 2014 Richard Hughes - 3.14.0-2 -- Fix compile on RHEL - -* Mon Sep 22 2014 Kalev Lember - 3.14.0-1 -- Update to 3.14.0 - -* Sat Aug 16 2014 Fedora Release Engineering - 3.13.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild - -* Fri Jul 18 2014 Ray Strode 3.13.3-1 -- Update to 3.13.3 -- Fix classic mode - Resolves: #1120283 - -* Sat Jun 07 2014 Fedora Release Engineering - 3.12.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild - -* Wed May 07 2014 Kalev Lember - 3.12.1-2 -- Pull in xorg-x11-server-Xwayland for the wayland session - -* Wed Apr 16 2014 Kalev Lember - 3.12.1-1 -- Update to 3.12.1 - -* Tue Apr 15 2014 Ray Strode 3.12.0-3 -- Actually move wayland session to subpackage, instead of - copy it to subpackage - -* Tue Apr 08 2014 Ray Strode - 3.12.0-2 -- Move wayland session to a subpackage - -* Tue Mar 25 2014 Richard Hughes - 3.12.0-1 -- Update to 3.12.0 - -* Thu Mar 20 2014 Richard Hughes - 3.11.92-1 -- Update to 3.11.92 - -* Wed Feb 19 2014 Richard Hughes - 3.11.4-2 -- Rebuilt for gnome-desktop soname bump - -* Wed Jan 15 2014 Richard Hughes - 3.11.4-1 -- Update to 3.11.4 - -* Tue Dec 17 2013 Richard Hughes - 3.11.3-1 -- Update to 3.11.3 - -* Tue Nov 19 2013 Richard Hughes - 3.11.2-1 -- Update to 3.11.2 - -* Sun Nov 03 2013 Kalev Lember - 3.11.1-1 -- Update to 3.11.1 - -* Fri Nov 01 2013 Kalev Lember - 3.10.1-2 -- Backport patch for UPower 1.0 support - -* Mon Oct 14 2013 Richard Hughes - 3.10.1-1 -- Update to 3.10.1 - -* Wed Sep 25 2013 Richard Hughes - 3.10.0-1 -- Update to 3.10.0 - -* Tue Sep 03 2013 Kalev Lember - 3.9.91-1 -- Update to 3.9.91 - -* Thu Aug 22 2013 Kalev Lember - 3.9.90-1 -- Update to 3.9.90 -- Switch to unversioned docdirs (#993784) - -* Sat Aug 10 2013 Ray Strode 3.9.5-2 -- Remove vendor from desktop-file-install - -* Sat Aug 10 2013 Kalev Lember - 3.9.5-1 -- Update to 3.9.5 - -* Sat Aug 03 2013 Fedora Release Engineering - 3.8.2.1-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild - -* Sat Jun 22 2013 Matthias Clasen - 3.8.2.1-2 -- Trim %%changelog - -* Wed May 15 2013 Matthias Clasen - 3.8.2.1-1 -- Update to 3.8.2.1 -- Conditionally build session selector - -* Tue May 14 2013 Richard Hughes - 3.8.2-1 -- Update to 3.8.2 - -* Tue Apr 30 2013 Kalev Lember - 3.8.1-2 -- Use the upstream xsession desktop file -- Drop the fallback mode authentication agent autostart file - -* Mon Apr 15 2013 Kalev Lember - 3.8.1-1 -- Update to 3.8.1 - -* Thu Apr 11 2013 Adam Jackson 3.8.0-2 -- gnome-session-3.6.2-swrast.patch: Allow running on the classic software - renderer. No effect on arches where we build llvmpipe, but on ppc/s390 - classic swrast is marginally less painful than softpipe. - -* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 -- Update to 3.8.0 - -* Wed Mar 20 2013 Richard Hughes - 3.7.92-1 -- Update to 3.7.92 - -* Wed Mar 6 2013 Matthias Clasen - 3.7.91-1 -- Update to 3.7.91 - -* Sun Feb 24 2013 Matthias Clasen - 3.7.90-2 -- Drop obsolete requires (polkit-gnome, polkit-desktop-policy, - notification-daemon) - -* Wed Feb 20 2013 Richard Hughes - 3.7.90-1 -- Update to 3.7.90 - -* Wed Feb 06 2013 Kalev Lember - 3.7.4-1 -- Update to 3.7.4 - -* Thu Dec 20 2012 Kalev Lember - 3.7.3-1 -- Update to 3.7.3 -- Drop the upstreamed llvmpipe patch -- Adjust buildrequires - -* Tue Nov 20 2012 Richard Hughes - 3.7.2-1 -- Update to 3.7.2 - -* Fri Nov 09 2012 Kalev Lember - 3.7.1-1 -- Update to 3.7.1 - -* Thu Oct 18 2012 Florian Müllner - 3.6.1-2 -- Set XDG_MENU_PREFIX to pick the correct menu layout in - gnome-shell and alacarte - -* Tue Oct 16 2012 Kalev Lember - 3.6.1-1 -- Update to 3.6.1 - -* Tue Sep 25 2012 Matthias Clasen - 3.6.0-1 -- Update to 3.6.0 - -* Thu Sep 06 2012 Richard Hughes - 3.5.91-1 -- Update to 3.5.91 - -* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 -- Update to 3.5.5 - -* Fri Jul 27 2012 Fedora Release Engineering - 3.5.4-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild - -* Tue Jul 17 2012 Richard Hughes - 3.5.4-1 -- Update to 3.5.4 - -* Thu Jun 07 2012 Richard Hughes - 3.5.2-1 -- Update to 3.5.2 - -* Fri May 18 2012 Richard Hughes - 3.4.2-1 -- Update to 3.4.2 - -* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 -- Silence rpm scriptlet output - -* Tue Apr 17 2012 Kalev Lember - 3.4.1-1 -- Update to 3.4.1 -- Dropped upstreamed systemd patch - -* Thu Apr 5 2012 Matthias Clasen - 3.4.0-2 -- Fix a looping PolicyKit dialog on shutdown - -* Tue Mar 27 2012 Richard Hughes - 3.4.0-1 -- Update to 3.4.0 - -* Thu Mar 22 2012 Adam Williamson - 3.3.92-2 -- blacklist NV30 family until RH #745202 is resolved - -* Wed Mar 21 2012 Kalev Lember - 3.3.92-1 -- Update to 3.3.92 - -* Sun Feb 26 2012 Matthias Clasen - 3.3.90-1 -- Update to 3.3.90 - -* Thu Feb 9 2012 Matthias Clasen - 3.3.5-2 -- Fix a bug in the new system interface registration - -* Tue Feb 7 2012 Matthias Clasen - 3.3.5-1 -- Update to 3.3.5 -- Use systemd for session tracking - -* Fri Jan 13 2012 Fedora Release Engineering - 3.3.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild - -* Wed Dec 21 2011 Matthias Clasen 3.3.3-1 -- Update to 3.3.3 - -* Tue Dec 13 2011 Adam Jackson 3.3.2-2 -- gnome-session-3.3.2-radeon.patch: Blacklist pre-R300 radeons (#758422) - -* Wed Nov 23 2011 Matthias Clasen 3.3.2-1 -- Update to 3.3.2 - -* Thu Nov 03 2011 Adam Jackson 3.3.1-2 -- gnome-session-3.3.1-llvmpipe.patch: Don't consider llvmpipe unsupported. - -* Wed Nov 2 2011 Matthias Clasen - 3.3.1-1 -- Update to 3.3.1 - -* Wed Oct 26 2011 Fedora Release Engineering - 3.2.1-2 -- Rebuilt for glibc bug#747377 - -* Tue Oct 18 2011 Matthias Clasen - 3.2.1-1 -- Update to 3.2.1 - -* Tue Sep 27 2011 Ray - 3.2.0-1 -- Update to 3.2.0 - -* Tue Sep 20 2011 Matthias Clasen 3.1.92-1 -- Update to 3.1.92 - -* Fri Sep 9 2011 Matthias Clasen 3.1.91-3 -- Some fixes to make gdm fallback mode login work - -* Thu Sep 8 2011 Matthias Clasen 3.1.91-2 -- Drop GConf2-gtk dep - -* Tue Sep 6 2011 Matthias Clasen 3.1.91-1 -- Update to 3.1.91 - -* Wed Aug 31 2011 Matthias Clasen 3.1.90-1 -- Update to 3.1.90 - -* Wed Aug 17 2011 Matthias Clasen 3.1.5-1 -- Update to 3.1.5 - -* Mon Jul 04 2011 Bastien Nocera 3.1.3-1 -- Update to 3.1.3 - -* Wed Jun 15 2011 Tomas Bzatek - 3.1.2-1 -- Update to 3.1.2 - -* Wed Apr 27 2011 Owen Taylor - 3.0.1-2 -- Add a quick-and-dirty blacklist for Radeon R100, R200, Intel 8xx - -* Tue Apr 26 2011 Matthias Clasen 3.0.1-1 -- Update to 3.0.1 - -* Mon Apr 4 2011 Matthias Clasen 3.0.0-1 -- Update to 3.0.0 - -* Mon Mar 28 2011 Matthias Clasen 2.91.94-1 -- Update to 2.91.94 - -* Wed Mar 23 2011 Ray Strode 2.91.93-1 -- Update to 2.91.93 - -* Wed Mar 23 2011 Matthias Clasen 2.91.92-1 -- Update to 2.91.92 - -* Wed Mar 9 2011 Matthias Clasen 2.91.91.3-1 -- Update to 2.91.91.3 - -* Wed Mar 9 2011 Matthias Clasen 2.91.91.2-1 -- Update to 2.91.91.2 - -* Tue Mar 8 2011 Matthias Clasen 2.91.91-2 -- Fix the check-accel utility exit status - -* Mon Mar 7 2011 Matthias Clasen 2.91.91-1 -- Update to 2.91.91 - -* Mon Feb 28 2011 Matthias Clasen 2.91.90-5 -- Make the new if-session Autostart condition work - -* Mon Feb 28 2011 Matthias Clasen 2.91.90-4 -- Fix the autostart syntax - -* Tue Feb 22 2011 Matthias Clasen 2.91.90-3 -- Install an autostart file for the authentication agent - in the fallback session - -* Tue Feb 22 2011 Ray Strode 2.91.90-2 -- Fix crashity crash crash - -* Mon Feb 21 2011 Matthias Clasen 2.91.90-1 -- Update to 2.91.90 - -* Fri Feb 11 2011 Matthias Clasen 2.91.6-3 -- Rebuild against newer gtk - -* Tue Feb 08 2011 Fedora Release Engineering - 2.91.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild - -* Wed Feb 2 2011 Matthias Clasen 2.91.6-1 -- 2.91.6 - -* Tue Jan 25 2011 Matthias Clasen 2.91.4-3 -- Just require control-center-filesystem (#661565) - -* Fri Jan 14 2011 Matthias Clasen 2.91.4-2 -- Don't run the shell on softpipe - -* Sun Jan 9 2011 Matthias Clasen 2.91.4-1 -- Update to 2.91.4 - -* Fri Dec 3 2010 Matthias Clasen 2.91.0-7 -- Rebuild against new gtk - -* Sun Nov 07 2010 Ray Strode 2.91.0-6 -- Fix some cases where the inhibitor dialog shows up when it isn't - supposed to. - -* Tue Nov 2 2010 Matthias Clasen - 2.91.0-5 -- Prepare for libnotify 0.7.0 - -* Mon Nov 1 2010 Matthias Clasen - 2.91.0-4 -- Rebuild against newer gtk3 - -* Tue Oct 26 2010 Parag Nemade - 2.91.0-3 -- Gconf2 scriptlet accepts schema file names without file extension. - -* Fri Oct 15 2010 Parag Nemade - 2.91.0-2 -- Merge-review cleanup (#225835) - -* Wed Oct 6 2010 Matthias Clasen - 2.91.0-1 -- Update to 2.91.0 - -* Thu Sep 30 2010 Matthias Clasen - 2.32.0-1 -- Update to 2.32.0 - -* Wed Sep 29 2010 jkeating - 2.31.6-3 -- Rebuilt for gcc bug 634757 - -* Tue Sep 21 2010 Ray Strode - 2.31.6-2 -- build fixes - -* Fri Aug 6 2010 Matthias Clasen - 2.31.6-1 -- Update to 2.31.6 - -* Thu Jul 8 2010 Matthias Clasen - 2.31.2-2 -- Require dconf - -* Thu May 27 2010 Matthias Clasen - 2.31.2-1 -- Update to 2.31.2 - -* Fri May 07 2010 Colin Walters - 2.30.0-2 -- Use upstream commit for library linking - -* Mon Mar 29 2010 Matthias Clasen - 2.30.0-1 -- Update to 2.30.0 - -* Tue Mar 09 2010 Bastien Nocera 2.29.92-1 -- Update to 2.29.92 - -* Thu Feb 11 2010 Matthias Clasen - 2.29.6-1 -- Update to 2.29.6 - -* Fri Jan 15 2010 Ray Strode - 2.28.0-4 -- Nag user if they try to log in as root - -* Fri Nov 6 2009 Matthias Clasen - 2.28.0-3 -- Add ability to perform actions after a period of idleness - -* Fri Oct 23 2009 Matthias Clasen - 2.28.0-2 -- Avoid a crash on certain xsmp error conditions - -* Wed Sep 23 2009 Matthias Clasen - 2.28.0-1 -- Update to 2.28.0 - -* Wed Sep 9 2009 Matthias Clasen - 2.27.92-1 -- Update to 2.27.92 - -* Thu Aug 13 2009 Matthias Clasen - 2.27.5-2 -- Require polkit-desktop-policy - -* Tue Jul 28 2009 Matthias Clasen - 2.27.5-1 -- Update to 2.27.5 - -* Fri Jul 24 2009 Fedora Release Engineering - 2.27.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild - -* Mon Jul 20 2009 Matthias Clasen - 2.27.4-2 -- Require polkit-gnome, we need an authentication agent in the session - -* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 -- Update to 2.27.4 - -* Fri Jul 10 2009 Matthias Clasen - 2.26.1-5 -- Avoid pointless warnings - -* Sun Jun 14 2009 Matthias Clasen - 2.26.1-4 -- Drop unused files - -* Fri Jun 12 2009 Matthias Clasen - 2.26.1-3 -- Fix some oversights in the PolicyKit port - -* Tue May 12 2009 Matthias Clasen - 2.26.1-2 -- Port to PolicyKit 1 - -* Tue Apr 14 2009 Matthias Clasen - 2.26.1-1 -- Update to 2.26.1 -- See http://download.gnome.org/sources/gnome-session/2.26/gnome-session-2.26.1.news - -* Wed Apr 8 2009 Matthias Clasen - 2.26.0.90-1 -- Update to 2.26.0.90 - -* Sun Apr 5 2009 Matthias Clasen - 2.26.0-2 -- Avoid some warnings (#493688) - -* Mon Mar 16 2009 Matthias Clasen - 2.26.0-1 -- Update to 2.26.0 - -* Fri Mar 6 2009 Matthias Clasen - 2.25.92-2 -- Turn off excessive debug spew - -* Tue Mar 3 2009 Matthias Clasen - 2.25.92-1 -- Update to 2.25.92 - -* Thu Feb 26 2009 Matthias Clasen - 2.25.91-4 -- Make -xsession arch again -- Fix xsync usage - -* Tue Feb 24 2009 Matthias Clasen - 2.25.91-3 -- Make -xsession noarch - -* Tue Feb 24 2009 Fedora Release Engineering - 2.25.91-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild - -* Wed Feb 18 2009 Matthias Clasen - 2.25.91-1 -- Update to 2.25.91 - -* Tue Feb 3 2009 Matthias Clasen - 2.25.90-1 -- Update to 2.25.90 - -* Tue Jan 20 2009 Matthias Clasen - 2.25.5-2 -- Update to 2.25.5 -- Fix BuildRequires - -* Wed Dec 17 2008 Matthias Clasen - 2.25.3-1 -- Update to 2.25.3 - -* Thu Dec 4 2008 Matthias Clasen - 2.25.2-2 -- Update to 2.25.2 - -* Tue Nov 25 2008 Matthias Clasen - 2.24.1-5 -- Spec file cleanups - -* Mon Nov 10 2008 Matthias Clasen - 2.24.1-4 -- Fix client registration in some cases - -* Sun Oct 26 2008 Matthias Clasen - 2.24.1-3 -- Make the capplet resizable (#468577) - -* Wed Oct 22 2008 Matthias Clasen - 2.24.1-1 -- Update to 2.24.1 -- Drop upstreamed patches - -* Wed Oct 15 2008 Ray Strode - 2.24.0-11 -- Remove some dubious code to fix panel race at startup that - would make shutdown menu item disappear for some users. - -* Fri Oct 10 2008 Ray Strode - 2.24.0-10 -- Rewrite patch another time leverage better api and be more - terse - -* Fri Oct 10 2008 Ray Strode - 2.24.0-9 -- Bring shutdown menu item back. More fallout from my buggy - patch introduced in -7 - -* Thu Oct 9 2008 Ray Strode - 2.24.0-8 -- Fix assertion failure in last patch - -* Thu Oct 9 2008 Ray Strode - 2.24.0-7 -- Add new api for panel to figure out whether or not to show - Shutdown menu item. - -* Fri Oct 3 2008 Matthias Clasen - 2.24.0-6 -- Fix missing translations in the capplet -- Fix small UI issues in the capplet - -* Sun Sep 28 2008 Matthias Clasen - 2.24.0-5 -- BR xorg-x11-xtrans-devel (#464316) - -* Fri Sep 26 2008 Ray Strode - 2.24.0-4 -- Make the new xsession subpackage require the version of - gnome-session it's built against - -* Thu Sep 25 2008 Ray Strode - 2.24.0-3 -- Split gnome-session.desktop off into subpackage - -* Mon Sep 22 2008 Matthias Clasen - 2.24.0-2 -- Update to 2.24.0 -- Drop upstreamed patches - -* Thu Sep 18 2008 Matthias Clasen - 2.23.92-6 -- Plug memory leaks - -* Thu Sep 18 2008 Matthias Clasen - 2.23.92-5 -- Plug memory leaks - -* Mon Sep 15 2008 Matthias Clasen - 2.23.92-4 -- Plug memory leaks - -* Sun Sep 14 2008 Matthias Clasen - 2.23.92-3 -- Plug memory leaks - -* Sun Sep 14 2008 Matthias Clasen - 2.23.92-2 -- Plug memory leaks - -* Mon Sep 8 2008 Jon McCann - 2.23.92-1 -- Update to 2.23.92 - -* Tue Sep 2 2008 Matthias Clasen - 2.23.91-1 -- Update to 2.23.91 - -* Thu Aug 28 2008 Jon McCann - 2.23.91.0.2008.08.28.1 -- Update to snapshot - -* Fri Aug 22 2008 Matthias Clasen - 2.23.90-1 -- Update to 2.23.90 - -* Thu Aug 14 2008 Lennart Poettering - 2.23.6-4 -- Drop login/logout sound scripts since we do this now in libcanberra - -* Tue Aug 12 2008 Matthias Clasen - 2.23.6-3 -- Fix a crash in the at-spi-registryd-wrapper - -* Thu Aug 7 2008 Matthias Clasen - 2.23.6-2 -- Fix another icon name - -* Tue Aug 5 2008 Matthias Clasen - 2.23.6-1 -- Update to 2.23.6 - -* Wed Jul 30 2008 Jon McCann - 2.23.6.0.2008.07.30.1 -- New snapshot from DBus branch - -* Mon Jul 29 2008 Jon McCann - 2.23.6.0.2008.07.29.1 -- New snapshot from DBus branch - -* Mon Jul 28 2008 Jon McCann - 2.23.5.0.2008.07.28.1 -- New snapshot from DBus branch - -* Thu Jul 24 2008 Matthias Clasen - 2.23.5.0.2008.07.21.4 -- Fix a crash - -* Mon Jul 22 2008 Jon McCann - 2.23.5.0.2008.07.21.3 -- Add BuildRequires PolicyKit-gnome-devel - -* Mon Jul 21 2008 Jon McCann - 2.23.5.0.2008.07.21.2 -- New snapshot to fix build - -* Mon Jul 21 2008 Jon McCann - 2.23.5.0.2008.07.21.1 -- Snapshot from DBus branch - -* Wed Jul 9 2008 Matthias Clasen - 2.23.4.1-4 -- Fix a typo in the previous patch - -* Wed Jul 9 2008 Matthias Clasen - 2.23.4.1-3 -- Use more standard icon names - -* Tue Jul 8 2008 Matthias Clasen - 2.23.4.1-2 -- Escape comments for markup - -* Wed Jun 18 2008 Matthias Clasen - 2.23.4.1-1 -- Update to 2.23.4.1 - -* Wed Jun 4 2008 Matthias Clasen - 2.23.3-1 -- Update to 2.23.3 - -* Fri May 16 2008 Matthias Clasen - 2.23.2.2-3 -- Make nautilus start again - -* Thu May 15 2008 Matthias Clasen - 2.23.2.2-2 -- Don't crash while handling legacy sessions - -* Wed May 14 2008 Matthias Clasen - 2.23.2.2-1 -- Update to 2.23.2.2 - -* Fri Apr 25 2008 Matthias Clasen - 2.23.1-1 -- Update to 2.23.1 - -* Thu Apr 10 2008 Matthias Clasen - 2.22.1.1-1 -- Update to 2.22.1.1 (fixes a crash in the trash migration code) - -* Mon Apr 7 2008 Matthias Clasen - 2.22.1-1 -- Update to 2.22.1 - -* Sun Apr 6 2008 Matthias Clasen - 2.22.0-2 -- Drop gnome-volume-manager from the default session - -* Mon Mar 10 2008 Matthias Clasen - 2.22.0-1 -- Update to 2.22.0 - -* Thu Mar 06 2008 - Bastien Nocera - 2.21.93-1 -- Update to 2.21.93, drop esound dependencies and patches - -* Tue Feb 26 2008 Matthias Clasen - 2.21.92-1 -- Update to 2.21.92 - -* Tue Feb 12 2008 Matthias Clasen - 2.21.91-1 -- Update to 2.21.91 - -* Mon Feb 11 2008 - Bastien Nocera - 2.21.90-2 -- Add patch to make login sounds work -- Remove unneeded patch to launch gnome-user-share, it launches - using autostart now - -* Tue Jan 29 2008 Matthias Clasen - 2.21.90-1 -- Update to 2.21.90 - -* Tue Jan 15 2008 Matthias Clasen - 2.21.5-1 -- Update to 2.21.5 - -* Tue Nov 27 2007 Matthias Clasen - 2.20.2-1 -- Update to 2.20.2 (translation updates) - -* Tue Oct 30 2007 - Bastien Nocera - 2.20.1-2 -- Enable sound by default, without looking at the prefs - -* Mon Oct 15 2007 Matthias Clasen - 2.20.1-1 -- Update to 2.20.1 (translation updates) - -* Thu Sep 27 2007 Ray Strode - 2.20.0-2 -- drop redhat-artwork dep. We don't need it. - -* Mon Sep 17 2007 Matthias Clasen - 2.20.0-1 -- Update to 2.20.0 - -* Tue Sep 11 2007 Matthias Clasen - 2.19.92-3 -- Plug memory leaks in the ICE code - -* Wed Sep 5 2007 Kristian Høgsberg - 2.19.92-2 -- Update gnome-session-2.17.5-window-manager.patch to apply (remove - chunks that are now upstream). - -* Tue Sep 4 2007 Matthias Clasen - 2.19.92-1 -- Update to 2.19.92 - -* Thu Aug 23 2007 Adam Jackson - 2.19.90-2 -- Rebuild for build ID - -* Mon Aug 13 2007 Matthias Clasen - 2.19.90-1 -- Update to 2.19.90 - -* Fri Aug 10 2007 Kristian Høgsberg - 2.19.6-5 -- Edit window manager patch again to add 'glib' to compiz launch. - -* Thu Aug 9 2007 Kristian Høgsberg - 2.19.6-4 -- Edit the right window manager patch and delete the old one. - -* Thu Aug 9 2007 Kristian Høgsberg - 2.19.6-3 -- Export LIBGL_ALWAYS_INDIRECT before starting compiz. - -* Fri Aug 3 2007 Matthias Clasen - 2.19.6-2 -- Update license field - -* Mon Jul 30 2007 Matthias Clasen - 2.19.6-1 -- Update to 2.19.6 - -* Sun Jul 8 2007 Matthias Clasen - 2.19.5-1 -- Update to 2.19.5 - -* Fri Jul 6 2007 Matthias Clasen - 2.19.4-3 -- Move /usr/share/gnome/wm-properties to control-center-filesystem - -* Tue Jun 19 2007 Matthias Clasen - 2.19.4-2 -- Fix a hang on login with a11y - -* Sun Jun 17 2007 Matthias Clasen - 2.19.4-1 -- Update to 2.19.4 - -* Mon Jun 4 2007 Matthias Clasen - 2.19.3-1 -- Update to 2.19.3 -- Drop upstreamed patch - -* Tue May 22 2007 - Bastien Nocera - 2.19.2-2 -- Fix up logic in iris patch - -* Sun May 20 2007 Matthias Clasen - 2.19.2-1 -- Update to 2.19.2 - -* Tue May 15 2007 Ray Strode - 2.18.0-7 -- Don't show iris animation when using compiz (bug 237842) - -* Sun May 6 2007 Matthias Clasen - 2.18.0-6 -- Don't own /usr/share/applications - -* Sat Apr 14 2007 Matthias Clasen - 2.18.0-5 -- Add a dependency on dbus-x11 - -* Thu Apr 12 2007 David Zeuthen - 2.18.0-4 -- start same kind of AT's in session as started in gdm (#229912) - -* Fri Mar 30 2007 Ray Strode - 2.18.0-3 -- remove xdg autostart dir since it's part of filesystem now - -* Wed Mar 21 2007 Ray Strode - 2.18.0-2 -- remove eggcups from default session (bug 233261) - -* Tue Mar 13 2007 Matthias Clasen - 2.18.0-1 -- Update to 2.18.0 - -* Wed Feb 28 2007 Matthias Clasen - 2.17.92-1 -- Update to 2.17.92 - -* Fri Feb 23 2007 Jeremy Katz - 2.17.91-2 -- disable a11y registry timeout so that we don't get the popup with - the livecd (#227214) - -* Tue Feb 13 2007 Matthisa Clasen - 2.17.91-1 -- Update to 2.17.91 - -* Tue Feb 6 2007 Kristian Høgsberg - 2.17.90.1-3 -- Update gnome-session-2.15.90-window-manager.patch to start - gtk-window-decorator instead of gnome-window-decorator for compiz. - - [ Update: the patch is not applied and upstream gnome-session does - the right thing. ] - -* Mon Feb 5 2007 Matthias Clasen - 2.17.90.1-2 -- Require GConf2-gtk for gconf-sanity-check - -* Tue Jan 23 2007 Matthias Clasen - 2.17.90.1-1 -- Update to 2.17.90.1 - -* Sun Jan 21 2007 Matthias Clasen - 2.17.90-1 -- Update to 2.17.90 -- Clean up BuildRequires - -* Wed Jan 10 2007 Matthias Clasen - 2.17.5-1 -- Update to 2.17.5 - -* Mon Nov 27 2006 Ray Strode - 2.17.2-6 -- don't set http_proxy variable if proxy requires password (bug - 217332) - -* Wed Nov 22 2006 Matthias Clasen - 2.17.2-4 -- Own the /usr/share/gnome/wm-properties directory (#216514) - -* Mon Nov 20 2006 Ray Strode - 2.17.2-3 -- don't make gnome.desktop executable (bug 196105) - -* Sat Nov 11 2006 Matthias Clasen - 2.17.2-2 -- Fix gnome-wm for compiz - -* Tue Nov 7 2006 Matthias Clasen - 2.17.2-1 -- Update to 2.17.2 - -* Thu Oct 26 2006 Ray Strode - 2.16.1-2.fc7 -- don't hose users with a stale http_proxy variable if they - use autoconfiguration and uses to use manual configuration. - Patch by Mark McLoughlin (bug 212319) - -* Sat Oct 21 2006 Matthias Clasen - 2.16.1-1 -- Update to 2.16.1 - -* Wed Oct 18 2006 Matthias Clasen - 2.16.0-4 -- Fix scripts according to the packaging guidelines - -* Thu Sep 7 2006 Matthias Clasen - 2.16.0-3.fc6 -- Fix position of icons in the splash screen (#205508) - -* Wed Sep 6 2006 Ray Strode - 2.16.0-2.fc6 -- set http_proxy environment variable from GNOME settings - (bug 190041) - -* Mon Sep 4 2006 Matthias Clasen - 2.16.0-1.fc6 -- Update to 2.16.0 - -* Mon Aug 21 2006 Matthias Clasen - 2.15.92-1.fc6 -- Update to 2.15.92 -- Add %%preun and %%postun scripts - -* Mon Aug 14 2006 Ray Strode - 2.15.91-1.fc6 -- Update to 2.15.91 - -* Sun Aug 13 2006 Ray Strode - 2.15.90-4.fc6 -- fix window manager launching script. Patch from - Tim Vismor (bug 202312) - -* Fri Aug 11 2006 Ray Strode - 2.15.90-3.fc6 -- start gnome-window-decorator and pass "gconf" when invoking - compiz - -* Thu Aug 10 2006 Ray Strode - 2.15.90-2.fc6 -- update patch from 2.15.4-3 to be more session friendly (bug 201473) - -* Fri Aug 4 2006 Matthias Clasen - 2.15.90-1.fc6 -- Update to 2.15.90 - -* Thu Aug 3 2006 Soren Sandmann - 2.15.4-3 -- Add patch to (a) add configuration option for window manager, (b) start the window - manager, and (c) disable splash screen by default. - -* Wed Jul 19 2006 John (J5) Palmieri - 2.15.4-2 -- Add BR for dbus-glib-devel - -* Thu Jul 13 2006 Ray Strode - 2.15.4-1 -- Update to 2.15.4 - -* Wed Jul 12 2006 Jesse Keating - 2.15.1-5.1 -- rebuild - -* Mon Jun 12 2006 Bill Nottingham 2.15.1-5 -- remove obsolete automake14 buildreq - -* Fri Jun 9 2006 Matthias Clasen 2.15.1-4 -- Add more missing BuildRequires - -* Tue Jun 6 2006 Matthias Clasen 2.15.1-3 -- Add BuildRequires: intltool, autoconf, automake - -* Mon Jun 5 2006 Matthias Clasen - 2.15.1-2 -- Require system-logos, not fedora-logos - -* Wed May 10 2006 Matthias Clasen - 2.15.1-1 -- Update to 2.15.1 - -* Mon Apr 10 2006 Matthias Clasen - 2.14.1-2 -- Update to 2.14.1 - -* Mon Mar 13 2006 Matthias Clasen - 2.14.0-1 -- Update to 2.14.0 - -* Thu Mar 09 2006 Ray Strode - 2.13.92-5 -- fix up path creation functions - -* Thu Mar 09 2006 Ray Strode - 2.13.92-4 -- create ~/.config/autostart before trying to migrate - session-manual to it (bug 179602). - -* Mon Mar 06 2006 Ray Strode - 2.13.92-3 -- Patch from Vincent Untz to fix session editing (upstream bug 333641) -- Desensitize buttons for operations that the user isn't allowed - to do (bug 179479). - -* Wed Mar 01 2006 Karsten Hopp 2.13.92-2 -- BuildRequires: gnome-desktop-devel, libX11-devel, libXt-devel - -* Tue Feb 28 2006 Ray Strode - 2.13.92-1 -- Update to 2.13.92 -- Add patch from CVS HEAD to maintain compatibility with - version 2.13.91 - -* Thu Feb 23 2006 Ray Strode - 2.13.91-2 -- take ownership of autostart dir (bug 182335) - -* Mon Feb 13 2006 Matthias Clasen - 2.13.91-1 -- Update to 2.13.91 - -* Fri Feb 10 2006 Jesse Keating - 2.13.90-1.2 -- bump again for double-long bug on ppc(64) - -* Tue Feb 07 2006 Jesse Keating - 2.13.90-1.1 -- rebuilt for new gcc4.1 snapshot and glibc changes - -* Sat Jan 28 2006 Matthias Clasen - 2.13.90-1 -- Update to 2.13.90 - -* Tue Jan 17 2006 Matthias Clasen - 2.13.5-1 -- Update to 2.13.5 - -* Mon Jan 16 2006 Matthias Clasen - 2.13.4-2 -- Disable the fatal-criticals, since it crashes too much - -* Fri Jan 13 2006 Matthias Clasen - 2.13.4-1 -- Update to 2.13.4 - -* Thu Jan 12 2006 Ray Strode - 2.12.0-6 -- Fix screen corruption around splash screen shape (bug 177502) - -* Tue Dec 20 2005 John (J5) Palmieri - 2.12.0-5 -- Handle shaped window for splash screen - -* Fri Dec 09 2005 Jesse Keating -- rebuilt - -* Wed Nov 9 2005 Alexander Larsson - 2.12.0-4 -- Add gnome-user-share patch - -* Tue Nov 8 2005 Ray Strode - 2.12.0-3 -- fix up the dummy client ids to match the id passed initially - passed to the programs in the default session - (broke in last update). - -* Mon Oct 31 2005 Ray Strode - 2.12.0-2 -- remove rhn applet from default session -- s/magicdev/gnome-volume-manager/ - -* Thu Sep 8 2005 Matthias Clasen - 2.12.0-1 -- Update to 2.12.0 - -* Tue Sep 6 2005 Ray Strode - 2.11.91-3 -- Don't take ownership of /usr/share/xsessions (bug 145791). - -* Tue Aug 16 2005 Warren Togami - 2.11.91-2 -- rebuild for new cairo - -* Tue Aug 9 2005 Ray Strode - 2.11.91-1 -- Update to upstream version 2.11.91 (fixes bug 165357). -- drop some patches - -* Thu Apr 18 2005 Ray Strode - 2.10.0-2 -- Install gnome.desktop to /usr/share/xsessions (bug 145791) - -* Thu Mar 17 2005 Ray Strode - 2.10.0-1 -- Update to upstream version 2.10.0 - -* Wed Feb 2 2005 Matthias Clasen 2.9.4-1 -- Update to 2.9.4 - -* Mon Dec 20 2004 Daniel Reed 2.8.0-7 -- rebuild for new libhowl.so.0 library (for GnomeMeeting 1.2) (this was a mistake) - -* Tue Nov 02 2004 Ray Strode 2.8.0-6 -- Rebuild for devel branch - - * Tue Nov 02 2004 Ray Strode 2.8.0-5 -- Convert Tamil translation to UTF8 - (Patch from Lawrence Lim , bug 135351) - -* Fri Oct 08 2004 Ray Strode 2.8.0-4 -- Add g-v-m to default session since it wasn't already (?). -- Remove g-v-m from default session on s390 - -* Thu Oct 07 2004 Ray Strode 2.8.0-3 -- Check for NULL program name when looking for client - match in session. - -* Fri Sep 24 2004 Ray Strode 2.8.0-2 -- Add "Session" item to More Preferences menu - -* Fri Sep 17 2004 Ray Strode 2.8.0-1 -- Update to 2.8.0 -- Remove "Session" item from Preferences menu - -* Fri Sep 03 2004 Ray Strode 2.7.91-2 -- Fix from Federico for infamous hanging splash screen problem. - (http://bugzilla.gnome.org/show_bug.cgi?id=151664) - -* Tue Aug 31 2004 Ray Strode 2.7.91-1 -- Update to 2.7.91 - -* Wed Aug 18 2004 Ray Strode 2.7.4-3 -- Change folder name from "autostart" to more aptly named - "session-upgrades" from suggestion by Colin Walters. -- put non-upstream gconf key in rh_extensions - -* Wed Aug 18 2004 Ray Strode 2.7.4-2 -- Provide drop-a-desktop-file method of adding programs - to the user's session. - -* Fri Jul 30 2004 Ray Strode 2.7.4-1 -- Update to 2.7.4 - -* Wed Jul 14 2004 root - 2.6.0-7 -- Add patch to activate vino based on the "remote_access/enabled" - preference - -* Tue Jun 15 2004 Elliot Lee -- rebuilt - -* Mon Jun 14 2004 Ray Strode 2.6.0-5 -- Prevent having duplicate packages in different collections - -* Mon Jun 14 2004 Ray Strode 2.6.0-4 -- Use desktop-file-install instead of patching - session-properties.desktop. Add X-Red-Hat-Base category. - -* Thu Jun 10 2004 Ray Strode 2.6.0-3 -- Add terminating list delimiter to OnlyShowIn entry of - session-properties.desktop - -* Fri Apr 16 2004 Warren Togami 2.6.0-2 -- #110725 BR automake14 autoconf gettext - -* Wed Mar 31 2004 Mark McLoughlin 2.6.0-1 -- Update to 2.6.0 - -* Wed Mar 10 2004 Mark McLoughlin -- Update to 2.5.91 - -* Tue Feb 24 2004 Mark McLoughlin 2.5.90-1 -- Update to 2.5.90 -- Remove extraneous fontconfig BuildRequires -- Resolve conflicts with the icons and splash-repaint patches - -* Fri Feb 13 2004 Elliot Lee -- rebuilt - -* Mon Jan 26 2004 Alexander Larsson 2.5.3-1 -- Update to 2.5.3 - -* Wed Nov 05 2003 Than Ngo 2.4.0-2 -- don't show gnome-session-properties in KDE (bug #102533) - -* Fri Aug 29 2003 Alexander Larsson 2.3.7-3 -- fix up gnome.desktop location - -* Fri Aug 29 2003 Alexander Larsson 2.3.7-2 -- add gnome.desktop session for new gdm - -* Wed Aug 27 2003 Alexander Larsson 2.3.7-1 -- update to 2.3.7 -- require control-center (#100562) - -* Fri Aug 15 2003 Alexander Larsson 2.3.6.2-1 -- update for gnome 2.3 - -* Sun Aug 10 2003 Elliot Lee 2.2.2-4 -- Rebuild - -* Tue Jul 22 2003 Jonathan Blandford -- at-startup patch to add let at's start - -* Wed Jun 04 2003 Elliot Lee -- rebuilt - -* Tue Jun 3 2003 Jeff Johnson -- add explicit epoch's where needed. - -* Tue May 27 2003 Alexander Larsson 2.2.2-1 -- Update to 2.2.2 -- Add XRandR backport -- Fix up old patches, patch7 was upstream - -* Mon Feb 24 2003 Owen Taylor 2.2.0.2-5 -- Wait for GSD to start before continuing with session - -* Tue Feb 18 2003 Havoc Pennington 2.2.0.2-4 -- repaint proper area of text in splash screen, #84527 - -* Tue Feb 18 2003 Havoc Pennington 2.2.0.2-3 -- change icon for magicdev to one that exists in Bluecurve theme - (part of #84491) - -* Thu Feb 13 2003 Havoc Pennington 2.2.0.2-2 -- load icons from icon theme - -* Wed Feb 5 2003 Havoc Pennington 2.2.0.2-1 -- 2.2.0.2 - -* Tue Feb 4 2003 Jonathan Blandford -- remove extraneous separator. Still ugly. - -* Wed Jan 29 2003 Havoc Pennington -- add icons for the stuff in the default session #81489 - -* Wed Jan 22 2003 Tim Powers -- rebuilt - -* Sat Jan 11 2003 Havoc Pennington -- 2.1.90 -- drop purgedelay patch, as it was increased upstream (though only to 2 minutes instead of 5) - -* Fri Dec 6 2002 Tim Waugh 2.1.2-2 -- Add eggcups to default session. - -* Wed Nov 13 2002 Havoc Pennington -- 2.1.2 - -* Tue Sep 3 2002 Owen Taylor -- Up purge delay for session manager to 5 minutes to avoid problem - with openoffice.org timing out - -* Wed Aug 28 2002 Havoc Pennington -- put gdm session in here, conflict with old gdm -- use DITHER_MAX for dithering to make splash screen look good in 16 - bit - -* Tue Aug 27 2002 Havoc Pennington -- fix missing icons and misaligned text in splash - -* Fri Aug 23 2002 Tim Waugh -- Fix login sound disabling (bug #71664). - -* Wed Aug 14 2002 Havoc Pennington -- put rhn applet in default session - -* Wed Aug 14 2002 Havoc Pennington -- fix the session file, should speed up login a lot -- put magicdev in default session - -* Thu Aug 8 2002 Havoc Pennington -- 2.0.5 with more translations - -* Tue Aug 6 2002 Havoc Pennington -- 2.0.4 -- remove gnome-settings-daemon from default session - -* Wed Jul 31 2002 Havoc Pennington -- 2.0.3 -- remove splash screen, require redhat-artwork instead - -* Wed Jul 24 2002 Owen Taylor -- Set GTK_RC_FILES so we can change the gtk1 theme - -* Tue Jul 16 2002 Havoc Pennington -- pass --with-halt-command=/usr/bin/poweroff - --with-reboot-command=/usr/bin/reboot - -* Tue Jun 25 2002 Owen Taylor -- Version 2.0.1, fixing missing po files - -* Wed Jun 19 2002 Havoc Pennington -- put in new default session with pam-panel-icon -- disable schema install in make install, fixes rebuild failure. - -* Sun Jun 16 2002 Havoc Pennington -- rebuild with new libraries - -* Thu Jun 13 2002 Havoc Pennington -- rebuild in different environment - -* Thu Jun 13 2002 Havoc Pennington -- add fix from Nalin to build require usermode - -* Tue Jun 11 2002 Havoc Pennington -- 2.0.0 - -* Mon Jun 10 2002 Havoc Pennington -- install the schemas, so we get a logout dialog and splash -- put in the splash from 7.3 - -* Sun Jun 09 2002 Havoc Pennington -- rebuild in different environment - -* Sun Jun 09 2002 Havoc Pennington -- rebuild in new environment, require newer gtk2 - -* Sun Jun 9 2002 Havoc Pennington -- remove obsoletes/provides gnome-core - -* Fri Jun 07 2002 Havoc Pennington -- rebuild in different environment - -* Wed Jun 5 2002 Havoc Pennington -- 1.5.21 - -* Sun May 26 2002 Tim Powers -- automated rebuild - -* Tue May 21 2002 Havoc Pennington -- rebuild in different environment - -* Tue May 21 2002 Havoc Pennington -- 1.5.19 -- add more build reqs to chill out build system -- provide gnome-core - -* Fri May 3 2002 Havoc Pennington -- obsolete gnome-core -- 1.5.18 - -* Fri Apr 19 2002 Havoc Pennington -- default to metacity - -* Tue Apr 16 2002 Havoc Pennington -- Initial build. - - diff --git a/SOURCES/gnome-session-3.3.92-nv30.patch b/gnome-session-3.3.92-nv30.patch similarity index 100% rename from SOURCES/gnome-session-3.3.92-nv30.patch rename to gnome-session-3.3.92-nv30.patch diff --git a/SOURCES/gnome-session-3.6.2-swrast.patch b/gnome-session-3.6.2-swrast.patch similarity index 100% rename from SOURCES/gnome-session-3.6.2-swrast.patch rename to gnome-session-3.6.2-swrast.patch diff --git a/gnome-session.spec b/gnome-session.spec new file mode 100644 index 0000000..364dc58 --- /dev/null +++ b/gnome-session.spec @@ -0,0 +1,2001 @@ +## START: Set by rpmautospec +## (rpmautospec version 0.6.5) +## RPMAUTOSPEC: autorelease, autochangelog +%define autorelease(e:s:pb:n) %{?-p:0.}%{lua: + release_number = 8; + base_release_number = tonumber(rpm.expand("%{?-b*}%{!?-b:1}")); + print(release_number + base_release_number - 1); +}%{?-e:.%{-e*}}%{?-s:.%{-s*}}%{!?-n:%{?dist}} +## END: Set by rpmautospec + +%define po_package gnome-session-46 + +%if 0%{?fedora} +%else +%global with_session_selector 1 +%endif + +%global tarball_version %%(echo %{version} | tr '~' '.') + +Name: gnome-session +Version: 46.0 +Release: %autorelease +Summary: GNOME session manager + +License: GPL-2.0-or-later +URL: https://gitlab.gnome.org/GNOME/gnome-session +Source: https://download.gnome.org/sources/gnome-session/46/%{name}-%{tarball_version}.tar.xz + +# Blacklist NV30: https://bugzilla.redhat.com/show_bug.cgi?id=745202 +Patch: gnome-session-3.3.92-nv30.patch +Patch: gnome-session-3.6.2-swrast.patch +# https://bugzilla.gnome.org/show_bug.cgi?id=772421 +Patch: 0001-check-accelerated-gles-Use-eglGetPlatformDisplay-EXT.patch +# For https://fedoraproject.org/w/index.php?title=Changes/HiddenGrubMenu +# This should go upstream once systemd has a generic interface for this +Patch: 0001-Fedora-Set-grub-boot-flags-on-shutdown-reboot.patch +# https://issues.redhat.com/browse/RHEL-86871 +Patch: 0001-systemd-Drop-blocking-inhibitors-before-shutdown.patch + +Patch: subscription-manager.patch + +BuildRequires: meson +BuildRequires: gcc +BuildRequires: pkgconfig(egl) +BuildRequires: pkgconfig(gl) +BuildRequires: pkgconfig(glesv2) +BuildRequires: pkgconfig(gnome-desktop-3.0) +BuildRequires: pkgconfig(gtk+-3.0) +BuildRequires: pkgconfig(libsystemd) +BuildRequires: pkgconfig(ice) +BuildRequires: pkgconfig(json-glib-1.0) +BuildRequires: pkgconfig(sm) +BuildRequires: pkgconfig(systemd) +BuildRequires: pkgconfig(x11) +BuildRequires: pkgconfig(xau) +BuildRequires: pkgconfig(xcomposite) +BuildRequires: pkgconfig(xext) +BuildRequires: pkgconfig(xrender) +BuildRequires: pkgconfig(xtrans) +BuildRequires: pkgconfig(xtst) + +# this is so the configure checks find /usr/bin/halt etc. +BuildRequires: usermode + +BuildRequires: gettext +BuildRequires: intltool +BuildRequires: xmlto +BuildRequires: /usr/bin/xsltproc + +# an artificial requires to make sure we get dconf, for now +Requires: dconf + +Requires: system-logos +# Needed for gnome-settings-daemon +Requires: control-center-filesystem + +Requires: gsettings-desktop-schemas >= 0.1.7 + +Requires: dbus +Obsoletes: gnome-session-xsession <= 46.0 + +# https://github.com/containers/composefs/pull/229#issuecomment-1838735764 +%if 0%{?rhel} >= 10 +ExcludeArch: %{ix86} +%endif + + +%description +gnome-session manages a GNOME desktop or GDM login session. It starts up +the other core GNOME components and handles logout and saving the session. + +%package wayland-session +Summary: Desktop file for wayland based gnome session +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: xorg-x11-server-Xwayland%{?_isa} >= 1.20.99.1 +Requires: gnome-shell + +%description wayland-session +Desktop file to add GNOME on wayland to display manager session menu. + +%prep +%autosetup -p1 -n %{name}-%{tarball_version} + +%build +%meson \ +%if 0%{?with_session_selector} + -Dsession_selector=true \ +%endif + %{nil} +%meson_build + +%install +%meson_install + +rm -rf $RPM_BUILD_ROOT%{_datadir}/xsessions + +%find_lang %{po_package} + +%ldconfig_scriptlets + +%files wayland-session +%{_datadir}/wayland-sessions/* + +%files -f %{po_package}.lang +%doc AUTHORS NEWS README +%license COPYING +%{_bindir}/gnome-session* +%{_libexecdir}/gnome-session-binary +%{_libexecdir}/gnome-session-check-accelerated +%{_libexecdir}/gnome-session-check-accelerated-gl-helper +%{_libexecdir}/gnome-session-check-accelerated-gles-helper +%{_libexecdir}/gnome-session-ctl +%{_libexecdir}/gnome-session-failed +%{_mandir}/man1/gnome-session*1.* +%{_datadir}/gnome-session/ +%dir %{_datadir}/xdg-desktop-portal +%{_datadir}/xdg-desktop-portal/gnome-portals.conf +%{_datadir}/doc/gnome-session/ +%{_datadir}/glib-2.0/schemas/org.gnome.SessionManager.gschema.xml +%{_userunitdir}/gnome-session* +%{_userunitdir}/gnome-launched-.scope.d/ + +%changelog +## START: Generated by rpmautospec +* Mon Apr 14 2025 Adrian Vovk - 46.0-8 +- Fix systemd v257+ inhibitors + +* Mon Feb 10 2025 Felipe Borges - 46.0-7 +- Reinstate Subscription Manager's autostart patch + +* Tue Oct 29 2024 Troy Dawson - 46.0-6 +- Bump release for October 2024 mass rebuild: + +* Thu Jul 11 2024 Ray Strode - 46.0-5 +- Add Obsoletes for removed subpackages + +* Thu Jul 11 2024 Ray Strode - 46.0-4 +- Drop xsession subpackage + +* Mon Jun 24 2024 Troy Dawson - 46.0-3 +- Bump release for June 2024 mass rebuild + +* Mon May 20 2024 Tomas Pelka - 46.0-2 +- Add gating.yaml via API + +* Mon May 06 2024 David King - 46.0-1 +- Update to 46.0 + +* Wed Mar 06 2024 David King - 46~rc-1 +- Update to 46.rc + +* Thu Feb 22 2024 Neal Gompa - 46~alpha-2 +- Mark the xsession subpackage as deprecated + +* Wed Jan 31 2024 Nieves Montero - 46~alpha-1 +- Update to 46~alpha + +* Wed Jan 24 2024 Fedora Release Engineering - 45.0-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Fri Jan 19 2024 Fedora Release Engineering - 45.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild + +* Thu Jan 18 2024 Troy Dawson - 45.0-6 +- Make i686 exclusion for RHEL only + +* Mon Jan 15 2024 Troy Dawson - 45.0-5 +- Re-enable i686 This is not a leaf package. Removing i686 affects too many + other packages. + +* Tue Jan 09 2024 Troy Dawson - 45.0-4 +- Exclude i686 + +* Tue Sep 19 2023 Kalev Lember - 45.0-3 +- Fix directory ownership for various co-owned directories + +* Tue Sep 19 2023 Kalev Lember - 45.0-2 +- Use standard whitespace in spec file + +* Tue Sep 19 2023 Kalev Lember - 45.0-1 +- Update to 45.0 + +* Sun Sep 17 2023 Jan Grulich - 44.0-4 +- Add gnome-portals.conf + +* Wed Sep 06 2023 Ray Strode - 44.0-3 +- Fix crash is gnome-session is started nested and inner instance is killed + +* Wed Jul 19 2023 Fedora Release Engineering - 44.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + +* Tue Mar 21 2023 David King - 44.0-1 +- Update to 44.0 + +* Mon Mar 06 2023 David King - 44~rc-1 +- Update to 44.rc + +* Thu Jan 19 2023 Fedora Release Engineering - 43.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + +* Tue Sep 20 2022 Kalev Lember - 43.0-1 +- Update to 43.0 + +* Mon Aug 22 2022 Kalev Lember - 42.0-4 +- Add missing systemd build dep + +* Thu Jul 21 2022 Fedora Release Engineering - 42.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + +* Wed Jul 20 2022 Kalev Lember - 42.0-2 +- Rebuilt for libgnome-desktop soname bump + +* Tue Mar 22 2022 David King - 42.0-1 +- Update to 42.0 + +* Thu Jan 20 2022 Fedora Release Engineering - 41.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + +* Wed Jan 12 2022 David King - 41.3-1 +- Update to 41.3 + +* Tue Oct 12 2021 Ray Strode - 40.1.1-3 +- Install gnome-wayland session + +* Thu Jul 22 2021 Fedora Release Engineering - 40.1.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + +* Wed Apr 28 2021 Kalev Lember - 40.1.1-1 +- Update to 40.1.1 + +* Tue Apr 27 2021 Kalev Lember - 40.1-1 +- Update to 40.1 + +* Tue Apr 13 2021 Kalev Lember - 40.0-1 +- Update to 40.0 + +* Tue Feb 23 2021 Kalev Lember - 40~beta-3 +- Update upstream URLs + +* Tue Feb 23 2021 Kalev Lember - 40~beta-2 +- Drop changelog trimming as it's set by default in the build system now + +* Tue Feb 23 2021 Kalev Lember - 40~beta-1 +- Update to 40.beta + +* Mon Feb 01 2021 Olivier Fourdan - 3.38.0-3 +- Add dependency on Xwayland standalone package + +* Tue Jan 26 2021 Fedora Release Engineering - 3.38.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Sat Sep 12 2020 Kalev Lember - 3.38.0-1 +- Update to 3.38.0 + +* Thu Sep 03 2020 Hans de Goede - 3.37.0-2 +- Remove downstream patch for the "Boot Options" menu Simplify downstream + patch for the "Hidden Grub Menu" integration + +* Mon Aug 17 2020 Kalev Lember - 3.37.0-1 +- Update to 3.37.0 + +* Sat Aug 01 2020 Fedora Release Engineering - 3.36.0-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Jul 27 2020 Fedora Release Engineering - 3.36.0-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Mon Mar 23 2020 Ray Strode - 3.36.0-3 +- actually add patch + +* Mon Mar 23 2020 Ray Strode - 3.36.0-2 +- Apply patch from upstream to allow Xorg after wayland. + +* Sun Mar 08 2020 Kalev Lember - 3.36.0-1 +- Update to 3.36.0 + +* Thu Feb 20 2020 Debarshi Ray - 3.35.3-3 +- Own %%%%{_userunitdir}/gnome-launched-.scope.d + +* Tue Jan 28 2020 Fedora Release Engineering - 3.35.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Jan 16 2020 Kalev Lember - 3.35.3-1 +- Update to 3.35.3 + +* Mon Jan 06 2020 Kalev Lember - 3.34.2-4 +- Rebuilt for libgnome-desktop soname bump + +* Mon Dec 16 2019 Benjamin Berg - 3.34.2-3 +- Fixup previous commit to install new file + +* Mon Dec 16 2019 Benjamin Berg - 3.34.2-2 +- Add patches for systemd scopes and to fix Xorg fallback +- Add patches to run applications in transient scopes + https://gitlab.gnome.org/GNOME/gnome-session/merge_requests/36 +- Add patches to quit gnome-session quickly if gnome-shell cannot start + https://gitlab.gnome.org/GNOME/gnome-session/merge_requests/35 + +* Thu Nov 28 2019 Kalev Lember - 3.34.2-1 +- Update to 3.34.2 + +* Fri Oct 11 2019 Benjamin Berg - 3.34.1-3 +- Add patches to ensure proper unit unloading after session shutdown + +* Tue Oct 08 2019 Benjamin Berg - 3.34.1-2 +- Add patch to strip blacklisted variables from autostart applications + environment + +* Mon Oct 07 2019 Kalev Lember - 3.34.1-1 +- Update to 3.34.1 + +* Mon Sep 23 2019 Benjamin Berg - 3.34.0-3 +- Stop certain environment variables from leaking betweens sessions + +* Thu Sep 19 2019 Debarshi Ray - 3.34.0-2 +- Stop NOTIFY_SOCKET from leaking into the GNOME environment + +* Wed Sep 11 2019 Kalev Lember - 3.34.0-1 +- Update to 3.34.0 + +* Wed Sep 04 2019 Kalev Lember - 3.33.92-1 +- Update to 3.33.92 + +* Mon Aug 26 2019 Kalev Lember - 3.33.90-2 +- Drop old versioned conflicts + +* Mon Aug 26 2019 Kalev Lember - 3.33.90-1 +- Update to 3.33.90 +- Rebase downstream patches + +* Mon Aug 12 2019 Kalev Lember - 3.33.4-1 +- Update to 3.33.4 + +* Thu Jul 25 2019 Fedora Release Engineering - 3.32.0-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Jul 21 2019 Kalev Lember - 3.32.0-2 +- Rebuilt for libgnome-desktop soname bump + +* Wed Mar 13 2019 Kalev Lember - 3.32.0-1 +- Update to 3.32.0 + +* Thu Jan 31 2019 Fedora Release Engineering - 3.31.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Mon Jan 07 2019 Kalev Lember - 3.31.4-1 +- Update to 3.31.4 + +* Thu Oct 11 2018 David Herrmann - 3.30.1-3 +- gnome-session: reduce 'dbus-x11' dependency to 'dbus' + +* Thu Sep 27 2018 Hans de Goede - 3.30.1-2 +- Add downstream patches implementing the "Boot Options" menu from: + https://wiki.gnome.org/Design/OS/BootOptions + +* Wed Sep 26 2018 Kalev Lember - 3.30.1-1 +- Update to 3.30.1 + +* Thu Sep 06 2018 Kalev Lember - 3.30.0-1 +- Update to 3.30.0 + +* Mon Aug 13 2018 Kalev Lember - 3.29.90-1 +- Update to 3.29.90 + +* Fri Jul 13 2018 Fedora Release Engineering - 3.28.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Mon May 21 2018 Christian Stadelmann - 3.28.1-3 +- Improve dependencies + +* Mon May 21 2018 Kalev Lember - 3.28.1-2 +- Drop an unused patch + +* Tue Apr 10 2018 Kalev Lember - 3.28.1-1 +- Update to 3.28.1 + +* Tue Mar 13 2018 Kalev Lember - 3.28.0-1 +- Update to 3.28.0 + +* Sun Mar 11 2018 Kalev Lember - 3.27.92-1 +- Update to 3.27.92 + +* Fri Mar 02 2018 Kalev Lember - 3.27.91-1 +- Update to 3.27.91 + +* Sat Feb 24 2018 Florian Müllner - 3.27.90.1-2 +- Build-require gcc + +* Tue Feb 13 2018 Ray Strode - 3.27.90.1-1 +- Update to 3.27.90.1 + +* Tue Feb 13 2018 Björn Esser - 3.27.4-6 +- Rebuild against newer gnome-desktop3 package + +* Fri Feb 09 2018 Bastien Nocera - 3.27.4-5 +- And fix install section for meson + +* Fri Feb 09 2018 Bastien Nocera - 3.27.4-4 +- Add missing meson BR + +* Fri Feb 09 2018 Bastien Nocera - 3.27.4-3 +- Fix missing condition + +* Fri Feb 09 2018 Bastien Nocera - 3.27.4-2 +- Use meson to build + +* Fri Feb 09 2018 Bastien Nocera - 3.27.4-1 +- Adjust required session components for gnome-settings-daemon 3.27.90 + +* Fri Feb 09 2018 Bastien Nocera - 3.26.1-5 +- Adjust required session components for gnome-settings-daemon 3.27.90 + +* Wed Feb 07 2018 Fedora Release Engineering - 3.26.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Fri Feb 02 2018 Igor Gnatenko - 3.26.1-3 +- Switch to %%ldconfig_scriptlets + +* Thu Jan 11 2018 Igor Gnatenko - 3.26.1-2 +- Remove obsolete scriptlets + +* Sun Oct 08 2017 Kalev Lember - 3.26.1-1 +- Update to 3.26.1 + +* Wed Sep 13 2017 Kalev Lember - 3.26.0-1 +- Update to 3.26.0 + +* Fri Sep 08 2017 Kalev Lember - 3.25.92-1 +- Update to 3.25.92 + +* Tue Aug 15 2017 Kalev Lember - 3.25.90-1 +- Update to 3.25.90 + +* Mon Jul 31 2017 Kalev Lember - 3.25.4-1 +- Update to 3.25.4 + +* Wed Jul 26 2017 Fedora Release Engineering - 3.25.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Mon Jul 10 2017 Bastien Nocera - 3.25.3-2 +- Remove upstreamed patches + +* Mon Jul 10 2017 Bastien Nocera - 3.25.3-1 +- + gnome-session-3.25.3-1 Update to 3.25.3 + +* Fri Jun 30 2017 Ray Strode - 3.24.1-4 +- gnome-autogen instead of autoreconf + +* Fri Jun 30 2017 Ray Strode - 3.24.1-3 +- autoreconf plz + +* Fri Jun 30 2017 Ray Strode - 3.24.1-2 +- Kill bus clients at log out Resolves: #1340203 +- Address crash in fail whale Related: #1384508 + +* Wed Apr 12 2017 Kalev Lember - 3.24.1-1 +- Update to 3.24.1 + +* Tue Mar 21 2017 Kalev Lember - 3.24.0-1 +- Update to 3.24.0 + +* Thu Mar 16 2017 Kalev Lember - 3.23.92-1 +- Update to 3.23.92 + +* Tue Feb 28 2017 Richard Hughes - 3.23.91-1 +- Update to 3.23.91 + +* Tue Feb 14 2017 Richard Hughes - 3.23.4.1-1 +- Update to 3.23.4.1 + +* Fri Feb 10 2017 Fedora Release Engineering - 3.23.2-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Oct 11 2016 Adam Jackson - 3.23.2-2 +- Prefer eglGetPlatformDisplay to eglGetDisplay + +* Tue Oct 11 2016 Bastien Nocera - 3.23.2-1 +- + gnome-session-3.23.2-1 +- Update to 3.23.2 + +* Mon Sep 19 2016 Kalev Lember - 3.22.0-3 +- Don't set group tags + +* Mon Sep 19 2016 Kalev Lember - 3.22.0-2 +- Use standard tag order in spec file + +* Mon Sep 19 2016 Kalev Lember - 3.22.0-1 +- Update to 3.22.0 + +* Fri Aug 19 2016 Kalev Lember - 3.21.90-1 +- Update to 3.21.90 + +* Tue Jul 26 2016 Kalev Lember - 3.21.4-1 +- Update to 3.21.4 + +* Wed Jun 22 2016 Richard Hughes - 3.21.3-2 +- Fix BRs + +* Wed Jun 22 2016 Richard Hughes - 3.21.3-1 +- Update to 3.21.3 + +* Wed Apr 13 2016 Kalev Lember - 3.20.1-1 +- Update to 3.20.1 + +* Tue Mar 22 2016 Kalev Lember - 3.20.0-1 +- Update to 3.20.0 + +* Tue Mar 15 2016 Kalev Lember - 3.19.92-1 +- Update to 3.19.92 + +* Mon Mar 07 2016 Kalev Lember - 3.19.91-1 +- Update to 3.19.91 + +* Wed Feb 03 2016 Dennis Gilmore - 3.19.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Thu Jan 21 2016 Kalev Lember - 3.19.4-1 +- Update to 3.19.4 + +* Wed Nov 11 2015 Ray Strode - 3.19.2-2 +- Add GNOME on Xorg session + +* Tue Nov 10 2015 Ray Strode - 3.19.2-1 +- Update to git snapshot + +* Fri Nov 06 2015 Ray Strode - 3.18.1.2-2 +- Add patch to make crash logging more obvious + +* Thu Oct 15 2015 Kalev Lember - 3.18.1.2-1 +- Update to 3.18.1.2 + +* Thu Oct 15 2015 Kalev Lember - 3.18.1.1-1 +- Update to 3.18.1.1 + +* Wed Oct 14 2015 Kalev Lember - 3.18.1-2 +- Add patch missing from previous commit + +* Wed Oct 14 2015 Kalev Lember - 3.18.1-1 +- Update to 3.18.1 + +* Mon Sep 21 2015 Kalev Lember - 3.18.0-1 +- Update to 3.18.0 + +* Thu Sep 17 2015 Kalev Lember - 3.17.92-2 +- Use make_install macro + +* Thu Sep 17 2015 Kalev Lember - 3.17.92-1 +- Update to 3.17.92 + +* Wed Jul 22 2015 David King - 3.16.0-3 +- Bump for new gnome-desktop3 + +* Wed Jun 17 2015 Dennis Gilmore - 3.16.0-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Mon Mar 23 2015 Kalev Lember - 3.16.0-1 +- Update to 3.16.0 + +* Wed Mar 18 2015 Kalev Lember - 3.15.92-4 +- Tighten deps with the _isa macro + +* Wed Mar 18 2015 Kalev Lember - 3.15.92-3 +- Don't edit Makefile.am from the spec file + +* Wed Mar 18 2015 Kalev Lember - 3.15.92-2 +- Remove patch fuzz 2 and drop two upstreamed patches + +* Wed Mar 18 2015 Kalev Lember - 3.15.92-1 +- Update to 3.15.92 + +* Fri Mar 06 2015 Bastien Nocera - 3.15.90-2 +- Fix SessionIsActive property thereby fixing screens not going to sleep +- Disable GConf autostart support + +* Thu Feb 19 2015 David King - 3.15.90-1 +- Update to 3.15.90 + +* Thu Jan 29 2015 David King - 3.15.4-3 +- Use pkgconfig for BuildRequires + +* Thu Jan 29 2015 David King - 3.15.4-2 +- Use license macro for COPYING + +* Thu Jan 29 2015 David King - 3.15.4-1 +- Update to 3.15.4 + +* Mon Jan 05 2015 Ray Strode - 3.15.3-2 +- Fix crasher + +* Fri Dec 19 2014 Richard Hughes - 3.15.3-1 +- Update to 3.15.3 + +* Sat Nov 01 2014 Richard Hughes - 3.14.0-3 +- Fix compile on RHEL + +* Thu Oct 30 2014 Richard Hughes - 3.14.0-2 +- Add an explicit entry in the filelists for gnome-session.html + +* Mon Sep 22 2014 Kalev Lember - 3.14.0-1 +- Update to 3.14.0 + +* Sat Aug 16 2014 Peter Robinson - 3.13.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Fri Jul 18 2014 Ray Strode - 3.13.3-1 +- Update to 3.13.3 + +* Sat Jun 07 2014 Dennis Gilmore - 3.12.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Wed May 07 2014 Kalev Lember - 3.12.1-2 +- Pull in xorg-x11-server-Xwayland for the wayland session + +* Tue Apr 15 2014 Kalev Lember - 3.12.1-1 +- Update to 3.12.1 + +* Tue Apr 15 2014 Ray Strode - 3.12.0-3 +- Actually move wayland session to subpackage, instead of copy it to + subpackage + +* Tue Apr 08 2014 Ray Strode - 3.12.0-2 +- Move wayland session to a subpackage + +* Tue Mar 25 2014 Richard Hughes - 3.12.0-1 +- Update to 3.12.0 + +* Thu Mar 20 2014 Richard Hughes - 3.11.92-1 +- Update to 3.11.92 + +* Wed Feb 19 2014 Richard Hughes - 3.11.4-2 +- Rebuilt for gnome-desktop soname bump + +* Wed Jan 15 2014 Richard Hughes - 3.11.4-1 +- Update to 3.11.4 + +* Tue Dec 17 2013 Richard Hughes - 3.11.3-1 +- Update to 3.11.3 + +* Tue Nov 19 2013 Richard Hughes - 3.11.2-1 +- Update to 3.11.2 + +* Sun Nov 03 2013 Kalev Lember - 3.11.1-1 +- Update to 3.11.1 + +* Fri Nov 01 2013 Kalev Lember - 3.10.1-2 +- Backport patch for UPower 1.0 support + +* Fri Oct 25 2013 Richard Hughes - 3.10.1-1 +- Update to 3.10.1 + +* Wed Sep 25 2013 Richard Hughes - 3.10.0-2 +- Fix file lists + +* Wed Sep 25 2013 Richard Hughes - 3.10.0-1 +- Update to 3.10.0 + +* Tue Sep 03 2013 Kalev Lember - 3.9.91-1 +- Update to 3.9.91 + +* Thu Aug 22 2013 Kalev Lember - 3.9.90-3 +- Avoid duplicate %%files entries + +* Thu Aug 22 2013 Kalev Lember - 3.9.90-2 +- Switch to unversioned docdirs + +* Thu Aug 22 2013 Kalev Lember - 3.9.90-1 +- Update to 3.9.90 + +* Thu Aug 22 2013 Kalev Lember - 3.9.5-4 +- Add back the gnome- prefix to gnome-session-properties desktop file so + that it matches with the executable name. + +* Sat Aug 10 2013 Ray Strode - 3.9.5-3 +- Bump release and add clog entry + +* Sat Aug 10 2013 Ray Strode - 3.9.5-2 +- drop --vendor from desktop-file-install call + +* Fri Aug 09 2013 Kalev Lember - 3.9.5-1 +- Update to 3.9.5 + +* Sat Aug 03 2013 Dennis Gilmore - 3.8.2.1-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + +* Sat Jun 22 2013 Matthias Clasen - 3.8.2.1-2 +- Trim changelog + +* Tue May 21 2013 Matthias Clasen - 3.8.2.1-1 +- 3.8.2.1 + +* Tue May 14 2013 Richard Hughes - 3.8.2-1 +- Update to 3.8.2 + +* Tue Apr 30 2013 Kalev Lember - 3.8.1-4 +- Drop dead files + +* Tue Apr 30 2013 Kalev Lember - 3.8.1-3 +- Drop the fallback mode authentication agent autostart file + +* Tue Apr 30 2013 Kalev Lember - 3.8.1-2 +- Use the upstream xsession desktop file instead of overwriting it with a + local copy from rpm. It's been included in the upstream tarball since + 2007. + +* Mon Apr 15 2013 Kalev Lember - 3.8.1-1 +- Update to 3.8.1 + +* Thu Apr 11 2013 Adam Jackson - 3.8.0-2 +- gnome-session-3.6.2-swrast.patch: Allow running on the classic software + +* Tue Mar 26 2013 Kalev Lember - 3.8.0-1 +- Update to 3.8.0 + +* Wed Mar 20 2013 Richard Hughes - 3.7.92-1 +- Update to 3.7.92 + +* Thu Mar 07 2013 Matthias Clasen - 3.7.91-1 +- 3.7.91 + +* Sun Feb 24 2013 Matthias Clasen - 3.7.90-3 +- drop obsolete requires + +* Wed Feb 20 2013 Kalev Lember - 3.7.90-2 +- Update the files list + +* Wed Feb 20 2013 Richard Hughes - 3.7.90-1 +- Update to 3.7.90 + +* Tue Feb 05 2013 Kalev Lember - 3.7.4-1 +- Update to 3.7.4 + +* Fri Dec 21 2012 Kalev Lember - 3.7.3-1 +- Update to 3.7.3 +- Drop the upstreamed llvmpipe patch +- Adjust buildrequires + +* Wed Nov 21 2012 Richard Hughes - 3.7.2-1 +- Update to 3.7.2 + +* Fri Nov 09 2012 Kalev Lember - 3.7.1-1 +- Update to 3.7.1 + +* Thu Oct 18 2012 Florian Müllner - 3.6.1-2 +- Add patch to set XDG_MENU_PREFIX + +* Tue Oct 16 2012 Kalev Lember - 3.6.1-1 +- Update to 3.6.1 + +* Wed Sep 26 2012 Matthias Clasen - 3.6.0-1 +- 3.6.0 + +* Thu Sep 06 2012 Richard Hughes - 3.5.91-1 +- Update to 3.5.91 + +* Tue Aug 07 2012 Richard Hughes - 3.5.5-1 +- Update to 3.5.5 + +* Fri Jul 27 2012 Dennis Gilmore - 3.5.4-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Jul 17 2012 Richard Hughes - 3.5.4-1 +- Update to 3.5.4 + +* Thu Jun 07 2012 Richard Hughes - 3.5.2-1 +- Update to 3.5.2 + +* Fri May 18 2012 Richard Hughes - 3.4.2-1 +- Update to 3.4.2 + +* Tue Apr 24 2012 Kalev Lember - 3.4.1-2 +- Silence rpm scriptlet output + +* Mon Apr 16 2012 Kalev Lember - 3.4.1-1 +- Update to 3.4.1 and dropped upstreamed 0001-Fix-some-problems-in-the- + systemd-code.patch + +* Mon Apr 16 2012 Matthias Clasen - 3.4.0-2 +- Fix a looping PolicyKit dialog + +* Thu Mar 29 2012 Richard Hughes - 3.4.0-1 +- Update to 3.4.0 + +* Fri Mar 23 2012 Adam Williamson - 3.3.92-2 +- blacklist NV30 adapters on nouveau until #745202 is fixed + +* Tue Mar 20 2012 Kalev Lember - 3.3.92-1 +- 3.3.92 + +* Tue Mar 20 2012 Matthias Clasen - 3.3.90-1 +- 3.3.90 + +* Fri Feb 10 2012 Matthias Clasen - 3.3.5-2 +- Fix a warning + +* Tue Feb 07 2012 Matthias Clasen - 3.3.5-1 +- 3.3.5 + +* Fri Jan 13 2012 Dennis Gilmore - 3.3.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Wed Dec 21 2011 Matthias Clasen - 3.3.3-1 +- 3.3.3 + +* Tue Dec 13 2011 Adam Jackson - 3.3.2-2 +- gnome-session-3.3.2-radeon.patch: Blacklist pre-R300 radeons (#758422) + +* Thu Nov 24 2011 Matthias Clasen - 3.3.2-1 +- 3.3.2 + +* Fri Nov 04 2011 Adam Jackson - 3.3.1-4 +- gnome-session-3.3.1-llvmpipe.patch: Don't consider llvmpipe unsupported. + +* Thu Nov 03 2011 Matthias Clasen - 3.3.1-3 +- fix file list + +* Thu Nov 03 2011 Matthias Clasen - 3.3.1-2 +- drop upstreamed patch + +* Wed Nov 02 2011 Matthias Clasen - 3.3.1-1 +- 3.3.1 + +* Wed Oct 26 2011 Dennis Gilmore - 3.2.1-2 +- Rebuilt for glibc bug#747377 + +* Tue Oct 18 2011 Matthias Clasen - 3.2.1-1 +- 3.2.1 + +* Tue Sep 27 2011 Ray Strode - 3.2.0-1 +- Update to 3.2.0 + +* Tue Sep 20 2011 Matthias Clasen - 3.1.92-1 +- 3.1.92 + +* Tue Sep 06 2011 Matthias Clasen - 3.1.91-2 +- fix BRs + +* Tue Sep 06 2011 Matthias Clasen - 3.1.91-1 +- 3.1.91 + +* Mon Jul 04 2011 Bastien Nocera - 3.1.3-1 +- Update to 3.1.3 + +* Wed Jun 15 2011 Tomas Bzatek - 3.1.2-1 +- Update to 3.1.2 + +* Wed Apr 27 2011 Owen W. Taylor - 3.0.1-2 +- Add a quick-and-dirty blacklist for Radeon R100, R200, Intel 8xx + +* Tue Apr 26 2011 Matthias Clasen - 3.0.1-1 +- sync with f15 + +* Mon Apr 04 2011 Matthias Clasen - 3.0.0-1 +- 3.0.03.0.03.0.0 + +* Mon Mar 28 2011 Matthias Clasen - 2.91.94-1 +- 2.91.94 + +* Wed Mar 23 2011 Ray Strode - 2.91.93-1 +- Update to 2.91.93 + +* Wed Mar 23 2011 Matthias Clasen - 2.91.92-2 +- 2.91.92 + +* Wed Mar 23 2011 Matthias Clasen - 2.91.92-1 +- 2.91.92 + +* Wed Mar 09 2011 Matthias Clasen - 2.91.91.3-1 +- .3 + +* Wed Mar 09 2011 Matthias Clasen - 2.91.91.2-2 +- drop a patch I upstreamed myself. doh + +* Wed Mar 09 2011 Matthias Clasen - 2.91.91.2-1 +- 2.91.91.2 + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-7 +- Fix check-accel utility + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-6 +- fix file list + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-5 +- fix file lists + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-4 +- grr, try again + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-3 +- Fix patch + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-2 +- fix build + +* Tue Mar 08 2011 Matthias Clasen - 2.91.91-1 +- 2.91.91 + +* Tue Mar 01 2011 Matthias Clasen - 2.91.90-8 +- Fix if-session + +* Mon Feb 28 2011 Matthias Clasen - 2.91.90-7 +- fix autostart syntax + +* Wed Feb 23 2011 Matthias Clasen - 2.91.90-6 +- Add an autostart file for the authentication agent + +* Tue Feb 22 2011 Ray Strode - 2.91.90-5 +- s/patch1/patch0/ + +* Tue Feb 22 2011 Ray Strode - 2.91.90-4 +- Fix crashity crash crash + +* Tue Feb 22 2011 Matthias Clasen - 2.91.90-3 +- Fix file list + +* Tue Feb 22 2011 Matthias Clasen - 2.91.90-2 +- Fix BRs + +* Tue Feb 22 2011 Matthias Clasen - 2.91.90-1 +- 2.91.90 + +* Fri Feb 11 2011 Matthias Clasen - 2.91.6-8 +- rebuild + +* Wed Feb 09 2011 Dennis Gilmore - 2.91.6-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-6 +- file list fixes + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-5 +- fx file lists + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-4 +- fix file list + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-3 +- fix gettext domain + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-2 +- forgotten sources + +* Wed Feb 02 2011 Matthias Clasen - 2.91.6-1 +- 2.91.6 + +* Tue Jan 25 2011 Matthias Clasen - 2.91.4-7 +- fix spec + +* Tue Jan 25 2011 Matthias Clasen - 2.91.4-6 +- don't require control-center + +* Fri Jan 14 2011 Matthias Clasen - 2.91.4-5 +- Don't run the shell on softpipe + +* Sun Jan 09 2011 Matthias Clasen - 2.91.4-4 +- fix file lists + +* Sun Jan 09 2011 Matthias Clasen - 2.91.4-3 +- BR mesa + +* Sun Jan 09 2011 Matthias Clasen - 2.91.4-2 +- 2.91.4 + +* Sun Jan 09 2011 Matthias Clasen - 2.91.4-1 +- 2.91.4 + +* Fri Dec 03 2010 Matthias Clasen - 2.91.0-9 +- rebuild + +* Sun Nov 07 2010 Ray Strode - 2.91.0-8 +- Fix weird dialog shown during login from GDM + +* Sun Nov 07 2010 Ray Strode - 2.91.0-7 +- drop unused patches + +* Wed Nov 03 2010 Matthias Clasen - 2.91.0-6 +- ensure we get the new libnotify + +* Tue Nov 02 2010 Matthias Clasen - 2.91.0-5 +- Prepare for libnotify 0.7.0 + +* Tue Nov 02 2010 Matthias Clasen - 2.91.0-4 +- rebuild + +* Tue Oct 26 2010 paragn - 2.91.0-3 +- Gconf2 scriptlet accepts schema file names without file extension. + +* Fri Oct 22 2010 paragn - 2.91.0-2 +- Merge-review cleanup (#225835) + +* Wed Oct 06 2010 Matthias Clasen - 2.91.0-1 +- 2.91.0 + +* Thu Sep 30 2010 Matthias Clasen - 2.32.0-3 +- fix build + +* Thu Sep 30 2010 Matthias Clasen - 2.32.0-2 +- update patch + +* Thu Sep 30 2010 Matthias Clasen - 2.32.0-1 +- 2.32.0 + +* Wed Sep 29 2010 Jesse Keating - 2.31.6-6 +- Rebuilt for gcc bug 634757 + +* Tue Sep 21 2010 Ray Strode - 2.31.6-5 +- Add upstream bug references to patches + +* Tue Sep 21 2010 Ray Strode - 2.31.6-4 +- Fix gnome-session to build against latest gtk3 + +* Sat Aug 07 2010 Matthias Clasen - 2.31.6-3 +- more file list fixes + +* Sat Aug 07 2010 Matthias Clasen - 2.31.6-2 +- fix file lists + +* Sat Aug 07 2010 Matthias Clasen - 2.31.6-1 +- 2.31.6 + +* Wed Jul 28 2010 Fedora Release Engineering - 2.31.2-3 +- dist-git conversion + +* Thu Jul 08 2010 Matthias Clasen - 2.31.2-2 +- require dconf + +* Fri May 28 2010 Matthias Clasen - 2.31.2-1 +- 2.31.2 + +* Wed May 19 2010 Matthias Clasen - 2.30.0-4 +- erroneous commit + +* Wed May 19 2010 Matthias Clasen - 2.30.0-3 +- Resolves: #553594 + +* Fri May 07 2010 Colin Walters - 2.30.0-2 +- Use upstream commit for library linking + +* Tue Mar 30 2010 Matthias Clasen - 2.30.0-1 +- 2.30.0 + +* Tue Mar 09 2010 Bastien Nocera - 2.29.92-1 +- Update to 2.29.92 + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-8 +- fix the file list + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-7 +- Fix file lists + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-6 +- try again + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-5 +- grr + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-4 +- damn silent build + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-3 +- make ld happy + +* Fri Feb 12 2010 Matthias Clasen - 2.29.6-2 +- drop obsolete patches + +* Thu Feb 11 2010 Matthias Clasen - 2.29.6-1 +- 2.29.6 + +* Fri Jan 15 2010 Ray Strode - 2.28.0-6 +- Nag user if they try to log in as root + +* Fri Jan 15 2010 Ray Strode - 2.28.0-5 +- Nag user if they try to log in as root + +* Wed Nov 25 2009 Bill Nottingham - 2.28.0-4 +- Fix typo that causes a failure to update the common directory. (releng + #2781) + +* Sat Nov 07 2009 Matthias Clasen - 2.28.0-3 +- Add ability to perform actions after a period of idleness + +* Mon Nov 02 2009 Matthias Clasen - 2.28.0-2 +- copy F12 work over + +* Thu Sep 24 2009 Matthias Clasen - 2.28.0-1 +- 2.28.0 + +* Sat Sep 12 2009 Matthias Clasen - 2.27.92-5 +- Fix file list + +* Wed Sep 09 2009 Matthias Clasen - 2.27.92-4 +- fix spec + +* Wed Sep 09 2009 Matthias Clasen - 2.27.92-3 +- 2.27.92 + +* Wed Sep 09 2009 Matthias Clasen - 2.27.92-2 +- fix spec + +* Wed Sep 09 2009 Matthias Clasen - 2.27.92-1 +- 2.27.92 + +* Thu Aug 13 2009 Matthias Clasen - 2.27.5-3 +- Require polkit-desktop-policy + +* Wed Jul 29 2009 Matthias Clasen - 2.27.5-2 +- fix BRs + +* Wed Jul 29 2009 Matthias Clasen - 2.27.5-1 +- 2.27.5 + +* Sat Jul 25 2009 Jesse Keating - 2.27.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Mon Jul 20 2009 Matthias Clasen - 2.27.4-3 +- require polkit-gnome + +* Thu Jul 16 2009 Matthias Clasen - 2.27.4-2 +- 2.27.4 + +* Wed Jul 15 2009 Matthias Clasen - 2.27.4-1 +- 2.27.4 + +* Fri Jul 10 2009 Matthias Clasen - 2.26.1-7 +- Avoid pointless warnings + +* Sun Jun 14 2009 Matthias Clasen - 2.26.1-6 +- fix spec + +* Sun Jun 14 2009 Matthias Clasen - 2.26.1-5 +- Drop dead files + +* Sat Jun 13 2009 Matthias Clasen - 2.26.1-4 +- add bug ref + +* Sat Jun 13 2009 Matthias Clasen - 2.26.1-3 +- fix some problems with the PolicyKit port + +* Wed Jun 10 2009 Matthias Clasen - 2.26.1-2 +- Port to PolicyKit 1 + +* Tue Apr 14 2009 Matthias Clasen - 2.26.1-1 +- 2.26.1 + +* Wed Apr 08 2009 Matthias Clasen - 2.26.0.90-1 +- 2.26.0.90 + +* Sun Apr 05 2009 Matthias Clasen - 2.26.0-2 +- avoid some warnings + +* Tue Mar 17 2009 Matthias Clasen - 2.26.0-1 +- 2.26.0 + +* Fri Mar 06 2009 Matthias Clasen - 2.25.92-2 +- Turn off excessive debug spew + +* Tue Mar 03 2009 Matthias Clasen - 2.25.92-1 +- 2.25.92 + +* Thu Feb 26 2009 Matthias Clasen - 2.25.91-5 +- fix xsync usage + +* Wed Feb 25 2009 Matthias Clasen - 2.25.91-4 +- fix spec + +* Wed Feb 25 2009 Matthias Clasen - 2.25.91-3 +- make -xsession noarch + +* Tue Feb 24 2009 Jesse Keating - 2.25.91-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Thu Feb 19 2009 Matthias Clasen - 2.25.91-1 +- 2.25.91 + +* Tue Feb 03 2009 Matthias Clasen - 2.25.90-2 +- fix file lists + +* Tue Feb 03 2009 Matthias Clasen - 2.25.90-1 +- 2.25.90 + +* Tue Jan 20 2009 Matthias Clasen - 2.25.5-3 +- fix BRs + +* Tue Jan 20 2009 Matthias Clasen - 2.25.5-2 +- Fix BuildRequires + +* Tue Jan 20 2009 Matthias Clasen - 2.25.5-1 +- 2.25.5 + +* Wed Dec 17 2008 Matthias Clasen - 2.25.3-1 +- 2.25.3 + +* Thu Dec 04 2008 Matthias Clasen - 2.25.2-2 +- libtool fun + +* Thu Dec 04 2008 Matthias Clasen - 2.25.2-1 +- 2.25.2 + +* Tue Nov 25 2008 Matthias Clasen - 2.24.1-5 +- spec file tweaks + +* Mon Nov 10 2008 Matthias Clasen - 2.24.1-4 +- fix some registration corner cases + +* Sun Oct 26 2008 Matthias Clasen - 2.24.1-3 +- add patch + +* Sun Oct 26 2008 Matthias Clasen - 2.24.1-2 +- make capplet window resizable + +* Wed Oct 22 2008 Matthias Clasen - 2.24.1-1 +- 2.24.1 + +* Wed Oct 15 2008 Ray Strode - 2.24.0-15 +- Remove some dubious code to fix panel race at startup that would make + shutdown menu item disappear for some users. + +* Fri Oct 10 2008 Ray Strode - 2.24.0-14 +- Rewrite patch another time leverage better api and be more terse + +* Fri Oct 10 2008 Ray Strode - 2.24.0-13 +- Bring shutdown menu item back. More fallout from my buggy patch + introduced in -7 + +* Fri Oct 10 2008 Ray Strode - 2.24.0-12 +- Fix assertion failure in last patch + +* Thu Oct 09 2008 Ray Strode - 2.24.0-11 +- Add upstream bug reference + +* Thu Oct 09 2008 Ray Strode - 2.24.0-10 +- Add new api for panel to figure out whether or not to show Shutdown menu + item. + +* Fri Oct 03 2008 Matthias Clasen - 2.24.0-9 +- some upstream patches + +* Fri Oct 03 2008 Matthias Clasen - 2.24.0-8 +- fix missing translations + +* Sun Sep 28 2008 Matthias Clasen - 2.24.0-7 +- don't listen on tcp sockets + +* Fri Sep 26 2008 Ray Strode - 2.24.0-6 +- Make the new xsession subpackage require the version of gnome-session + it's built against + +* Thu Sep 25 2008 Ray Strode - 2.24.0-5 +- complete the subpackage rename + +* Thu Sep 25 2008 Ray Strode - 2.24.0-4 +- Update subpackage name to be more sensible + +* Thu Sep 25 2008 Ray Strode - 2.24.0-3 +- Split gnome-session.desktop off into subpackage + +* Tue Sep 23 2008 Matthias Clasen - 2.24.0-2 +- drop upstreamed patches + +* Tue Sep 23 2008 Matthias Clasen - 2.24.0-1 +- 2.24.0 + +* Fri Sep 19 2008 Matthias Clasen - 2.23.92-6 +- more leak fixes + +* Thu Sep 18 2008 Matthias Clasen - 2.23.92-5 +- plug another leak + +* Mon Sep 15 2008 Matthias Clasen - 2.23.92-4 +- Another memory leak plugged + +* Mon Sep 15 2008 Matthias Clasen - 2.23.92-3 +- plug memory leaks + +* Mon Sep 15 2008 Matthias Clasen - 2.23.92-2 +- Plug some memory leaks + +* Mon Sep 08 2008 William Jon McCann - 2.23.92-1 +- Update to 2.23.92 + +* Wed Sep 03 2008 Matthias Clasen - 2.23.91-3 +- drop private patch + +* Wed Sep 03 2008 Matthias Clasen - 2.23.91-2 +- 2.23.91 + +* Thu Aug 28 2008 William Jon McCann - 2.23.91-1 +- Update to snapshot + +* Sat Aug 23 2008 Matthias Clasen - 2.23.90-1 +- 2.23.90 + +* Thu Aug 14 2008 Lennart Poettering - 2.23.6-7 +- Drop login/logout sound scripts since we do this now in libcanberra + +* Tue Aug 12 2008 Matthias Clasen - 2.23.6-6 +- fix a crash + +* Thu Aug 07 2008 Matthias Clasen - 2.23.6-5 +- fix patch + +* Thu Aug 07 2008 Matthias Clasen - 2.23.6-4 +- another icon name fix + +* Tue Aug 05 2008 Matthias Clasen - 2.23.6-3 +- 2.23.6 + +* Wed Jul 30 2008 William Jon McCann - 2.23.6-2 +- New snapshot from DBus branch + +* Wed Jul 30 2008 William Jon McCann - 2.23.6-1 +- New snapshot from DBus branch + +* Tue Jul 29 2008 William Jon McCann - 2.23.5-6 +- Add missing patch + +* Tue Jul 29 2008 William Jon McCann - 2.23.5-5 +- New snapshot from DBus branch + +* Thu Jul 24 2008 Matthias Clasen - 2.23.5-4 +- fix a crash + +* Tue Jul 22 2008 William Jon McCann - 2.23.5-3 +- Add BuildRequires PolicyKit-gnome-devel + +* Mon Jul 21 2008 William Jon McCann - 2.23.5-2 +- New snapshot to fix build + +* Mon Jul 21 2008 William Jon McCann - 2.23.5-1 +- Snapshot from DBus branch + +* Thu Jul 10 2008 Matthias Clasen - 2.23.4.1-5 +- fix the previous patch + +* Wed Jul 09 2008 Matthias Clasen - 2.23.4.1-4 +- add bug ref + +* Wed Jul 09 2008 Matthias Clasen - 2.23.4.1-3 +- use more standard icon names + +* Tue Jul 08 2008 Matthias Clasen - 2.23.4.1-2 +- fix some markup issues + +* Wed Jun 18 2008 Matthias Clasen - 2.23.4.1-1 +- 2.23.4.1 + +* Thu Jun 05 2008 Matthias Clasen - 2.23.3-2 +- drop obsolete patches + +* Wed Jun 04 2008 Matthias Clasen - 2.23.3-1 +- 2.23.3 + +* Sat May 17 2008 Matthias Clasen - 2.23.2.2-3 +- make nautilus start up again + +* Fri May 16 2008 Matthias Clasen - 2.23.2.2-2 +- fix a crash + +* Thu May 15 2008 Matthias Clasen - 2.23.2.2-1 +- 2.23.2.2 + +* Thu May 15 2008 Matthias Clasen - 2.23.2.1-2 +- fix file list + +* Thu May 15 2008 Matthias Clasen - 2.23.2.1-1 +- 2.23.2.1 + +* Sat Apr 26 2008 Matthias Clasen - 2.23.1.1-2 +- fix file list + +* Fri Apr 25 2008 Matthias Clasen - 2.23.1.1-1 +- try again + +* Fri Apr 25 2008 Matthias Clasen - 2.23.1-1 +- 2.23.1 + +* Fri Apr 11 2008 Matthias Clasen - 2.22.1.1-1 +- 2.22.1.1 + +* Mon Apr 07 2008 Matthias Clasen - 2.22.1-2 +- upload source + +* Mon Apr 07 2008 Matthias Clasen - 2.22.1-1 +- 2.22.1 + +* Sun Apr 06 2008 Matthias Clasen - 2.22.0-2 +- Drop gnome-volume-manager from the default session + +* Tue Mar 11 2008 Matthias Clasen - 2.22.0-1 +- 2.22.0 + +* Thu Mar 06 2008 Bastien Nocera - 2.21.93-2 +- Remove application of removed patch + +* Thu Mar 06 2008 Bastien Nocera - 2.21.93-1 +- Update to 2.21.93, drop esound dependencies and patches + +* Tue Feb 26 2008 Matthias Clasen - 2.21.92-1 +- 2.21.92 + +* Tue Feb 26 2008 Matthias Clasen - 2.21.91-2 +- 2.21.92 + +* Wed Feb 13 2008 Matthias Clasen - 2.21.91-1 +- 2.21.91 + +* Mon Feb 11 2008 Bastien Nocera - 2.21.90-3 +- Add patch to make login sounds work - Remove unneeded patch to launch + gnome-user-share, it launches using autostart now + +* Tue Jan 29 2008 Matthias Clasen - 2.21.90-2 +- fix deps + +* Tue Jan 29 2008 Matthias Clasen - 2.21.90-1 +- 2.21.90 + +* Tue Jan 15 2008 Matthias Clasen - 2.21.5-1 +- update patches + +* Tue Nov 27 2007 Matthias Clasen - 2.20.2-1 +- 2.20.2 + +* Tue Oct 30 2007 Bastien Nocera - 2.20.1-2 +- Enable sound by default, without looking at the prefs + +* Mon Oct 15 2007 Matthias Clasen - 2.20.1-1 +- 2.20.1 + +* Mon Oct 15 2007 Bill Nottingham - 2.20.0-3 +- makefile update to properly grab makefile.common + +* Thu Sep 27 2007 Ray Strode - 2.20.0-2 +- drop redhat-artwork dep. We don't need it. + +* Mon Sep 17 2007 Matthias Clasen - 2.20.0-1 +- 2.20.0 + +* Tue Sep 11 2007 Matthias Clasen - 2.19.92-3 +- fix memory leaks + +* Wed Sep 05 2007 Kristian Høgsberg - 2.19.92-2 +- Update gnome-session-2.17.5-window-manager.patch to apply (remove chunks + that are now upstream). + +* Tue Sep 04 2007 Matthias Clasen - 2.19.92-1 +- 2.19.92 + +* Thu Aug 23 2007 Adam Jackson - 2.19.90-2 +- Rebuild for build ID + +* Mon Aug 13 2007 Matthias Clasen - 2.19.90-1 +- 2.19.90 + +* Fri Aug 10 2007 Kristian Høgsberg - 2.19.6-5 +- Edit window manager patch again to add 'glib' to compiz launch. + +* Thu Aug 09 2007 Kristian Høgsberg - 2.19.6-4 +- Edit the right window manager patch and delete the old one. + +* Thu Aug 09 2007 Kristian Høgsberg - 2.19.6-3 +- Export LIBGL_ALWAYS_INDIRECT before starting compiz. + +* Fri Aug 03 2007 Matthias Clasen - 2.19.6-2 +- update license field + +* Tue Jul 31 2007 Matthias Clasen - 2.19.6-1 +- 2.19.6 + +* Mon Jul 09 2007 Matthias Clasen - 2.19.5-1 +- 2.19.5 + +* Fri Jul 06 2007 Matthias Clasen - 2.19.4-4 +- Move /usr/share/gnome/wm-properties to control-center-filesystem + +* Tue Jun 19 2007 Matthias Clasen - 2.19.4-3 +- Fix a hang at login + +* Sun Jun 17 2007 Matthias Clasen - 2.19.4-2 +- fix desktop file + +* Sun Jun 17 2007 Matthias Clasen - 2.19.4-1 +- update patches + +* Mon Jun 04 2007 Matthias Clasen - 2.19.3-1 +- 2.19.3 + +* Tue May 22 2007 Bastien Nocera - 2.19.2-2 +- Fix up logic in iris patch + +* Mon May 21 2007 Matthias Clasen - 2.19.2-1 +- 2.19.2 + +* Tue May 15 2007 Ray Strode - 2.18.0-8 +- add upstream bug reference for red hat bug 237842 + +* Tue May 15 2007 Ray Strode - 2.18.0-7 +- Don't show iris animation when using compiz (bug 237842) + +* Sun May 06 2007 Matthias Clasen - 2.18.0-6 +- directory ownership cleanup + +* Fri Apr 13 2007 Matthias Clasen - 2.18.0-5 +- Require dbus-x11 + +* Thu Apr 12 2007 David Zeuthen - 2.18.0-4 +- start same kind of AT's in session as started in gdm (#229912) + +* Fri Mar 30 2007 Ray Strode - 2.18.0-3 +- remove xdg autostart dir since it's part of filesystem now + +* Wed Mar 21 2007 Ray Strode - 2.18.0-2 +- remove eggcups from default session (bug 233261) + +* Tue Mar 13 2007 Matthias Clasen - 2.18.0-1 +- 2.18.0 + +* Wed Feb 28 2007 Matthias Clasen - 2.17.92-1 +- 2.17.92 + +* Fri Feb 23 2007 Jeremy Katz - 2.17.91-2 +- disable a11y registry timeout so that we don't get the popup with the + livecd (#227214) + +* Tue Feb 13 2007 Matthias Clasen - 2.17.91-1 +- 2.17.91 + +* Tue Feb 06 2007 Kristian Høgsberg - 2.17.90.1-5 +- Fix changelog comment. + +* Tue Feb 06 2007 Kristian Høgsberg - 2.17.90.1-4 +- Update gnome-session-2.17.5-window-manager.patch to start gtk-window- + decorator instead of gnome-window-decorator for compiz. + +* Mon Feb 05 2007 Matthias Clasen - 2.17.90.1-3 +- fix BRs + +* Mon Feb 05 2007 Matthias Clasen - 2.17.90.1-2 +- require GConf2-gtk + +* Tue Jan 23 2007 Matthias Clasen - 2.17.90.1-1 +- 2.17.90.1 + +* Mon Jan 22 2007 Matthias Clasen - 2.17.90-3 +- fix file lists + +* Mon Jan 22 2007 Matthias Clasen - 2.17.90-2 +- fix BRs + +* Mon Jan 22 2007 Matthias Clasen - 2.17.90-1 +- 2.17.90 + +* Thu Jan 11 2007 Ray Strode - 2.17.5-4 +- remove GNOME_COMPILE_WARNINGS + +* Thu Jan 11 2007 Ray Strode - 2.17.5-3 +- Update to 2.17.5 + +* Thu Jan 11 2007 Matthias Clasen - 2.17.5-2 +- some spec fixes + +* Thu Jan 11 2007 Matthias Clasen - 2.17.5-1 +- 2.17.5 + +* Mon Nov 27 2006 Ray Strode - 2.17.2-7 +- apply previously mentioned patch + +* Mon Nov 27 2006 Ray Strode - 2.17.2-6 +- don't set http_proxy variable if proxy requires password (bug 217332) + +* Wed Nov 22 2006 Matthias Clasen - 2.17.2-5 +- own a dir + +* Mon Nov 20 2006 Ray Strode - 2.17.2-4 +- don't make gnome.desktop executable (bug 196105) + +* Sun Nov 12 2006 Matthias Clasen - 2.17.2-3 +- fix gnome-wm for compiz + +* Tue Nov 07 2006 Matthias Clasen - 2.17.2-2 +- drop patch + +* Tue Nov 07 2006 Matthias Clasen - 2.17.2-1 +- 2.17.2 + +* Thu Oct 26 2006 Ray Strode - 2.16.1-3 +- change dist tag in changelog to be right + +* Thu Oct 26 2006 Ray Strode - 2.16.1-2 +- don't hose users with a stale http_proxy variable if they use + autoconfiguration and uses to use manual configuration. Patch by Mark + McLoughlin (bug 212319) + +* Sun Oct 22 2006 Matthias Clasen - 2.16.1-1 +- 2.16.1 + +* Wed Oct 18 2006 Matthias Clasen - 2.16.0-5 +- fix scripts + +* Fri Sep 08 2006 Matthias Clasen - 2.16.0-4 +- fix splash screen + +* Wed Sep 06 2006 Ray Strode - 2.16.0-3 +- rev release + +* Wed Sep 06 2006 Ray Strode - 2.16.0-2 +- set http_proxy environment variable from GNOME settings (bug 190041) + +* Tue Sep 05 2006 Matthias Clasen - 2.16.0-1 +- 2.16.0 + +* Tue Aug 22 2006 Matthias Clasen - 2.15.92-1 +- 2.15.92 + +* Mon Aug 14 2006 Ray Strode - 2.15.91-2 +- update sources file + +* Mon Aug 14 2006 Ray Strode - 2.15.91-1 +- Update to 2.15.91 + +* Sun Aug 13 2006 Ray Strode - 2.15.90-4 +- fix window manager launching script. Patch from Tim Vismor + (bug 202312) + +* Fri Aug 11 2006 Ray Strode - 2.15.90-3 +- start gnome-window-decorator and pass "gconf" when invoking compiz + +* Fri Aug 11 2006 Ray Strode - 2.15.90-2 +- update patch from 2.15.4-3 to be more session friendly (bug 201473) + +* Fri Aug 04 2006 Matthias Clasen - 2.15.90-1 +- 2.15.90 + +* Thu Aug 03 2006 sandmann - 2.15.4-4 +- Add patch to (a) add configuration option for window manager, (b) start + the window manager, and (c) disable splash screen by default. + +* Wed Jul 19 2006 John (J5) Palmieri - 2.15.4-3 +- Add BR for dbus-glib-devel + +* Thu Jul 13 2006 Ray Strode - 2.15.4-2 +- add buildreq on settings-daemon + +* Thu Jul 13 2006 Matthias Clasen - 2.15.4-1 +- 2.15.4 + +* Wed Jul 12 2006 Jesse Keating - 2.15.1-7 +- bumped for rebuild + +* Tue Jun 13 2006 Bill Nottingham - 2.15.1-6 +- remove obsolete automake14 buildreq + +* Sat Jun 10 2006 Matthias Clasen - 2.15.1-5 +- fix build reqs + +* Tue Jun 06 2006 Matthias Clasen - 2.15.1-4 +- bump req + +* Tue Jun 06 2006 Matthias Clasen - 2.15.1-3 +- fix build reqs + +* Mon Jun 05 2006 Matthias Clasen - 2.15.1-2 +- fix requires + +* Wed May 10 2006 Matthias Clasen - 2.15.1-1 +- 2.15.1 + +* Mon Apr 10 2006 Matthias Clasen - 2.14.1-1 +- 2.14.1 + +* Tue Mar 14 2006 Ray Strode - 2.14.0-2 +- drop unused patches + +* Mon Mar 13 2006 Matthias Clasen - 2.14.0-1 +- 2.14.0 + +* Thu Mar 09 2006 Ray Strode - 2.13.92-9 +- fix up path creation functions + +* Thu Mar 09 2006 Ray Strode - 2.13.92-8 +- create ~/.config/autostart before trying to migrate session-manual to it + (bug 179602). + +* Mon Mar 06 2006 Ray Strode - 2.13.92-7 +- Patch from Vincent Untz to fix session editing (upstream bug 333641) - + Desensitize buttons for operations that the user isn't allowed to do (bug + 179479). + +* Wed Mar 01 2006 Karsten Hopp - 2.13.92-6 +- BuildRequires: gnome-desktop-devel, libX11-devel, libXt-devel + +* Tue Feb 28 2006 Ray Strode - 2.13.92-5 +- create autostart dirs and leading paths + +* Tue Feb 28 2006 Ray Strode - 2.13.92-4 +- s/d/s/ + +* Tue Feb 28 2006 Ray Strode - 2.13.92-3 +- make backward-compat patch apply with -p1 + +* Tue Feb 28 2006 Ray Strode - 2.13.92-2 +- update sources + +* Tue Feb 28 2006 Ray Strode - 2.13.92-1 +- Update to 2.13.92 - Add patch from CVS HEAD to maintain compatibility + with version 2.13.91 + +* Fri Feb 24 2006 Ray Strode - 2.13.91-2 +- take ownership of autostart dir (bug 182335) + +* Mon Feb 13 2006 Matthias Clasen - 2.13.91-1 +- 2.13.91 + +* Sat Feb 11 2006 Jesse Keating - 2.13.90-3 +- bump for bug in double-long on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 2.13.90-2 +- bump for new gcc/glibc + +* Sat Jan 28 2006 Matthias Clasen - 2.13.90-1 +- 2.13.90 + +* Tue Jan 17 2006 Matthias Clasen - 2.13.5-1 +- 2.13.5 + +* Mon Jan 16 2006 Matthias Clasen - 2.13.4-3 +- No fatal criticals + +* Sat Jan 14 2006 Matthias Clasen - 2.13.4-2 +- Intltoolize acts up + +* Sat Jan 14 2006 Matthias Clasen - 2.13.4-1 +- 2.13.4 + +* Thu Jan 12 2006 Ray Strode - 2.12.0-11 +- Fix screen corruption around splash screen shape (bug 177502) + +* Thu Jan 12 2006 Ray Strode - 2.12.0-10 +- Fix screen corruption around splash screen shape (bug 177502) + +* Tue Dec 20 2005 John (J5) Palmieri - 2.12.0-9 +- Require fedora-logo >= 1.1.37 so we get the new splash image + +* Tue Dec 20 2005 John (J5) Palmieri - 2.12.0-8 +- fix shaped patch to possition icons in the right area and to shape the + window on every expose + +* Tue Dec 20 2005 John (J5) Palmieri - 2.12.0-7 +- add shaped window patch + +* Tue Dec 20 2005 John (J5) Palmieri - 2.12.0-6 +- Handle shaped windows for splash screen + +* Fri Dec 09 2005 Jesse Keating - 2.12.0-5 +- gcc update bump + +* Thu Nov 10 2005 Alexander Larsson - 2.12.0-4 +- Add gnome-user-share patch + +* Tue Nov 08 2005 Ray Strode - 2.12.0-3 +- fix up the dummy client ids to match the id passed initially passed to + the programs in the default session (broke in last update). + +* Mon Oct 31 2005 Ray Strode - 2.12.0-2 +- remove rhn applet from default session - s/magicdev/gnome-volume-manager/ + +* Thu Sep 08 2005 Matthias Clasen - 2.12.0-1 +- 2.12.0 + +* Tue Sep 06 2005 Ray Strode - 2.11.91-3 +- Don't take ownership of /usr/share/xsessions (bug 145791). + +* Wed Aug 17 2005 Warren Togami - 2.11.91-2 +- rebuild for new cairo + +* Tue Aug 09 2005 Ray Strode - 2.11.91-1 +- Update to upstream version 2.11.91 (fixes bug 165357). - drop some + patches + +* Mon Apr 18 2005 Ray Strode - 2.10.0-3 +- update gdm conflict release to -5 since -4 was already built + +* Mon Apr 18 2005 Ray Strode - 2.10.0-2 +- Install gnome.desktop to /usr/share/xsessions (bug 145791) + +* Thu Mar 17 2005 Ray Strode - 2.10.0-1 +- Update to upstream version 2.10.0 + +* Wed Feb 02 2005 Matthias Clasen - 2.9.4-3 +- Add a forgotten patch + +* Wed Feb 02 2005 Matthias Clasen - 2.9.4-2 +- Fix file lists + +* Wed Feb 02 2005 Matthias Clasen - 2.9.4-1 +- Update to 2.9.4 + +* Mon Dec 20 2004 dreed - 2.8.0-8 +- undo howl dependency (my mistake) + +* Mon Dec 20 2004 dreed - 2.8.0-7 +- rebuild for new libhowl.so.0 library (for GnomeMeeting 1.2) + +* Tue Nov 02 2004 Ray Strode - 2.8.0-6 +- Rebuild for devel branch + +* Fri Oct 08 2004 Ray Strode - 2.8.0-5 +- Ray Strode 2.8.0-4 - Add g-v-m to default session + since it wasn't already (?). - Remove g-v-m from default session on s390 + +* Thu Oct 07 2004 Ray Strode - 2.8.0-4 +- Check for NULL program name when looking for client match in session. + +* Fri Sep 24 2004 Ray Strode - 2.8.0-3 +- Add "Session" item to More Preferences menu + +* Fri Sep 17 2004 Ray Strode - 2.8.0-2 +- Upload new source tarball + +* Fri Sep 17 2004 Ray Strode - 2.8.0-1 +- Update to 2.8.0 - Remove "Session" item from Preferences menu + +* Thu Sep 09 2004 cvsdist - 2.7.91-2 +- auto-import changelog data from gnome-session-2.7.91-2.src.rpm Fri Sep 03 + 2004 Ray Strode 2.7.91-2 - Fix from Federico for + infamous hanging splash screen problem. + (http://bugzilla.gnome.org/show_bug.cgi?id=151664) + +* Thu Sep 09 2004 cvsdist - 2.7.91-1 +- auto-import changelog data from gnome-session-2.7.91-1.src.rpm Tue Aug 31 + 2004 Ray Strode 2.7.91-1 - Update to 2.7.91 + +* Thu Sep 09 2004 cvsdist - 2.7.4-3 +- auto-import gnome-session-2.7.4-3 from gnome-session-2.7.4-3.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.7.4-2 +- auto-import changelog data from gnome-session-2.7.4-2.src.rpm Mon Aug 30 + 2004 Ray Strode 2.7.4-2 - Provide drop-a-desktop- + file method of adding programs to the user's session. + +* Thu Sep 09 2004 cvsdist - 2.7.4-1 +- auto-import changelog data from gnome-session-2.7.4-1.src.rpm Fri Jul 30 + 2004 Ray Strode 2.7.4-1 - Update to 2.7.4 + +* Thu Sep 09 2004 cvsdist - 2.6.0-6 +- auto-import changelog data from gnome-session-2.6.0-7.src.rpm Wed Jul 14 + 2004 root - 2.6.0-7 - Add patch to + activate vino based on the "remote_access/enabled" preference + +* Thu Sep 09 2004 cvsdist - 2.6.0-5 +- auto-import changelog data from gnome-session-2.6.0-6.src.rpm Tue Jun 15 + 2004 Elliot Lee - rebuilt + +* Thu Sep 09 2004 cvsdist - 2.6.0-4 +- auto-import gnome-session-2.6.0-5 from gnome-session-2.6.0-5.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.6.0-3 +- auto-import changelog data from gnome-session-2.6.0-4.src.rpm Mon Jun 14 + 2004 Ray Strode 2.6.0-4 - Use desktop-file-install + instead of patching session-properties.desktop. Add X-Red-Hat-Base + category. + +* Thu Sep 09 2004 cvsdist - 2.6.0-2 +- auto-import changelog data from gnome-session-2.6.0-3.src.rpm Thu Jun 10 + 2004 Ray Strode 2.6.0-3 - Add terminating list + delimiter to OnlyShowIn entry of session-properties.desktop Fri Apr 16 + 2004 Warren Togami 2.6.0-2 - #110725 BR automake14 + autoconf gettext + +* Thu Sep 09 2004 cvsdist - 2.6.0-1 +- auto-import gnome-session-2.6.0-1 from gnome-session-2.6.0-1.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.5.91-1 +- auto-import gnome-session-2.5.91-1 from gnome-session-2.5.91-1.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.5.3-1 +- auto-import gnome-session-2.5.3-1 from gnome-session-2.5.3-1.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.4.0-2 +- auto-import changelog data from gnome-session-2.4.0-3.src.rpm Wed Mar 31 + 2004 Mark McLoughlin 2.4.0-3 - Fix X lock up on + logout with glib-2.4 installed (bug #119253) Wed Nov 05 2003 Than Ngo + 2.4.0-2 - don't show gnome-session-properties in KDE + (bug #102533) + +* Thu Sep 09 2004 cvsdist - 2.4.0-1 +- auto-import changelog data from gnome-session-2.4.0-1.src.rpm Fri Aug 29 + 2003 Alexander Larsson 2.3.7-3 - fix up gnome.desktop + location Fri Aug 29 2003 Alexander Larsson 2.3.7-2 - + add gnome.desktop session for new gdm Wed Aug 27 2003 Alexander Larsson + 2.3.7-1 - update to 2.3.7 - require control-center + (#100562) Fri Aug 15 2003 Alexander Larsson 2.3.6.2-1 + - update for gnome 2.3 Sun Aug 10 2003 Elliot Lee + 2.2.2-4 - Rebuild Tue Jul 22 2003 Jonathan Blandford - + at-startup patch to add let at's start Wed Jun 04 2003 Elliot Lee + - rebuilt Tue Jun 03 2003 Jeff Johnson + - add explicit epoch's where needed. Tue May 27 2003 + Alexander Larsson 2.2.2-1 - Update to 2.2.2 - Add + XRandR backport - Fix up old patches, patch7 was upstream Mon Feb 24 2003 + Owen Taylor 2.2.0.2-5 - Wait for GSD to start before + continuing with session + +* Thu Sep 09 2004 cvsdist - 2.2.0.2-1 +- auto-import changelog data from gnome-session-2.2.0.2-4.src.rpm Tue Feb + 18 2003 Havoc Pennington 2.2.0.2-4 - repaint proper area + of text in splash screen, #84527 Tue Feb 18 2003 Havoc Pennington + 2.2.0.2-3 - change icon for magicdev to one that exists + in Bluecurve theme (part of #84491) Thu Feb 13 2003 Havoc Pennington + 2.2.0.2-2 - load icons from icon theme Wed Feb 05 2003 + Havoc Pennington 2.2.0.2-1 - 2.2.0.2 Tue Feb 04 2003 + Jonathan Blandford - remove extraneous separator. Still + ugly. Wed Jan 29 2003 Havoc Pennington - add icons for + the stuff in the default session #81489 Wed Jan 22 2003 Tim Powers + - rebuilt Sat Jan 11 2003 Havoc Pennington + - 2.1.90 - drop purgedelay patch, as it was increased + upstream (though only to 2 minutes instead of 5) Fri Dec 06 2002 Tim + Waugh 2.1.2-2 - Add eggcups to default session. Wed + Nov 13 2002 Havoc Pennington - 2.1.2 + +* Thu Sep 09 2004 cvsdist - 2.0.5-6 +- auto-import changelog data from gnome-session-2.0.5-7.src.rpm Tue Sep 03 + 2002 Owen Taylor - Up purge delay for session + manager to 5 minutes to avoid problem with openoffice.org timing out + +* Thu Sep 09 2004 cvsdist - 2.0.5-5 +- auto-import changelog data from gnome-session-2.0.5-6.src.rpm Wed Aug 28 + 2002 Havoc Pennington - put gdm session in here, conflict + with old gdm - use DITHER_MAX for dithering to make splash screen look + good in 16 bit + +* Thu Sep 09 2004 cvsdist - 2.0.5-4 +- auto-import changelog data from gnome-session-2.0.5-5.src.rpm Tue Aug 27 + 2002 Havoc Pennington - fix missing icons and misaligned + text in splash + +* Thu Sep 09 2004 cvsdist - 2.0.5-3 +- auto-import changelog data from gnome-session-2.0.5-4.src.rpm Fri Aug 23 + 2002 Tim Waugh - Fix login sound disabling (bug + #71664). + +* Thu Sep 09 2004 cvsdist - 2.0.5-2 +- auto-import gnome-session-2.0.5-3 from gnome-session-2.0.5-3.src.rpm + +* Thu Sep 09 2004 cvsdist - 2.0.5-1 +- auto-import changelog data from gnome-session-2.0.5-2.src.rpm Wed Aug 14 + 2002 Havoc Pennington - fix the session file, should + speed up login a lot - put magicdev in default session Thu Aug 08 2002 + Havoc Pennington - 2.0.5 with more translations Tue Aug + 06 2002 Havoc Pennington - 2.0.4 - remove gnome-settings- + daemon from default session Wed Jul 31 2002 Havoc Pennington + - 2.0.3 - remove splash screen, require redhat-artwork + instead Wed Jul 24 2002 Owen Taylor - Set + GTK_RC_FILES so we can change the gtk1 theme Tue Jul 16 2002 Havoc + Pennington - pass --with-halt-command=/usr/bin/poweroff + --with-reboot-command=/usr/bin/reboot Tue Jun 25 2002 Owen Taylor + - Version 2.0.1, fixing missing po files Wed Jun 19 + 2002 Havoc Pennington - put in new default session with + pam-panel-icon - disable schema install in make install, fixes rebuild + failure. Sun Jun 16 2002 Havoc Pennington - rebuild with + new libraries + +* Thu Sep 09 2004 cvsdist - 2.0.0-1 +- auto-import changelog data from gnome-session-2.0.0-3.src.rpm Thu Jun 13 + 2002 Havoc Pennington - rebuild in different environment + Thu Jun 13 2002 Havoc Pennington - add fix from Nalin to + build require usermode Tue Jun 11 2002 Havoc Pennington - + 2.0.0 Mon Jun 10 2002 Havoc Pennington - install the + schemas, so we get a logout dialog and splash - put in the splash from + 7.3 Sun Jun 09 2002 Havoc Pennington - rebuild in + different environment Sun Jun 09 2002 Havoc Pennington - + rebuild in new environment, require newer gtk2 Sun Jun 09 2002 Havoc + Pennington - remove obsoletes/provides gnome-core Fri Jun + 07 2002 Havoc Pennington - rebuild in different + environment Wed Jun 05 2002 Havoc Pennington - 1.5.21 Sun + May 26 2002 Tim Powers - automated rebuild Tue May 21 + 2002 Havoc Pennington - rebuild in different environment + Tue May 21 2002 Havoc Pennington - 1.5.19 - add more + build reqs to chill out build system - provide gnome-core Fri May 03 2002 + Havoc Pennington - obsolete gnome-core - 1.5.18 Fri Apr + 19 2002 Havoc Pennington - default to metacity Tue Apr 16 + 2002 Havoc Pennington - Initial build. +## END: Generated by rpmautospec diff --git a/sources b/sources new file mode 100644 index 0000000..ec17035 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +SHA512 (gnome-session-46.0.tar.xz) = 2187b8ae4ac4ec728283c5dc03edba6472864a704f6c6cd7a3e962515a3925d3a8438f7f89855dd082d2c013868da81e16da280c70b0e07537c8e431301b4bd8 diff --git a/subscription-manager.patch b/subscription-manager.patch new file mode 100644 index 0000000..fc3ff3e --- /dev/null +++ b/subscription-manager.patch @@ -0,0 +1,26 @@ +From 523602887f92b448b497e99bf56d0b9f1ef376f7 Mon Sep 17 00:00:00 2001 +From: Kalev Lember +Date: Mon, 6 Sep 2021 21:12:38 +0200 +Subject: [PATCH] data: Require org.gnome.SettingsDaemon.Subscription + +Make sure the gnome-settings-daemon subman plugin gets started on +session startup. +--- + data/meson.build | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/data/meson.build b/data/meson.build +index e02b80d3..1684a99e 100644 +--- a/data/meson.build ++++ b/data/meson.build +@@ -24,6 +24,7 @@ required_components = { + 'org.gnome.SettingsDaemon.Sharing', + 'org.gnome.SettingsDaemon.Smartcard', + 'org.gnome.SettingsDaemon.Sound', ++ 'org.gnome.SettingsDaemon.Subscription', + 'org.gnome.SettingsDaemon.UsbProtection', + 'org.gnome.SettingsDaemon.Wacom', + 'org.gnome.SettingsDaemon.XSettings', +-- +2.31.1 +