Merge lp:~khurshid-alam/gnome-session/fix-1738338 into lp:gnome-session

Proposed by Khurshid Alam
Status: Superseded
Proposed branch: lp:~khurshid-alam/gnome-session/fix-1738338
Merge into: lp:gnome-session
Diff against target: 12228 lines (+11984/-0)
48 files modified
.bzr-builddeb/default.conf (+2/-0)
debian/55gnome-session_gnomerc (+23/-0)
debian/README.Debian (+54/-0)
debian/changelog (+3478/-0)
debian/compat (+1/-0)
debian/control (+152/-0)
debian/control.in (+148/-0)
debian/copyright (+51/-0)
debian/data/50-ubuntu.conf (+2/-0)
debian/data/50-unity.conf (+2/-0)
debian/data/gnome-session.override (+7/-0)
debian/data/gnome-session.service (+11/-0)
debian/data/run-systemd-session (+42/-0)
debian/data/unity-session.target (+7/-0)
debian/gnome-mimeapps.list (+347/-0)
debian/gnome-session-bin.install (+12/-0)
debian/gnome-session-bin.postinst (+12/-0)
debian/gnome-session-bin.prerm (+9/-0)
debian/gnome-session-bin.user-session.upstart (+31/-0)
debian/gnome-session-common.dirs (+1/-0)
debian/gnome-session-common.install (+7/-0)
debian/gnome-session.docs (+3/-0)
debian/gnome-session.install (+4/-0)
debian/gnome-session.links (+1/-0)
debian/gnome-session.postinst (+10/-0)
debian/gnome-session.prerm (+9/-0)
debian/gnome-wayland.desktop (+158/-0)
debian/patches/103_kill_the_fail_whale.patch (+41/-0)
debian/patches/13_display_session_properties.patch (+18/-0)
debian/patches/22_support_autostart_delay.patch (+232/-0)
debian/patches/50_ubuntu_sessions.patch (+133/-0)
debian/patches/51_remove_session_saving_from_gui.patch (+66/-0)
debian/patches/53_add_sessionmigration.patch (+26/-0)
debian/patches/95_dbus_request_shutdown.patch (+99/-0)
debian/patches/export_env_to_upstart.patch (+79/-0)
debian/patches/ignore_gsettings_region.patch (+21/-0)
debian/patches/revert_remove_gnome_session_properties.patch (+4005/-0)
debian/patches/revert_remove_gnome_session_properties2.patch (+2494/-0)
debian/patches/series (+11/-0)
debian/rules (+25/-0)
debian/source/format (+1/-0)
debian/ubuntu-session.install (+4/-0)
debian/ubuntu-session.links (+1/-0)
debian/ubuntu-session.migrations (+1/-0)
debian/unity-gnome-shell-migration.17.10.py (+115/-0)
debian/unity-session.install (+4/-0)
debian/watch (+3/-0)
debian/xdg_dirs_desktop_session.sh (+21/-0)
To merge this branch: bzr merge lp:~khurshid-alam/gnome-session/fix-1738338
Reviewer Review Type Date Requested Status
Jeremy Bícha Pending
Review via email: mp+335246@code.launchpad.net

This proposal has been superseded by a proposal from 2017-12-15.

Description of the change

To post a comment you must log in.

Unmerged revisions

462. By Khurshid Alam

Have unity-session recommend gtk3-nocsd. (LP: #1738338)

461. By Jeremy Bícha

releasing package gnome-session version 3.26.1-0ubuntu7

460. By Jeremy Bícha

Allow building on s390x

459. By Sebastien Bacher

releasing package gnome-session version 3.26.1-0ubuntu6

458. By Olivier Tilloy

* Add symlinks in /usr/share/xsessions/:
  - gnome.desktop -> gnome-xorg.desktop
  - ubuntu.desktop -> ubuntu-xorg.desktop
  In combination with a gdm3 patch, this ensures a proper fallback session
  is selected by gdm when wayland is not enabled (LP: #1718446).

457. By Didier Roche-Tolomelli

releasing package gnome-session version 3.26.1-0ubuntu5

456. By Didier Roche-Tolomelli

* debian/unity-gnome-shell-migration.17.10.py:
  - Only reset rhythmbox keys if installed (LP: #1723365)

455. By Didier Roche-Tolomelli

releasing package gnome-session version 3.26.1-0ubuntu4

454. By Didier Roche-Tolomelli

Make sure ubuntu-xorg.desktop can be translated (as it's "Ubuntu on Xorg")
(LP: #1715822)

453. By Sebastien Bacher

releasing package gnome-session version 3.26.1-0ubuntu3

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== added directory '.bzr-builddeb'
2=== added file '.bzr-builddeb/default.conf'
3--- .bzr-builddeb/default.conf 1970-01-01 00:00:00 +0000
4+++ .bzr-builddeb/default.conf 2017-12-15 06:47:37 +0000
5@@ -0,0 +1,2 @@
6+[BUILDDEB]
7+merge = True
8
9=== added directory 'debian'
10=== added file 'debian/55gnome-session_gnomerc'
11--- debian/55gnome-session_gnomerc 1970-01-01 00:00:00 +0000
12+++ debian/55gnome-session_gnomerc 2017-12-15 06:47:37 +0000
13@@ -0,0 +1,23 @@
14+# If we are running the GNOME session, source ~/.gnomerc
15+
16+BASESTARTUP=${STARTUP%% *}
17+BASESTARTUP=${BASESTARTUP##*/}
18+if [ "$BASESTARTUP" = x-session-manager ]; then
19+ BASESTARTUP=$(basename $(readlink /etc/alternatives/x-session-manager))
20+fi
21+case "$BASESTARTUP" in
22+ gnome-session*)
23+ GNOMERC=$HOME/.gnomerc
24+ if [ -r "$GNOMERC" ]; then
25+ . "$GNOMERC"
26+ fi
27+ # We prepend /usr/share/gnome since its defaults.list actually points
28+ # to /etc so it is configurable.
29+ if [ -z "$XDG_DATA_DIRS" ]; then
30+ XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/
31+ else
32+ XDG_DATA_DIRS=/usr/share/gnome:"$XDG_DATA_DIRS"
33+ fi
34+ export XDG_DATA_DIRS
35+ ;;
36+esac
37
38=== added file 'debian/README.Debian'
39--- debian/README.Debian 1970-01-01 00:00:00 +0000
40+++ debian/README.Debian 2017-12-15 06:47:37 +0000
41@@ -0,0 +1,54 @@
42+gnome-session for Debian
43+========================
44+
45+GNOME 3 / GNOME Fallback
46+------------------------
47+
48+The gnome-session package provides the standard GNOME 3 session, which
49+is based on the GNOME Shell. The gnome-session-flashback package provides
50+a “fallback” session which is based on the GNOME panel and Metacity. You
51+can choose them in the display manager (typically GDM).
52+
53+If no suitable 3D acceleration is detected, the fallback session will be
54+launched in both cases.
55+
56+
57+Changing the window manager
58+---------------------------
59+
60+The GNOME Shell requires mutter and cannot run with another window
61+manager.
62+
63+If you want to use an alternative window manager (such as compiz or
64+openbox), you need to select the fallback session. Then, put in your
65+.gnomerc file the following:
66+ WINDOW_MANAGER=my_wonderful_wm
67+ export WINDOW_MANAGER
68+
69+
70+Applications at startup
71+-----------------------
72+
73+Upon startup, gnome-session starts the following applications:
74+ - Saved session: if you have saved a session, it is located in
75+ ~/.config/gnome-session/saved-session/. You can enable automatic
76+ session saving or manually save it in the "Startup Applications"
77+ configuration applet.
78+ - Autostart applications: applications shipping a .desktop file in
79+ /usr/share/gnome/autostart or /etc/xdg/autostart. This includes the
80+ keyring manager, the settings daemon, nautilus and the power
81+ manager. They can be selectively disabled in the configuration
82+ applet.
83+ - Required components: they are listed in the
84+ /usr/share/gnome-session/sessions/*.desktop file corresponding to the
85+ current session (gnome or gnome-fallback).
86+
87+MIME types associations
88+-----------------------
89+
90+This package ships a list of default MIME types associations used when running
91+the GNOME desktop.
92+This file is installed in /usr/share/applications/gnome-mimeapps.list.
93+The system administrator can override some associations by adding a file at
94+/etc/xdg/gnome-mimeapps.list or /etc/xdg/mimeapps.list if he wants to apply to
95+all the desktop environment.
96
97=== added file 'debian/changelog'
98--- debian/changelog 1970-01-01 00:00:00 +0000
99+++ debian/changelog 2017-12-15 06:47:37 +0000
100@@ -0,0 +1,3478 @@
101+gnome-session (3.26.1-0ubuntu8) UNRELEASED; urgency=medium
102+
103+ * Have unity-session recommend gtk3-nocsd. (LP: #1738338)
104+
105+ -- Khurshid Alam (Technologist) <khurshid.alam@linuxmail.org> Fri, 15 Dec 2017 11:46:26 +0530
106+
107+gnome-session (3.26.1-0ubuntu7) bionic; urgency=medium
108+
109+ * Allow building on s390x
110+
111+ -- Jeremy Bicha <jbicha@ubuntu.com> Thu, 02 Nov 2017 19:36:36 -0400
112+
113+gnome-session (3.26.1-0ubuntu6) artful; urgency=medium
114+
115+ * Add symlinks in /usr/share/xsessions/:
116+ - gnome.desktop -> gnome-xorg.desktop
117+ - ubuntu.desktop -> ubuntu-xorg.desktop
118+ In combination with a gdm3 patch, this ensures a proper fallback session
119+ is selected by gdm when wayland is not enabled (LP: #1718446).
120+
121+ -- Olivier Tilloy <olivier.tilloy@canonical.com> Fri, 13 Oct 2017 13:33:27 +0200
122+
123+gnome-session (3.26.1-0ubuntu5) artful; urgency=medium
124+
125+ * debian/unity-gnome-shell-migration.17.10.py:
126+ - Only reset rhythmbox keys if installed (LP: #1723365)
127+
128+ -- Didier Roche <didrocks@ubuntu.com> Fri, 13 Oct 2017 11:56:41 +0200
129+
130+gnome-session (3.26.1-0ubuntu4) artful; urgency=medium
131+
132+ * Make sure ubuntu-xorg.desktop can be translated (as it's "Ubuntu on Xorg")
133+ (LP: #1715822)
134+
135+ -- Didier Roche <didrocks@ubuntu.com> Wed, 11 Oct 2017 17:30:38 +0200
136+
137+gnome-session (3.26.1-0ubuntu3) artful; urgency=medium
138+
139+ [ Gunnar Hjalmarsson ]
140+ * debian/patches/ignore_gsettings_region.patch:
141+ - Ignore the "region" gsettings value - users' setting of LC_*
142+ variables saved in ~/.pam_environment (LP: #1722002).
143+ * debian/control, debian/control.in:
144+ - Suggest gnome-user-docs instead of gnome-user-guide
145+ (LP: #1691867).
146+
147+ -- Gunnar Hjalmarsson <gunnarhj@ubuntu.com> Mon, 09 Oct 2017 20:01:00 +0200
148+
149+gnome-session (3.26.1-0ubuntu2) artful; urgency=medium
150+
151+ * debian/patches/revert_remove_gnome_session_properties.patch: Fix to work
152+ with multiple components in XDG_CURRENT_DESKTOP. (LP: #1718553)
153+
154+ -- Iain Lane <iain@orangesquash.org.uk> Mon, 09 Oct 2017 22:52:22 +0100
155+
156+gnome-session (3.26.1-0ubuntu1) artful; urgency=medium
157+
158+ [ Marco Trevisan ]
159+ * Remove scale factor reset in migration script as now handled in the unity
160+ settings package and only impact people migrating with unity installed
161+ (LP: #1721082)
162+
163+ [ Didier Roche ]
164+ * New upstream release
165+ * debian/unity-gnome-shell-migration.17.10.py:
166+ - reset the rhythmbox plugins key and rename the migration script for
167+ people who installed pre-alpha getting the glib fix where some
168+ applications weren't supporting the per session override.
169+ (LP: #1720754)
170+ - rename it so that can applies to upgraders (the script is idempotent)
171+
172+ -- Didier Roche <didrocks@ubuntu.com> Mon, 09 Oct 2017 12:23:49 +0200
173+
174+gnome-session (3.26.0-0ubuntu2) artful; urgency=medium
175+
176+ [ Jeremy Bicha ]
177+ * Have gnome-session recommend gnome-themes-standard (Adwaita for GTK+ 2)
178+
179+ [ ventrical ]
180+ * unity-session: Recommend zeitgeist-datahub
181+
182+ -- ventrical <dale_f_beaudoin@hotmail.com> Mon, 02 Oct 2017 19:56:50 -0400
183+
184+gnome-session (3.26.0-0ubuntu1) artful; urgency=medium
185+
186+ [ Didier Roche ]
187+ * Add a versioned dependency on GNOME Shell for alternative selection
188+ so that we ensure the upstream css is on disk. This allow to remove
189+ the || true in postinst.
190+
191+ [ Iain Lane ]
192+ * debian/xdg_dirs_desktop_session.sh: Install a new script into
193+ /etc/profile.d to prepend a $DESKTOP_SESSION related directory to
194+ $XDG_{CONFIG,DATA}_DIRS. This fixes GNOME Software back to "Ubuntu
195+ Software", with the corresponding icon, in the Ubuntu session.
196+ * New upstream release.
197+
198+ -- Iain Lane <iain.lane@canonical.com> Thu, 14 Sep 2017 17:32:12 +0100
199+
200+gnome-session (3.25.90-0ubuntu4) artful; urgency=medium
201+
202+ * Add a || true until GNOME Shell migrates to release pocket. We will
203+ then use a versioned dep.
204+
205+ -- Didier Roche <didrocks@ubuntu.com> Mon, 11 Sep 2017 12:46:42 +0200
206+
207+gnome-session (3.25.90-0ubuntu3) artful; urgency=medium
208+
209+ * Add an alternative to choose gdm upstream GNOME Shell theme. (LP: #1715722)
210+
211+ -- Didier Roche <didrocks@ubuntu.com> Mon, 11 Sep 2017 11:54:47 +0200
212+
213+gnome-session (3.25.90-0ubuntu2) artful; urgency=medium
214+
215+ * Stop building gnome-session & ubuntu-session for s390x because
216+ they depend on uninstallable gnome-shell/gjs (LP: #1712083)
217+
218+ -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 26 Aug 2017 16:08:10 -0400
219+
220+gnome-session (3.25.90-0ubuntu1) artful; urgency=medium
221+
222+ * New upstream release
223+ * Drop these patches, fixed a different way in new release:
224+ - 0001-manager-add-bus-daemon-dbus-api-xml-file.patch
225+ - 0002-system-add-api-for-detecting-if-this-is-the-last-ses.patch
226+ - 0003-manager-kill-off-bus-clients-at-log-out.patch
227+ * Update 50_ubuntu_sessions.patch to follow dropping orientation
228+ and xrandr plugins from gnome-settings-daemon 3.25.4
229+
230+ -- Jeremy Bicha <jbicha@ubuntu.com> Mon, 21 Aug 2017 18:23:52 -0400
231+
232+gnome-session (3.24.1-0ubuntu22) artful; urgency=medium
233+
234+ * Switch to wayland by default for both ubuntu and GNOME session:
235+ - debian/rules: revert removal and renaming of GNOME sessions.
236+ - debian/gnome-session.install: ship the GNOME sessions.
237+ - debian/patches/50_ubuntu_sessions.patch, debian/ubuntu-session.install:
238+ Swap the ubuntu session to wayland. Should fallback ex ubuntu-wayland
239+ session users to "ubuntu" as well.
240+
241+ -- Didier Roche <didrocks@ubuntu.com> Mon, 21 Aug 2017 14:06:21 +0200
242+
243+gnome-session (3.24.1-0ubuntu21) artful; urgency=medium
244+
245+ * Get GNOME Shell session migration handling ubuntu dock keys transition
246+ from Unity.
247+ * Rename migration script to include months for existing artful users.
248+
249+ -- Didier Roche <didrocks@ubuntu.com> Thu, 17 Aug 2017 09:41:05 +0200
250+
251+gnome-session (3.24.1-0ubuntu20) artful; urgency=medium
252+
253+ * Add adwaita-icon-theme-full to the gnome session, as more icons like
254+ nautilus ones are only located within it.
255+
256+ -- Didier Roche <didrocks@ubuntu.com> Tue, 15 Aug 2017 08:58:50 +0200
257+
258+gnome-session (3.24.1-0ubuntu19) artful; urgency=medium
259+
260+ * debian/patches/50_ubuntu_sessions.patch:
261+ - prepend "ubuntu" to DesktopNames. This will enable us to have per
262+ session default experiences and session override.
263+ - append "ubuntu" for unity session. Indeed, Unity overrides will be
264+ higher in the hierarchy (like button positions) than ubuntu override
265+ defaults.
266+
267+ -- Didier Roche <didrocks@ubuntu.com> Tue, 15 Aug 2017 08:13:10 +0200
268+
269+gnome-session (3.24.1-0ubuntu18) artful; urgency=medium
270+
271+ * Change main ubuntu session to use the ubuntu gnome-shell mode:
272+ - enable the mode on logging via env variable so that shell restart
273+ reload the mode. This avoid an additional script though contrary
274+ to classic.
275+ - depends on latest GNOME Shell which provides the mode itself.
276+ * Bump Standard-Version to latest
277+ * debian/control*:
278+ - Fix some lintian warnings
279+ - gnome-session recommends fonts-cantarell as default font under
280+ the vanilla GNOME Shell experience.
281+
282+ -- Didier Roche <didrocks@ubuntu.com> Mon, 14 Aug 2017 09:00:30 +0200
283+
284+gnome-session (3.24.1-0ubuntu17) artful; urgency=medium
285+
286+ * debian/unity-gnome-shell-migration.py:
287+ Don't migrate to new amazon desktop file, we are using the old
288+ one for now for consistency with other desktop renames.
289+
290+ -- Didier Roche <didrocks@ubuntu.com> Thu, 20 Jul 2017 09:51:37 +0200
291+
292+gnome-session (3.24.1-0ubuntu16) artful; urgency=medium
293+
294+ * Add rhythmbox-plugin-zeitgeist as recommends on *unity-session*
295+ it won't be pulled (contrary to zg-core or indicator-application
296+ by any other component on unity desktop.
297+
298+ -- Didier Roche <didrocks@ubuntu.com> Wed, 19 Jul 2017 14:02:58 +0200
299+
300+gnome-session (3.24.1-0ubuntu15) artful; urgency=medium
301+
302+ * Add really the recommends to unity-session and not ubuntu-session,
303+ then refill coffee.
304+
305+ -- Didier Roche <didrocks@ubuntu.com> Wed, 12 Jul 2017 12:18:30 +0200
306+
307+gnome-session (3.24.1-0ubuntu14) artful; urgency=medium
308+
309+ * Actually adding it to recommends. Thanks ricotz for spotting.
310+
311+ -- Didier Roche <didrocks@ubuntu.com> Wed, 12 Jul 2017 11:23:39 +0200
312+
313+gnome-session (3.24.1-0ubuntu13) artful; urgency=medium
314+
315+ * Add thunderbird-gnome-support recommends to unity-session as now
316+ not part of the ubuntu desktop image (mostly unity specific)
317+
318+ -- Didier Roche <didrocks@ubuntu.com> Wed, 12 Jul 2017 09:18:17 +0200
319+
320+gnome-session (3.24.1-0ubuntu12) artful; urgency=medium
321+
322+ * -debian/ubuntu-session.postinst
323+ - Dropped transition script for lightdm->gdm3, it's now handled in gdm3
324+
325+ -- Ken VanDine <ken.vandine@canonical.com> Mon, 10 Jul 2017 11:54:50 -0400
326+
327+gnome-session (3.24.1-0ubuntu11) artful; urgency=medium
328+
329+ * debian/ubuntu-session.postinst
330+ - Check for user's sessions that are set to "ubuntu" and set gdm3
331+ as the default display manager as recommended. This just changes
332+ the default in /etc/X11/default-display-manager, it still requires
333+ configure from gdm3 to run after configure from ubuntu-session to
334+ complete setting the proper default without prompting the user.
335+
336+ -- Ken VanDine <ken.vandine@canonical.com> Mon, 03 Jul 2017 14:20:28 -0400
337+
338+gnome-session (3.24.1-0ubuntu10) artful; urgency=medium
339+
340+ * debian/unity-gnome-shell-migration.py:
341+ u-c-c was actually unity-control-center, not ubuntu-control-center.
342+ Changing the key for migration.
343+
344+ -- Didier Roche <didrocks@ubuntu.com> Thu, 06 Jul 2017 15:15:14 +0200
345+
346+gnome-session (3.24.1-0ubuntu9) artful; urgency=medium
347+
348+ * debian/unity-gnome-shell-migration.py:
349+ - migrate launcher icon from ubuntu-control-center to gnome-control-center
350+ under GNOME Shell (LP: #1702091)
351+
352+ -- Didier Roche <didrocks@ubuntu.com> Mon, 03 Jul 2017 15:23:03 +0200
353+
354+gnome-session (3.24.1-0ubuntu8) artful; urgency=medium
355+
356+ * Change ubuntu-session to Arch: any for new xwayland dependency
357+
358+ -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 01 Jul 2017 14:35:17 -0400
359+
360+gnome-session (3.24.1-0ubuntu7) artful; urgency=medium
361+
362+ * debian/control.in:
363+ - Have ubuntu-session depend on xwayland like gnome-session does
364+ Thanks corrado for the report! (LP: #1701822)
365+ - Have ubuntu-session and gnome-session depend on gnome-shell.
366+ Now that gnome-shell recommends instead of depends on gnome-session |
367+ ubuntu-session, there is no circular dependency so let's not diverge
368+ from Debian.
369+
370+ -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 01 Jul 2017 13:29:41 -0400
371+
372+gnome-session (3.24.1-0ubuntu6) artful; urgency=medium
373+
374+ * Add unity to gnome-shell migration script to ubuntu-session:
375+ - Add unity-gnome-shell-migration.py migrating (if g-s has the default):
376+ + launcher icons to the dash
377+ + amazon to new amazon launcher name migration
378+ + reset scale factor for new incoming scale factor algorithm
379+ - Use dh-migration to install it.
380+
381+ -- Didier Roche <didrocks@ubuntu.com> Wed, 28 Jun 2017 09:19:27 +0200
382+
383+gnome-session (3.24.1-0ubuntu5) artful; urgency=medium
384+
385+ * Backport patches from 3.25.3 to kill D-Bus clients on log out.
386+ This works around GNOME Online Accounts not working correctly
387+ after logging out (LP: #1610944)
388+ - 0001-manager-add-bus-daemon-dbus-api-xml-file.patch
389+ - 0002-system-add-api-for-detecting-if-this-is-the-last-ses.patch
390+ - 0003-manager-kill-off-bus-clients-at-log-out.patch
391+
392+ -- Jeremy Bicha <jbicha@ubuntu.com> Wed, 21 Jun 2017 18:57:12 -0400
393+
394+gnome-session (3.24.1-0ubuntu4) artful; urgency=medium
395+
396+ * Add back ubuntu-session, being the default ubuntu experience on
397+ GNOME shell:
398+ - debian/patches/50_ubuntu_sessions.patch adapt the patch with new session
399+ content (right now, similar than vanilla GNOME shell).
400+ - debian/ubuntu-session.install, debian/control*: ensure smooth transition
401+ for people with ubuntu-session == unity and add the new binary.
402+ - debian/data/50-ubuntu.conf: add lightdm conf as long lightdm is the
403+ default.
404+ * Add a wayland ubuntu session as well alongside the Xorg one:
405+ - Ensure we only ship the gnome-wayland session in gnome-session
406+ (debian/gnome-session.install)
407+ - Add to the patch and install the new session.
408+
409+ -- Didier Roche <didrocks@ubuntu.com> Tue, 20 Jun 2017 09:04:29 +0200
410+
411+gnome-session (3.24.1-0ubuntu3) artful; urgency=medium
412+
413+ * Rename ubuntu-session into unity-session:
414+ - debian/control.in, debian/*install: rename to new binary package name.
415+ - modify debian/patches/50_ubuntu_sessions.patch to reference the new
416+ session.
417+ - debian/data/50-unity.conf: lightdm unity session seat
418+ - debian/data/ubuntu-session.target -> debian/data/unity-session.target
419+ change systemd user target to start required and wanted components.
420+ - add breaks for systemd user session change against other packages,
421+ changing targets as well.
422+ * Add a new dep from unity-session to unity, otherwise, it wouldn't
423+ be installed. It was previously removed for a circular dependency
424+ reason.
425+
426+ -- Didier Roche <didrocks@ubuntu.com> Mon, 19 Jun 2017 09:45:29 +0200
427+
428+gnome-session (3.24.1-0ubuntu2) artful; urgency=medium
429+
430+ * Fix revert_remove_gnome_session_properties.patch
431+
432+ -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 22 Apr 2017 11:38:35 -0400
433+
434+gnome-session (3.24.1-0ubuntu1) artful; urgency=medium
435+
436+ * New upstream release (LP: #1685515)
437+
438+ -- Jeremy Bicha <jbicha@ubuntu.com> Sat, 22 Apr 2017 10:16:47 -0400
439+
440+gnome-session (3.24.0-0ubuntu1) zesty; urgency=medium
441+
442+ * New upstream release
443+
444+ -- Jeremy Bicha <jbicha@ubuntu.com> Mon, 20 Mar 2017 19:43:33 -0400
445+
446+gnome-session (3.23.92-0ubuntu1) zesty; urgency=medium
447+
448+ * New upstream translation release
449+
450+ -- Jeremy Bicha <jbicha@ubuntu.com> Mon, 13 Mar 2017 20:09:34 -0400
451+
452+gnome-session (3.23.91-0ubuntu1) zesty; urgency=medium
453+
454+ * New upstream release
455+
456+ -- Jeremy Bicha <jbicha@ubuntu.com> Tue, 28 Feb 2017 20:16:08 -0500
457+
458+gnome-session (3.23.4.1-0ubuntu2) zesty; urgency=medium
459+
460+ * debian/patches/50_ubuntu_sessions.patch: Let's have another go at setting
461+ XDG_CURRENT_DESKTOP to Unity:Unity7.
462+
463+ -- Iain Lane <iain.lane@canonical.com> Thu, 16 Feb 2017 17:48:14 +0000
464+
465+gnome-session (3.23.4.1-0ubuntu1) zesty; urgency=medium
466+
467+ * New upstream release
468+ * debian/control.in:
469+ - Bump minimum gnome-settings-daemon to 3.23.3
470+ * Refreshed export_env_to_upstart.patch
471+ * Dropped git_wayland_login_shell.patch, applied in new release
472+
473+ -- Jeremy Bicha <jbicha@ubuntu.com> Tue, 07 Feb 2017 18:24:14 -0500
474+
475+gnome-session (3.22.2-2ubuntu1) zesty; urgency=medium
476+
477+ * Merge with Debian unstable. Remaining changes:
478+ - debian/control.in:
479+ + Recommend session-migration
480+ + Remove gnome-shell circular dependency to ease upgrades
481+ + Don't suggest desktop-base
482+ + Move xwayland dependency to gnome-session and
483+ make gnome-session Arch: any
484+ - Split ubuntu-session out of gnome-session.
485+ - Add upstart user session and systemd user session:
486+ debian/data, debian/gnome-session-bin.user-session.upstart
487+ - debian/gnome-session-bin.postinst, debian/gnome-session-bin.prerm:
488+ Moved registering gnome-session binary as a session manager to
489+ gnome-session-bin package
490+ - Add gnome-session-wayland transitional package
491+ - don't install gnome-mimeapps.list (installed by desktop-file-utils in
492+ Ubuntu):
493+ debian/gnome-session-common.dirs, gnome-session-common.install,
494+ gnome-session-common.maintscript, gnome-session-common.postinst
495+ - debian/patches/revert_remove_gnome_session_properties.patch,
496+ debian/patches/revert_remove_gnome_session_properties2.patch:
497+ + Keep the session-properties applet for ubuntu sessions
498+ - debian/patches/13_display_session_properties.patch: Display
499+ session-properties as the Startup Applications capplet was removed from
500+ gnome-control-center, which makes it hard to discover the
501+ gnome-session-properties tool. (Closes: #683814)
502+ - debian/patches/22_support_autostart_delay.patch:
503+ Bugzilla patch to support adding a delay to autostart apps, using
504+ a "X-GNOME-Autostart-Delay" key in the desktop file
505+ - debian/patches/50_ubuntu_sessions.patch, debian/gnome-wayland.desktop:
506+ + Add Ubuntu session
507+ + Add --session=gnome to GNOME sessions now that the "ubuntu" session
508+ is the default. Use TryExec to test if gnome-shell is installed.
509+ - debian/patches/51_remove_session_saving_from_gui.patch:
510+ add GNOME_SESSION_SAVE environment variable for people wanting to
511+ use the save session still, knowing that it can break your system
512+ if used unwisely
513+ - debian/patches/53_add_sessionmigration.patch:
514+ launch session-migration if present at the start of the session. This
515+ sync tool runns different session migration scripts that can be
516+ provided in various desktop packages.
517+ - debian/patches/95_dbus_request_shutdown.patch: Add "RequestShutdown" and
518+ "RequestReboot" DBus methods to allow other applications to shutdown or
519+ reboot the machine via the session manager.
520+ - debian/patches/103_kill_the_fail_whale.patch: Kill the Fail Whale as it
521+ tends to be more annoying than helpful
522+ - debian/patches/export_env_to_upstart.patch: Update the Upstart environment
523+ before the plain D-Bus one. This is to work around a bug where Upstart
524+ brokenly forwards variables which contain an "=" to the D-Bus environment,
525+ resulting in invalid environment variables in the session (see bug
526+ #1630090).
527+ * Dropped patch applied in new version:
528+ - git_fix_gpu_cache_info.patch
529+
530+ -- Jeremy Bicha <jbicha@ubuntu.com> Wed, 01 Feb 2017 05:02:59 -0500
531+
532+gnome-session (3.22.2-2) unstable; urgency=medium
533+
534+ * Team upload
535+
536+ [ Jeremy Bicha ]
537+ * Add git_wayland_login_shell.patch:
538+ - Backport 3.23 commit that made Wayland sessions run login scripts
539+ like ~/.profile since that's what people expect (LP: #1631713)
540+
541+ -- Simon McVittie <smcv@debian.org> Fri, 20 Jan 2017 10:14:17 +0000
542+
543+gnome-session (3.22.2-1) unstable; urgency=medium
544+
545+ * New upstream release.
546+
547+ -- Michael Biebl <biebl@debian.org> Tue, 08 Nov 2016 15:49:26 +0100
548+
549+gnome-session (3.22.1-1) unstable; urgency=medium
550+
551+ * New upstream release.
552+
553+ -- Michael Biebl <biebl@debian.org> Wed, 12 Oct 2016 18:10:49 +0200
554+
555+gnome-session (3.22.0-1) unstable; urgency=medium
556+
557+ * New upstream release.
558+ * Drop debian/patches/git_fix-bashism.patch, merged upstream.
559+ * Bump debhelper compat level to 10.
560+ * Don't fail to restore the old desktop session files if we only build
561+ architecture specific binary packages (gnome-session is arch:all).
562+
563+ -- Michael Biebl <biebl@debian.org> Tue, 20 Sep 2016 01:25:00 +0200
564+
565+gnome-session (3.21.90-4) unstable; urgency=medium
566+
567+ * Instead of patching the build system to get the old deskop session files
568+ back, remove the new ones and ship a local copy of gnome-wayland.desktop
569+ which was generated from the gnome-3-20 branch. This is much simpler and
570+ we don't lose all the translations this way.
571+ * Show uninstalled files via dh_install --list-missing.
572+
573+ -- Michael Biebl <biebl@debian.org> Thu, 08 Sep 2016 18:40:30 +0200
574+
575+gnome-session (3.21.90-3) unstable; urgency=medium
576+
577+ * Switch back to Xorg by default.
578+ We divert from upstream here and switch the default GNOME session back to
579+ Xorg for Stretch. This way, users who explicitly chose the GNOME session
580+ in the display manager won't be automatically switched over to Wayland.
581+ It's still possible to run Wayland via the "GNOME on Wayland" session.
582+
583+ -- Michael Biebl <biebl@debian.org> Wed, 07 Sep 2016 23:07:21 +0200
584+
585+gnome-session (3.21.90-2) experimental; urgency=medium
586+
587+ * Add debian/patches/git_fix-bashism.patch (Closes: #835289)
588+
589+ -- Andreas Henriksson <andreas@fatal.se> Sat, 03 Sep 2016 22:11:37 +0200
590+
591+gnome-session (3.21.90-1) experimental; urgency=medium
592+
593+ * New upstream beta release.
594+ * Update build-dependencies according to configure.ac changes:
595+ - Add libgles2-mesa-dev
596+ * debian/gnome-session-{bin,common}.install:
597+ - stop installing *.ui and icons since gnome-session-properties tool
598+ has now been removed.
599+
600+ -- Andreas Henriksson <andreas@fatal.se> Tue, 23 Aug 2016 12:19:33 +0200
601+
602+gnome-session (3.20.2-1ubuntu7) yakkety; urgency=medium
603+
604+ [ Iain Lane ]
605+ * debian/patches/export_env_to_upstart.patch: Update the Upstart environment
606+ before the plain D-Bus one. This is to work around a bug where Upstart
607+ brokenly forwards variables which contain an "=" to the D-Bus environment,
608+ resulting in invalid environment variables in the session (see bug
609+ #1630090).
610+
611+ [ Martin Pitt ]
612+ * debian/data/ubuntu-session.target: Pull in graphical-session-pre.target,
613+ as we do not implicitly do it in run-systemd-session any more.
614+
615+ -- Martin Pitt <martin.pitt@ubuntu.com> Tue, 04 Oct 2016 13:16:09 +0200
616+
617+gnome-session (3.20.2-1ubuntu6) yakkety; urgency=medium
618+
619+ * Set DesktopNames back to Unity. There are many buggy components that don't
620+ know how to deal with XDG_CURRENT_DESKTOP having multiple values, and it's
621+ too close to the release to fix them all.
622+
623+ -- Iain Lane <iain.lane@canonical.com> Mon, 03 Oct 2016 17:37:57 +0100
624+
625+gnome-session (3.20.2-1ubuntu5) yakkety; urgency=medium
626+
627+ * debian/data/run-systemd-session: Drop the polling loops at the start and
628+ end of the session and replace them with dynamically generated
629+ "After=graphical-session-pre.target". Stopping that target then provides
630+ the same waiting using systemd's transactions instead of polling. This is
631+ still a workaround until this can be done declaratively, but a much better
632+ one.
633+ * debian/data/run-systemd-session: Use the new "systemctl start --wait"
634+ instead of a polling loop. Bump systemd dependency accordingly.
635+
636+ -- Martin Pitt <martin.pitt@ubuntu.com> Sun, 02 Oct 2016 11:38:37 +0200
637+
638+gnome-session (3.20.2-1ubuntu4) yakkety; urgency=medium
639+
640+ * debian/data/run-systemd-session: Stop any lingering active units when
641+ logging in. (LP: #1618886)
642+ * debian/data/gnome-session.service: Save the XDG SESSION we were started
643+ with, and only use that one to end the session. Otherwise, if we are
644+ stopped by the above codepath, we risk stopping the session that we are
645+ logging into and not the previous (crashed) one.
646+ * debian/patches/50_ubuntu_sessions.patch: Set the desktop names to
647+ Unity:Unity7. "Unity" is shared between Unity 7 and Unity 8, but
648+ applications should be able to Only/NotShowIn either one of these if they
649+ want.
650+
651+ -- Iain Lane <iain.lane@canonical.com> Wed, 28 Sep 2016 12:09:16 +0100
652+
653+gnome-session (3.20.2-1ubuntu3) yakkety; urgency=medium
654+
655+ [ Dmitry Shachnev ]
656+ * Backport upstream patch to allow users to override $QT_QPA_PLATFORMTHEME
657+ (allow_overriding_qt_platformtheme.patch).
658+
659+ [ Martin Pitt ]
660+ * debian/data/run-systemd-session: Add missing $unit to systemctl show call,
661+ so that the cleanup of failed units actually works. (LP: #1618886)
662+
663+ -- Martin Pitt <martin.pitt@ubuntu.com> Fri, 16 Sep 2016 15:27:56 +0200
664+
665+gnome-session (3.20.2-1ubuntu2) yakkety; urgency=medium
666+
667+ * debian/patches/dont_override_IM_variables.patch:
668+ - Honor values set by e.g. im-config, and with that give users
669+ the option to use fcitx or other framework (LP: #1594681).
670+
671+ -- Gunnar Hjalmarsson <gunnarhj@ubuntu.com> Sun, 14 Aug 2016 02:04:00 +0200
672+
673+gnome-session (3.20.2-1ubuntu1) yakkety; urgency=medium
674+
675+ [ Tim Lunn ]
676+ * Merge from Debian unstable. Remaining changes (LP: #1512914):
677+ - debian/control.in:
678+ + Recommend session-migration
679+ + Remove gnome-shell circular dep to ease uprades
680+ - Split ubuntu-session out of gnome-session.
681+ - Split wayland session into gnome-session-wayland
682+ + control.in: add gnome-session-wayland package and depend on xwayland
683+ + gnome-session-wayland.install: install wayland session
684+ - Add upstart user session
685+ - debian/gnome-session-bin.postinst, debian/gnome-session-bin.prerm:
686+ Moved registering gnome-session binary as a session manager to
687+ gnome-session-bin package
688+ - don't install defaults.list (installed by desktop-file-utils in ubuntu):
689+ debian/gnome-session-common.dirs and gnome-session-common.install
690+ - debian/patches/13_display_session_properties.patch: Display
691+ session-properties as the Startup Applications capplet was removed from
692+ gnome-control-center, which makes it hard to discover the
693+ gnome-session-properties tool. (Closes: #683814)
694+ - debian/patches/22_support_autostart_delay.patch:
695+ Bugzilla patch to support adding a delay to autostart apps, using
696+ a "X-GNOME-Autostart-Delay" key in the desktop file
697+ - debian/patches/50_ubuntu_sessions.patch:
698+ + Add Ubuntu session
699+ + gnome-shell.desktop adds --session=gnome now that the "ubuntu" session
700+ is the default. Use TryExec to test if gnome-shell is installed.
701+ - debian/patches/51_remove_session_saving_from_gui.patch:
702+ add GNOME_SESSION_SAVE environment variable for people wanting to
703+ use the save session still, knowing that it can break your system
704+ if used unwisely
705+ - debian/patches/53_add_sessionmigration.patch, debian/control:
706+ recommends and launch the session-migration if present at the start of
707+ the session. This sync tool is running different session migration
708+ scripts that can be provided in various desktop packages.
709+ - debian/patches/95_dbus_request_shutdown.patch: Add "RequestShutdown" and
710+ "RequestReboot" DBus methods to allow other applications to shutdown or
711+ reboot the machine via the session manager.
712+ - debian/patches/103_kill_the_fail_whale.patch: Kill the Fail Whale as it
713+ tends to be more annoying than helpful
714+ - debian/patches/revert_remove_gnome_session_properties.patch: Keep the
715+ session-properties applet for ubuntu sessions
716+ - debian/patches/Revert-switch-to-Xorg-by-default.patch: Disabled for now,
717+ we will keep Xorg as default for the time being
718+ * Refresh Patches as Required
719+
720+ [ Iain Lane ]
721+ * Update the merge on top of 3.20.2-1 and 3.18.1.2-1ubuntu5
722+ - Add systemd user session support
723+ * Adapt our packaging for debhelper instead of cdbs
724+ * Move debian/55gnome-session_gnomerc back, to reduce delta with Debian (a
725+ previous upload had put it in debian/data).
726+ * The previous merge forgot some maintainer script changes (gnome-sesion ->
727+ gnome-session-bin) - restore those.
728+ * Update patches to add .desktop.in files to POTFILES.skip, which is
729+ required now that we run make check by default, which errors on this being
730+ missing.
731+
732+ -- Iain Lane <iain.lane@canonical.com> Wed, 03 Aug 2016 14:54:08 +0100
733+
734+gnome-session (3.20.2-1) unstable; urgency=medium
735+
736+ * New upstream release.
737+ * Drop all translations, not used anymore.
738+ * Drop debian/patches/update-activation-environment-at-startup.patch, merged
739+ upstream.
740+ * Bump debhelper compatibility level to 9.
741+ * Convert from cdbs to dh.
742+ * Bump Standards-Version to 3.9.8.
743+
744+ -- Michael Biebl <biebl@debian.org> Wed, 13 Jul 2016 15:12:48 +0200
745+
746+gnome-session (3.20.1-4) unstable; urgency=medium
747+
748+ * debian/gnome-mimeapps.list: Replace iceweasel.desktop by
749+ firefox-esr.desktop and firefox.desktop
750+ * debian/gnome-mimeapps.list: Add default application for
751+ application/x-cd-image, application/x-raw-disk-image and
752+ application/x-raw-disk-image-xz-compressed
753+
754+ -- Laurent Bigonville <bigon@debian.org> Sat, 04 Jun 2016 23:06:54 +0200
755+
756+gnome-session (3.20.1-3) unstable; urgency=medium
757+
758+ * Add debian/patches/update-activation-environment-at-startup.patch: update
759+ activation environment at startup, this way we are sure that all the
760+ environment variables are also available for the user activated services
761+
762+ -- Laurent Bigonville <bigon@debian.org> Tue, 24 May 2016 13:21:04 +0200
763+
764+gnome-session (3.20.1-2) unstable; urgency=medium
765+
766+ * Drop /usr/share/gnome/applications/defaults.list symlink and install
767+ /etc/gnome/defaults.list to /usr/share/applications/gnome-mimeapps.list
768+ instead, as the xdg spec is allowing desktop specific default applications.
769+ If /etc/gnome/defaults.list was modified by the system administrator, the
770+ file is moved to /etc/xdg/gnome-mimeapps.list during the upgrade.
771+ This seems to fix default apps when running gnome-shell as a wayland
772+ compositor, as the 55gnome-session_gnomerc is not sourced in that case.
773+
774+ -- Laurent Bigonville <bigon@debian.org> Tue, 17 May 2016 02:02:11 +0200
775+
776+gnome-session (3.20.1-1) unstable; urgency=medium
777+
778+ * New upstream release.
779+ * Postpone the switch to Wayland by default. We don't want to entangle the
780+ GNOME 3.20 transition with the Wayland switch.
781+ * Upload to unstable.
782+
783+ -- Michael Biebl <biebl@debian.org> Tue, 19 Apr 2016 23:50:01 +0200
784+
785+gnome-session (3.20.0-2) experimental; urgency=medium
786+
787+ * Add debian/patches/Revert-switch-to-Xorg-by-default.patch
788+ - revert upstreams switch (back) to Xorg by default, as we need
789+ wayland testing during our development cycle up to Stretch.
790+ Upstream plans to ship GNOME 3.22 with wayland as default,
791+ which is the GNOME release we're targeting for Stretch.
792+ * debian/gnome-session.install:
793+ - accept any *.desktop name for wayland-sessions.
794+ - install all *.desktop files for xsessions.
795+ * Add debian/patches/0001-main-fix-starting-gnome-session-via-startx.patch
796+ - fixes starting "System Default" session
797+
798+ -- Andreas Henriksson <andreas@fatal.se> Wed, 30 Mar 2016 19:16:31 +0200
799+
800+gnome-session (3.20.0-1) experimental; urgency=medium
801+
802+ * Bump gnome-shell dependency to >= 3.19
803+ - gnome.session now uses new org.gnome.Shell desktop file name.
804+ * New upstream release.
805+
806+ -- Andreas Henriksson <andreas@fatal.se> Fri, 25 Mar 2016 10:05:25 +0100
807+
808+gnome-session (3.19.92-1) experimental; urgency=medium
809+
810+ * New upstream release.
811+ * Stop installing gnome-wayland.session
812+ - no longer shipped, now merged with gnome.session
813+ * Bump Standards-Version to 3.9.7.
814+
815+ -- Andreas Henriksson <andreas@fatal.se> Tue, 15 Mar 2016 21:05:23 +0100
816+
817+gnome-session (3.18.1.2-1ubuntu5) yakkety; urgency=medium
818+
819+ * 50_ubuntu_sessions.patch: Go back to a systemd-ified Exec= line and add a
820+ Breaks: for the upstart versions that don't yet have the necessary
821+ Xsession.d fixes yet.
822+ * debian/data/run-systemd-session: Robustify session startup and shutdown.
823+ * debian/data/ubuntu-session.target: Fix description.
824+ * ubuntu-session: Depend on dbus-user-session and the systemd version that
825+ provides graphical-session.target.
826+ * debian/data/gnome-session.override: Don't completely disable this yet,
827+ only disable "exec" script. The upstart job still needs to run as a stub
828+ to start dependencies until the conversion of unity units lands.
829+
830+ -- Martin Pitt <martin.pitt@ubuntu.com> Sun, 31 Jul 2016 11:22:57 +0200
831+
832+gnome-session (3.18.1.2-1ubuntu4) yakkety; urgency=medium
833+
834+ * 50_ubuntu_sessions.patch: Revert to directly running gnome-session again.
835+ Something seems to actually look at the value of Exec= even with upstart
836+ which breaks starting the session.
837+
838+ -- Martin Pitt <martin.pitt@ubuntu.com> Tue, 19 Jul 2016 08:46:10 +0200
839+
840+gnome-session (3.18.1.2-1ubuntu3) yakkety; urgency=medium
841+
842+ * Move 50-ubuntu.conf and 55gnome-session_gnomerc into debian/data/.
843+ * Add systemd units for gnome-session-bin and a systemd user
844+ ubuntu-session.target.
845+
846+ -- Martin Pitt <martin.pitt@ubuntu.com> Mon, 18 Jul 2016 17:41:31 +0200
847+
848+gnome-session (3.18.1.2-1ubuntu2) yakkety; urgency=medium
849+
850+ * debian/patches/export_env_to_upstart.patch:
851+ - Export environment variables to upstart as well, if available (LP: #1433013)
852+
853+ -- Marco Trevisan (Treviño) <marco@ubuntu.com> Thu, 12 May 2016 14:44:19 +0100
854+
855+gnome-session (3.18.1.2-1ubuntu1) xenial; urgency=medium
856+
857+ * Merge from Debian unstable. Remaining changes (LP: #1512914):
858+ - debian/control.in:
859+ + Recommend session-migration
860+ + Remove gnome-shell circular dep to ease uprades
861+ - Split ubuntu-session out of gnome-session.
862+ - Split wayland session into gnome-session-wayland
863+ + control.in: add gnome-session-wayland package and depend on xwayland
864+ + gnome-session-wayland.install: install wayland session
865+ - Add upstart user session
866+ - debian/gnome-session-bin.postinst, debian/gnome-session-bin.prerm:
867+ Moved registering gnome-session binary as a session manager to
868+ gnome-session-bin package
869+ - don't install defaults.list (installed by desktop-file-utils in ubuntu):
870+ debian/gnome-session-common.dirs and gnome-session-common.install
871+ - debian/patches/13_display_session_properties.patch: Display
872+ session-properties as the Startup Applications capplet was removed from
873+ gnome-control-center, which makes it hard to discover the
874+ gnome-session-properties tool. (Closes: #683814)
875+ - debian/patches/22_support_autostart_delay.patch:
876+ Bugzilla patch to support adding a delay to autostart apps, using
877+ a "X-GNOME-Autostart-Delay" key in the desktop file
878+ - debian/patches/50_ubuntu_sessions.patch:
879+ + Add Ubuntu session
880+ + gnome-shell.desktop adds --session=gnome now that the "ubuntu" session
881+ is the default. Use TryExec to test if gnome-shell is installed.
882+ - debian/patches/51_remove_session_saving_from_gui.patch:
883+ add GNOME_SESSION_SAVE environment variable for people wanting to
884+ use the save session still, knowing that it can break your system
885+ if used unwisely
886+ - debian/patches/53_add_sessionmigration.patch, debian/control:
887+ recommends and launch the session-migration if present at the start of
888+ the session. This sync tool is running different session migration
889+ scripts that can be provided in various desktop packages.
890+ - debian/patches/95_dbus_request_shutdown.patch: Add "RequestShutdown" and
891+ "RequestReboot" DBus methods to allow other applications to shutdown or
892+ reboot the machine via the session manager.
893+ - debian/patches/103_kill_the_fail_whale.patch: Kill the Fail Whale as it
894+ tends to be more annoying than helpful
895+ - debian/patches/revert_remove_gnome_session_properties.patch: Keep the
896+ session-properties applet for ubuntu sessions
897+
898+ -- Tim Lunn <tim@feathertop.org> Thu, 12 Nov 2015 10:32:51 +1100
899+
900+gnome-session (3.18.1.2-1) unstable; urgency=medium
901+
902+ * New upstream release.
903+ * Update Build-Depends as per configure.ac:
904+ - Bump libglib2.0-dev to (>= 2.46.0). (Closes: #801736)
905+ - Bump libgtk-3-dev to (>= 3.18.0).
906+ - Bump libgnome-desktop-3-dev to (>= 3.18.0).
907+
908+ -- Michael Biebl <biebl@debian.org> Wed, 21 Oct 2015 16:23:10 +0200
909+
910+gnome-session (3.18.0-1) unstable; urgency=medium
911+
912+ * New upstream release (identical to 3.17.92).
913+ * Upload to unstable.
914+ * Drop obsolete Breaks, Conflicts and Replaces from pre-wheezy.
915+ * Drop obsolete Provides: gnome3-session since there are no more reverse
916+ dependencies.
917+ * Update README.Debian, the package for the metacity/gnome-panel based
918+ fallback session is called "gnome-session-flashback".
919+
920+ -- Michael Biebl <biebl@debian.org> Sun, 11 Oct 2015 19:04:24 +0200
921+
922+gnome-session (3.17.92-1) experimental; urgency=medium
923+
924+ * New upstream release candidate.
925+
926+ -- Andreas Henriksson <andreas@fatal.se> Thu, 17 Sep 2015 16:30:30 +0200
927+
928+gnome-session (3.16.0-1) unstable; urgency=medium
929+
930+ * New upstream release.
931+ - Adds new --disable-acceleration-check option (closes: #771513).
932+ * Drop 0001-configure.ac-Add-support-for-new-versions-of-systemd.patch,
933+ applied upstream.
934+ * Upstream has disabled support for consolekit even on non-systemd
935+ systems with this release. We follow upstream and do not enable it
936+ forcefully. Please file a bug if you think this change is wrong.
937+ - Drop libdbus-glib-1-dev build-dependency, it is now only used by
938+ consolekit support code.
939+ - Drop consolekit recommends from gnome-session-bin.
940+ * Bump Standards-Version to 3.9.6, no changes needed.
941+
942+ -- Dmitry Shachnev <mitya57@debian.org> Tue, 26 May 2015 17:34:09 +0300
943+
944+gnome-session (3.14.0-3) unstable; urgency=medium
945+
946+ * Cherry-pick upstream patch which allows to build against libsystemd and
947+ update Build-Depends accordingly. (Closes: #779752)
948+
949+ -- Michael Biebl <biebl@debian.org> Tue, 28 Apr 2015 19:58:00 +0200
950+
951+gnome-session (3.14.0-2) unstable; urgency=medium
952+
953+ * Update debian/defaults.list to catch up with times:
954+ - Drop swfdec-player which is long gone.
955+ - Update File-Roller to new .desktop file name.
956+ - Update GEdit to new .desktop file name.
957+ - Update Font Viewer to new .desktop file name.
958+ - Update Nautilus to new .desktop file name.
959+ - Update Totem to new .desktop file name.
960+ (Closes: #763595)
961+ Note: This breaks the defaults for those who install the new
962+ gnome-session-common and keep their << 3.14 application
963+ packages (partial upgrades).
964+
965+ -- Andreas Henriksson <andreas@fatal.se> Wed, 01 Oct 2014 16:11:51 +0200
966+
967+gnome-session (3.14.0-1) unstable; urgency=medium
968+
969+ * New upstream release.
970+ * Upload to unstable.
971+
972+ -- Andreas Henriksson <andreas@fatal.se> Mon, 22 Sep 2014 20:42:37 +0200
973+
974+gnome-session (3.13.3-1) experimental; urgency=medium
975+
976+ [ Andreas Henriksson ]
977+ * New upstream development release.
978+
979+ [ Josselin Mouette ]
980+ * Fix typos in defaults.list. Closes: #759429.
981+
982+ -- Andreas Henriksson <andreas@fatal.se> Fri, 05 Sep 2014 15:09:51 -0700
983+
984+gnome-session (3.12.1-4) experimental; urgency=medium
985+
986+ * gnome-session: Install wayland session files.
987+ * gnome-session-bin: add xwayland dependency on linux-any.
988+
989+ -- Andreas Henriksson <andreas@fatal.se> Sat, 02 Aug 2014 17:22:46 +0200
990+
991+gnome-session (3.12.1-3) unstable; urgency=medium
992+
993+ [ Laurent Bigonville ]
994+ * debian/control.in: Recommends libpam-systemd instead of systemd on linux
995+ architectures and add recommends against consolekit on non linux arch.
996+ Also move the Recommends to the arch any package.
997+
998+ [ Andreas Henriksson ]
999+ * Drop build-dependency on libupower-glib-dev (<< 0.99.0) [!linux-any]
1000+ - This can no longer be fulfilled anyway.
1001+ * Upload to unstable.
1002+
1003+ -- Andreas Henriksson <andreas@fatal.se> Mon, 14 Jul 2014 23:57:59 +0200
1004+
1005+gnome-session (3.12.1-2) experimental; urgency=medium
1006+
1007+ * Enable systemd support on linux architectures only
1008+
1009+ -- Laurent Bigonville <bigon@debian.org> Sun, 04 May 2014 15:02:14 +0200
1010+
1011+gnome-session (3.12.1-1) experimental; urgency=medium
1012+
1013+ * New upstream release
1014+
1015+ -- Sjoerd Simons <sjoerd@debian.org> Sun, 27 Apr 2014 18:03:58 +0200
1016+
1017+gnome-session (3.12.0-1) experimental; urgency=medium
1018+
1019+ * New upstream release.
1020+ * Require upower build-dependency to be lower then 0.99.x and
1021+ only on non-linux.
1022+ - The new upower 0.99.x does not implement the used interfaces.
1023+ - Functionality is available via logind.
1024+ * Drop installing /usr/share/applications
1025+ - new upstream no longer ships gnome-session-properties
1026+ * Bump build-dependency on libglib2.0-dev to >= 2.39.90
1027+ - using g_subprocess requires a recent glib.
1028+ * Bump Standards-Version to 3.9.5
1029+
1030+ -- Andreas Henriksson <andreas@fatal.se> Wed, 26 Mar 2014 22:51:00 +0100
1031+
1032+gnome-session (3.10.1-1) experimental; urgency=low
1033+
1034+ * New upstream release
1035+ * debian/patches/13_display_session_properties.patch
1036+ + Dropped. gnome-session-properties has been dropped upstream
1037+ * debian/rules, debian/control.in: Explicitely enabled systemd support and
1038+ recommend systemd for logind. Recommends is enough as gnome-session should
1039+ fall back to consolekit
1040+ * debian/control.in: Update build-depends
1041+
1042+ -- Sjoerd Simons <sjoerd@debian.org> Fri, 01 Nov 2013 23:04:59 +0100
1043+
1044+gnome-session (3.8.4-3) unstable; urgency=medium
1045+
1046+ * debian/control.in:
1047+ +Break gdm3 < 3.8. Closes: #726498.
1048+
1049+ -- Emilio Pozuelo Monfort <pochu@debian.org> Sat, 26 Oct 2013 16:12:19 +0200
1050+
1051+gnome-session (3.8.4-2) unstable; urgency=low
1052+
1053+ * Upload to unstable.
1054+
1055+ -- Emilio Pozuelo Monfort <pochu@debian.org> Sun, 13 Oct 2013 17:27:19 +0200
1056+
1057+gnome-session (3.8.4-1) experimental; urgency=low
1058+
1059+ [ Jeremy Bicha ]
1060+ * New upstream release
1061+ * debian/control.in:
1062+ - Don't recommend gnome-power-manager
1063+ * Completely drop gnome-session-fallback (moved to gnome-panel source)
1064+
1065+ [ Michael Biebl ]
1066+ * Drop Build-Depends on libnotify-dev. No longer necessary after
1067+ debian/patches/04_fallback_warning_notify.patch has been removed.
1068+ * Bump Standards-Version to 3.9.4. No further changes.
1069+
1070+ -- Michael Biebl <biebl@debian.org> Fri, 11 Oct 2013 17:07:46 +0200
1071+
1072+gnome-session (3.8.2.1-1) experimental; urgency=low
1073+
1074+ * New upstream release.
1075+
1076+ -- Andreas Henriksson <andreas@fatal.se> Sat, 25 May 2013 17:03:53 +0200
1077+
1078+gnome-session (3.7.92-1) experimental; urgency=low
1079+
1080+ * New upstream release (3.7.92)
1081+ * debian/patches/14_hide_session_properties_help.patch:
1082+ + Removed, fixed upstream
1083+ * debian/patches/01_gnome-wm.patch
1084+ debian/patches/02_fallback_desktop.patch
1085+ debian/patches/03_fallback_desktop_makefile.patch
1086+ debian/patches/04_fallback_warning_notify.patch
1087+ debian/patches/12_no_gdm_fallback.patch:
1088+ + Temporarily disabled, waiting for the return of fallback mode
1089+ * debian/control: Temporarily disable gnome-session-fallback
1090+
1091+ -- Sjoerd Simons <sjoerd@debian.org> Sun, 24 Mar 2013 18:55:46 +0100
1092+
1093+gnome-session (3.6.0-1) experimental; urgency=low
1094+
1095+ * New upstream release (3.6.0)
1096+ * Sync with Ubuntu:
1097+ + debian/55gnome-session_gnomerc: Use shell builtins instead of external
1098+ commands for extra speed
1099+ + debian/patches/12_no_gdm_fallback.patch: Refresh
1100+
1101+ -- Sjoerd Simons <sjoerd@debian.org> Sun, 14 Oct 2012 21:05:30 +0200
1102+
1103+gnome-session (3.4.2.1-3) unstable; urgency=low
1104+
1105+ * defaults.list:
1106+ + epiphany.desktop → epiphany-browser.desktop.
1107+ + Anyway replace epiphany with iceweasel.
1108+ + Update default handlers for LibreOffice.
1109+ * 04_fallback_warning_notify.patch: use libnotify to show the fallback
1110+ warning instead of a dialog.
1111+ * Build-depend on libnotify.
1112+
1113+ -- Josselin Mouette <joss@debian.org> Sat, 29 Sep 2012 10:19:13 +0200
1114+
1115+gnome-session (3.4.2.1-2) unstable; urgency=low
1116+
1117+ * debian/patches/13_display_session_properties.patch: Display
1118+ session-properties as the Startup Applications capplet was removed from
1119+ gnome-control-center, which makes it hard to discover the
1120+ gnome-session-properties tool. (Closes: #683814)
1121+ * debian/patches/14_hide_session_properties_help.patch: The help button in
1122+ gnome-session-properties points to the old GNOME 2 user guide and
1123+ therefore doesn't work in GNOME 3, so hide it.
1124+
1125+ -- Michael Biebl <biebl@debian.org> Wed, 05 Sep 2012 00:53:57 +0200
1126+
1127+gnome-session (3.4.2.1-1) unstable; urgency=low
1128+
1129+ * New upstream release.
1130+ * Remove obsolete section from README.Debian. The splash screen has been
1131+ dropped upstream for a while now.
1132+
1133+ -- Michael Biebl <biebl@debian.org> Thu, 31 May 2012 01:30:42 +0200
1134+
1135+gnome-session (3.4.2-1) unstable; urgency=low
1136+
1137+ * New upstream release.
1138+
1139+ -- Michael Biebl <biebl@debian.org> Mon, 14 May 2012 23:31:42 +0200
1140+
1141+gnome-session (3.4.1-1) unstable; urgency=low
1142+
1143+ * New upstream release.
1144+ * Refresh patches.
1145+ * Install blacklist/whitelist for gnome-session-check-accelerated-helper.
1146+ * Disable systemd support, continue to use ConsoleKit for session tracking.
1147+ * Bump Standards-Version to 3.9.3.
1148+ * Update defaults.list, use libreoffice instead of openoffice.org.
1149+
1150+ -- Michael Biebl <biebl@debian.org> Wed, 25 Apr 2012 03:03:59 +0200
1151+
1152+gnome-session (3.2.1-1) unstable; urgency=low
1153+
1154+ * New upstream release.
1155+ * Refresh debian/patches/12_no_gdm_fallback.patch.
1156+ * Remove debian/patches/13_format_security.patch, applied upstream.
1157+ * debian/control.in:
1158+ - Bump Build-Depends on intltool to (>= 0.40.6).
1159+ - Drop Build-Depends on librsvg2-dev.
1160+ - Add Build-Depends on libjson-glib-dev (>= 0.10).
1161+
1162+ -- Michael Biebl <biebl@debian.org> Sun, 27 Nov 2011 02:20:11 +0100
1163+
1164+gnome-session (3.0.2-4) unstable; urgency=low
1165+
1166+ [ Michael Biebl ]
1167+ * debian/control.in:
1168+ - We really need notification-daemon for gnome-session-fallback, not a
1169+ virtual provides. So make the depencency versioned.
1170+ Closes: #649737.
1171+
1172+ [ Josselin Mouette ]
1173+ * defaults.list:
1174+ - Add scheme handlers for yelp.
1175+ * 02_fallback_desktop.patch:
1176+ - Rename the fallback session to “GNOME Classic”.
1177+ - Split makefile parts into 03_fallback_desktop_makefile.patch.
1178+ * po-up/POTFILES.in: add 02_fallback_desktop.patch to translations.
1179+ * Update fr.po.
1180+
1181+ [ Jordi Mallach ]
1182+ * Update ca.po.
1183+
1184+ [ Josselin Mouette ]
1185+ * th.po: Thai translation from Theppitak Karoonboonyanan.
1186+ * zh_CN.po: Chinese translation from Aron Xu.
1187+
1188+ [ Christian Perrier ]
1189+ * ru.po: Russian translation from Alexei Lobanov.
1190+
1191+ [ Josselin Mouette ]
1192+ * sk.po: Slovak translation from Slavko.
1193+ * de.po: German translation from Chris Leick.
1194+ * nl.po: Dutch translation from Jeroen Schot.
1195+ * da.po: Danish translation from Joe Dalton. Closes: #649269.
1196+ * Add an alternative, at lower priority, for gnome-session-fallback.
1197+ Closes: #649596.
1198+
1199+ -- Michael Biebl <biebl@debian.org> Sat, 26 Nov 2011 23:06:59 +0100
1200+
1201+gnome-session (3.0.2-3) unstable; urgency=low
1202+
1203+ * Upload to unstable.
1204+ * debian/watch:
1205+ - Switch to .xz tarballs.
1206+ * Bump debhelper compatibility level to 8.
1207+ - Update Build-Depends on debhelper.
1208+ - Strip debian/tmp/ from .install files.
1209+ * debian/control.in:
1210+ - Set pkg-gnome-maintainers@lists.alioth.debian.org as Maintainer.
1211+ - Add Vcs-* fields.
1212+ * debian/patches/13_format_security.patch:
1213+ - Fix format string vulnerability. Patch cherry-picked from upstream Git.
1214+
1215+ -- Michael Biebl <biebl@debian.org> Fri, 14 Oct 2011 12:36:01 +0200
1216+
1217+gnome-session (3.0.2-2) experimental; urgency=low
1218+
1219+ [ Josselin Mouette ]
1220+ * defaults.list:
1221+ + Make epiphany-newtab the default http handler.
1222+ + Add a few more text MIME types to gedit, otherwise they can be
1223+ handled by emacs.
1224+ + Point directories to nautilus.desktop. Closes: #618376. Thanks
1225+ Jérémy Bicha.
1226+
1227+ [ Michael Biebl ]
1228+ * Remove Depends on policykit-1-gnome from gnome-session as gnome-shell
1229+ provides its own integrated PolicyKit authentication agent.
1230+ * Remove notification-daemon from gnome-session Recommends as gnome-shell
1231+ has an integrated notification system.
1232+ * Make notification-daemon a Depends of the gnome-session-fallback and
1233+ remove debian/patches/13_no_fallback_notification.patch so the session
1234+ manager starts notification-daemon in the fallback case.
1235+ * Bump Standards-Version to 3.9.2. No further changes.
1236+ * debian/watch: Track .bz2 tarballs.
1237+
1238+ -- Michael Biebl <biebl@debian.org> Fri, 19 Aug 2011 23:02:02 +0200
1239+
1240+gnome-session (3.0.2-1) experimental; urgency=low
1241+
1242+ * defaults.list:
1243+ + Add evolution.
1244+ + Add x-scheme-handler types.
1245+ * New upstream translation release.
1246+
1247+ -- Josselin Mouette <joss@debian.org> Wed, 01 Jun 2011 00:13:03 +0200
1248+
1249+gnome-session (3.0.0-2) experimental; urgency=low
1250+
1251+ * Update build-dependencies to correspond to what’s in configure.ac.
1252+
1253+ -- Josselin Mouette <joss@debian.org> Thu, 21 Apr 2011 23:15:29 +0200
1254+
1255+gnome-session (3.0.0-1) experimental; urgency=low
1256+
1257+ * debian/rules: remove the libexecdir setting, let the cdbs default be
1258+ used instead.
1259+ * New usptream release.
1260+ * Remove disabled patches.
1261+ * 10_session_save.patch:
1262+ + Updated for the new version.
1263+ + Disabled for now, the saved session is either discarded or
1264+ overwritten at logout time depending on the save-session setting.
1265+ * 11_saved_session_name.patch: dropped, we won’t be needing it with
1266+ the way session saving is handled in 3.0.
1267+ * Pull back gnome-wm and gnome-wm.desktop, it’s the easiest way to
1268+ configure the window manager for the fallback session.
1269+ * 01_gnome-wm.patch: new patch. Make gnome-wm the default instead of
1270+ metacity.
1271+ * 02_fallback_desktop.patch: new patch. Build a gnome-fallback.desktop
1272+ for /usr/share/xsessions.
1273+ * 13_no_fallback_notification.patch: refreshed accordingly.
1274+ * Move gsettings-desktop-schemas dependency to gnome-session-bin.
1275+ * gnome-session.postinst: drop removal of obsolete alternative, it’s
1276+ in stable now.
1277+ * Split gnome-session again. Put common files in gnome-session-common,
1278+ the standard session in gnome-session and the fallback session in
1279+ gnome-session-fallback.
1280+ * Sort out the resulting Conflicts/Replaces/Provides nightmare.
1281+ * Move back the defaults.list to gnome-session-common.
1282+ * Massive updates for short/long descriptions.
1283+ * Document how sessions are launched in README.Debian.
1284+ * debian/55gnome-session_gnomerc: handle gnome-session-fallback.
1285+
1286+ -- Josselin Mouette <joss@debian.org> Wed, 20 Apr 2011 23:08:49 +0200
1287+
1288+gnome-session (2.91.93-1) experimental; urgency=low
1289+
1290+ [ Frederic Peters ]
1291+ * New upstream release.
1292+ * debian/patches/01_gnome-wm.patch: removed, gnome-wm has been killed
1293+ upstream.
1294+ * debian/patches/03_upower.patch: removed, was stolen from git.
1295+ * debian/patches/10_session_save.patch: updated.
1296+ * debian/patches/11_saved_session_name.patch: updated.
1297+ * debian/patches/13_no_fallback_notification.patch: start fallback session
1298+ even if there is no notification-daemon.
1299+ * debian/patches/90_relibtoolize.patch: remove, using dh-autoreconf.
1300+ * debian/control.in:
1301+ + updated build-deps for new version.
1302+ + removed gnome3-session package, gnome-session will start gnome3, and
1303+ switch to fallback mode if necessary.
1304+ + removed gnome-session-common package, as it was there to satisfy the
1305+ presence of both gnome-session and gnome3-session
1306+ * debian/rules:
1307+ + use autoreconf
1308+ + remove rules for creating gnome3-session.desktop
1309+
1310+ [ Josselin Mouette ]
1311+ * defaults.list: add audio/flac.
1312+
1313+ -- Frederic Peters <fpeters@debian.org> Thu, 24 Mar 2011 20:47:28 +0100
1314+
1315+gnome-session (2.30.2-4) experimental; urgency=low
1316+
1317+ [ Josselin Mouette ]
1318+ * Conflict with gnome-splashscreen-manager. Closes: #605111.
1319+
1320+ [ Emilio Pozuelo Monfort ]
1321+ * Re-enable gnome3-session.
1322+
1323+ -- Emilio Pozuelo Monfort <pochu@debian.org> Mon, 06 Dec 2010 01:17:48 +0100
1324+
1325+gnome-session (2.30.2-3+sid2) unstable; urgency=low
1326+
1327+ * Start notification-daemon in Initialization phase. Closes: #640355
1328+ * Add autostart file for PolicyKit Authentication Agent.
1329+
1330+ -- Michael Biebl <biebl@debian.org> Mon, 26 Sep 2011 15:36:29 +0200
1331+
1332+gnome-session (2.30.2-3+sid1) unstable; urgency=low
1333+
1334+ [ Josselin Mouette ]
1335+ * Conflict with gnome-splashscreen-manager. Closes: #605111.
1336+
1337+ [ Michael Biebl ]
1338+ * Remove gnome3-session bits, superseded by gnome-session and
1339+ gnome-session-fallback.
1340+ * Add dependency on notification daemon.
1341+ * Install autostart file for notification-daemon to activate the
1342+ notification system on session startup. Closes: #636435
1343+ * Bump Standards-Version to 3.9.2. No further changes.
1344+
1345+ -- Michael Biebl <biebl@debian.org> Fri, 19 Aug 2011 22:41:15 +0200
1346+
1347+gnome-session (2.30.2-3) unstable; urgency=low
1348+
1349+ * defaults.list: open WebM and MPEG2/TS with totem.
1350+
1351+ -- Josselin Mouette <joss@debian.org> Sat, 06 Nov 2010 13:32:48 +0100
1352+
1353+gnome-session (2.30.2-2) unstable; urgency=low
1354+
1355+ * Temporarily disable gnome3-session in preparation of the squeeze
1356+ release. This way gnome-shell can be removed from squeeze too.
1357+ * 03_devicekit_optional.patch: dropped, upower builds everywhere.
1358+ * 03_upower.patch: stolen upstream. Closes: #595088.
1359+ * Update build-dependencies accordingly.
1360+ * 90_relibtoolize.patch: regenerated accordingly.
1361+
1362+ -- Josselin Mouette <joss@debian.org> Sat, 18 Sep 2010 00:18:01 +0200
1363+
1364+gnome-session (2.30.2-1) unstable; urgency=low
1365+
1366+ [ Michael Biebl ]
1367+ * New upstream stable release.
1368+ - Link against libXext and libXau to not fail with stricter linkers like
1369+ binutils-gold. Closes: #554661
1370+ * Refresh patches for new upstream release.
1371+ * Switch to source format 3.0 (quilt).
1372+ - Add debian/source/format.
1373+ - Drop Build-Depends on quilt.
1374+ - Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk from debian/rules.
1375+ * Bump Standards-Version to 3.9.0. Use Breaks instead of Conflicts as
1376+ recommended by the new policy.
1377+ * Drop Build-Depends on sharutils. We no longer need uuencode.
1378+
1379+ [ Josselin Mouette ]
1380+ * Drop build-dependency on type-handling.
1381+
1382+ -- Michael Biebl <biebl@debian.org> Thu, 22 Jul 2010 17:48:48 +0200
1383+
1384+gnome-session (2.30.0-1) unstable; urgency=low
1385+
1386+ * New upstream release.
1387+ * Refresh patches.
1388+ * 13_capplet_always_save.patch, 14_crash_on_exit.patch: dropped,
1389+ merged upstream.
1390+ * Pass --libexecdir=/usr/lib, since it will add /gnome-session
1391+ already.
1392+
1393+ -- Josselin Mouette <joss@debian.org> Tue, 13 Apr 2010 22:53:59 +0200
1394+
1395+gnome-session (2.28.0-7) unstable; urgency=low
1396+
1397+ * 12_no_gdm_fallback.patch: new patch. Don’t fall back on GDM if
1398+ ConsoleKit failed to reboot. CK will not even be attempted if it is
1399+ not available, anyway. Closes: #572085.
1400+ * Require upower/libdevkit-power unconditionnally, now that it works
1401+ on kfreebsd.
1402+ * 13_capplet_always_save.patch: stolen upstream. Ensure that the
1403+ capplet saves all changes when it exits. Closes: #574862.
1404+ * 14_crash_on_exit.patch: stolen upstream. Fix crash upon exit.
1405+ Closes: #548120.
1406+
1407+ -- Josselin Mouette <joss@debian.org> Thu, 25 Mar 2010 20:00:57 +0100
1408+
1409+gnome-session (2.28.0-6) unstable; urgency=low
1410+
1411+ * debian/control.in
1412+ - Depend on upower instead of devicekit-power.
1413+ - Bump Standards-Version to 3.8.4. No further changes.
1414+
1415+ -- Michael Biebl <biebl@debian.org> Tue, 23 Feb 2010 22:56:04 +0100
1416+
1417+gnome-session (2.28.0-5) unstable; urgency=low
1418+
1419+ * defaults.list: add text/x-patch. Some packages set brain-dead MIME
1420+ handlers for this.
1421+ * Remove obsolete gnome-session.dirs.
1422+ * 55gnome-session_gnomerc: add gnome3-session.
1423+ * README.Debian: fix documentation of window manager startup according
1424+ to the previous upload.
1425+ * Add a gnome3-session binary and a corresponding package, that starts
1426+ gnome-shell instead of gnome-panel + metacity.
1427+ * 11_saved_session_name.patch: new patch. Allow to change the
1428+ directory where the session is saved with the command line. The
1429+ corresponding option is used by gnome3-session.
1430+ * Split translations, icons and startup scripts in a new
1431+ gnome-session-common package.
1432+ * Straighten dependencies accordingly.
1433+
1434+ -- Josselin Mouette <joss@debian.org> Sat, 30 Jan 2010 12:52:45 +0100
1435+
1436+gnome-session (2.28.0-4) unstable; urgency=low
1437+
1438+ * 01_gnome-wm.patch: OK, you win. Kill all the 3D crap, always use
1439+ metacity by default. Closes: #553417.
1440+ * Drop mesa-utils dependency accordingly.
1441+
1442+ -- Josselin Mouette <joss@debian.org> Mon, 16 Nov 2009 15:21:05 +0100
1443+
1444+gnome-session (2.28.0-3) unstable; urgency=low
1445+
1446+ * 03_devicekit_optional.patch: new patch. Make DeviceKit-Power support
1447+ optional, so that gnome-session builds on non-Linux architectures.
1448+ * 90_relibtoolize.patch: regenerated accordingly, add an autoheader
1449+ invocation.
1450+
1451+ -- Josselin Mouette <joss@debian.org> Fri, 06 Nov 2009 13:51:37 +0100
1452+
1453+gnome-session (2.28.0-2) unstable; urgency=low
1454+
1455+ * Don’t require devicekit-power on non-linux architectures.
1456+ * Only recommend gnome-power-manager, so that gnome-session remains
1457+ installable on kfreebsd. Instead, break versions < 2.28.
1458+ * Fix README.Debian to stop mentioning compiz. Closes: #552400.
1459+ * Remove policykit-gnome dependency.
1460+ * gnome-session-bin depends on devicekit-power on Linux architectures.
1461+
1462+ -- Josselin Mouette <joss@debian.org> Mon, 26 Oct 2009 13:33:47 +0100
1463+
1464+gnome-session (2.28.0-1) unstable; urgency=low
1465+
1466+ * Depend on gnome-power-manager. Closes: #547887.
1467+ + Make it 2.28 since the interface changed.
1468+ * Include back the file manager in the required components.
1469+ * Add nautilus to the dependencies, accordingly.
1470+ * New upstream release.
1471+ * Update build-dependencies.
1472+ * Require policykit-1-gnome.
1473+ * at-spi-registryd-wrapper has gone away.
1474+ * Set gnome-wm as the default WM using the configure flag.
1475+ * The splash is disabled by default now.
1476+ + Remove it from the package.
1477+ + Clean up the alternative.
1478+ * With all of that, all our GConf overrides disappear.
1479+ + Run update-gconf-defaults once after the upgrade.
1480+ * Update README.Debian accordingly.
1481+ * 01_gnome-wm.patch:
1482+ + Stop making compiz the default. Closes: #547899.
1483+ + Better check for compositing available.
1484+ + Use mutter when it is available.
1485+ + No need to patch the makefiles anymore.
1486+ * Depend on mesa-utils for glxinfo.
1487+ * 10_session_save.patch: port to GtkBuilder.
1488+ * 11_dbus_exit.patch: dropped, merged upstream.
1489+ * 90_relibtoolize.patch: updated for the new version.
1490+ * defaults.list: update for 2.28 versions.
1491+
1492+ -- Josselin Mouette <joss@debian.org> Sat, 24 Oct 2009 10:48:08 +0200
1493+
1494+gnome-session (2.26.2-1) unstable; urgency=low
1495+
1496+ * defaults.list: use brasero-nautilus instead of nautilus-cd-burner.
1497+ * 55gnome-session_gnomerc: make it clear that /usr/share/gnome is not
1498+ a symlink to /etc, since users are stupid enough to think this
1499+ should be the case.
1500+ * New upstream release.
1501+ * 01_gnome-wm.patch, 10_session_save.patch: updated accordingly.
1502+ * 11_dbus_exit.patch: replaced by the much improved version provided
1503+ by upstream.
1504+ * 12_desktop_crash.patch: dropped, merged upstream.
1505+
1506+ -- Josselin Mouette <joss@debian.org> Tue, 07 Jul 2009 22:43:05 +0200
1507+
1508+gnome-session (2.26.1-7) unstable; urgency=low
1509+
1510+ * 12_desktop_crash.patch: new patch from Petr Gajdůšek. Use
1511+ g_ptr_array_free to free a GPtrArray, not g_strfreev.
1512+ Closes: #532702.
1513+
1514+ -- Josselin Mouette <joss@debian.org> Mon, 15 Jun 2009 12:00:24 +0200
1515+
1516+gnome-session (2.26.1-6) unstable; urgency=low
1517+
1518+ * 01_gnome-wm.patch:
1519+ + Don’t set LIBGL_ALWAYS_INDIRECT, compiz does it by itself if
1520+ needed and it slows things down if it’s not needed.
1521+ + Don’t enable the glib compiz plugin, only the gconf one; the glib
1522+ plugin makes it lock up on startup. Closes: #531388.
1523+
1524+ -- Josselin Mouette <joss@debian.org> Tue, 02 Jun 2009 14:41:45 +0200
1525+
1526+gnome-session (2.26.1-5) unstable; urgency=low
1527+
1528+ * 01_gnome-wm.patch:
1529+ + Actually install gnome-wm.desktop, it’s pretty useless otherwise.
1530+ + Don’t read the GConf key, it’s obviously set to gnome-wm if we’re
1531+ starting gnome-wm.
1532+ + Make compiz the default if compiz-gtk is installed.
1533+ + Remove a few unneeded things from the script to make it start
1534+ faster.
1535+ * gconf-defaults: make gnome-wm the default window manager.
1536+ * README.Debian: document how programs are started and how to
1537+ configure the different kinds of startups.
1538+ * 90_relibtoolize.patch: updated.
1539+ * Split the package between gnome-session-bin, which contains the
1540+ minimal runtime needed to actually run the gnome-session binary, and
1541+ gnome-session, which contains all the startup scripts and has much
1542+ larger dependencies, including the components which are required by
1543+ default. This prepares us for GDM 2.26.
1544+ * Update the list of copyright holders.
1545+
1546+ -- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 18:18:06 +0200
1547+
1548+gnome-session (2.26.1-4) unstable; urgency=low
1549+
1550+ * gconf-defaults: remove the file manager from the required components
1551+ list. Now that nautilus has an autostart file, this is no longer
1552+ necessary. It avoids restarting it endlessly when this is not
1553+ required. Closes: #525718.
1554+ * Break nautilus << 2.26.2-4 to ensure the autostart file is here.
1555+
1556+ -- Josselin Mouette <joss@debian.org> Sun, 31 May 2009 14:04:06 +0200
1557+
1558+gnome-session (2.26.1-3) unstable; urgency=low
1559+
1560+ * Stop mentioning GNOME 2.
1561+ * defaults.list: add nautilus folder handlers and x-content handlers.
1562+ Closes: #530567, #530691.
1563+
1564+ -- Josselin Mouette <joss@debian.org> Fri, 29 May 2009 10:34:21 +0200
1565+
1566+gnome-session (2.26.1-2) experimental; urgency=low
1567+
1568+ * prerm: only unregister the alternative when deinstalling the
1569+ package. Closes: #524900.
1570+ * Break xserver-xorg << 1:7.4. See GNOME#568989 for why.
1571+ * Drop build-dependencies on gnome-keyring and libgnomeui.
1572+ Closes: #526960.
1573+ * copyright:
1574+ + Update list of main authors. Closes: #526963.
1575+ + Point to versioned GPL.
1576+ * 11_dbus_exit.patch: new patch. Don’t exit when the system bus is
1577+ disconnected. Thanks Sjoerd Simmons for the hint.
1578+
1579+ -- Josselin Mouette <joss@debian.org> Thu, 21 May 2009 10:55:25 +0200
1580+
1581+gnome-session (2.26.1-1) experimental; urgency=low
1582+
1583+ * 10_session_save.patch: fix bug that leads to saving the session
1584+ every time a SaveYourselfComplete request is received.
1585+ * New upstream release.
1586+ + Refresh or regenerate patches.
1587+
1588+ -- Josselin Mouette <joss@debian.org> Tue, 14 Apr 2009 19:24:09 +0200
1589+
1590+gnome-session (2.26.0.90-1) experimental; urgency=low
1591+
1592+ * New upstream release.
1593+ * Require gnome-settings-daemon 2.26 for the startup mechanism change.
1594+ * Don’t require gnome-control-center, everything needed should be in
1595+ g-s-d now.
1596+ * 01_ignore-gdm-lang.patch: dropped, merged upstream.
1597+ * 02_gsd-spawn.patch: removed; fixed upstream in a different way.
1598+ * 03_powermanagement.patch: dropped, upstream finally standardized the
1599+ logout dialog.
1600+ * 04_at-spi_startup.patch, 09_splash_hide.patch,
1601+ 10_update_notifier.patch: dropped, obsolete.
1602+ * Rename 90_autoconf-autoheader.patch to 90_relibtoolize.patch and
1603+ regenerate it for the new version.
1604+ * Remove files corresponding to obsolete components.
1605+ * Remove gnome-wm from the default session, it has a startup file now.
1606+ * Remove debian/gnome-wm and patch the upstream version with
1607+ 01_gnome-wm.patch instead.
1608+ * Document how to change the Window Manager in README.Debian.
1609+ * Massive update to build-dependencies.
1610+ * Make dbus-x11 and policykit-gnome dependencies.
1611+ * Remove manpage hack, not necessary anymore.
1612+ * Install all autostart stuff in /usr/share, not in /etc.
1613+ * 10_session_save.patch: new patch, based on the patch by Ghee Teo.
1614+ Enable session saving from the capplet again, and make it work on
1615+ the manager side.
1616+ * Use patch-translations.mk, require gnome-pkg-tools 0.13.
1617+ * Add translations based on the strings in gnome-session 2.22.
1618+ * Break gnome-panel < 2.26, since previous versions (2.22 and our
1619+ patched 2.24) are not able to talk to this version.
1620+
1621+ -- Josselin Mouette <joss@debian.org> Sat, 11 Apr 2009 15:30:31 +0200
1622+
1623+gnome-session (2.22.3-3) unstable; urgency=low
1624+
1625+ * 55gnome-session_gnomerc: change XDG_DATA_DIRS to include
1626+ /usr/share/gnome when gnome-session is being launched.
1627+ * defaults.list: move the defaults from gnome-vfs.
1628+ + Add some subtypes of text/plain to gedit defaults.
1629+ * gnome-session.install: install it in /etc/gnome.
1630+ * gnome-session.links: link it from /usr/share/gnome/applications.
1631+ * Standards version is 3.8.1.
1632+ * Conflict and replace with the older libgnomevfs2-common versions.
1633+
1634+ -- Josselin Mouette <joss@debian.org> Thu, 19 Mar 2009 22:25:42 +0100
1635+
1636+gnome-session (2.22.3-2) unstable; urgency=low
1637+
1638+ * Recommend dbus-x11 instead of dbus for the availability of
1639+ dbus-launch.
1640+ * 04_at-spi_startup.patch: new patch. Do not try to start at-spi if it
1641+ is not installed. Closes: #501407.
1642+ * Remove build-dependency on esound.
1643+
1644+ -- Josselin Mouette <joss@debian.org> Fri, 24 Oct 2008 21:07:03 +0200
1645+
1646+gnome-session (2.22.3-1) unstable; urgency=low
1647+
1648+ * New upstream bugfix release:
1649+ + debian/patches/90_autoconf-autoheader.patch:
1650+ - Updated for the new version.
1651+ * debian/control.in:
1652+ + Update Standards-Version to 3.8.0, no additional changes needed.
1653+
1654+ -- Sebastian Dröge <slomo@debian.org> Mon, 30 Jun 2008 12:28:28 +0200
1655+
1656+gnome-session (2.22.2-1) unstable; urgency=low
1657+
1658+ [ Josselin Mouette ]
1659+ * Drop dependency on gnome-power-manager. Closes: #472202.
1660+
1661+ [ Sam Morris ]
1662+ * Refresh 01_ignore-gdm-lang.patch, 02_gsd-spawn.patch, 09_splash_hide.patch
1663+ and 90_autoconf-autoheader.patch.
1664+
1665+ [ Josselin Mouette ]
1666+ * New upstream release, includes migration of the trash to the new
1667+ location.
1668+
1669+ -- Josselin Mouette <joss@debian.org> Wed, 28 May 2008 02:10:26 +0200
1670+
1671+gnome-session (2.22.0-2) unstable; urgency=low
1672+
1673+ * Upload to unstable.
1674+
1675+ -- Sebastian Dröge <slomo@debian.org> Wed, 19 Mar 2008 02:34:13 +0100
1676+
1677+gnome-session (2.22.0-1) experimental; urgency=low
1678+
1679+ [ Josselin Mouette ]
1680+ * default.session: remove gnome-cups-icon from the default session.
1681+
1682+ [ Loic Minier ]
1683+ * Update 02_gsd-spawn's header to give a bottom line explanation on the
1684+ rationale for the change as I keep forgetting why we need tihs.
1685+
1686+ [ Josselin Mouette ]
1687+ * 02_gsd-spawn.patch: fix cosmetic issues asked by upstream.
1688+
1689+ [ Sebastian Dröge ]
1690+ * New upstream stable release:
1691+ + Upload to experimental first because of intrusive changes.
1692+ + debian/control.in:
1693+ - Update build dependencies and dependencies.
1694+ + debian/patches/02_gsd-spawn.patch:
1695+ - Updated to apply cleanly again.
1696+ + debian/patches/90_from_bugzilla_fix_session_sounds.patch:
1697+ - Dropped, merged upstream.
1698+ + debian/patches/90_autoconf-autoheader.patch:
1699+ - Regenerated for the new version.
1700+
1701+ -- Sebastian Dröge <slomo@debian.org> Sun, 16 Mar 2008 19:58:07 +0100
1702+
1703+gnome-session (2.20.3-2) unstable; urgency=low
1704+
1705+ [ Loic Minier ]
1706+ * Include CDBS' utils.
1707+
1708+ [ Josselin Mouette ]
1709+ * 02_gsd-spawn.patch: updated to spawn gsd through g_spawn while
1710+ still waiting for it to answer to dbus before proceeding. This
1711+ avoids a race condition leading to applications being started
1712+ before g-s-d is ready. Closes: #454149, #465483.
1713+
1714+ -- Josselin Mouette <joss@debian.org> Sat, 16 Feb 2008 14:44:50 +0100
1715+
1716+gnome-session (2.20.3-1) unstable; urgency=low
1717+
1718+ [ Josselin Mouette ]
1719+ * 90_from_bugzilla_fix_session_sounds.patch: fork the shell that
1720+ encapsulates esd in the root directory, so that the home directory
1721+ can be safely umounted upon logout.
1722+
1723+ [ Sebastian Dröge ]
1724+ * New upstream release with translation updates.
1725+ * Update Standards-Version to 3.7.3, no additional changes needed.
1726+ * 90_autoconf-autoheader.patch: regenerated.
1727+ * Build depend on gnome-keyring as configure checks for the
1728+ gnome-keyring-daemon binary.
1729+
1730+ -- Sebastian Dröge <slomo@debian.org> Sat, 12 Jan 2008 07:16:22 +0100
1731+
1732+gnome-session (2.20.2-1) unstable; urgency=low
1733+
1734+ [ Josselin Mouette ]
1735+ * gnome-wm:
1736+ + Fix indentation.
1737+ + Support for compiz. Closes: #448560, thanks Andreas Klöckner.
1738+ + Also use compiz if metacity is unavailable.
1739+ * 02_gsd-spawn.patch: spawn gnome-settings-daemon using g_spawn
1740+ instead of DBus. Closes: #339785.
1741+ * Require libgnome-settings-daemon-dev 1:2.20.1-2 to obtain the g-s-d
1742+ path from pkgconfig.
1743+ * Switch to quilt for patch handling.
1744+ + Refresh 01_ignore-gdm-lang.patch.
1745+ * 90_autoconf.patch: re-run autoconf and autoheader in the sources.
1746+ * Add some references in the patch headers.
1747+
1748+ [ Loic Minier ]
1749+ * Only suggest desktop-base; the desktop meta packages should pull branding,
1750+ not gnome-session and gnome-session has a default branding anyway.
1751+ * New patch, 02_no_warning_crash, doesn't make critical warnings fatal when
1752+ the version number has 3 dots as in dev releases as this makes the desktop
1753+ too unstable.
1754+ * New upstream stable release; translation updates.
1755+ - Update patch 90_autoconf.
1756+ * Don't force an upper bound in gnome-control-center versions as this makes
1757+ updates too hard; some configuration might be missing in the interim, but
1758+ the session should still start properly.
1759+ * Rename README.debian to README.Debian.
1760+ * Disable the splash screen by default to speed up login and document how to
1761+ enable it in README.Debian.
1762+ * New patch, 10_update_notifier, adds update-notifier to the list of known
1763+ applications.
1764+ * New patch, 09_splash_hide, hides splash screen unconditionally when all
1765+ apps have been launched as to avoid it staying visible with broken apps.
1766+ * New patch, 03_powermanagement, shows hibernate option in logout dialog if
1767+ gdm supports it; will probably disappear with either the gnome-session or
1768+ the gdm rewrite.
1769+ * New patch, 90_from_bugzilla_fix_session_sounds, fixes playback of session
1770+ sounds; GNOME #466458.
1771+ * Refresh patches 03_powermanagement, 09_splash_hide, and 10_update_notifier
1772+ to apply cleanly.
1773+ * Rename patch 90_autoconf to 90_autoconf-autoheader to clarify that both
1774+ autoconf and autoheader need to be run.
1775+
1776+ -- Josselin Mouette <joss@debian.org> Wed, 28 Nov 2007 16:01:56 +0100
1777+
1778+gnome-session (2.20.1-1) unstable; urgency=low
1779+
1780+ * New upstream bugfix release.
1781+
1782+ -- Sebastian Dröge <slomo@debian.org> Fri, 26 Oct 2007 12:21:23 +0200
1783+
1784+gnome-session (2.20.0-2) unstable; urgency=low
1785+
1786+ * Conflict with bug-buddy << 2.20 for breakpad support.
1787+ Closes: #443638.
1788+ * 01_ignore-gdm-lang.patch: ignore GDM_LANG. This only serves the
1789+ purpose to break anything that modifies locale settings.
1790+ Closes: #445646.
1791+
1792+ -- Josselin Mouette <joss@debian.org> Thu, 11 Oct 2007 22:35:32 +0200
1793+
1794+gnome-session (2.20.0-1) unstable; urgency=low
1795+
1796+ [ Josselin Mouette ]
1797+ * default.session: don't run vino-session as gnome-session has
1798+ included this feature for 3 years, d'uh.
1799+
1800+ [ Sebastian Dröge ]
1801+ * New upstream release, no API changes:
1802+ + Clarifies session saving text (Closes: #259718).
1803+ * Upload to unstable, drop check-dist include.
1804+ * debian/control.in:
1805+ + Build depend on libgtk2.0-dev (>= 2.11.1) because gdk_window_set_opacity
1806+ was added in that version but configure checks for >= 2.3.1.
1807+
1808+ -- Sebastian Dröge <slomo@debian.org> Thu, 20 Sep 2007 12:38:07 +0200
1809+
1810+gnome-session (2.19.5-1) experimental; urgency=low
1811+
1812+ * New upstream development releases.
1813+ - Target at experimental; include check-dist.
1814+ - Add a libglib2.0-dev (>= 2.13.0) build-dep.
1815+ - Drop patch 01_splash-memory-corruption, merged upstream.
1816+ - New patch, 60_dates-no-padding, fixes build on the 8th and 9th of the
1817+ month and in August and September; GNOME #454797.
1818+ * Drop obsolete patch to display a warning when switching from GNOME 1 to
1819+ GNOME 2, 02_conversion.
1820+ * Uuencode debian/gnome-debian-splash.png instead of shipping it as a SNG;
1821+ this makes the file smaller; build-depend on sharutils (priority standard)
1822+ instead of sng (priority optional).
1823+ * New upstream development release; bug fixes and translations.
1824+ - Drop patch 60_dates-no-padding; fixed differently upstream.
1825+
1826+ -- Loic Minier <lool@dooz.org> Tue, 10 Jul 2007 18:44:14 +0200
1827+
1828+gnome-session (2.18.3-1) unstable; urgency=low
1829+
1830+ * New upstream stable release; translation.
1831+
1832+ -- Loic Minier <lool@dooz.org> Fri, 06 Jul 2007 23:08:26 +0200
1833+
1834+gnome-session (2.18.2-2) unstable; urgency=low
1835+
1836+ * default.session: remove gnome-volume-manager, it is now run through
1837+ the autostart facility.
1838+ * gnome-wm: add support for openbox (closes: #429729).
1839+ * 01_splash-memory-corruption.diff: patch from upstream r4382,
1840+ backported by Michel Dänzer. Fixes memory corruption with some
1841+ icons (closes: #430630, #425742).
1842+
1843+ -- Josselin Mouette <joss@debian.org> Wed, 27 Jun 2007 21:28:43 +0200
1844+
1845+gnome-session (2.18.2-1) unstable; urgency=low
1846+
1847+ * New upstream stable release.
1848+ - Drop patch 01_clever_save; merged upstream.
1849+
1850+ -- Loic Minier <lool@dooz.org> Mon, 28 May 2007 16:18:59 +0200
1851+
1852+gnome-session (2.18.0-2) unstable; urgency=low
1853+
1854+ [ Sven Arvidsson ]
1855+ * Add the only missing manpage (Closes: #252006)
1856+
1857+ [ Josselin Mouette ]
1858+ * 01_clever_save.diff: stolen from upstream's SVN. Be more clever when
1859+ saving the session, so that e.g. multiple xterms are not forgotten.
1860+ Closes: #364463.
1861+
1862+ -- Josselin Mouette <joss@debian.org> Tue, 15 May 2007 20:45:31 +0200
1863+
1864+gnome-session (2.18.0-1) unstable; urgency=low
1865+
1866+ * New upstream major stable release; fixes and translations.
1867+ - Pass --with-at-spi-registryd-directory=/usr/lib/at-spi to configure.
1868+ - Drop patches 05_session_save, 07_kill_esd, merged upstream.
1869+ * Upload to unstable; drop check-dist include.
1870+ * Wrap build-deps and deps.
1871+ * Bump up Debhelper compatibility level to 5.
1872+ * Fix URL in copyright.
1873+ * Set LDFLAGS directly instead of via DEB_CONFIGURE_SCRIPT_ENV; build-dep on
1874+ cdbs >= 0.4.41.
1875+ * Prepend -z defs to LDFLAGS for additional safety.
1876+ * Rewrite rules generating the PNG splash; misc cleanups.
1877+ * Fix copyright to really document licensing and copyright holders.
1878+
1879+ -- Loic Minier <lool@dooz.org> Sun, 22 Apr 2007 15:23:12 +0200
1880+
1881+gnome-session (2.16.3-2) experimental; urgency=low
1882+
1883+ * Merge SVN 2.14.3-1 up-to 2.14.3-6; r7581:8951.
1884+ - Drop patch 06_ro_po, merged upstream.
1885+
1886+ -- Loic Minier <lool@dooz.org> Sat, 17 Mar 2007 12:24:06 +0100
1887+
1888+gnome-session (2.16.3-1) experimental; urgency=medium
1889+
1890+ [ Josselin Mouette ]
1891+ * Quote the readlink call to handle the case where the
1892+ x-session-manager alternative is broken (closes: #403931).
1893+ * Medium urgency because it has the potential to cause all X sessions
1894+ to fail starting.
1895+
1896+ [ Loic Minier ]
1897+ * Add a get-orig-source target to retrieve the upstream tarball.
1898+ * Include the new check-dist Makefile to prevent accidental uploads to
1899+ unstable; bump build-dep on gnome-pkg-tools to >= 0.10.
1900+ * New upstream stable release; bug fixes and translations.
1901+
1902+ -- Loic Minier <lool@dooz.org> Sat, 17 Mar 2007 12:04:03 +0100
1903+
1904+gnome-session (2.16.2-1) experimental; urgency=low
1905+
1906+ [ Josselin Mouette ]
1907+ * New upstream release.
1908+ * gnome-debian-splash.sng: updated.
1909+ * Update build-dependencies.
1910+ * Build-depend on libdbus-glib-1-dev and libgnome-keyring-dev.
1911+ * 03_implicit_conversion.diff: removed, integrated upstream.
1912+ * 05_session_save.diff: patch the session properties capplet.
1913+ + Add a "save current session" button.
1914+ + Remove the "ask on exit" checkbox, as it isn't used anymore.
1915+ + Add 36 translations based on the existing ones (minus the "- ").
1916+ + Remove the annoying "session saved" dialog from the session
1917+ manager.
1918+
1919+ [ Loic Minier ]
1920+ * Fix watch file to track stable releases and use HTTP.
1921+
1922+ [ Josselin Mouette ]
1923+ * Build-depend on libgnome-settings-daemon-dev.
1924+ * Tighten dependencies on gnome-control-center with ${gnome:Version}.
1925+ * Require gnome-pkg-tools 0.6.
1926+ * Call gnome-version.mk.
1927+ * 04_manpages.diff: removed, integrated upstream.
1928+ * 05_session_save.diff: update patch for new version.
1929+
1930+ -- Josselin Mouette <joss@debian.org> Mon, 27 Nov 2006 20:43:07 +0100
1931+
1932+gnome-session (2.14.3-6) unstable; urgency=low
1933+
1934+ * Add a get-orig-source target to retrieve the upstream tarball.
1935+
1936+ -- Loic Minier <lool@dooz.org> Sat, 13 Jan 2007 23:30:57 +0100
1937+
1938+gnome-session (2.14.3-5) unstable; urgency=medium
1939+
1940+ * Quote the readlink call to handle the case where the
1941+ x-session-manager alternative is broken (closes: #403931).
1942+ * Medium urgency because it has the potential to cause all X sessions
1943+ to fail starting.
1944+
1945+ -- Josselin Mouette <joss@debian.org> Wed, 20 Dec 2006 21:37:44 +0100
1946+
1947+gnome-session (2.14.3-4) unstable; urgency=low
1948+
1949+ * 06_ro_po.diff: new Romanian translation from Eddy Petrișor
1950+ (closes: #403595).
1951+
1952+ -- Josselin Mouette <joss@debian.org> Tue, 19 Dec 2006 21:25:14 +0100
1953+
1954+gnome-session (2.14.3-3) unstable; urgency=low
1955+
1956+ * gnome-debian-splash.sng: grab new version, without the "2.14"
1957+ string.
1958+ * 05_session_save.diff: pack the "save session" button correctly.
1959+
1960+ -- Josselin Mouette <joss@debian.org> Tue, 10 Oct 2006 19:14:02 +0200
1961+
1962+gnome-session (2.14.3-2) unstable; urgency=low
1963+
1964+ * 05_session_save.diff: patch the session properties capplet.
1965+ + Allow editing of sessions (bugzilla #336820).
1966+ + Add a "save current session" button.
1967+ + Remove the "ask on exit" checkbox, as it isn't used anymore.
1968+ + Add 36 translations based on the existing ones (minus the "- ").
1969+ + Remove the annoying "session saved" dialog from the session
1970+ manager.
1971+
1972+ -- Josselin Mouette <joss@debian.org> Wed, 4 Oct 2006 22:26:30 +0200
1973+
1974+gnome-session (2.14.3-1) unstable; urgency=low
1975+
1976+ * New upstream release.
1977+ - Drop 01_create_autostart patch, merged upstream.
1978+ * Suggest gnome-user-guide | gnome2-user-guide. (Closes: #371106, #371107,
1979+ #371108, #371109, #371110, #371111, #371112, #371113, #371114, #371115,
1980+ #371116, #371117, #371118, #371119, #371120, #371121, #371122, #371123,
1981+ #371124, #371125, #371126, #371127, #371128, #371129, #371130, #371131,
1982+ #371132, #371133)
1983+
1984+ -- Loic Minier <lool@dooz.org> Tue, 8 Aug 2006 11:15:38 +0200
1985+
1986+gnome-session (2.14.2-1) unstable; urgency=low
1987+
1988+ * New upstream release.
1989+
1990+ -- Loic Minier <lool@dooz.org> Wed, 31 May 2006 18:36:45 +0200
1991+
1992+gnome-session (2.14.1-2) unstable; urgency=low
1993+
1994+ * 03_implicit_conversion.diff: Fix for implicit conversion
1995+ (closes: #368062).
1996+
1997+ -- Josselin Mouette <joss@debian.org> Thu, 25 May 2006 00:49:18 +0200
1998+
1999+gnome-session (2.14.1-1) unstable; urgency=low
2000+
2001+ * New upstream release.
2002+ * Standards-version is 3.7.2.
2003+ * 07_kill_esd.diff: updated.
2004+ * Build-depend on libwrap0-dev.
2005+
2006+ -- Josselin Mouette <joss@debian.org> Thu, 18 May 2006 07:51:21 +0200
2007+
2008+gnome-session (2.14.0-2) unstable; urgency=low
2009+
2010+ * Update watch file.
2011+ * 01_create_autostart.diff: create the autostart directory when it
2012+ doesn't exist (closes: #360590, #360431).
2013+
2014+ -- Josselin Mouette <joss@debian.org> Fri, 7 Apr 2006 09:59:27 +0200
2015+
2016+gnome-session (2.14.0-1) unstable; urgency=low
2017+
2018+ [ Loic Minier ]
2019+ * Launch esd with a cwd of "/" to avoid blocking pam_mount / pam_umount,
2020+ thanks Daniel Kahn Gillmor. (Closes: #335944)
2021+ [debian/patches/07_kill_esd.diff]
2022+
2023+ [ Josselin Mouette ]
2024+ * New upstream release.
2025+ * Build-depend on libnotify-dev.
2026+ * Enable IPv6.
2027+ * gnome-debian-splash.sng: update for GNOME 2.14.
2028+ * 02_conversion.diff: updated for the new version.
2029+ * Build-depend on libgnome-desktop-dev.
2030+
2031+ -- Josselin Mouette <joss@debian.org> Sat, 1 Apr 2006 16:58:40 +0200
2032+
2033+gnome-session (2.12.0-4) unstable; urgency=low
2034+
2035+ * Only depend on dbus, dbus-1-utils isn't necessary.
2036+ * rules: don't remove empty directories (really closes: #340765).
2037+
2038+ -- Josselin Mouette <joss@debian.org> Sun, 22 Jan 2006 15:35:55 +0100
2039+
2040+gnome-session (2.12.0-3) unstable; urgency=low
2041+
2042+ * 03_splash.diff: removed.
2043+ * gconf-defaults: ship the defaults here.
2044+ * control.in: require debhelper 5.0.13.
2045+
2046+ -- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 12:02:30 +0100
2047+
2048+gnome-session (2.12.0-2) unstable; urgency=low
2049+
2050+ * dirs: create /usr/share/images/desktop-base (closes: #340765).
2051+ * Upload to unstable.
2052+
2053+ -- Josselin Mouette <joss@debian.org> Sun, 8 Jan 2006 01:27:42 +0100
2054+
2055+gnome-session (2.12.0-1) experimental; urgency=low
2056+
2057+ * New upstream release.
2058+ * Edit upstream logo to add the debian swirl:
2059+ + Add it, using the sng format.
2060+ + Build-depend on sng.
2061+ + Call sng in the build target.
2062+ + Install it in /usr/share/pixmaps/splash/.
2063+ + 03_splash.diff: use it by default.
2064+ + Add it to the desktop-base alternative.
2065+ + Only recommend desktop-base.
2066+ * 02_conversion.diff: update to apply cleanly.
2067+ * Update watch file.
2068+
2069+ -- Josselin Mouette <joss@debian.org> Sun, 9 Oct 2005 03:19:58 +0200
2070+
2071+gnome-session (2.10.0-8) unstable; urgency=low
2072+
2073+ * rules: set --as-needed again.
2074+ * Rebuild against the latest gconf2 (closes: #330476, #330913).
2075+ * Build-depend on gconf2 2.10.1-6.
2076+
2077+ -- Josselin Mouette <joss@debian.org> Mon, 3 Oct 2005 20:57:52 +0200
2078+
2079+gnome-session (2.10.0-7) unstable; urgency=medium
2080+
2081+ * The "now all dependencies in GNOME are back to the old times
2082+ madness, why not do the same here?" release.
2083+ * rules: remove --as-needed (closes: #325639).
2084+ * default.session:
2085+ + Remove gnome-smproxy. It slows down the startup process and
2086+ sometimes hangs.
2087+ + Remove magicdev, which is deprecated.
2088+
2089+ -- Josselin Mouette <joss@debian.org> Sun, 4 Sep 2005 11:13:41 +0200
2090+
2091+gnome-session (2.10.0-6) unstable; urgency=high
2092+
2093+ Matt Kraai <kraai@ftbfs.org>:
2094+ * Added a build-dependency on libxau-dev to fix FTBFS. (Closes: #323327)
2095+
2096+ Loic Minier <lool@dooz.org>:
2097+ * Recommend the dbus-1-utils package as it is xorg starts a dbus session by
2098+ default now (use-session-dbus in /etc/X11/Xsession.options).
2099+ (Closes: #320015)
2100+
2101+ -- J.H.M. Dassen (Ray) <jdassen@debian.org> Sun, 28 Aug 2005 14:52:19 +0200
2102+
2103+gnome-session (2.10.0-5) unstable; urgency=medium
2104+
2105+ * Depend on gnome-control-center instead of capplets.
2106+ * Remove unuseful conflicts field.
2107+ * Fix a typo in the description (closes: #299992).
2108+ * Standards-version is 3.6.2.
2109+
2110+ -- Josselin Mouette <joss@debian.org> Sat, 25 Jun 2005 19:11:59 +0200
2111+
2112+gnome-session (2.10.0-4) unstable; urgency=low
2113+
2114+ * Undo previous changes, we are renaming the menus.
2115+
2116+ -- Sebastien Bacher <seb128@debian.org> Thu, 9 Jun 2005 11:53:39 +0200
2117+
2118+gnome-session (2.10.0-3) unstable; urgency=low
2119+
2120+ * 70gnome-session_menus: set the XDG_CONFIG_DIRS environment variable, so
2121+ that the menus use GNOME's implementation.
2122+ * gnome-session.install: install the file in /etc/X11/Xsession.d.
2123+
2124+ -- Josselin Mouette <joss@debian.org> Wed, 8 Jun 2005 23:09:56 +0200
2125+
2126+gnome-session (2.10.0-2) unstable; urgency=low
2127+
2128+ * Upload to unstable.
2129+ * Update debian/watch.
2130+ * rules: avoid the LDFLAGS hack overwriting all environment.
2131+
2132+ -- Josselin Mouette <joss@debian.org> Tue, 7 Jun 2005 21:47:24 +0200
2133+
2134+gnome-session (2.10.0-1) experimental; urgency=low
2135+
2136+ * New upstream release.
2137+ * Update build-dependencies.
2138+ * 06_shutdown.diff: removed, similar functionality is integrated upstream.
2139+ * 20_ca_po.diff: removed, integrated upstream.
2140+
2141+ -- Josselin Mouette <joss@debian.org> Wed, 13 Apr 2005 20:15:32 +0200
2142+
2143+gnome-session (2.8.1-6) unstable; urgency=medium
2144+
2145+ * Use --as-needed option in LDFLAGS to reduce the dependencies.
2146+ + Incidentally removes the dependency upon libhowl0 (closes: #298849).
2147+ * gnome-wm: add support for fvwm (closes: #289969).
2148+
2149+ -- Josselin Mouette <joss@debian.org> Thu, 10 Mar 2005 21:44:15 +0100
2150+
2151+gnome-session (2.8.1-5) unstable; urgency=medium
2152+
2153+ * 20_ca_po.diff: fixes to the Catalan translation.
2154+
2155+ -- Jordi Mallach <jordi@debian.org> Fri, 7 Jan 2005 17:54:47 +0100
2156+
2157+gnome-session (2.8.1-4) unstable; urgency=medium
2158+
2159+ * 09_splash_hide.diff: disabled, this patch only manages to make things
2160+ worse (closes: #284090).
2161+ * postinst,prerm: install alternative for the splash image
2162+ (closes: #282653).
2163+
2164+ -- Josselin Mouette <joss@debian.org> Sun, 5 Dec 2004 19:54:49 +0100
2165+
2166+gnome-session (2.8.1-3) unstable; urgency=low
2167+
2168+ * 09_splash_hide.diff: stop displaying splash when all applications are
2169+ launched, it avoids waiting when some of them are broken. Thanks seb128.
2170+ * 07_kill_esd.diff: kill esd upon logout (closes: #187730).
2171+
2172+ -- Josselin Mouette <joss@debian.org> Tue, 23 Nov 2004 15:08:47 +0100
2173+
2174+gnome-session (2.8.1-2) unstable; urgency=low
2175+
2176+ * Forward-port changes from 2.6 branch:
2177+ + 55gnome-session_gnomerc: support arguments to gnome-session.
2178+ + control.in:
2179+ - Depend on capplets.
2180+ - Recommend nautilus, gnome-panel and a window manager.
2181+ + patches/05_debian_gnome_upgrade_check.diff, patches/00_Makefile.am.diff,
2182+ patches/01_autoreconf.diff, gnome-1-to-2, gnome-launchers-1-to-2,
2183+ gnome-panel-1-to-2, gnome-stuff-1-to-2, nautilus-666666.desktop:
2184+ removed.
2185+ + gnome-session.install: don't install those.
2186+ + rules: don't have to fix the permissions.
2187+ + 02_conversion.diff: only print a warning, don't launch the broken
2188+ upgrade script
2189+ + gnome-volume-daemon: removed, obsolete.
2190+ * Upload to unstable.
2191+ * control.in:
2192+ + Bump build-dependencies to 2.8 versions.
2193+ + Build-depend on libgconf2-dev, not gconf2.
2194+
2195+ -- Josselin Mouette <joss@debian.org> Fri, 19 Nov 2004 14:40:42 +0100
2196+
2197+gnome-session (2.8.1-1) experimental; urgency=low
2198+
2199+ * New upstream release.
2200+ * debian/patches/03_splash.diff: (change from trunk)
2201+ - use the desktop-splash alternative as the default splash
2202+ * debian/control{,.in}: (change from trunk)
2203+ - the change above required desktop-base 0.3.15, so updated
2204+ Depends
2205+ * debian/patches/00_acinclude.m4.diff:
2206+ - removed, not needed anymore
2207+ * debian/patches/01_autoreconf.patch:
2208+ - updated, result of "libtoolize --force --copy;
2209+ aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf
2210+ autom4te.cache" with the 00_ patch applied.
2211+
2212+ -- Gustavo Noronha Silva <kov@debian.org> Sun, 24 Oct 2004 12:47:32 -0300
2213+
2214+gnome-session (2.8.0-1) experimental; urgency=low
2215+
2216+ * New upstream release.
2217+ * debian/patches/01_autoreconf.patch:
2218+ - updated.
2219+
2220+ -- Sebastien Bacher <seb128@debian.org> Wed, 29 Sep 2004 21:43:42 +0200
2221+
2222+gnome-session (2.6.2-5) unstable; urgency=low
2223+
2224+ * 06_shutdown.diff: test for /var/run/gdm.pid (closes: #261969).
2225+
2226+ -- Josselin Mouette <joss@debian.org> Sat, 31 Jul 2004 12:23:23 +0200
2227+
2228+gnome-session (2.6.2-4) unstable; urgency=low
2229+
2230+ * 06_shutdown.diff: new, provide reboot or halt using gdmflexiserver if
2231+ available.
2232+ * rules: remove halt/reboot configure switches.
2233+
2234+ -- Josselin Mouette <joss@debian.org> Mon, 26 Jul 2004 23:22:29 +0200
2235+
2236+gnome-session (2.6.2-3) unstable; urgency=low
2237+
2238+ * Rebuild with working dh_gconf (closes: #258139, #258144).
2239+
2240+ -- Josselin Mouette <joss@debian.org> Thu, 8 Jul 2004 16:44:01 +0200
2241+
2242+gnome-session (2.6.2-2) unstable; urgency=low
2243+
2244+ * gnome-volume-daemon:
2245+ + removed, it didn't register correctly with the SM (closes: #253729).
2246+ + gnome-session.install: don't install it.
2247+ * default.session:
2248+ + start both magicdev and g-v-m, they now conflict with each other.
2249+
2250+ -- Josselin Mouette <joss@debian.org> Tue, 6 Jul 2004 22:30:07 +0200
2251+
2252+gnome-session (2.6.2-1) unstable; urgency=low
2253+
2254+ * New upstream release.
2255+ * 01_autoreconf.patch: updated, result of "libtoolize --force --copy;
2256+ aclocal-1.7; autoheader; automake-1.7 -acf; autoconf; rm -rf
2257+ autom4te.cache" with 00_ patches applied.
2258+ * gnome-volume-daemon:
2259+ + new script, runs gnome-volume-manager if available, or falls back
2260+ to magicdev.
2261+ + gnome-session.install: install it.
2262+ + rules: chmod it.
2263+ + default.session: use it instead of gnome-volume-manager.
2264+ * gnome-wm: store the window manager in the "current" gconf key, not the
2265+ "default" one.
2266+
2267+ -- Josselin Mouette <joss@debian.org> Tue, 29 Jun 2004 23:25:01 +0200
2268+
2269+gnome-session (2.6.1-6) unstable; urgency=low
2270+
2271+ * Gustavo Noronha Silva <kov@debian.org>
2272+ - debian/README.Debian:
2273+ + did some small cleanups
2274+ + wrote a small explanation of why the splash screen is
2275+ different from GNOME's upstream and how to get it back
2276+ and set it up
2277+ * Josselin Mouette <joss@debian.org>
2278+ - debian/default.session:
2279+ + add gnome-volume-manager, gnome-cups-icon and vino-session to the
2280+ default session.
2281+ - debian/postinst:
2282+ + make gnome-session's priority 50, to be greater than KDE. Thus the
2283+ default DM is gdm and the default session is gnome-session.
2284+
2285+ -- Josselin Mouette <joss@debian.org> Thu, 24 Jun 2004 14:02:52 +0200
2286+
2287+gnome-session (2.6.1-5) unstable; urgency=low
2288+
2289+ * Grrrr, configure doesn't check for libXmu while it is needed. Add
2290+ libxmu-dev to build-depends.
2291+
2292+ -- Josselin Mouette <joss@debian.org> Fri, 28 May 2004 15:05:42 +0200
2293+
2294+gnome-session (2.6.1-4) unstable; urgency=low
2295+
2296+ * Add explicit build dependencies on X libraries (closes: #251367).
2297+
2298+ -- Josselin Mouette <joss@debian.org> Fri, 28 May 2004 12:13:39 +0200
2299+
2300+gnome-session (2.6.1-3) unstable; urgency=low
2301+
2302+ * Upload to unstable.
2303+ * Tighten dependencies on liborbit2-dev.
2304+
2305+ -- Josselin Mouette <joss@debian.org> Wed, 26 May 2004 16:11:18 +0200
2306+
2307+gnome-session (2.6.1-2) experimental; urgency=low
2308+
2309+ * 55gnome-session_gnomerc: handle the case where we are running
2310+ x-session-manager, symlinked to gnome-session.
2311+
2312+ -- Josselin Mouette <joss@debian.org> Thu, 22 Apr 2004 11:37:15 +0200
2313+
2314+gnome-session (2.6.1-1) experimental; urgency=low
2315+
2316+ * New upstream release.
2317+ * Source .gnomerc at startup (closes: #242065):
2318+ - gnome-session.install: install 55gnome-session_gnomerc in Xsession
2319+ directory.
2320+ - 55gnome-session_gnomerc: source .gnomerc if we are running
2321+ gnome-session.
2322+ * gnome-wm: get the default window manager from gconf. It now uses the
2323+ /desktop/gnome/applications/window_manager/default key
2324+ (closes: #241361, #244694). The x-window-manager alternative is now only
2325+ used when nothing else is found.
2326+ * patches/01_autoreconf.diff: updated, result of
2327+ libtoolize --force --copy; aclocal-1.7; autoheader; automake-1.7 -acf;
2328+ autoconf; rm -rf autom4te.cache.
2329+
2330+ -- Josselin Mouette <joss@debian.org> Wed, 21 Apr 2004 17:12:10 +0200
2331+
2332+gnome-session (2.6.0-3) experimental; urgency=low
2333+
2334+ * rules: force poweroff and reboot paths (closes: #242091)
2335+ * gnome-wm: don't set the gconf key, it is unused.
2336+
2337+ -- Josselin Mouette <joss@debian.org> Wed, 7 Apr 2004 12:31:16 +0200
2338+
2339+gnome-session (2.6.0-2) experimental; urgency=low
2340+
2341+ * Move gnome-sesssion.install to gnome-session.install.
2342+ * Forward-port changes from 2.4.2-4:
2343+ + Use metacity by default:
2344+ - gnome-wm: use metacity or sawfish when it is available
2345+ - default.session: let gnome-wm discover the window manager
2346+ + docs: removed, cdbs takes care of these.
2347+ + postinst,prerm: remove gconf stuff, dh_gconf does it for us.
2348+ + control.in: require debhelper 4.1.84
2349+ + Provide a session for the display managers:
2350+ - add gnome-session.desktop
2351+ - gnome-session.install: install it
2352+ + patches/:
2353+ - 01_configure.diff, 03_Makefile.in.diff: removed
2354+ - 00_Makefile.am.diff patches gnome-session/Makefile.am
2355+ + Use the splash screen from desktop-base by default.
2356+ - patches/03_splash.diff: for the code and gconf stuff
2357+ - control.in: depend on desktop-base.
2358+ + control.in: don't depend on debianutils, woody provides a sufficient
2359+ version.
2360+ + fix permissions:
2361+ - compat: use debhelper v4
2362+ - rules: chmod 755 the debian scripts
2363+ * control.in: require 2.6 versions of packages.
2364+ * patches/:
2365+ + updated 00_acinclude.m4.diff includes a copy of
2366+ gnome2-macros/compiler-flags.m4 as aclocal 1.7 seems unable to
2367+ find it.
2368+ + updated 01_autoreconf.diff is the result of running
2369+ libtoolize --force --copy; aclocal; autoheader; automake -acf;
2370+ autoconf.
2371+ + update patches/03_splash.diff for the new version.
2372+
2373+ -- Josselin Mouette <joss@debian.org> Thu, 1 Apr 2004 15:33:35 +0200
2374+
2375+gnome-session (2.6.0-1) experimental; urgency=low
2376+
2377+ * New upstream release
2378+ * GNOME Team Upload
2379+ * Gustavo Noronha Silva <kov@debian.org>:
2380+ + debian/control.in:
2381+ - set maintainer to Josselin Mouette <joss@debian.org>
2382+ - Build-Depends on cdbs and gnome-pkg-tools
2383+ + debian/patches/*:
2384+ - converted all from dpatch to cdbs' simple-patch, some
2385+ of them were regenerated for various reasons, including
2386+ failure on apply and not including diff for Makefile.am
2387+ + debian/rules:
2388+ - use cdbs
2389+ + gnome-session.install:
2390+ - install some debian specific files that were installed
2391+ manually through debian/rules before
2392+
2393+ -- Gustavo Noronha Silva <kov@debian.org> Sun, 28 Mar 2004 13:23:41 -0300
2394+
2395+gnome-session (2.4.2-2) unstable; urgency=low
2396+
2397+ * Orphaned package.
2398+
2399+ -- Christian Marillat <marillat@debian.org> Fri, 19 Mar 2004 15:50:59 +0100
2400+
2401+gnome-session (2.4.2-1) unstable; urgency=low
2402+
2403+ * New upstream release.
2404+
2405+ -- Christian Marillat <marillat@debian.org> Wed, 14 Jan 2004 20:47:13 +0100
2406+
2407+gnome-session (2.4.1-3) unstable; urgency=low
2408+
2409+ * debian/prerm Unregister schemas file from the database.
2410+
2411+ -- Christian Marillat <marillat@debian.org> Fri, 9 Jan 2004 15:42:34 +0100
2412+
2413+gnome-session (2.4.1-2) unstable; urgency=low
2414+
2415+ * Build with --with-window-manager=metacity (CLoses: #216769)
2416+ * Update desktop migration from .gnome-desktop to Desktop
2417+ * Update Build-dependencies to GNOME 2.4 packages
2418+
2419+ -- Christian Marillat <marillat@debian.org> Sat, 1 Nov 2003 16:45:42 +0100
2420+
2421+gnome-session (2.4.1-1) unstable; urgency=low
2422+
2423+ * New upstream release.
2424+
2425+ -- Christian Marillat <marillat@debian.org> Sat, 18 Oct 2003 17:27:21 +0200
2426+
2427+gnome-session (2.2.2-4) unstable; urgency=low
2428+
2429+ * Fix broken manpage (thanks to Marcin Owsiany) (Closes: #204604)
2430+
2431+ -- Christian Marillat <marillat@debian.org> Sun, 10 Aug 2003 20:10:08 +0200
2432+
2433+gnome-session (2.2.2-3) unstable; urgency=low
2434+
2435+ * Fix typo in gnome-session.1 (Closes: #192575)
2436+
2437+ -- Christian Marillat <marillat@debian.org> Mon, 14 Jul 2003 15:25:48 +0200
2438+
2439+gnome-session (2.2.2-2) unstable; urgency=low
2440+
2441+ * Add changes from Greg Hudson for conversion scripts. Thanks.
2442+
2443+ -- Christian Marillat <marillat@debian.org> Wed, 28 May 2003 21:55:00 +0200
2444+
2445+gnome-session (2.2.2-1) unstable; urgency=low
2446+
2447+ * New upstream release.
2448+
2449+ -- Christian Marillat <marillat@debian.org> Fri, 16 May 2003 17:22:21 +0200
2450+
2451+gnome-session (2.2.1-1) unstable; urgency=low
2452+
2453+ * New upstream release.
2454+ * Cleanup debian/prerm (Closes: #180928)
2455+
2456+ -- Christian Marillat <marillat@debian.org> Tue, 11 Mar 2003 14:16:20 +0100
2457+
2458+gnome-session (2.2.0.2-1) unstable; urgency=low
2459+
2460+ * New upstream release.
2461+ * Add a note about GNOME 2 compliant window manager (Closes: #174021)
2462+
2463+ -- Christian Marillat <marillat@debian.org> Tue, 4 Feb 2003 15:26:22 +0100
2464+
2465+gnome-session (2.2.0.1-1) unstable; urgency=low
2466+
2467+ * New upstream release.
2468+
2469+ -- Christian Marillat <marillat@debian.org> Wed, 22 Jan 2003 13:20:07 +0100
2470+
2471+gnome-session (2.1.90-1) unstable; urgency=low
2472+
2473+ * New upstream releae.
2474+
2475+ -- Christian Marillat <marillat@debian.org> Sun, 19 Jan 2003 15:27:47 +0100
2476+
2477+gnome-session (2.0.9-3) unstable; urgency=low
2478+
2479+ * FIx manpage for gnome-session-save (Closes: #171661)
2480+
2481+ -- Christian Marillat <marillat@debian.org> Wed, 4 Dec 2002 12:47:04 +0100
2482+
2483+gnome-session (2.0.9-2) unstable; urgency=low
2484+
2485+ * New pacthe against gnome-session/Makefile.in to really add the binaries
2486+ conversion.
2487+
2488+ -- Christian Marillat <marillat@debian.org> Wed, 27 Nov 2002 13:11:27 +0100
2489+
2490+gnome-session (2.0.9-1) unstable; urgency=low
2491+
2492+ * New upstream release.
2493+ * Fix lintian warnings with manpages.
2494+
2495+ -- Christian Marillat <marillat@debian.org> Fri, 15 Nov 2002 14:26:18 +0100
2496+
2497+gnome-session (2.0.8-8) unstable; urgency=low
2498+
2499+ * Handle fully-qualified panel path in conversion script.
2500+
2501+ -- Christian Marillat <marillat@debian.org> Wed, 6 Nov 2002 17:14:54 +0100
2502+
2503+gnome-session (2.0.8-7) unstable; urgency=low
2504+
2505+ * Fix wrong indentation (Closes: #167454)
2506+
2507+ -- Christian Marillat <marillat@debian.org> Sat, 2 Nov 2002 19:27:57 +0100
2508+
2509+gnome-session (2.0.8-6) unstable; urgency=low
2510+
2511+ * Colin's fix :
2512+ * Correctly transitions the background
2513+ * Handles the multiload applet
2514+ * Handles aligned panels
2515+ * Tries to convert menu items
2516+ * Doesn't crash on invalid UTF-8
2517+ * Doesn't crash on an empty launchers dir
2518+ * Me :
2519+ * Don't try to overwrite gconf gnome-terminal configuration
2520+
2521+ -- Christian Marillat <marillat@debian.org> Fri, 1 Nov 2002 18:05:20 +0100
2522+
2523+gnome-session (2.0.8-5) unstable; urgency=low
2524+
2525+ * Add a note in the confirmation dialog box for how to report bugs.
2526+
2527+ -- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 21:01:02 +0100
2528+
2529+gnome-session (2.0.8-4) unstable; urgency=low
2530+
2531+ * Oops, forget to apply yesterday changes in conversion code.
2532+
2533+ -- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 17:32:53 +0100
2534+
2535+gnome-session (2.0.8-3) unstable; urgency=low
2536+
2537+ * Fix gnome-wm. Gnome don't like symlink.
2538+ * This package contains conversion scripts for GNOME 1 to GNOME 2 (Closes: #153682)
2539+ * Upload to unstable
2540+
2541+ -- Christian Marillat <marillat@debian.org> Mon, 28 Oct 2002 11:34:22 +0100
2542+
2543+gnome-session (2.0.8-2) experimental; urgency=low
2544+
2545+ * Uploaded officially to experimental
2546+
2547+ -- Christian Marillat <marillat@debian.org> Tue, 22 Oct 2002 18:00:11 +0200
2548+
2549+gnome-session (2.0.8-1.1upgradetest) experimental; urgency=low
2550+
2551+ * EXPERIMENTAL TESTING RELEASE
2552+ * Add upgrade scripts.
2553+
2554+ -- Colin Walters <walters@debian.org> Sat, 19 Oct 2002 22:54:05 -0400
2555+
2556+gnome-session (2.0.8-1) experimental; urgency=low
2557+
2558+ * New upstream release.
2559+ * Add metacity in gnome-wm
2560+
2561+ -- Christian Marillat <marillat@debian.org> Mon, 14 Oct 2002 16:09:35 +0200
2562+
2563+gnome-session (2.0.7-4) experimental; urgency=low
2564+
2565+ * Change the default window manager in the default sesion file by
2566+ x-window-manager (was gnome-wm)
2567+
2568+ -- Christian Marillat <marillat@debian.org> Wed, 9 Oct 2002 23:43:32 +0200
2569+
2570+gnome-session (2.0.7-3) experimental; urgency=low
2571+
2572+ * Upload with original tarball.
2573+
2574+ -- Christian Marillat <marillat@debian.org> Sun, 29 Sep 2002 17:40:55 +0200
2575+
2576+gnome-session2 (2.0.7-2) experimental; urgency=low
2577+
2578+ * Update to standards version 3.5.7
2579+ * Upload without the 2 suffix
2580+ * Update libgnomeui-dev build-dependency to 2.0.5-3
2581+
2582+ -- Christian Marillat <marillat@debian.org> Sat, 28 Sep 2002 17:59:43 +0200
2583+
2584+gnome-session2 (2.0.7-1) experimental; urgency=low
2585+
2586+ * New upstream release.
2587+
2588+ -- Christian Marillat <marillat@debian.org> Thu, 5 Sep 2002 18:56:12 +0200
2589+
2590+gnome-session2 (2.0.6-1) experimental; urgency=low
2591+
2592+ * New upstream release.
2593+
2594+ -- Christian Marillat <marillat@debian.org> Tue, 27 Aug 2002 10:38:48 +0200
2595+
2596+gnome-session2 (2.0.5-3) experimental; urgency=low
2597+
2598+ * Build against the latest gconf2 1.2.1-2.1 (Closes: #157727)
2599+
2600+ -- Christian Marillat <marillat@debian.org> Thu, 22 Aug 2002 19:04:39 +0200
2601+
2602+gnome-session2 (2.0.5-2) experimental; urgency=low
2603+
2604+ * Add esound in build-depends
2605+ * Build against the latest libgnomevfs2-dev 2.0.2-4
2606+
2607+ -- Christian Marillat <marillat@debian.org> Fri, 16 Aug 2002 17:31:02 +0200
2608+
2609+gnome-session2 (2.0.5-1) experimental; urgency=low
2610+
2611+ * New upstream release.
2612+
2613+ -- Christian Marillat <marillat@debian.org> Thu, 8 Aug 2002 16:28:59 +0200
2614+
2615+gnome-session2 (2.0.4-1) experimental; urgency=low
2616+
2617+ * New upstream release.
2618+
2619+ -- Christian Marillat <marillat@debian.org> Mon, 5 Aug 2002 19:40:25 +0200
2620+
2621+gnome-session2 (2.0.3-1) experimental; urgency=low
2622+
2623+ * New upstream release.
2624+ * Use gconftool-2 to store window-manager preference
2625+
2626+ -- Christian Marillat <marillat@debian.org> Tue, 30 Jul 2002 18:16:53 +0200
2627+
2628+gnome-session2 (2.0.2-1) experimental; urgency=low
2629+
2630+ * New upstream release.
2631+
2632+ -- Christian Marillat <marillat@debian.org> Mon, 15 Jul 2002 15:20:51 +0200
2633+
2634+gnome-session2 (2.0.1-1) experimental; urgency=low
2635+
2636+ * New upstream release.
2637+
2638+ -- Christian Marillat <marillat@debian.org> Mon, 17 Jun 2002 15:46:23 +0200
2639+
2640+gnome-session2 (2.0.0-1) experimental; urgency=low
2641+
2642+ * New upstream release.
2643+
2644+ -- Christian Marillat <marillat@debian.org> Mon, 10 Jun 2002 16:03:08 +0200
2645+
2646+gnome-session2 (1.5.21-1) experimental; urgency=low
2647+
2648+ * new upstream release.
2649+
2650+ -- Christian Marillat <marillat@debian.org> Tue, 4 Jun 2002 16:34:27 +0200
2651+
2652+gnome-session2 (1.5.20-1) experimental; urgency=low
2653+
2654+ * New upstream release.
2655+
2656+ -- Christian Marillat <marillat@debian.org> Tue, 28 May 2002 15:22:12 +0200
2657+
2658+gnome-session2 (1.5.19-3) experimental; urgency=low
2659+
2660+ * debian/rules Add GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL=1 in install target.
2661+ * debian/postinst check if schemas files are present before calling
2662+ gconftool-2
2663+
2664+ -- Christian Marillat <marillat@debian.org> Mon, 27 May 2002 16:03:24 +0200
2665+
2666+gnome-session2 (1.5.19-2) experimental; urgency=low
2667+
2668+ * Fix a typo in postinst (Closes: #147600)
2669+
2670+ -- Christian Marillat <marillat@debian.org> Tue, 21 May 2002 11:15:32 +0200
2671+
2672+gnome-session2 (1.5.19-1) experimental; urgency=low
2673+
2674+ * New upstream release
2675+ * Add support for DEB_HOST_GNU_TYPE DEB_BUILD_GNU_TYPE and
2676+ DEB_BUILD_OPTIONS
2677+
2678+ -- Christian Marillat <marillat@debian.org> Wed, 15 May 2002 20:04:03 +0200
2679+
2680+gnome-session2 (1.5.18-1) experimental; urgency=low
2681+
2682+ * new upstream release.
2683+
2684+ -- Christian Marillat <marillat@debian.org> Mon, 29 Apr 2002 20:45:49 +0200
2685+
2686+gnome-session2 (1.5.17-1) experimental; urgency=low
2687+
2688+ * New upstream release.
2689+
2690+ -- Christian Marillat <marillat@debian.org> Mon, 22 Apr 2002 16:34:38 +0200
2691+
2692+gnome-session2 (1.5.16-1) experimental; urgency=low
2693+
2694+ * New upstream release.
2695+
2696+ -- Christian Marillat <marillat@debian.org> Wed, 17 Apr 2002 15:41:33 +0200
2697+
2698+gnome-session2 (1.5.15-1) experimental; urgency=low
2699+
2700+ * New upstream release.
2701+
2702+ -- Christian Marillat <marillat@debian.org> Mon, 1 Apr 2002 22:33:26 +0200
2703+
2704+gnome-session2 (1.5.13-1) experimental; urgency=low
2705+
2706+ * New upstream release.
2707+
2708+ -- Christian Marillat <marillat@debian.org> Fri, 29 Mar 2002 16:38:29 +0100
2709+
2710+gnome-session2 (1.5.11-1) experimental; urgency=low
2711+
2712+ * new upstream release.
2713+
2714+ -- Christian Marillat <marillat@debian.org> Tue, 26 Feb 2002 15:10:17 +0100
2715+
2716+gnome-session2 (1.5.10-3) experimental; urgency=low
2717+
2718+ * Fix broken postinst. Thanks to Mark Nelson.
2719+
2720+ -- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 17:44:33 +0100
2721+
2722+gnome-session2 (1.5.10-2) experimental; urgency=low
2723+
2724+ * Should build-depends on intltool
2725+
2726+ -- Christian Marillat <marillat@debian.org> Mon, 25 Feb 2002 15:37:19 +0100
2727+
2728+gnome-session2 (1.5.10-1) experimental; urgency=low
2729+
2730+ * New upstream release.
2731+
2732+ -- Christian Marillat <marillat@debian.org> Mon, 18 Feb 2002 22:31:35 +0100
2733+
2734+gnome-session2 (1.5.9-1) unstable; urgency=low
2735+
2736+ * New upstream release.
2737+
2738+ -- Christian Marillat <marillat@debian.org> Fri, 15 Feb 2002 00:40:12 +0100
2739+
2740+gnome-core2 (1.5.7-1) experimental; urgency=low
2741+
2742+ * New upstrema release.
2743+
2744+ -- Christian Marillat <marillat@debian.org> Tue, 5 Feb 2002 14:41:01 +0100
2745+
2746+gnome-core2 (1.5.4-1) experimental; urgency=low
2747+
2748+ * New upstream release.
2749+
2750+ -- Christian Marillat <marillat@debian.org> Sun, 20 Jan 2002 16:21:40 +0100
2751+
2752+gnome-core (1.4.0.4-16) unstable; urgency=low
2753+
2754+ * Fix typo in gnome-terminal.wrapper (Closes: #127768)
2755+ * Remove gnome-hint patche (Closes: #121390, #129184)
2756+ * debian/control Replace libpng-dev by libpng2-dev in Build-Depends
2757+ (Closes: #128377)
2758+
2759+ -- Christian Marillat <marillat@debian.org> Mon, 14 Jan 2002 15:04:52 +0100
2760+
2761+gnome-core (1.4.0.4-15) unstable; urgency=low
2762+
2763+ * Build against the latest gnome-libs to update the libzvt2 dependency
2764+ (Closes: #127309, #127271)
2765+ * debian/control Replace libpng2-dev by libpng-dev in Build-Depends.
2766+ * debian/control Build-depends on libzvt-dev (>= 1.4.1.2-9)
2767+
2768+ -- Christian Marillat <marillat@debian.org> Tue, 1 Jan 2002 15:27:43 +0100
2769+
2770+gnome-core (1.4.0.4-14) unstable; urgency=low
2771+
2772+ * Fix typo in gnome-terminal.1 (Closes: #123073)
2773+ * Fix base page for doc-base in libpanel-applet-dev package.
2774+ * Fix typo in gnome-help documentation (Closes: #126566)
2775+ * Apply patch to allows meta functionnality in gnome-terminal (Closes: #50427)
2776+
2777+ -- Christian Marillat <marillat@debian.org> Thu, 27 Dec 2001 14:47:36 +0100
2778+
2779+gnome-core (1.4.0.4-13) unstable; urgency=low
2780+
2781+ * Default font for gnome-terminal is "fixed" only (Closes: #117126)
2782+ * Patch against gnome-hint.c Don't use gettext for font descriptor
2783+ (Closes: #116606)
2784+ * Patch against gnome-about/Makefile.am to use new gdk_pixbuf include path
2785+ (Closes: #120312)
2786+ * Revert my change on logout.c Only root can shutdown/reboot from the
2787+ panel (Closes: #119316, #120127)
2788+
2789+ -- Christian Marillat <marillat@debian.org> Tue, 20 Nov 2001 11:36:05 +0100
2790+
2791+gnome-core (1.4.0.4-12) unstable; urgency=low
2792+
2793+ * gnome-wm honour --default-wm (Closes: #115668)
2794+ * Build against the latest gnome-libs
2795+
2796+ -- Christian Marillat <marillat@debian.org> Sun, 21 Oct 2001 14:11:19 +0200
2797+
2798+gnome-core (1.4.0.4-11) unstable; urgency=low
2799+
2800+ * debian/control lynx comeback in Recommends (Closes: #114142)
2801+ * debian/control replaces xml-i18n-tools by intltool (Closes: #115024)
2802+ * Fix automake 1.5 errors. Thanks to Denis Barbier (Closes: #114369)
2803+ * Build against the latest orbit (Closes: #115309)
2804+
2805+ -- Christian Marillat <marillat@debian.org> Fri, 12 Oct 2001 10:46:49 +0200
2806+
2807+gnome-core (1.4.0.4-10) unstable; urgency=low
2808+
2809+ * Fix typo in panel/panel.hints (Closes: #113590)
2810+ * Replace lynx by w3m (Closes: #113613)
2811+ * Move gnome-terminal.desktop in gnome-terminal package (Closes: #113736)
2812+ * Move gnome-help.desktop in gnome-help package
2813+ * debian:control Add Replaces: gnome-panel-data (<= 1.4.0.4-9) for above
2814+ * Patch against gsm/logout.c Now you can reboot/halt your machine from the
2815+ panel. This only work for root, because shutdown doesn't understand the
2816+ -a option. Read README.debian in gnome-panel package.
2817+ * debian/rules Remove less files in clean target (Closes: #114020)
2818+
2819+ -- Christian Marillat <marillat@debian.org> Mon, 1 Oct 2001 11:34:06 +0200
2820+
2821+gnome-core (1.4.0.4-9) unstable; urgency=low
2822+
2823+ * Add Debian menu for panel and gmenu (Closes: #112176)
2824+ * Remove /var/lib/gnome on purge (Closes: #113005)
2825+ * Remove /etc/gnome/config on purge (Closes: #112994)
2826+ * Remove /etc/gnome on purge (Closes: #112995)
2827+ * debian/control replace cygnus-stylesheets by docbook-utils
2828+
2829+ -- Christian Marillat <marillat@debian.org> Mon, 24 Sep 2001 18:39:19 +0200
2830+
2831+gnome-core (1.4.0.4-8) unstable; urgency=high
2832+
2833+ * High urgency, because the current release in testing has a missing
2834+ dependency on libpanel-applet0 and the panel package doesn't work if
2835+ libpanel-applet0 isn't installed (Closes: #111517)
2836+ * debian/control for gnome-help, move lynx from depends to recommends
2837+ (Closes: #109652)
2838+ * debian/control gnome-panel suggests fortune-mod (Closes: #110865)
2839+ * debian/control gnome-help suggests gnome-users-guide not
2840+ gnome-users-guide-en (Closes: #111200)
2841+ * Don't change cursor color (Closes: #97697)
2842+ * Change default font for gnome-terminal (Closes: #111319)
2843+
2844+ -- Christian Marillat <marillat@debian.org> Fri, 7 Sep 2001 15:06:07 +0200
2845+
2846+gnome-core (1.4.0.4-7) unstable; urgency=low
2847+
2848+ * Fix path in gnome-session.1 (Closes: #107724)
2849+ * debian/*.sgml Use docbook 4.1
2850+ * debian/control gnome-help-data Replaces gnome-terminal (<= 1.0.55-2)
2851+ (CLoses: #107948)
2852+
2853+ -- Christian Marillat <marillat@debian.org> Wed, 8 Aug 2001 08:07:56 +0200
2854+
2855+gnome-core (1.4.0.4-6) unstable; urgency=low
2856+
2857+ * debian/rules for dh_makeshlibs replace libcapplet0 by libpanel-applet0
2858+ (Closes: #105772)
2859+
2860+ -- Christian Marillat <marillat@debian.org> Wed, 18 Jul 2001 19:02:59 +0200
2861+
2862+gnome-core (1.4.0.4-5) unstable; urgency=low
2863+
2864+ * Patch against gnome-edit to use EDITOR if the default gnome editor is
2865+ unavailable.
2866+ * Remove gnome-wm patch, and move the patched file in debian/
2867+ * debian/gnome-wm Try to exec $WINDOW_MANAGER before x-window-manager
2868+ (Closes: #103430
2869+ * New patch from Michael Urman to hide task names in tasklist_applet
2870+ (Closes: #104587)
2871+
2872+ -- Christian Marillat <marillat@debian.org> Sat, 14 Jul 2001 16:58:12 +0200
2873+
2874+gnome-core (1.4.0.4-4) unstable; urgency=low
2875+
2876+ * Gnome-help Provides: man-browser, www-browser, info-browser
2877+ * Switch to debhelper V3
2878+ * Change libraries versionning to (>= 1.4.0.2-3) instead of the latest
2879+ package number.
2880+ * Build-depends on groff-base instead of groff
2881+
2882+ -- Christian Marillat <marillat@debian.org> Fri, 22 Jun 2001 17:02:37 +0200
2883+
2884+gnome-core (1.4.0.4-3) unstable; urgency=low
2885+
2886+ * New patch: Allows to save/load the keyboard secure state (Closes: #83028)
2887+ * New patch: Remove a warning in configure
2888+ * gnome-help replace gnome-panel-data (Closes: #99499)
2889+ * Build-depends on xml-i18n-tools (>= 0.8.4.cvs.20010530-1) (Close: #98784)
2890+
2891+ -- Christian Marillat <marillat@debian.org> Sat, 2 Jun 2001 14:41:45 +0200
2892+
2893+gnome-core (1.4.0.4-2) unstable; urgency=low
2894+
2895+ * New patch: Replace Distribution by Debian in configuration dialog box.
2896+ * New patch: Upstream patch to allow Debian menu in default configuration.
2897+ * New patch: Fix some wrong path.
2898+ * Move gnome-feedback doc from gnome-help-data to gnome-core.
2899+
2900+ -- Christian Marillat <marillat@debian.org> Tue, 15 May 2001 15:36:51 +0200
2901+
2902+gnome-core (1.4.0.4-1) unstable; urgency=low
2903+
2904+ * New upstream release.
2905+
2906+ -- Christian Marillat <marillat@debian.org> Wed, 9 May 2001 23:56:27 +0200
2907+
2908+gnome-core (1.4.0.3-2) unstable; urgency=low
2909+
2910+ * Remove debugging code (/tmp/languages file)
2911+
2912+ -- Christian Marillat <marillat@debian.org> Mon, 7 May 2001 16:48:18 +0200
2913+
2914+gnome-core (1.4.0.3-1) unstable; urgency=low
2915+
2916+ * New upstream release.
2917+ * New: tooltips for long task names in tasklist_applet (Closes: #63898)
2918+
2919+ -- Christian Marillat <marillat@debian.org> Thu, 3 May 2001 15:51:58 +0200
2920+
2921+gnome-core (1.4.0.2-3) unstable; urgency=low
2922+
2923+ * Fix wrong dif.gz file (Closes: #94499)
2924+ * Build against the latest lignome-dev (Closes: #95301, #95691)
2925+ * gnome-terminal should depends on gnome-bin (Closes: #95498)
2926+ * Doesn't build against gtkhtml this break fonts displaying (Closes: #92187)
2927+
2928+ -- Christian Marillat <marillat@debian.org> Tue, 1 May 2001 11:03:14 +0200
2929+
2930+gnome-core (1.4.0.2-2) unstable; urgency=low
2931+
2932+ * New/old patch against manpages, never applied by upstream.
2933+ * gnome-help depends on lynx.
2934+ * Use x-terminal-emulator in gnome-download instead of xterm.
2935+ * Move gnome-convert and gnome-download from gnome-core to gnome-help.
2936+ * Move gnome-login-check from gnome-core to gnome-session.
2937+ * Move gnome-panel-add-launcher from gnome-core to gnome-panel.
2938+ * Move sesion-properties* from gnome-core to gnome-session.
2939+ * debian/control Add Replaces for the changes above.
2940+ * Write manpages (Closes: #87085)
2941+
2942+ -- Christian Marillat <marillat@debian.org> Tue, 17 Apr 2001 18:54:15 +0200
2943+
2944+gnome-core (1.4.0.2-1) unstable; urgency=low
2945+
2946+ * New upstream release.
2947+ * Build-depends on latest gettext (Closes: #93198)
2948+ * Icon box in menu editor is back (Closes: #91938)
2949+ * Build-depends on latest xml-i18n-tools and libgnome-dev
2950+
2951+ -- Christian Marillat <marillat@debian.org> Wed, 11 Apr 2001 15:16:20 +0200
2952+
2953+gnome-core (1.4.0.1-2) unstable; urgency=low
2954+
2955+ * Build depends on versionned gettext 0.10.35-17 (Closes: #93198)
2956+ * Write manpage for gnome-session and add docbook-to-man in build-depnds
2957+ * Write manpages for gnome-help (Closes: #87089)
2958+
2959+ -- Christian Marillat <marillat@debian.org> Sat, 7 Apr 2001 15:52:40 +0200
2960+
2961+gnome-core (1.4.0.1-1) unstable; urgency=low
2962+
2963+ * New upstream release.
2964+ * debian/gnome-terminal.wrapper change -T by -t (Closes: #90847)
2965+ * debian/gnome-session.README.debian remove references to .xsession. This
2966+ is now obsolete by the new x-session-manager scheme.
2967+
2968+ -- Christian Marillat <marillat@debian.org> Sun, 1 Apr 2001 15:01:51 +0200
2969+
2970+gnome-core (1.4.0-2) unstable; urgency=low
2971+
2972+ * Build depends on libglade-gnome0-dev (>= 0.16-1) (Closes: #90416)
2973+ * debian/control Add Build-Conflicts: libgtkhtml-dev (>= 0.7-1) (Closes: #90700)
2974+
2975+ -- Christian Marillat <marillat@debian.org> Thu, 22 Mar 2001 16:44:12 +0100
2976+
2977+gnome-core (1.4.0-1) unstable; urgency=low
2978+
2979+ * New upstream release.
2980+ * Gnome-core replaces gnome-control-center 1.2.3-1 (Closes: #90124)
2981+ * Remove manpages patche included by upstream.
2982+ * gnome-session don't always saves session on logout (Closes: #89630)
2983+ * Can add a launcher in the panel (Closes: #90018)
2984+ * Deskguide don't crashes on Fill with mini-images (Closes: #86952)
2985+ * Deskguide don't fail to run (Closes: #89769)
2986+ * Pager applet don't fail to run (Closes: #89025)
2987+
2988+ -- Christian Marillat <marillat@debian.org> Mon, 19 Mar 2001 13:01:26 +0100
2989+
2990+gnome-core (1.3.1-2) unstable; urgency=low
2991+
2992+ * Remove taslisk-applet manpage (Closes: #88994)
2993+ * New patch against gnome-terminal.1 (Closes: #89005)
2994+ * Move /usr/lib/libtasklist_applet.so in libpanel-applet0
2995+ (Closes: #89053, #89008, #89012, #89091, #89003)
2996+ * Gnome-terminal replace gnome-help-data (<= 1.0.55-2) (Closes: #87910)
2997+
2998+ -- Christian Marillat <marillat@debian.org> Sat, 10 Mar 2001 10:45:14 +0100
2999+
3000+gnome-core (1.3.1-1) unstable; urgency=low
3001+
3002+ * New upstream release.
3003+ * Removed default.session patch
3004+ * debian/control Add Replaces: gnome-control-center (<= 1.2.2-10), because
3005+ the session-properties-capplet is now in this package.
3006+ * debian/{postinst,prerm} Call scrollkeeper
3007+ * debian/control Add scrollkeeper, xml-i18n-tools and libglade-gnome0-dev in
3008+ build-depends and scrollkeeper in depends for gnome-core
3009+ * Menu and laucnh keys works now (Closes: #86955)
3010+ * Dead keys work in gnome-terminal (Closes: #63102)
3011+ * Gnome-terminal isn't broken (Closes: #86752)
3012+ * New patch htmlurl.h (This file was broken by upstream author)
3013+ * XFMail doesn't crash the tasklist applet in this release (Closes: #88515)
3014+ * debian/gnome-core.menu New file for the session properties capplet
3015+
3016+ -- Christian Marillat <marillat@debian.org> Mon, 5 Mar 2001 11:40:15 +0100
3017+
3018+gnome-core (1.2.4-11) unstable; urgency=low
3019+
3020+ * Update (again) the Build-depends field (Closes: #87419)
3021+ * Add a debian directory for the gnome-help-browser and add suggest doc-base
3022+ for gnome-help. Now we can watch debian documentation registered with doc-base.
3023+ * Add a lintian override file for libpanel-applet0
3024+
3025+ -- Christian Marillat <marillat@debian.org> Sun, 25 Feb 2001 16:14:09 +0100
3026+
3027+gnome-core (1.2.4-10) unstable; urgency=low
3028+
3029+ * Update the Build-depends field (Closes: #86441, #87419)
3030+ * Call update-alternatives only in remove (gnome-terminal, gnome-session) (Closes: #87327, #87328)
3031+
3032+ -- Christian Marillat <marillat@debian.org> Sat, 24 Feb 2001 18:03:20 +0100
3033+
3034+gnome-core (1.2.4-9) unstable; urgency=low
3035+
3036+ * Remove abandonned /etc/CORBA/servers/bad-applet.goad (Closes: #84950)
3037+ * Build against the latest gnome-libs (1.2.11) (Close: #85932)
3038+
3039+ -- Christian Marillat <marillat@debian.org> Wed, 14 Feb 2001 13:49:26 +0100
3040+
3041+gnome-core (1.2.4-8) unstable; urgency=low
3042+
3043+ * debian/control Add Replaces: gnome-help-data (<< 1.0.55-2) for
3044+ gnome-help (Closes: #80974)
3045+ * debian/gnome-help.mime Rewrote (Closes: #82891)
3046+ * debian/control gnome-core depends on gnome-bin (Closes: #82951)
3047+ * Wrote gnome-panel.README.Debian (Closes: #82954)
3048+
3049+ -- Christian Marillat <marillat@debian.org> Mon, 22 Jan 2001 16:04:58 +0100
3050+
3051+gnome-core (1.2.4-7) unstable; urgency=low
3052+
3053+ * Added gnome-bin (>= 1.2.0) in gnome-session Depends field (Closes: #80589, #80595, #80733)
3054+
3055+ -- Christian Marillat <marillat@debian.org> Wed, 27 Dec 2000 19:24:08 +0100
3056+
3057+gnome-core (1.2.4-6) unstable; urgency=low
3058+
3059+ * Apply patch to gnome-run to call x-terminal-emulator (Closes: #80219)
3060+ * debian/gnome-terminal.wrapper This is -t not -T close (Closes: #80405)
3061+
3062+ -- Christian Marillat <marillat@debian.org> Sun, 24 Dec 2000 03:27:12 +0100
3063+
3064+gnome-core (1.2.4-5) unstable; urgency=low
3065+
3066+ * Install gnome-terminal.wrapper as x-terminal-emulator and remove
3067+ debian/patches/gnome-terminal.dpatch (Closes: 64326)
3068+ Thanks to Eric Gillespie, Jr. <epg@progenylinux.com>
3069+ * Add Recommends: gnome-applets on gnome-panel (Closes: #72208)
3070+ * gnome-sesion provides x-session-manager and install alternative (Closes: #60667)
3071+ * Added hints=Gnome for all menu files.
3072+
3073+ -- Christian Marillat <marillat@debian.org> Wed, 20 Dec 2000 23:19:55 +0100
3074+
3075+gnome-core (1.2.4-4) unstable; urgency=low
3076+
3077+ * Call x-terminal-emulator in gnome-wm and add depends on the latest debianutils
3078+ for gnome-session. Thanks to Joseph Carter <knghtbrd@progeny.com> for the file
3079+ (Closes: #79776)
3080+ * Rewrote default.session patch
3081+ * Add patch form Doug Larrick <doug@ties.org> for gwmthumbnail.c (Closes: #78550)
3082+
3083+ -- Christian Marillat <marillat@debian.org> Sun, 17 Dec 2000 12:04:54 +0100
3084+
3085+gnome-core (1.2.4-3) unstable; urgency=low
3086+
3087+ * Change gnome-help.mime to call the right file (Closes: #77986)
3088+ Thanks Malcolm Parsons <malcolm@ivywell.screaming.net> for the patch.
3089+ * Patch gsm/default.in (two entries with same id) (Closes: #78276)
3090+ Thanks to Normal User <gohmandj@mrs.umn.edu> (Nice name)
3091+ * Move gnome-control-center from Depends to Suggests.
3092+ * Remove libgtkhtml-dev from Build-Depends (Closes: #79527)
3093+
3094+ -- Christian Marillat <marillat@debian.org> Wed, 13 Dec 2000 18:01:34 +0100
3095+
3096+gnome-core (1.2.4-2) unstable; urgency=low
3097+
3098+ * Remove README and NEWS files (Closes: #77250)
3099+ * Disable thumbnails by default in deskguide_applet (Closes: #77205)
3100+ * debian/rules --with-window-manager is now sawfish (was x-window-manager)
3101+ and rewrote debian/patches/gnome-wm.dpatch to remove x-window-manager (Closes: #77401)
3102+ * Should close this old bug (Closes: #51198)
3103+ * Patch gnome-edit to use x-terminal-emulator instead of xterm.
3104+
3105+ -- Christian Marillat <marillat@debian.org> Mon, 20 Nov 2000 11:35:55 +0100
3106+
3107+gnome-core (1.2.4-1) unstable; urgency=low
3108+
3109+ * New upstream release.
3110+
3111+ -- Christian Marillat <marillat@debian.org> Thu, 16 Nov 2000 00:43:15 +0100
3112+
3113+gnome-core (1.2.3.1-1) unstable; urgency=low
3114+
3115+ * New upstream release.
3116+ * Add gnome-help example and manpage in gnome-help package (Closes: #49977)
3117+ * This release should close these old bugs (Closes: #60561, #60768, #45053)
3118+ * Gnome-panel don't use all CPU time (Closes: #75251, #60209)
3119+ * Remove gmenu patch included by upstream.
3120+
3121+ -- Christian Marillat <marillat@debian.org> Wed, 8 Nov 2000 17:09:42 +0100
3122+
3123+gnome-core (1.2.3-1) unstable; urgency=low
3124+
3125+ * New upstream release.
3126+ * Debian menus aren't empty (Closes: #70470)
3127+ * Launcher can find icon (Closes: #62502)
3128+
3129+ -- Christian Marillat <marillat@debian.org> Tue, 24 Oct 2000 15:51:11 +0200
3130+
3131+gnome-core (1.2.2.1-3) unstable; urgency=low
3132+
3133+ * Add gnome-terminal.prerm for update-alternatives --remove (Closes: #74451)
3134+ * Patch gnome-terminal to accept -T option (Closes: #74450)
3135+ * Move README.debian in gnome-session package (Closes: #60440)
3136+ * mesg work in gnome-terminal (Closes: #71728)
3137+ * Upstream fix these old bugs in Gnome-terminal
3138+ Problem with menubar (Closes: #57516)
3139+ Problem with console-apt Closes: #60079)
3140+ Problem with screen (Closes: #50156)
3141+ * Binaries don't should go in /usr/X11R6/bin (Closes: #24031)
3142+ Quoting Debian policy :
3143+ "Packages using the X Window System should abide by the FHS standard"
3144+ "whenever possible; they should install binaries, libraries, manual"
3145+ "pages, and other files in FHS-mandated locations wherever possible."
3146+ "This means that files must not be installed into /usr/X11R6/bin/'"
3147+ * hostname isn't harcoded (Closes: #72536)
3148+ * Error messages mention Lynx (Closes: #62216)
3149+ * Display correctly deskuse.html (Closes: #49974)
3150+ * Add patch from malcolm <malcolm@ivywell.screaming.net> (Closes: #64820)
3151+
3152+ -- Christian Marillat <marillat@debian.org> Sat, 14 Oct 2000 23:39:49 +0200
3153+
3154+gnome-core (1.2.2.1-2) unstable; urgency=low
3155+
3156+ * Typo in debian/gnome-terminal.postinst
3157+ * Add gnome-terminal manpage (Closes: #69188)
3158+ * Closes: #63103 already closed in 1.2.1-0.2 (typo in debian/changelog)
3159+ * Gnome-terminal write to /var/run/utmp (Closes: #59053)
3160+ * delete/backspace keys works (Closes: #57198)
3161+ * Install GnomeHelp file in /etc/gnome/config (Closes: #73012)
3162+ * Convert png icons in xpm for Debian menu.
3163+ * Rearange documentation for dhelp (Closes: #56672)
3164+
3165+ -- Christian Marillat <marillat@debian.org> Thu, 5 Oct 2000 00:59:44 +0200
3166+
3167+gnome-core (1.2.2.1-1) unstable; urgency=low
3168+
3169+ * New upstream release.
3170+ * Patch all manpages (Closes: #70009)
3171+ * gnome-panel 1.0.55-2.0.1 (sparc) is now installable (Closes: #69075, #71570)
3172+ * gmenu don't jam up all translations (Closes: #46446)
3173+ * panel remember its configuration between session
3174+ (Closes: #47734, #54190)
3175+ * Icons are now centered (Closes: #63868)
3176+ * Bugs closed by previous NMU in gnome-panel (Closes: #40036, #52584, #54755,
3177+ #58278, #61083, #69428))
3178+ * libgen_util_applet.so installed in 1.2.1-0.2 (Closes: #69463)
3179+ * debian/control remove Conflicts: asclock (Closes: #52077)
3180+ * gnome-help 1.0.55-2.0.1 (sparc) is now installable (Closes: #69356)
3181+ * Bugs closed by previous NMU in gnome-help (Closes: #49734, #56081, #58679, #58973)
3182+ * debian/control move gmc from Recommends to Suggests (Closes: #59415)
3183+ * The first search in gnome-wm search is x-window-manager
3184+ (Closes: #50940, #65969, #62143)
3185+ * Bug closed in 1.2.2-1 (README.debian in gnome-session package) (Closes: #66219)
3186+ * Bugs closed by previous NMU in gnome-terminal
3187+ (Closes: #64579, #63592, #63332, #56584, #55477, #54428)
3188+ * gnome-terminal provide x-terminal-emulator (Closes: #61805, #53994, #56225)
3189+
3190+ -- Christian Marillat <marillat@debian.org> Wed, 27 Sep 2000 16:02:16 +0200
3191+
3192+gnome-core (1.2.2-1) unstable; urgency=low
3193+
3194+ * New maintainer, thanks James.
3195+ * New upstream release.
3196+ * Switch to debhelper V2
3197+ * Move README.debian in gnome-session package (Closes: #65235) and
3198+ update this file (Closes: #71339)
3199+ * Bug closed in 1.2.1-0.2 (Install missing libraries) (Closes: #69590, #70483)
3200+ * Bugs closed in 1.2.1-0.1 (typo close instead closes) (Closes: #53764, #54050)
3201+ * Remove gtkhtml patch.
3202+ * The desk guide show thumbnail (Closes: #72359)
3203+ * Missing package under sparc (Closes: #71438)
3204+ * debian/control add Conflicts: libgnome32 (<< 1.2.0-1) for gnome-panel (Closes: #72039)
3205+ * Added icons in Debian menu.
3206+ * Eject in drivemount check if '-u' is available (Closes: #63954)
3207+ * Patch gmenu to find Debian menu.
3208+
3209+ -- Christian Marillat <marillat@debian.org> Tue, 26 Sep 2000 17:34:23 +0200
3210+
3211+gnome-core (1.2.1-0.2) unstable; urgency=low
3212+
3213+ * NMU.
3214+ * Install these libraries libfish_applet.so libgen_util_applet.so
3215+ libpanel_status.so (Closes: #69428, #69590)
3216+ * Copy latest gnome aclocal in macros/ and run macros/autogen.sh
3217+ This is needed to build gnome-help-browser against libgtkhtml4.
3218+ * In debian/control
3219+ gnome-session depends on gnome-panel (>= ${Source-Version}).
3220+ gnome-help depends on gnome-core (>= 1.2.0-0.1) no Source-Version.
3221+ gnome-terminal don't depends on gnome-core.
3222+ * URL's are clickable in gnome-terminal (Closes: 63103).
3223+ * debian/gnome-panel.undocumented removed printer_applet.1
3224+ * Cut and paste work in gnome-terminal (Closes: #63592).
3225+
3226+ -- Christian Marillat <marillat@debian.org> Wed, 23 Aug 2000 21:23:36 +0200
3227+
3228+gnome-core (1.2.1-0.1) unstable; urgency=low
3229+
3230+ * New upstream release (Closes: #58806, #66467)
3231+ * NMU.
3232+ * Standards-Version to 3.1.1.1 Added Build-depends field.
3233+ * Removed patches: dialer, drivemount-floppy, modemlights, term,
3234+ help-browser, debian-menu, url-match.
3235+ * Added patches: gtkhtml.
3236+ * Build against libgtkhtml3. Closes: #58679, #36806, #49734
3237+ * Default manpath and infopath are wrong. Closes: #56081
3238+ * gmenu segfaults. Close: #53764, #54050
3239+ * gnome-panel: panel no longer works. Closes: #58278
3240+ * gnome-panel: gnomepager-applet should put braces around. Closes: #52584
3241+ * Backspace and delete work correctly. Closes: #54428
3242+ * TERM never select xterm-debian. Closes: #56584, #55477, #64579
3243+ * Disable arrows option is now saved. Closes: #54755
3244+ * No more files in /usr/share. Closes: #61083
3245+ * Show debian menus. Closes #66214
3246+ * New help documentation for panel. Closes: #40036
3247+ * Gnome-terminal write to /var/run/utmp. Closes #59053
3248+ * gnome-terminal provide x-terminal-emulator. Closes #61805, #56225
3249+ * README.Debian is here. Closes: #65235
3250+
3251+ -- Christian Marillat <marillat@debian.org> Tue, 25 Jul 2000 19:09:21 +0200
3252+
3253+gnome-core (1.0.55-2) frozen unstable; urgency=low
3254+
3255+ * Make x-window-manager run first by gnome-wm script to conform to
3256+ debian policy (Closes: #61617) (This is an important bug)
3257+
3258+ -- James LewisMoss <dres@debian.org> Sun, 21 May 2000 19:31:19 -0400
3259+
3260+gnome-core (1.0.55-1) unstable; urgency=low
3261+
3262+ * New upstream.
3263+
3264+ -- James LewisMoss <dres@debian.org> Sun, 2 Jan 2000 07:32:36 -0500
3265+
3266+gnome-core (1.0.54-2) unstable; urgency=low
3267+
3268+ * Fix the gnome-pager forgets size settings bug (was saved to wrong
3269+ section). Closes: #49839, #46845.
3270+
3271+ -- James LewisMoss <dres@debian.org> Fri, 12 Nov 1999 07:54:46 -0500
3272+
3273+gnome-core (1.0.54-1) unstable; urgency=low
3274+
3275+ * New upstream.
3276+
3277+ -- James LewisMoss <dres@debian.org> Thu, 4 Nov 1999 23:20:14 -0500
3278+
3279+gnome-core (1.0.53-4) unstable; urgency=low
3280+
3281+ * New maintainer.
3282+
3283+ -- James LewisMoss <dres@debian.org> Mon, 25 Oct 1999 23:17:31 -0400
3284+
3285+gnome-core (1.0.53-3) unstable; urgency=low
3286+
3287+ * Ok, I made a mistake by setgiding gnome-terminal to
3288+ utmp. Reverted the change. Closes: #47960
3289+
3290+ -- Raphael Hertzog <hertzog@debian.org> Mon, 18 Oct 1999 19:17:27 +0200
3291+
3292+gnome-core (1.0.53-2) unstable; urgency=low
3293+
3294+ * gnome-session does launch a default window-manager. It does launch
3295+ gnome-wm if no other information has been found. gnome-wm now
3296+ reads the list of window managers from /etc/X11/window-managers
3297+ once it has tried gnome compliant wm. Closes: #38347, #47370
3298+ * Patched gnome-terminal. TERM=xterm-debian again ... actually this
3299+ closes: #47552, #44960, #41065
3300+ * gnome-terminal is now setgid utmp and can thus register itself
3301+ in the UTMP database. Closes: #40507
3302+ * The URL match does now accept % characters. Closes: #47281
3303+ * libpanel-applet0.postinst check for the changelog.gz mysteriously
3304+ staying around. Closes: #45871
3305+ * Unreproducable bugs without answer from the submitter.
3306+ Closes: #41195, #42865
3307+
3308+ -- Raphael Hertzog <hertzog@debian.org> Sat, 16 Oct 1999 19:52:38 +0200
3309+
3310+gnome-core (1.0.53-1) unstable; urgency=low
3311+
3312+ * New upstream version.
3313+ * gnome-session does now depend on gnome-panel and recommends
3314+ gmc (both are needed for a full Gnome desktop).
3315+ * gnome-terminal does not have a border. Closes: #38972
3316+
3317+ -- Raphael Hertzog <hertzog@debian.org> Tue, 12 Oct 1999 21:17:58 +0200
3318+
3319+gnome-core (1.0.52-1) unstable; urgency=low
3320+
3321+ * New maintainer. Steve said that he wanted to give away some of
3322+ his packages. I've asked to take gnome-core, he never replied, so
3323+ I'm taking it but I will give it back to him if he wanted to
3324+ keep it. In the meantime I can better manage bugs with my name
3325+ in the Maintainer field.
3326+ * New upstream version.
3327+
3328+ -- Raphael Hertzog <hertzog@debian.org> Mon, 4 Oct 1999 21:28:18 +0200
3329+
3330+gnome-core (1.0.50-0.1) unstable; urgency=low
3331+
3332+ * New upstream version.
3333+ * NMU again.
3334+
3335+ -- Raphael Hertzog <hertzog@debian.org> Thu, 30 Sep 1999 22:10:03 +0200
3336+
3337+gnome-core (1.0.41-0.1) unstable; urgency=low
3338+
3339+ * New upstream version.
3340+ * NMU again.
3341+
3342+ -- Raphael Hertzog <hertzog@debian.org> Mon, 27 Sep 1999 13:10:31 +0200
3343+
3344+gnome-core (1.0.9-0.1) unstable; urgency=low
3345+
3346+ * New upstream version. Closes: #43253, #44098
3347+ * Apply patches before configuring (and relaunch automake && autoconf
3348+ because one of the patches is applied on Makefile.am).
3349+ * NMU. Thanks to Christian Marillat <marillat@alpes-net.fr> for his work.
3350+ * Imlib bug corrected: closes: #39085
3351+ * X11 binaries don't have to go /usr/X11R6/bin. Closes: #24031
3352+ * The panel does start correctly wihout complaining about a
3353+ missing name service. Closes: #39380, #39634, #40478
3354+ * The panel doesn't consume all CPU resources. Closes: #30654
3355+ * The panel launches apps from where it has been launched itself.
3356+ Closes: #32319
3357+ * The panel keeps the settings. Closes: #37052, #40579, #43496
3358+ * Old core dump corrected upstream. Closes: #39400, #40328, #42167
3359+ Closes: #44344, #44724, #44732, #44759, #44773
3360+ * Bug in menu-method, not in gnome-panel. Already reported against
3361+ menu. Closes: #40089
3362+ * cdplayer_applet works again. Closes: #42192
3363+ * gnome pager works well: Closes: #42499, #42610
3364+ * modem_lights draws itself correctly. Closes: #43861, #45055
3365+ * The dialer applets doesn't exit when stopping while
3366+ not yet connected. Closes: #45287
3367+ * No more Debian menu in the panel. Closes: #41040
3368+ * GnomeICU works with this panel. Closes: #39626, #39515
3369+ * gnome-panel-data conflicts with asclock.
3370+ Closes: #40712, #40715, #40808, #41430
3371+ A better solution will be needed. Maybe put asclock in his own
3372+ package or create a asclock-data package that will be shared.
3373+ * Updated the modemlights patch. Closes: #43512
3374+ * Added a patch for gnome-wm. Closes: #38366
3375+ * Move lib{gkb,fish}_applet.so files to libgnome-applet0 (those are
3376+ not libraries to be linked with, just simple modules). Closes: #38596
3377+ * Asclock works well without xearth (the code still mentions xearth
3378+ however). Closes: #40530
3379+ * New patch (help-browser) for changing the default MANPATH and INFOPATH in
3380+ gnome-help-browser.c Closes: #41452
3381+ * Moved help-browser to the new "Help" menu section.
3382+ * Added gnome-help.mime. Closes: #42205
3383+ * Gnome-session does launch gnome-panel ! (I suppose that it failed
3384+ to launch since panel was broken). Closes: #42937
3385+ * gnome-sesion doesn't core dump. Closes: #36640
3386+ * The terminal does remember the TERM var. Closes: #43067
3387+ * The terminal keeps its size when dragging the manu bar in and out.
3388+ Closes: #44762
3389+ * The menu section of gnome-terminal corrected. Closes: #37635
3390+
3391+ -- Raphael Hertzog <hertzog@debian.org> Wed, 22 Sep 1999 13:24:34 +0200
3392+
3393+gnome-core (1.0.7-1) unstable; urgency=low
3394+
3395+ * New upstream version.
3396+ * Removed "term" patch
3397+
3398+ -- Steve Haslam <araqnid@debian.org> Mon, 28 Jun 1999 01:36:31 +0100
3399+
3400+gnome-core (1.0.6-2) unstable; urgency=low
3401+
3402+ * debian-menu.dpatch: created to fix guessing Debian menus
3403+ (/etc/menu-methods/gnome-panel now) and to make Debian menus the default
3404+ instead of GNOME system menus.
3405+ * gnome-help now suggests gnome-users-guide-en (closes: #35724)
3406+ * /etc/menu-methods/gnome-panel now creates .directory files and searches
3407+ /usr/X11R6/include/X11/pixmaps for menu icons
3408+
3409+ -- Steve Haslam <araqnid@debian.org> Sun, 13 Jun 1999 15:28:52 +0100
3410+
3411+gnome-core (1.0.6-1) unstable; urgency=low
3412+
3413+ * New upstream version.
3414+
3415+ -- Steve Haslam <araqnid@debian.org> Sat, 5 Jun 1999 12:57:08 +0100
3416+
3417+gnome-core (1.0.5-3) unstable; urgency=low
3418+
3419+ * debian/gnome-terminal.menu: managed to lose change mentioned in last
3420+ revision. Replaced.
3421+ * debian/gnome-core.undocumented: removed gnome-wm.1 (it was in
3422+ gnome-session.undocumented too).
3423+
3424+ -- Steve Haslam <araqnid@debian.org> Mon, 31 May 1999 19:15:54 +0100
3425+
3426+gnome-core (1.0.5-2) unstable; urgency=low
3427+
3428+ * debian/gnome-terminal.menu: changed section to XShells (Bug#37635)
3429+ * debian/rules: added gnome-wm and gnome-edit to dh_undocumented call
3430+ (Bug#37632)
3431+ * debian/gnome.menu-method: added patch to honour needs=text (Bug#36928)
3432+ from Decklin Foster
3433+ * Call dh_strip when making libpanel-applet-dev (Closes Bug#31244)
3434+ * Removed /usr/share/gnome/apps/Debian symlink, (closes #38100)
3435+ * Sanified build system a la gnome-libs
3436+ * debian/control: made gnome-help, gnome-help-data and gnome-panel-data
3437+ packages.
3438+
3439+ -- Steve Haslam <araqnid@debian.org> Sun, 23 May 1999 14:35:44 +0100
3440+
3441+gnome-core (1.0.5-1) unstable; urgency=low
3442+
3443+ * New maintainer.
3444+
3445+ -- Steve Haslam <araqnid@debian.org> Tue, 11 May 1999 01:01:12 +0100
3446+
3447+gnome-core (1.0.5-0.2) unstable; urgency=low
3448+
3449+ * gnome-panel.files.in: added asclock themes, libgkb_applet.a
3450+ * gnome-core.files.in: added gnome-wm, gnome-edit
3451+ * term.dpatch: gnome-terminal TERM to xterm-debian rather than xterm
3452+ * gsm/Makefile.am: put default.session, default.wm in /etc/gnome
3453+ * debian/gnome-session.conffiles.in: added above two files
3454+ * debian/gnome-session.files.in: updated this too
3455+
3456+ -- Steve Haslam <araqnid@debian.org> Sun, 18 Apr 1999 16:47:23 +0100
3457+
3458+gnome-core (1.0.5-0.1) unstable; urgency=low
3459+
3460+ * Non-maintainer upload
3461+ * New upstream version
3462+
3463+ -- Steve Haslam <araqnid@debian.org> Thu, 15 Apr 1999 23:22:23 +0100
3464+
3465+gnome-core (1.0.1-0.3) unstable; urgency=low
3466+
3467+ * Weehay! More broken dependencies. This one libghttp -1.1,
3468+ a bogus package that only ever existed on my machine.
3469+
3470+ -- Jules Bean <jules@debian.org> Mon, 8 Mar 1999 08:24:00 +0000
3471+
3472+gnome-core (1.0.1-0.2) unstable; urgency=low
3473+
3474+ * Another NMU, this time to fix bogus dependencies on libgtop0
3475+ and libglib1.1
3476+
3477+ -- Jules Bean <jules@debian.org> Sun, 7 Mar 1999 14:21:12 +0000
3478+
3479+gnome-core (1.0.1-0.1) unstable; urgency=low
3480+
3481+ * NMU for GNOME-1.0
3482+ * Hacked to patch SIGPIPE bug
3483+ * Don't delete GIFs in rules
3484+
3485+ -- Jules Bean <jules@debian.org> Fri, 5 Mar 1999 18:36:29 +0100
3486+
3487+gnome-core (0.99.99pre1.0.0-1) unstable; urgency=low
3488+
3489+ * New upstream release.
3490+
3491+ -- Jim Pick <jim@jimpick.com> Fri, 26 Feb 1999 23:18:10 -0800
3492+
3493+gnome-core (0.99.3.2-4) unstable; urgency=low
3494+
3495+ * Recompiled yet again - dual dependency on libglib.
3496+ Fixes: BUG#32510
3497+
3498+ -- Jim Pick <jim@jimpick.com> Thu, 28 Jan 1999 00:00:22 -0800
3499+
3500+gnome-core (0.99.3.2-3) unstable; urgency=low
3501+
3502+ * Recompiled again to due to dependencies.
3503+
3504+ -- Jim Pick <jim@jimpick.com> Sun, 24 Jan 1999 01:10:07 -0800
3505+
3506+gnome-core (0.99.3.2-2) unstable; urgency=low
3507+
3508+ * Recompiled with libgnome 0.99.4.
3509+
3510+ -- Jim Pick <jim@jimpick.com> Fri, 22 Jan 1999 16:44:45 -0800
3511+
3512+gnome-core (0.99.3.2-1) unstable; urgency=low
3513+
3514+ * New upstream release.
3515+
3516+ -- Jim Pick <jim@jimpick.com> Wed, 20 Jan 1999 11:42:46 -0800
3517+
3518+gnome-core (0.30-2) frozen unstable; urgency=low
3519+
3520+ * Recompiled with new libs.
3521+ * Fixed reference to /usr/X11R6 in README.Debian.
3522+ * Added warnings (Gnome is ALPHA).
3523+ * Patched dialer_applet to use pon/poff.
3524+ * Patched drivemount_applet to default to /floppy.
3525+
3526+ -- Jim Pick <jim@jimpick.com> Tue, 24 Nov 1998 10:56:08 -0800
3527+
3528+gnome-core (0.30-1) unstable; urgency=low
3529+
3530+ * New upstream release.
3531+
3532+ -- Jim Pick <jim@jimpick.com> Thu, 24 Sep 1998 21:28:02 -0700
3533+
3534+gnome-core (0.28.1-1) unstable; urgency=low
3535+
3536+ * New upstream release.
3537+ * Hopefully fixes panel applet bug.
3538+
3539+ -- Jim Pick <jim@jimpick.com> Wed, 19 Aug 1998 20:12:25 -0700
3540+
3541+gnome-core (0.28-1) unstable; urgency=low
3542+
3543+ * New upstream release.
3544+
3545+ -- Jim Pick <jim@jimpick.com> Mon, 17 Aug 1998 12:59:26 -0700
3546+
3547+gnome-core (0.27-1) unstable; urgency=low
3548+
3549+ * New upstream release.
3550+ * Added /usr/doc/gnome
3551+
3552+ -- Jim Pick <jim@jimpick.com> Sat, 15 Aug 1998 14:21:06 -0700
3553+
3554+gnome-core (0.25-1) unstable; urgency=low
3555+
3556+ * New upstream release.
3557+
3558+ -- Jim Pick <jim@jimpick.com> Thu, 6 Aug 1998 22:51:22 -0700
3559+
3560+gnome-core (0.20-2) unstable; urgency=low
3561+
3562+ * Added Debian menu-method for gnome-panel. Fixed Bug #24025
3563+ (Thanks to Ray Dassen for reporting the bug, and Riku Voipio
3564+ who wrote the menu method for Gnome 0.12)
3565+
3566+ -- Jim Pick <jim@jimpick.com> Wed, 22 Jul 1998 20:22:00 -0700
3567+
3568+gnome-core (0.20-1) unstable; urgency=low
3569+
3570+ * New upstream release.
3571+
3572+ -- Jim Pick <jim@jimpick.com> Mon, 8 Jun 1998 12:00:08 -0700
3573+
3574+gnome-core (0.13-1) unstable; urgency=low
3575+
3576+ * Initial Release.
3577+
3578+ -- Jim Pick <jim@jimpick.com> Mon, 16 Mar 1998 15:27:43 -0800
3579
3580=== added file 'debian/compat'
3581--- debian/compat 1970-01-01 00:00:00 +0000
3582+++ debian/compat 2017-12-15 06:47:37 +0000
3583@@ -0,0 +1,1 @@
3584+10
3585
3586=== added file 'debian/control'
3587--- debian/control 1970-01-01 00:00:00 +0000
3588+++ debian/control 2017-12-15 06:47:37 +0000
3589@@ -0,0 +1,152 @@
3590+# This file is autogenerated. DO NOT EDIT!
3591+#
3592+# Modifications should be made to debian/control.in instead.
3593+# This file is regenerated automatically in the clean target.
3594+Source: gnome-session
3595+Section: gnome
3596+Priority: optional
3597+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3598+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
3599+Uploaders: Laurent Bigonville <bigon@debian.org>, Michael Biebl <biebl@debian.org>
3600+Standards-Version: 4.0.0
3601+Build-Depends: debhelper (>= 10),
3602+ dh-exec,
3603+ dh-migrations,
3604+ gnome-pkg-tools (>= 0.13),
3605+ gnome-common,
3606+ intltool (>= 0.40.6),
3607+ libglib2.0-dev (>= 2.46.0),
3608+ libgtk-3-dev (>= 3.18.0),
3609+ libjson-glib-dev (>= 0.10),
3610+ libgnome-desktop-3-dev (>= 3.18.0),
3611+ libsm-dev,
3612+ libice-dev,
3613+ libx11-dev,
3614+ libxt-dev,
3615+ libxau-dev,
3616+ libxext-dev,
3617+ libxcomposite-dev,
3618+ libgl1-mesa-dev,
3619+ libgles2-mesa-dev,
3620+ libxtst-dev,
3621+ libxrender-dev,
3622+ xmlto,
3623+ xsltproc,
3624+ xtrans-dev,
3625+ libsystemd-dev (>= 209) [linux-any]
3626+Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-desktop/gnome-session/ubuntu
3627+
3628+Package: gnome-session
3629+Architecture: any
3630+Depends: ${misc:Depends},
3631+ gnome-settings-daemon (>= 3.23.3),
3632+ gnome-shell (>= 3.25.91-0ubuntu4~),
3633+ gnome-session-bin (>= ${binary:Version}),
3634+ gnome-session-bin (<< ${gnome:NextVersion}),
3635+ gnome-session-common (= ${binary:Version}),
3636+ xwayland [linux-any]
3637+Recommends: fonts-cantarell,
3638+ adwaita-icon-theme-full,
3639+ gnome-themes-standard
3640+Suggests: gnome-user-docs,
3641+# desktop-base,
3642+ gnome-keyring
3643+Provides: x-session-manager
3644+Breaks: gnome-session-wayland (<< 3.22.1)
3645+Replaces: gnome-session-wayland (<< 3.22.1)
3646+Description: GNOME Session Manager - GNOME 3 session
3647+ The GNOME Session Manager is in charge of starting the core components
3648+ of the GNOME desktop, and applications that should be launched at
3649+ login time. It also features a way to save and restore currently
3650+ running applications.
3651+ .
3652+ This package contains the required components for the standard GNOME 3
3653+ session, based on the GNOME Shell. It can be started from a display
3654+ manager such as GDM, and requires 3D acceleration to work properly.
3655+
3656+Package: gnome-session-wayland
3657+Architecture: all
3658+Priority: extra
3659+Section: oldlibs
3660+Depends: ${misc:Depends},
3661+ gnome-session (>= 3.22.1)
3662+Description: GNOME Session Manager - GNOME 3 session (transitional package)
3663+ This is a transitional package. It can safely be removed.
3664+
3665+Package: ubuntu-session
3666+Architecture: any
3667+Depends: ${misc:Depends},
3668+ gnome-settings-daemon (>= 3.23.3),
3669+ gnome-shell (>= 3.24.3-0ubuntu2),
3670+ gnome-session-bin (>= ${binary:Version}),
3671+ gnome-session-bin (<< ${gnome:NextVersion}),
3672+ gnome-session-common (= ${binary:Version}),
3673+ xwayland [linux-any]
3674+Recommends: session-migration,
3675+ python3,
3676+Provides: x-session-manager,
3677+Breaks: unity (<< 7.5.0+17.10.20170619),
3678+ unity-settings-daemon (<< 15.04.1+17.04.20170619),
3679+ hud (<< 14.10+17.10.20170619),
3680+ unity-gtk-module (<< 0.0.0+17.04.20170918),
3681+Description: Ubuntu session with GNOME Shell
3682+ This package contains the required components for running a GNOME 3 session
3683+ with default Ubuntu configuration, based on the GNOME Shell.
3684+
3685+Package: unity-session
3686+Architecture: all
3687+Depends: ${misc:Depends},
3688+ unity,
3689+ dbus-user-session,
3690+ systemd (>= 231-9git1~),
3691+ unity-settings-daemon,
3692+ gnome-session-bin (>= ${binary:Version}),
3693+ gnome-session-bin (<< ${gnome:NextVersion}),
3694+ gnome-session-common (= ${binary:Version}),
3695+Recommends: session-migration,
3696+ thunderbird-gnome-support,
3697+ rhythmbox-plugin-zeitgeist,
3698+ zeitgeist-datahub,
3699+ gtk3-nocsd,
3700+Provides: x-session-manager,
3701+Breaks: upstart (<< 1.13.2-0ubuntu28~),
3702+ unity (<< 7.5.0+17.10.20170619),
3703+ unity-settings-daemon (<< 15.04.1+17.04.20170619),
3704+ hud (<< 14.10+17.10.20170619),
3705+ unity-gtk-module (<< 0.0.0+17.04.20170918),
3706+Replaces: ubuntu-session (<< 3.24.1-0ubuntu2),
3707+Description: Unity session, previous ubuntu default experience.
3708+ This package contains the required components for the Unity session.
3709+ It can be started from a display manager such as LightDM.
3710+
3711+Package: gnome-session-bin
3712+Architecture: any
3713+Depends: ${shlibs:Depends},
3714+ ${misc:Depends},
3715+ dbus-x11,
3716+ gsettings-desktop-schemas,
3717+ upower (>= 0.9.0),
3718+Recommends: libpam-systemd [linux-any]
3719+Breaks: gdm3 (<< 3.8)
3720+Description: GNOME Session Manager - Minimal runtime
3721+ The GNOME Session Manager is in charge of starting the core components
3722+ of the GNOME desktop, and applications that should be launched at
3723+ login time. It also features a way to save and restore currently
3724+ running applications.
3725+ .
3726+ This package contains the binaries for the GNOME Session Manager, but
3727+ no startup scripts. It is meant for those willing to start
3728+ gnome-session by hand with the components of their choice, and for
3729+ applications such as GDM that use gnome-session internally.
3730+
3731+Package: gnome-session-common
3732+Architecture: all
3733+Depends: ${misc:Depends}
3734+Description: GNOME Session Manager - common files
3735+ The GNOME Session Manager is in charge of starting the core components
3736+ of the GNOME desktop, and applications that should be launched at
3737+ login time. It also features a way to save and restore currently
3738+ running applications.
3739+ .
3740+ This package contains the translations, data files and startup scripts
3741+ which are common to the GNOME and GNOME fallback sessions.
3742
3743=== added file 'debian/control.in'
3744--- debian/control.in 1970-01-01 00:00:00 +0000
3745+++ debian/control.in 2017-12-15 06:47:37 +0000
3746@@ -0,0 +1,148 @@
3747+Source: gnome-session
3748+Section: gnome
3749+Priority: optional
3750+Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
3751+XSBC-Original-Maintainer: Debian GNOME Maintainers <pkg-gnome-maintainers@lists.alioth.debian.org>
3752+Uploaders: @GNOME_TEAM@
3753+Standards-Version: 4.0.0
3754+Build-Depends: debhelper (>= 10),
3755+ dh-exec,
3756+ dh-migrations,
3757+ gnome-pkg-tools (>= 0.13),
3758+ gnome-common,
3759+ intltool (>= 0.40.6),
3760+ libglib2.0-dev (>= 2.46.0),
3761+ libgtk-3-dev (>= 3.18.0),
3762+ libjson-glib-dev (>= 0.10),
3763+ libgnome-desktop-3-dev (>= 3.18.0),
3764+ libsm-dev,
3765+ libice-dev,
3766+ libx11-dev,
3767+ libxt-dev,
3768+ libxau-dev,
3769+ libxext-dev,
3770+ libxcomposite-dev,
3771+ libgl1-mesa-dev,
3772+ libgles2-mesa-dev,
3773+ libxtst-dev,
3774+ libxrender-dev,
3775+ xmlto,
3776+ xsltproc,
3777+ xtrans-dev,
3778+ libsystemd-dev (>= 209) [linux-any]
3779+Vcs-Bzr: http://bazaar.launchpad.net/~ubuntu-desktop/gnome-session/ubuntu
3780+
3781+Package: gnome-session
3782+Architecture: any
3783+Depends: ${misc:Depends},
3784+ gnome-settings-daemon (>= 3.23.3),
3785+ gnome-shell (>= 3.25.91-0ubuntu4~),
3786+ gnome-session-bin (>= ${binary:Version}),
3787+ gnome-session-bin (<< ${gnome:NextVersion}),
3788+ gnome-session-common (= ${binary:Version}),
3789+ xwayland [linux-any]
3790+Recommends: fonts-cantarell,
3791+ adwaita-icon-theme-full,
3792+ gnome-themes-standard
3793+Suggests: gnome-user-docs,
3794+# desktop-base,
3795+ gnome-keyring
3796+Provides: x-session-manager
3797+Breaks: gnome-session-wayland (<< 3.22.1)
3798+Replaces: gnome-session-wayland (<< 3.22.1)
3799+Description: GNOME Session Manager - GNOME 3 session
3800+ The GNOME Session Manager is in charge of starting the core components
3801+ of the GNOME desktop, and applications that should be launched at
3802+ login time. It also features a way to save and restore currently
3803+ running applications.
3804+ .
3805+ This package contains the required components for the standard GNOME 3
3806+ session, based on the GNOME Shell. It can be started from a display
3807+ manager such as GDM, and requires 3D acceleration to work properly.
3808+
3809+Package: gnome-session-wayland
3810+Architecture: all
3811+Priority: extra
3812+Section: oldlibs
3813+Depends: ${misc:Depends},
3814+ gnome-session (>= 3.22.1)
3815+Description: GNOME Session Manager - GNOME 3 session (transitional package)
3816+ This is a transitional package. It can safely be removed.
3817+
3818+Package: ubuntu-session
3819+Architecture: any
3820+Depends: ${misc:Depends},
3821+ gnome-settings-daemon (>= 3.23.3),
3822+ gnome-shell (>= 3.24.3-0ubuntu2),
3823+ gnome-session-bin (>= ${binary:Version}),
3824+ gnome-session-bin (<< ${gnome:NextVersion}),
3825+ gnome-session-common (= ${binary:Version}),
3826+ xwayland [linux-any]
3827+Recommends: session-migration,
3828+ python3,
3829+Provides: x-session-manager,
3830+Breaks: unity (<< 7.5.0+17.10.20170619),
3831+ unity-settings-daemon (<< 15.04.1+17.04.20170619),
3832+ hud (<< 14.10+17.10.20170619),
3833+ unity-gtk-module (<< 0.0.0+17.04.20170918),
3834+Description: Ubuntu session with GNOME Shell
3835+ This package contains the required components for running a GNOME 3 session
3836+ with default Ubuntu configuration, based on the GNOME Shell.
3837+
3838+Package: unity-session
3839+Architecture: all
3840+Depends: ${misc:Depends},
3841+ unity,
3842+ dbus-user-session,
3843+ systemd (>= 231-9git1~),
3844+ unity-settings-daemon,
3845+ gnome-session-bin (>= ${binary:Version}),
3846+ gnome-session-bin (<< ${gnome:NextVersion}),
3847+ gnome-session-common (= ${binary:Version}),
3848+Recommends: session-migration,
3849+ thunderbird-gnome-support,
3850+ rhythmbox-plugin-zeitgeist,
3851+ zeitgeist-datahub,
3852+ gtk3-nocsd,
3853+Provides: x-session-manager,
3854+Breaks: upstart (<< 1.13.2-0ubuntu28~),
3855+ unity (<< 7.5.0+17.10.20170619),
3856+ unity-settings-daemon (<< 15.04.1+17.04.20170619),
3857+ hud (<< 14.10+17.10.20170619),
3858+ unity-gtk-module (<< 0.0.0+17.04.20170918),
3859+Replaces: ubuntu-session (<< 3.24.1-0ubuntu2),
3860+Description: Unity session, previous ubuntu default experience.
3861+ This package contains the required components for the Unity session.
3862+ It can be started from a display manager such as LightDM.
3863+
3864+Package: gnome-session-bin
3865+Architecture: any
3866+Depends: ${shlibs:Depends},
3867+ ${misc:Depends},
3868+ dbus-x11,
3869+ gsettings-desktop-schemas,
3870+ upower (>= 0.9.0),
3871+Recommends: libpam-systemd [linux-any]
3872+Breaks: gdm3 (<< 3.8)
3873+Description: GNOME Session Manager - Minimal runtime
3874+ The GNOME Session Manager is in charge of starting the core components
3875+ of the GNOME desktop, and applications that should be launched at
3876+ login time. It also features a way to save and restore currently
3877+ running applications.
3878+ .
3879+ This package contains the binaries for the GNOME Session Manager, but
3880+ no startup scripts. It is meant for those willing to start
3881+ gnome-session by hand with the components of their choice, and for
3882+ applications such as GDM that use gnome-session internally.
3883+
3884+Package: gnome-session-common
3885+Architecture: all
3886+Depends: ${misc:Depends}
3887+Description: GNOME Session Manager - common files
3888+ The GNOME Session Manager is in charge of starting the core components
3889+ of the GNOME desktop, and applications that should be launched at
3890+ login time. It also features a way to save and restore currently
3891+ running applications.
3892+ .
3893+ This package contains the translations, data files and startup scripts
3894+ which are common to the GNOME and GNOME fallback sessions.
3895
3896=== added file 'debian/copyright'
3897--- debian/copyright 1970-01-01 00:00:00 +0000
3898+++ debian/copyright 2017-12-15 06:47:37 +0000
3899@@ -0,0 +1,51 @@
3900+This package was debianized by Jim Pick jim@jimpick.com on Sat, 14 Mar
3901+1998 20:12:23 -0800. Taken over by Raphael Hertzog
3902+<hertzog@debian.org> on Wed, 22 Sep 1999 13:24:34 +0200, and taken
3903+over again by James LewisMoss on October 26, 1999.
3904+
3905+It was downloaded from <https://download.gnome.org/sources/gnome-session/>.
3906+
3907+Upstream Authors:
3908+
3909+ Dan Winship <danw@gnome.org>
3910+ Lucas Rocha <lucasr@gnome.org>
3911+ William Jon McCann <jmccann@redhat.com>
3912+
3913+ Tom Tromey <tromey@cygnus.com>
3914+ Felix Bellaby <felix@pooh.u-net.com>
3915+ Ralph Mor, X Consortium
3916+
3917+Copyright:
3918+
3919+ Copyright © 1999-2009 Red Hat, Inc.
3920+ Copyright © 1999-2007 Novell, Inc.
3921+ Copyright © 2001-2003 George Lebl
3922+ Copyright © 2001 Queen of England
3923+ Copyright © 2007-2008 William Jon McCann
3924+ Copyright © 2006 Ray Strode
3925+ Copyright © 2008 Lucas Rocha
3926+ Copyright © 2005 Raffaele Sandrini
3927+ Copyright © 2006-2007 Vincent Untz
3928+ Copyright © 1998 Tom Tromey
3929+ Copyright © 1999 Free Software Foundation, Inc.
3930+ Copyright © 2003 Sun Microsystems, Inc.
3931+
3932+
3933+License:
3934+
3935+ This package is free software; you can redistribute it and/or modify
3936+ it under the terms of the GNU General Public License as published by
3937+ the Free Software Foundation; either version 2 of the License, or
3938+ (at your option) any later version.
3939+
3940+ This package is distributed in the hope that it will be useful,
3941+ but WITHOUT ANY WARRANTY; without even the implied warranty of
3942+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
3943+ GNU General Public License for more details.
3944+
3945+ You should have received a copy of the GNU General Public License
3946+ along with this package; if not, write to the Free Software
3947+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
3948+
3949+On Debian systems, the complete text of the GNU General
3950+Public License can be found in `/usr/share/common-licenses/GPL-2'.
3951
3952=== added directory 'debian/data'
3953=== added file 'debian/data/50-ubuntu.conf'
3954--- debian/data/50-ubuntu.conf 1970-01-01 00:00:00 +0000
3955+++ debian/data/50-ubuntu.conf 2017-12-15 06:47:37 +0000
3956@@ -0,0 +1,2 @@
3957+[Seat:*]
3958+user-session=ubuntu
3959
3960=== added file 'debian/data/50-unity.conf'
3961--- debian/data/50-unity.conf 1970-01-01 00:00:00 +0000
3962+++ debian/data/50-unity.conf 2017-12-15 06:47:37 +0000
3963@@ -0,0 +1,2 @@
3964+[Seat:*]
3965+user-session=unity
3966
3967=== added file 'debian/data/gnome-session.override'
3968--- debian/data/gnome-session.override 1970-01-01 00:00:00 +0000
3969+++ debian/data/gnome-session.override 2017-12-15 06:47:37 +0000
3970@@ -0,0 +1,7 @@
3971+# completely disabling this is blocked on converting rdepends (unity)
3972+#manual
3973+
3974+# only keep post-start
3975+exec sleep infinity
3976+pre-stop exec true
3977+post-stop exec true
3978
3979=== added file 'debian/data/gnome-session.service'
3980--- debian/data/gnome-session.service 1970-01-01 00:00:00 +0000
3981+++ debian/data/gnome-session.service 2017-12-15 06:47:37 +0000
3982@@ -0,0 +1,11 @@
3983+[Unit]
3984+Description=GNOME Session Manager
3985+PartOf=graphical-session.target
3986+
3987+[Service]
3988+ExecStart=/bin/sh -exc '[ "$DESKTOP_SESSION" != "gnome-classic" ] || export GNOME_SHELL_SESSION_MODE=classic; \
3989+ export GNOME_SESSION_XDG_SESSION_PATH=${XDG_SESSION_PATH}; \
3990+ [ "$DESKTOP_SESSION" = gnome-flashback-metacity ] && \
3991+ exec gnome-session --session=$DESKTOP_SESSION --disable-acceleration-check || \
3992+ exec gnome-session --session=$DESKTOP_SESSION'
3993+ExecStopPost=-/bin/sh -xc '[ "${XDG_SESSION_PATH}" = "${GNOME_SESSION_XDG_SESSION_PATH}" ] && /usr/bin/dbus-send --type=method_call --address=${UPSTART_SESSION} /com/ubuntu/Upstart com.ubuntu.Upstart0_6.EndSession'
3994
3995=== added file 'debian/data/run-systemd-session'
3996--- debian/data/run-systemd-session 1970-01-01 00:00:00 +0000
3997+++ debian/data/run-systemd-session 2017-12-15 06:47:37 +0000
3998@@ -0,0 +1,42 @@
3999+#!/bin/sh
4000+set -e
4001+
4002+# clean-up upstart env, if the last session was run with upstart
4003+# without session systemd restart
4004+unset UPSTART_SESSION
4005+systemctl --user unset-environment UPSTART_SESSION
4006+
4007+# some old Qt programs still check this long-deprecated env var
4008+dbus-update-activation-environment --systemd GNOME_DESKTOP_SESSION_ID=this-is-deprecated
4009+
4010+# stop any lingering active units from a previous session
4011+systemctl --user stop graphical-session.target graphical-session-pre.target
4012+
4013+# robustness: if the previous graphical session left some failed units,
4014+# reset them so that they don't break this startup
4015+for unit in $(systemctl --user --no-legend --state=failed list-units | cut -f1 -d' '); do
4016+ if [ "$(systemctl --user show -p PartOf --value $unit)" = "graphical-session.target" ]; then
4017+ systemctl --user reset-failed $unit
4018+ fi
4019+done
4020+
4021+# FIXME: synthesize After=graphical-session-pre.target dependencies until this
4022+# can be done declaratively (https://github.com/systemd/systemd/issues/3750)
4023+# This could be a generator, but we don't want to penalize non-graphical logins
4024+# with this.
4025+systemctl --user list-unit-files --no-legend | while read unit status _; do
4026+ [ "${unit%.service}" != "$unit" ] || continue
4027+ [ "$status" != "$disabled" ] || continue
4028+ if [ "$(systemctl --user show -p PartOf --value $unit)" = "graphical-session.target" ]; then
4029+ mkdir -p "$XDG_RUNTIME_DIR/systemd/user/${unit}.d"
4030+ printf '[Unit]\nAfter=graphical-session-pre.target\n' > "$XDG_RUNTIME_DIR/systemd/user/${unit}.d/graphical-session-pre.conf"
4031+ fi
4032+done
4033+systemctl --user daemon-reload
4034+
4035+systemctl --user start --wait "$1"
4036+
4037+dbus-update-activation-environment --systemd GNOME_DESKTOP_SESSION_ID=
4038+
4039+# Delay killing the X server until all graphical units stopped
4040+systemctl --user stop graphical-session-pre.target
4041
4042=== added file 'debian/data/unity-session.target'
4043--- debian/data/unity-session.target 1970-01-01 00:00:00 +0000
4044+++ debian/data/unity-session.target 2017-12-15 06:47:37 +0000
4045@@ -0,0 +1,7 @@
4046+[Unit]
4047+Description=User systemd services for the Unity graphical session
4048+Requires=graphical-session-pre.target
4049+# start/tear down graphical-session.target along with the ubuntu session
4050+BindsTo=graphical-session.target
4051+# session leader -- if this dies, die along with it
4052+BindsTo=gnome-session.service
4053
4054=== added file 'debian/gnome-mimeapps.list'
4055--- debian/gnome-mimeapps.list 1970-01-01 00:00:00 +0000
4056+++ debian/gnome-mimeapps.list 2017-12-15 06:47:37 +0000
4057@@ -0,0 +1,347 @@
4058+[Default Applications]
4059+application/rtf=abiword.desktop
4060+application/x-abiword=abiword.desktop
4061+text/abiword=abiword.desktop
4062+text/richtext=abiword.desktop
4063+text/rtf=abiword.desktop
4064+text/x-abiword=abiword.desktop
4065+text/x-xml-abiword=abiword.desktop
4066+x-content/blank-bd=brasero-nautilus.desktop
4067+x-content/blank-dvd=brasero-nautilus.desktop
4068+x-content/blank-cd=brasero-nautilus.desktop
4069+x-content/blank-hddvd=brasero-nautilus.desktop
4070+application/x-dia-diagram=dia.desktop
4071+image/bmp=eog.desktop
4072+image/gif=eog.desktop
4073+image/jpeg=eog.desktop
4074+image/jpg=eog.desktop
4075+image/pjpeg=eog.desktop
4076+image/png=eog.desktop
4077+image/svg+xml=eog.desktop
4078+image/svg+xml-compressed=eog.desktop
4079+image/x-bmp=eog.desktop
4080+image/x-gray=eog.desktop
4081+image/x-icb=eog.desktop
4082+image/x-ico=eog.desktop
4083+image/x-pcx=eog.desktop
4084+image/x-png=eog.desktop
4085+image/x-portable-anymap=eog.desktop
4086+image/x-portable-bitmap=eog.desktop
4087+image/x-portable-graymap=eog.desktop
4088+image/x-portable-pixmap=eog.desktop
4089+image/x-xbitmap=eog.desktop
4090+image/x-xpixmap=eog.desktop
4091+image/vnd.wap.wbmp=eog.desktop
4092+image/g3fax=gimp.desktop
4093+image/x-compressed-xcf=gimp.desktop
4094+image/x-fits=gimp.desktop
4095+image/x-icon=gimp.desktop
4096+image/x-psd=gimp.desktop
4097+image/x-sgi=gimp.desktop
4098+image/x-sun-raster=gimp.desktop
4099+image/x-tga=gimp.desktop
4100+image/x-xcf=gimp.desktop
4101+image/x-xwindowdump=gimp.desktop
4102+application/pdf=evince.desktop
4103+application/x-bzpdf=evince.desktop
4104+application/x-gzpdf=evince.desktop
4105+application/postscript=evince.desktop
4106+application/x-bzpostscript=evince.desktop
4107+application/x-gzpostscript=evince.desktop
4108+image/x-eps=evince.desktop
4109+image/x-bzeps=evince.desktop
4110+image/x-gzeps=evince.desktop
4111+application/x-dvi=evince.desktop
4112+application/x-bzdvi=evince.desktop
4113+application/x-gzdvi=evince.desktop
4114+image/vnd.djvu=evince.desktop
4115+image/tiff=evince.desktop
4116+application/x-cbr=evince.desktop
4117+application/x-cbz=evince.desktop
4118+application/x-cb7=evince.desktop
4119+text/calendar=evolution.desktop
4120+text/x-vcard=evolution.desktop
4121+application/mbox=evolution.desktop
4122+message/rfc822=evolution.desktop
4123+x-scheme-handler/mailto=evolution.desktop
4124+application/x-7z-compressed=org.gnome.FileRoller.desktop
4125+application/x-7z-compressed-tar=org.gnome.FileRoller.desktop
4126+application/x-ace=org.gnome.FileRoller.desktop
4127+application/x-alz=org.gnome.FileRoller.desktop
4128+application/x-ar=org.gnome.FileRoller.desktop
4129+application/x-arj=org.gnome.FileRoller.desktop
4130+application/x-bzip=org.gnome.FileRoller.desktop
4131+application/x-bzip-compressed-tar=org.gnome.FileRoller.desktop
4132+application/x-bzip1=org.gnome.FileRoller.desktop
4133+application/x-bzip1-compressed-tar=org.gnome.FileRoller.desktop
4134+application/x-cabinet=org.gnome.FileRoller.desktop
4135+application/x-compress=org.gnome.FileRoller.desktop
4136+application/x-compressed-tar=org.gnome.FileRoller.desktop
4137+application/x-cpio=org.gnome.FileRoller.desktop
4138+application/x-deb=org.gnome.FileRoller.desktop
4139+application/x-ear=org.gnome.FileRoller.desktop
4140+application/x-gtar=org.gnome.FileRoller.desktop
4141+application/x-gzip=org.gnome.FileRoller.desktop
4142+application/x-java-archive=org.gnome.FileRoller.desktop
4143+application/x-lha=org.gnome.FileRoller.desktop
4144+application/x-lhz=org.gnome.FileRoller.desktop
4145+application/x-lzip=org.gnome.FileRoller.desktop
4146+application/x-lzip-compressed-tar=org.gnome.FileRoller.desktop
4147+application/x-lzma=org.gnome.FileRoller.desktop
4148+application/x-lzma-compressed-tar=org.gnome.FileRoller.desktop
4149+application/x-lzop=org.gnome.FileRoller.desktop
4150+application/x-lzop-compressed-tar=org.gnome.FileRoller.desktop
4151+application/x-rar=org.gnome.FileRoller.desktop
4152+application/x-rar-compressed=org.gnome.FileRoller.desktop
4153+application/x-rpm=org.gnome.FileRoller.desktop
4154+application/x-rzip=org.gnome.FileRoller.desktop
4155+application/x-tar=org.gnome.FileRoller.desktop
4156+application/x-tarz=org.gnome.FileRoller.desktop
4157+application/x-stuffit=org.gnome.FileRoller.desktop
4158+application/x-war=org.gnome.FileRoller.desktop
4159+application/x-xz=org.gnome.FileRoller.desktop
4160+application/x-xz-compressed-tar=org.gnome.FileRoller.desktop
4161+application/x-zip=org.gnome.FileRoller.desktop
4162+application/x-zip-compressed=org.gnome.FileRoller.desktop
4163+application/x-zoo=org.gnome.FileRoller.desktop
4164+application/zip=org.gnome.FileRoller.desktop
4165+multipart/x-zip=org.gnome.FileRoller.desktop
4166+text/plain=org.gnome.gedit.desktop
4167+text/css=org.gnome.gedit.desktop
4168+text/javascript=org.gnome.gedit.desktop
4169+text/mathml=org.gnome.gedit.desktop
4170+text/x-c++hdr=org.gnome.gedit.desktop
4171+text/x-c++src=org.gnome.gedit.desktop
4172+text/x-csrc=org.gnome.gedit.desktop
4173+text/x-chdr=org.gnome.gedit.desktop
4174+text/x-dtd=org.gnome.gedit.desktop
4175+text/x-java=org.gnome.gedit.desktop
4176+text/x-javascript=org.gnome.gedit.desktop
4177+text/x-makefile=org.gnome.gedit.desktop
4178+text/x-moc=org.gnome.gedit.desktop
4179+text/x-pascal=org.gnome.gedit.desktop
4180+text/x-patch=org.gnome.gedit.desktop
4181+text/x-perl=org.gnome.gedit.desktop
4182+text/x-php=org.gnome.gedit.desktop
4183+text/x-python=org.gnome.gedit.desktop
4184+text/x-sql=org.gnome.gedit.desktop
4185+text/x-tcl=org.gnome.gedit.desktop
4186+text/x-tex=org.gnome.gedit.desktop
4187+text/xml=org.gnome.gedit.desktop
4188+application/javascript=org.gnome.gedit.desktop
4189+application/x-cgi=org.gnome.gedit.desktop
4190+application/x-javascript=org.gnome.gedit.desktop
4191+application/x-perl=org.gnome.gedit.desktop
4192+application/x-php=org.gnome.gedit.desktop
4193+application/x-python=org.gnome.gedit.desktop
4194+application/x-shellscript=org.gnome.gedit.desktop
4195+application/xml=org.gnome.gedit.desktop
4196+application/xml-dtd=org.gnome.gedit.desktop
4197+application/x-font-ttf=org.gnome.font-viewer.desktop
4198+application/x-font-pcf=org.gnome.font-viewer.desktop
4199+application/x-font-type1=org.gnome.font-viewer.desktop
4200+application/x-font-otf=org.gnome.font-viewer.desktop
4201+application/x-gnumeric=gnumeric.desktop
4202+application/tab-separated-values=gnumeric.desktop
4203+text/tab-separated-values=gnumeric.desktop
4204+text/csv=gnumeric.desktop
4205+text/x-csv=gnumeric.desktop
4206+application/vnd.lotus-1-2-3=gnumeric.desktop
4207+application/x-123=gnumeric.desktop
4208+application/x-applix-spreadsheet=gnumeric.desktop
4209+application/x-mps=gnumeric.desktop
4210+application/x-oleo=gnumeric.desktop
4211+application/x-planperfect=gnumeric.desktop
4212+application/x-quattropro=gnumeric.desktop
4213+application/x-sc=gnumeric.desktop
4214+application/x-sylk=gnumeric.desktop
4215+application/x-xbase=gnumeric.desktop
4216+text/html=firefox-esr.desktop;firefox.desktop;
4217+application/xhtml+xml=firefox-esr.desktop;firefox.desktop;
4218+application/rss+xml=firefox-esr.desktop;firefox.desktop;
4219+application/rdf+xml=firefox-esr.desktop;firefox.desktop;
4220+x-scheme-handler/http=firefox-esr.desktop;firefox.desktop;
4221+x-scheme-handler/https=firefox-esr.desktop;firefox.desktop;
4222+application/vnd.oasis.opendocument.spreadsheet=libreoffice-calc.desktop
4223+application/vnd.oasis.opendocument.spreadsheet-flat-xml=libreoffice-calc.desktop
4224+application/vnd.oasis.opendocument.spreadsheet-template=libreoffice-calc.desktop
4225+application/vnd.sun.xml.calc=libreoffice-calc.desktop
4226+application/vnd.sun.xml.calc.template=libreoffice-calc.desktop
4227+application/msexcel=libreoffice-calc.desktop
4228+application/vnd.ms-excel=libreoffice-calc.desktop
4229+application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=libreoffice-calc.desktop
4230+application/vnd.ms-excel.sheet.macroenabled.12=libreoffice-calc.desktop
4231+application/vnd.openxmlformats-officedocument.spreadsheetml.template=libreoffice-calc.desktop
4232+application/vnd.ms-excel.template.macroenabled.12=libreoffice-calc.desktop
4233+application/vnd.ms-excel.sheet.binary.macroenabled.12=libreoffice-calc.desktop
4234+application/x-dbf=libreoffice-calc.desktop
4235+text/spreadsheet=libreoffice-calc.desktop
4236+application/vnd.oasis.opendocument.graphics=libreoffice-draw.desktop
4237+application/vnd.oasis.opendocument.graphics-flat-xml=libreoffice-draw.desktop
4238+application/vnd.oasis.opendocument.graphics-template=libreoffice-draw.desktop
4239+application/vnd.sun.xml.draw=libreoffice-draw.desktop
4240+application/vnd.sun.xml.draw.template=libreoffice-draw.desktop
4241+application/vnd.visio=libreoffice-draw.desktop
4242+application/vnd.oasis.opendocument.presentation=libreoffice-impress.desktop
4243+application/vnd.oasis.opendocument.presentation-flat-xml=libreoffice-impress.desktop
4244+application/vnd.oasis.opendocument.presentation-template=libreoffice-impress.desktop
4245+application/vnd.sun.xml.impress=libreoffice-impress.desktop
4246+application/vnd.sun.xml.impress.template=libreoffice-impress.desktop
4247+application/mspowerpoint=libreoffice-impress.desktop
4248+application/vnd.ms-powerpoint=libreoffice-impress.desktop
4249+application/vnd.openxmlformats-officedocument.presentationml.presentation=libreoffice-impress.desktop
4250+application/vnd.ms-powerpoint.presentation.macroenabled.12=libreoffice-impress.desktop
4251+application/vnd.openxmlformats-officedocument.presentationml.template=libreoffice-impress.desktop
4252+application/vnd.ms-powerpoint.template.macroenabled.12=libreoffice-impress.desktop
4253+application/vnd.openxmlformats-officedocument.presentationml.slide=libreoffice-impress.desktop
4254+application/vnd.openxmlformats-officedocument.presentationml.slideshow=libreoffice-impress.desktop
4255+application/vnd.oasis.opendocument.formula=libreoffice-math.desktop
4256+application/vnd.sun.xml.math=libreoffice-math.desktop
4257+application/vnd.oasis.opendocument.text=libreoffice-writer.desktop
4258+application/vnd.oasis.opendocument.text-flat-xml=libreoffice-writer.desktop
4259+application/vnd.oasis.opendocument.text-template=libreoffice-writer.desktop
4260+application/vnd.oasis.opendocument.text-web=libreoffice-writer.desktop
4261+application/vnd.oasis.opendocument.text-master=libreoffice-writer.desktop
4262+application/vnd.sun.xml.writer=libreoffice-writer.desktop
4263+application/vnd.sun.xml.writer.template=libreoffice-writer.desktop
4264+application/vnd.sun.xml.writer.global=libreoffice-writer.desktop
4265+eapplication/vnd.ms-word=libreoffice-writer.desktop
4266+application/x-doc=libreoffice-writer.desktop
4267+application/x-hwp=libreoffice-writer.desktop
4268+application/vnd.wordperfect=libreoffice-writer.desktop
4269+application/wordperfect=libreoffice-writer.desktop
4270+application/vnd.lotus-wordpro=libreoffice-writer.desktop
4271+application/vnd.openxmlformats-officedocument.wordprocessingml.document=libreoffice-writer.desktop
4272+application/vnd.ms-word.document.macroenabled.12=libreoffice-writer.desktop
4273+application/vnd.openxmlformats-officedocument.wordprocessingml.template=libreoffice-writer.desktop
4274+application/vnd.ms-word.template.macroenabled.12=libreoffice-writer.desktop
4275+application/x-cd-image=gnome-disk-image-mounter.desktop
4276+application/x-raw-disk-image=gnome-disk-image-writer.desktop
4277+application/x-raw-disk-image-xz-compressed=gnome-disk-image-writer.desktop
4278+x-content/software=nautilus-autorun-software.desktop
4279+inode/directory=org.gnome.Nautilus.desktop
4280+application/x-gnome-saved-search=org.gnome.Nautilus.desktop
4281+x-content/audio-player=rhythmbox.desktop
4282+x-content/audio-cdda=sound-juicer.desktop
4283+application/mxf=org.gnome.Totem.desktop
4284+application/ogg=org.gnome.Totem.desktop
4285+application/ram=org.gnome.Totem.desktop
4286+application/sdp=org.gnome.Totem.desktop
4287+application/smil=org.gnome.Totem.desktop
4288+application/smil+xml=org.gnome.Totem.desktop
4289+application/vnd.ms-wpl=org.gnome.Totem.desktop
4290+application/vnd.rn-realmedia=org.gnome.Totem.desktop
4291+application/x-extension-m4a=org.gnome.Totem.desktop
4292+application/x-extension-mp4=org.gnome.Totem.desktop
4293+application/x-flac=org.gnome.Totem.desktop
4294+application/x-flash-video=org.gnome.Totem.desktop
4295+application/x-matroska=org.gnome.Totem.desktop
4296+application/x-netshow-channel=org.gnome.Totem.desktop
4297+application/x-ogg=org.gnome.Totem.desktop
4298+application/x-quicktime-media-link=org.gnome.Totem.desktop
4299+application/x-quicktimeplayer=org.gnome.Totem.desktop
4300+application/x-shorten=org.gnome.Totem.desktop
4301+application/x-smil=org.gnome.Totem.desktop
4302+application/xspf+xml=org.gnome.Totem.desktop
4303+audio/3gpp=org.gnome.Totem.desktop
4304+audio/ac3=org.gnome.Totem.desktop
4305+audio/AMR=org.gnome.Totem.desktop
4306+audio/AMR-WB=org.gnome.Totem.desktop
4307+audio/basic=org.gnome.Totem.desktop
4308+audio/flac=org.gnome.Totem.desktop
4309+audio/midi=org.gnome.Totem.desktop
4310+audio/mp4=org.gnome.Totem.desktop
4311+audio/mpeg=org.gnome.Totem.desktop
4312+audio/mpegurl=org.gnome.Totem.desktop
4313+audio/ogg=org.gnome.Totem.desktop
4314+audio/prs.sid=org.gnome.Totem.desktop
4315+audio/vnd.rn-realaudio=org.gnome.Totem.desktop
4316+audio/x-ape=org.gnome.Totem.desktop
4317+audio/x-flac=org.gnome.Totem.desktop
4318+audio/x-gsm=org.gnome.Totem.desktop
4319+audio/x-it=org.gnome.Totem.desktop
4320+audio/x-m4a=org.gnome.Totem.desktop
4321+audio/x-matroska=org.gnome.Totem.desktop
4322+audio/x-mod=org.gnome.Totem.desktop
4323+audio/x-mp3=org.gnome.Totem.desktop
4324+audio/x-mpeg=org.gnome.Totem.desktop
4325+audio/x-mpegurl=org.gnome.Totem.desktop
4326+audio/x-ms-asf=org.gnome.Totem.desktop
4327+audio/x-ms-asx=org.gnome.Totem.desktop
4328+audio/x-ms-wax=org.gnome.Totem.desktop
4329+audio/x-ms-wma=org.gnome.Totem.desktop
4330+audio/x-musepack=org.gnome.Totem.desktop
4331+audio/x-pn-aiff=org.gnome.Totem.desktop
4332+audio/x-pn-au=org.gnome.Totem.desktop
4333+audio/x-pn-realaudio=org.gnome.Totem.desktop
4334+audio/x-pn-realaudio-plugin=org.gnome.Totem.desktop
4335+audio/x-pn-wav=org.gnome.Totem.desktop
4336+audio/x-pn-windows-acm=org.gnome.Totem.desktop
4337+audio/x-realaudio=org.gnome.Totem.desktop
4338+audio/x-real-audio=org.gnome.Totem.desktop
4339+audio/x-sbc=org.gnome.Totem.desktop
4340+audio/x-scpls=org.gnome.Totem.desktop
4341+audio/x-speex=org.gnome.Totem.desktop
4342+audio/x-tta=org.gnome.Totem.desktop
4343+audio/x-vorbis=org.gnome.Totem.desktop
4344+audio/x-vorbis+ogg=org.gnome.Totem.desktop
4345+audio/x-wav=org.gnome.Totem.desktop
4346+audio/x-wavpack=org.gnome.Totem.desktop
4347+audio/x-xm=org.gnome.Totem.desktop
4348+image/vnd.rn-realpix=org.gnome.Totem.desktop
4349+image/x-pict=org.gnome.Totem.desktop
4350+misc/ultravox=org.gnome.Totem.desktop
4351+text/google-video-pointer=org.gnome.Totem.desktop
4352+text/x-google-video-pointer=org.gnome.Totem.desktop
4353+video/3gpp=org.gnome.Totem.desktop
4354+video/dv=org.gnome.Totem.desktop
4355+video/fli=org.gnome.Totem.desktop
4356+video/flv=org.gnome.Totem.desktop
4357+video/mp2t=org.gnome.Totem.desktop
4358+video/mp4=org.gnome.Totem.desktop
4359+video/mp4v-es=org.gnome.Totem.desktop
4360+video/mpeg=org.gnome.Totem.desktop
4361+video/msvideo=org.gnome.Totem.desktop
4362+video/ogg=org.gnome.Totem.desktop
4363+video/quicktime=org.gnome.Totem.desktop
4364+video/vivo=org.gnome.Totem.desktop
4365+video/vnd.divx=org.gnome.Totem.desktop
4366+video/vnd.rn-realvideo=org.gnome.Totem.desktop
4367+video/vnd.vivo=org.gnome.Totem.desktop
4368+video/webm=org.gnome.Totem.desktop
4369+video/x-anim=org.gnome.Totem.desktop
4370+video/x-avi=org.gnome.Totem.desktop
4371+video/x-flc=org.gnome.Totem.desktop
4372+video/x-fli=org.gnome.Totem.desktop
4373+video/x-flic=org.gnome.Totem.desktop
4374+video/x-flv=org.gnome.Totem.desktop
4375+video/x-m4v=org.gnome.Totem.desktop
4376+video/x-matroska=org.gnome.Totem.desktop
4377+video/x-mpeg=org.gnome.Totem.desktop
4378+video/x-ms-asf=org.gnome.Totem.desktop
4379+video/x-ms-asx=org.gnome.Totem.desktop
4380+video/x-msvideo=org.gnome.Totem.desktop
4381+video/x-ms-wm=org.gnome.Totem.desktop
4382+video/x-ms-wmv=org.gnome.Totem.desktop
4383+video/x-ms-wmx=org.gnome.Totem.desktop
4384+video/x-ms-wvx=org.gnome.Totem.desktop
4385+video/x-nsv=org.gnome.Totem.desktop
4386+video/x-ogm+ogg=org.gnome.Totem.desktop
4387+video/x-theora+ogg=org.gnome.Totem.desktop
4388+video/x-totem-stream=org.gnome.Totem.desktop
4389+x-content/video-dvd=org.gnome.Totem.desktop
4390+x-content/video-vcd=org.gnome.Totem.desktop
4391+x-content/video-svcd=org.gnome.Totem.desktop
4392+x-scheme-handler/pnm=org.gnome.Totem.desktop
4393+x-scheme-handler/mms=org.gnome.Totem.desktop
4394+x-scheme-handler/net=org.gnome.Totem.desktop
4395+x-scheme-handler/rtp=org.gnome.Totem.desktop
4396+x-scheme-handler/rtsp=org.gnome.Totem.desktop
4397+x-scheme-handler/mmsh=org.gnome.Totem.desktop
4398+x-scheme-handler/uvox=org.gnome.Totem.desktop
4399+x-scheme-handler/icy=org.gnome.Totem.desktop
4400+x-scheme-handler/icyx=org.gnome.Totem.desktop
4401+x-scheme-handler/ghelp=yelp.desktop
4402+x-scheme-handler/help=yelp.desktop
4403+x-scheme-handler/info=yelp.desktop
4404+x-scheme-handler/man=yelp.desktop
4405
4406=== added file 'debian/gnome-session-bin.install'
4407--- debian/gnome-session-bin.install 1970-01-01 00:00:00 +0000
4408+++ debian/gnome-session-bin.install 2017-12-15 06:47:37 +0000
4409@@ -0,0 +1,12 @@
4410+#!/usr/bin/dh-exec
4411+usr/bin/gnome-session*
4412+usr/lib/gnome-session*
4413+usr/share/gnome-session/*.ui
4414+usr/share/gnome-session/hardware-compatibility
4415+usr/share/man/man1
4416+usr/share/glib-2.0/schemas
4417+usr/share/GConf/gsettings
4418+debian/data/gnome-session.service usr/lib/systemd/user/
4419+debian/data/gnome-session.override usr/share/upstart/systemd-session/upstart/
4420+debian/data/run-systemd-session usr/lib/gnome-session/
4421+debian/gnome-session-bin.user-session.upstart => usr/share/upstart/sessions/gnome-session.conf
4422
4423=== added file 'debian/gnome-session-bin.postinst'
4424--- debian/gnome-session-bin.postinst 1970-01-01 00:00:00 +0000
4425+++ debian/gnome-session-bin.postinst 2017-12-15 06:47:37 +0000
4426@@ -0,0 +1,12 @@
4427+#!/bin/sh
4428+
4429+set -e
4430+
4431+if [ "$1" = configure ]; then
4432+ update-alternatives --install /usr/bin/x-session-manager \
4433+ x-session-manager /usr/bin/gnome-session 50 \
4434+ --slave /usr/share/man/man1/x-session-manager.1.gz \
4435+ x-session-manager.1.gz /usr/share/man/man1/gnome-session.1.gz
4436+fi
4437+
4438+#DEBHELPER#
4439
4440=== added file 'debian/gnome-session-bin.prerm'
4441--- debian/gnome-session-bin.prerm 1970-01-01 00:00:00 +0000
4442+++ debian/gnome-session-bin.prerm 2017-12-15 06:47:37 +0000
4443@@ -0,0 +1,9 @@
4444+#!/bin/sh
4445+
4446+set -e
4447+
4448+if [ "$1" = "remove" ]; then
4449+ update-alternatives --remove x-session-manager /usr/bin/gnome-session
4450+fi
4451+
4452+#DEBHELPER#
4453
4454=== added file 'debian/gnome-session-bin.user-session.upstart'
4455--- debian/gnome-session-bin.user-session.upstart 1970-01-01 00:00:00 +0000
4456+++ debian/gnome-session-bin.user-session.upstart 2017-12-15 06:47:37 +0000
4457@@ -0,0 +1,31 @@
4458+description "Gnome Session itself"
4459+author "Stéphane Graber <stgraber@ubuntu.com>"
4460+
4461+start on started dbus and xsession SESSIONTYPE=gnome-session
4462+stop on starting gnome-session INSTANCE!=$XDG_CURRENT_DESKTOP
4463+
4464+instance $XDG_CURRENT_DESKTOP
4465+
4466+emits desktop-start
4467+emits desktop-end
4468+
4469+script
4470+
4471+# Gnome-classic session requires this env to be exported
4472+if [ "x${DESKTOP_SESSION}" = "xgnome-classic" ] ; then
4473+ export GNOME_SHELL_SESSION_MODE=classic
4474+fi
4475+
4476+unset UPSTART_EVENTS UPSTART_INSTANCE UPSTART_JOB
4477+case "$DESKTOP_SESSION" in
4478+ gnome-flashback-metacity) exec gnome-session --session=$DESKTOP_SESSION --disable-acceleration-check ;;
4479+ *) exec gnome-session --session=$DESKTOP_SESSION ;;
4480+esac
4481+end script
4482+
4483+post-start exec initctl emit desktop-start DESKTOP_SESSION=$DESKTOP_SESSION
4484+
4485+# Don't wait to avoid blocking the session from ending.
4486+pre-stop exec initctl emit --no-wait desktop-end DESKTOP_SESSION=$DESKTOP_SESSION
4487+
4488+post-stop exec dbus-send --type=method_call --address=$UPSTART_SESSION /com/ubuntu/Upstart com.ubuntu.Upstart0_6.EndSession
4489
4490=== added file 'debian/gnome-session-common.dirs'
4491--- debian/gnome-session-common.dirs 1970-01-01 00:00:00 +0000
4492+++ debian/gnome-session-common.dirs 2017-12-15 06:47:37 +0000
4493@@ -0,0 +1,1 @@
4494+etc/xdg/
4495
4496=== added file 'debian/gnome-session-common.install'
4497--- debian/gnome-session-common.install 1970-01-01 00:00:00 +0000
4498+++ debian/gnome-session-common.install 2017-12-15 06:47:37 +0000
4499@@ -0,0 +1,7 @@
4500+usr/share/applications
4501+usr/share/icons
4502+usr/share/locale
4503+debian/55gnome-session_gnomerc etc/X11/Xsession.d
4504+debian/xdg_dirs_desktop_session.sh etc/profile.d
4505+# Handled by desktop-file-utils in Ubuntu
4506+# debian/gnome-mimeapps.list usr/share/applications/
4507
4508=== added file 'debian/gnome-session.docs'
4509--- debian/gnome-session.docs 1970-01-01 00:00:00 +0000
4510+++ debian/gnome-session.docs 2017-12-15 06:47:37 +0000
4511@@ -0,0 +1,3 @@
4512+AUTHORS
4513+NEWS
4514+README
4515
4516=== added file 'debian/gnome-session.install'
4517--- debian/gnome-session.install 1970-01-01 00:00:00 +0000
4518+++ debian/gnome-session.install 2017-12-15 06:47:37 +0000
4519@@ -0,0 +1,4 @@
4520+usr/share/doc
4521+usr/share/xsessions/gnome-xorg.desktop
4522+usr/share/gnome-session/sessions/gnome.session
4523+usr/share/wayland-sessions/gnome.desktop
4524
4525=== added file 'debian/gnome-session.links'
4526--- debian/gnome-session.links 1970-01-01 00:00:00 +0000
4527+++ debian/gnome-session.links 2017-12-15 06:47:37 +0000
4528@@ -0,0 +1,1 @@
4529+usr/share/xsessions/gnome-xorg.desktop usr/share/xsessions/gnome.desktop
4530
4531=== added file 'debian/gnome-session.postinst'
4532--- debian/gnome-session.postinst 1970-01-01 00:00:00 +0000
4533+++ debian/gnome-session.postinst 2017-12-15 06:47:37 +0000
4534@@ -0,0 +1,10 @@
4535+#!/bin/sh
4536+
4537+set -e
4538+
4539+if [ "$1" = configure ]; then
4540+ update-alternatives --install /usr/share/gnome-shell/theme/gdm3.css \
4541+ gdm3.css /usr/share/gnome-shell/theme/gnome-shell.css 5
4542+fi
4543+
4544+#DEBHELPER#
4545
4546=== added file 'debian/gnome-session.prerm'
4547--- debian/gnome-session.prerm 1970-01-01 00:00:00 +0000
4548+++ debian/gnome-session.prerm 2017-12-15 06:47:37 +0000
4549@@ -0,0 +1,9 @@
4550+#!/bin/sh
4551+
4552+set -e
4553+
4554+if [ "$1" = "remove" ]; then
4555+ update-alternatives --remove gdm3.css /usr/share/gnome-shell/theme/gnome-shell.css
4556+fi
4557+
4558+#DEBHELPER#
4559
4560=== added file 'debian/gnome-wayland.desktop'
4561--- debian/gnome-wayland.desktop 1970-01-01 00:00:00 +0000
4562+++ debian/gnome-wayland.desktop 2017-12-15 06:47:37 +0000
4563@@ -0,0 +1,158 @@
4564+[Desktop Entry]
4565+Name=GNOME on Wayland
4566+Name[af]=GNOME op Wayland
4567+Name[ar]=جنوم على وايلاند
4568+Name[as]=Wayland ত GNOME
4569+Name[be]=GNOME на Wayland
4570+Name[bg]=GNOME с Wayland
4571+Name[bn_IN]=Wayland এ GNOME
4572+Name[bs]=GNOME u Wayland
4573+Name[ca]=GNOME sobre Wayland
4574+Name[ca@valencia]=GNOME sobre Wayland
4575+Name[cs]=GNOME na Waylandu
4576+Name[da]=GNOME på Wayland
4577+Name[de]=GNOME unter Wayland
4578+Name[el]=GNOME σε Wayland
4579+Name[eo]=GNOME je Vejlando
4580+Name[es]=GNOME en Wayland
4581+Name[et]=GNOME Waylandiga
4582+Name[eu]=GNOME Wayland gainean
4583+Name[fa]=گنوم بر روی Wayland
4584+Name[fi]=Gnome Waylandia käyttäen
4585+Name[fr]=GNOME sur Wayland
4586+Name[fur]=GNOME su Wayland
4587+Name[gd]=GNOME air Wayland
4588+Name[gl]=GNOME en Wayland
4589+Name[gu]=Wayland પર GNOME
4590+Name[he]=‏GNOME על גבי Wayland
4591+Name[hi]=गनोम वेलैंड पर
4592+Name[hr]=GNOME na Waylandu
4593+Name[hu]=GNOME Wayland-en
4594+Name[id]=GNOME pada Wayland
4595+Name[is]=GNOME á Wayland
4596+Name[it]=GNOME su Wayland
4597+Name[kk]=Wayland негізіндегі GNOME
4598+Name[km]=GNOME នៅ Wayland
4599+Name[kn]=Wayland ನಲ್ಲಿ GNOME
4600+Name[ko]=그놈, 웨일랜드
4601+Name[lt]=GNOME Wayland aplinkoje
4602+Name[lv]=GNOME ar Wayland
4603+Name[ml]=ഗ്നോം വേലാന്റില്‍
4604+Name[mr]=वेलँडवरील GNOME
4605+Name[ms]=GNOME pada Wayland
4606+Name[nb]=GNOME på Wayland
4607+Name[ne]=व्यल्यान्ड जिनोम
4608+Name[nl]=Gnome op Wayland
4609+Name[or]=ୱେଲ୍ୟାଣ୍ଡ ଉପରେ GNOME
4610+Name[pa]=ਵੇਲੈਂਡ ਉੱਤੇ ਗਨੋਮ
4611+Name[pl]=GNOME (Wayland)
4612+Name[pt]=GNOME no Wayland
4613+Name[pt_BR]=GNOME sobre Wayland
4614+Name[ro]=GNOME pe Wayland
4615+Name[ru]=GNOME на Wayland
4616+Name[sk]=GNOME cez Wayland
4617+Name[sl]=GNOME na sistemu Wayland
4618+Name[sr]=Гном на Вејланду
4619+Name[sr@latin]=Gnom na Vejlandu
4620+Name[sv]=GNOME med Wayland
4621+Name[ta]=Wayland இல் GNOME
4622+Name[te]=వేల్యాండ్ పై గ్నోమ్
4623+Name[tg]=GNOME дар Wayland
4624+Name[tr]=Wayland üzerinde GNOME
4625+Name[uk]=GNOME через Wayland
4626+Name[vi]=GNOME trên Wayland
4627+Name[zh_CN]=基于 Wayland 的 GNOME
4628+Name[zh_HK]=GNOME 於 Wayland
4629+Comment=This session logs you into GNOME
4630+Comment[af]=Hierdie sessie laat mens aanmeld by GNOME
4631+Comment[an]=Ista sesión accede a GNOME
4632+Comment[ar]=تولجك هذه الجلسة في جنوم
4633+Comment[as]=এই অধিবেশনে আপোনাক GNOME ত লগিন কৰায়
4634+Comment[ast]=Esta sesión conéuta-y a GNOME
4635+Comment[be]=Сеанс уваходу ў GNOME
4636+Comment[be@latin]=Hetaja sesija ŭruchamlaje GNOME
4637+Comment[bg]=Влизане в GNOME
4638+Comment[bn]=এই সেশনের মাধ্যমে GNOME-এ লগ-ইন করা যাবে
4639+Comment[bn_IN]=এই সেশানের মাধ্যমে GNOME-এ লগ-ইন করা যাবে
4640+Comment[br]=An estez-mañ a lug ac'hanoc'h davet GNOME
4641+Comment[bs]=Ova sesija Vas prijavljuje u GNOME
4642+Comment[ca]=Aquesta sessió us entra al GNOME
4643+Comment[ca@valencia]=Esta sessió vos entra al GNOME
4644+Comment[crh]=Bu oturım sizni GNOME'ğa içeri imzalandırır
4645+Comment[cs]=Toto sezení vás přihlásí do GNOME
4646+Comment[da]=Denne session logger dig ind i GNOME
4647+Comment[de]=Diese Sitzung meldet Sie bei GNOME an
4648+Comment[dz]=ལཱ་ཡུན་འདི་གིས་ ཁྱོད་ ཇི་ནོམ་ནང་ལུ་ ནང་བསྐྱོད་འབདཝ་ཨིན་
4649+Comment[el]=Αυτή η συνεδρία σας συνδέει στο GNOME
4650+Comment[en@shaw]=𐑞𐑦𐑕 𐑕𐑧𐑖𐑩𐑯 𐑤𐑪𐑜𐑟 𐑿 𐑦𐑯𐑑𐑫 ·𐑜𐑯𐑴𐑥
4651+Comment[en_GB]=This session logs you into GNOME
4652+Comment[eo]=Ĉi tiu seanco ensalutas vin en GNOME
4653+Comment[es]=Esta sesión accede a GNOME
4654+Comment[et]=Selle seansiga logitakse sind GNOME keskkonda sisse
4655+Comment[eu]=Saio honek GNOMEn sartuko zaitu
4656+Comment[fa]=این نشست شما را به گنوم وارد می‌کند.
4657+Comment[fi]=Tämä istunto kirjautuu Gnomeen
4658+Comment[fr]=Cette session vous connecte dans GNOME
4659+Comment[fur]=Cheste session ti fasarâ jentrâ dentri GNOME
4660+Comment[fy]=Dizze sesje meld jo oan by Gnome
4661+Comment[ga]=Logálann an seisiún seo thú isteach i nGNOME
4662+Comment[gd]=Clàraidh an seisean seo a-steach gu GNOME thu
4663+Comment[gl]=Esta sesión iniciará en GNOME
4664+Comment[gu]=આ સત્ર તમને GNOME માં પ્રવેશ આપે છે
4665+Comment[he]=הפעלה זאת מחברת אותך לשולחן העבודה GNOME
4666+Comment[hi]=यह सत्र गनोम में लॉगइन होगा
4667+Comment[hr]=Ova sesija vas prijavljuje u GNOME
4668+Comment[hu]=Bejelentkezés a GNOME környezetbe
4669+Comment[id]=Sesi ini melogkan Anda ke dalam GNOME
4670+Comment[is]=Þessi seta skráir þig inn í GNOME
4671+Comment[it]=Questa sessione esegue l'accesso in GNOME
4672+Comment[ja]=このセッションで GNOME にログインします
4673+Comment[ka]=ეს სესია გნომში შესვლის საშუალებას იძლევა
4674+Comment[kk]=Бұл сессия арқылы GNOME-ға кіресіз
4675+Comment[km]=សម័យ​នេះ​ជា​កំណត់​ហេតុ​ដែល​អ្នក​ទៅ​កាន់ GNOME
4676+Comment[kn]=ಈ ಅಧಿವೇಶನವು ನಿಮ್ಮನ್ನು GNOME ಗೆ ಪ್ರವೇಶಿಸುವಂತೆ ಮಾಡುತ್ತದೆ
4677+Comment[ko]=이 세션을 사용하면 그놈에 로그인합니다
4678+Comment[lt]=Šis seansas prijungia jus prie GNOME
4679+Comment[lv]=Šī sesija ieraksta jūs GNOME vidē
4680+Comment[mai]=ई सत्र अहाँक गनोममे लागिन दैछ
4681+Comment[mk]=Оваа сесија Ве најавува во GNOME
4682+Comment[ml]=ഈ പ്രവര്‍ത്തനവേള നിങ്ങളെ ഗ്നോമിലേക്ക് കയറ്റുന്നു
4683+Comment[mr]=GNOME मध्ये दाखल करण्याजोगी सत्र लॉग
4684+Comment[ms]=Sesi ini akan log masuk ke GNOME
4685+Comment[nb]=Denne økten logger inn i GNOME
4686+Comment[nds]=Düsser Törn mellt dik bi GNOME an
4687+Comment[ne]=यो सत्र जिनोम लगईन हुन्छ
4688+Comment[nl]=Deze sessie laat u in Gnome inloggen
4689+Comment[nn]=Denne økta loggar inn i GNOME
4690+Comment[oc]=Aquesta session vos connècta dins GNOME
4691+Comment[or]=ଏହି ଅଧିବେଶନ ଆପଣଙ୍କୁ ନୋମ ରେ ଲଗ କରାଇଥାଏ
4692+Comment[pa]=ਇਹ ਸ਼ੈਸ਼ਨ ਤੁਹਾਨੂੰ ਗਨੋਮ ਵਿੱਚ ਲਾਗ ਕਰਦਾ ਹੈ
4693+Comment[pl]=Ta sesja loguje użytkownika do środowiska GNOME
4694+Comment[ps]=دا ناسته تاسو ګنوم ته ننباسي
4695+Comment[pt]=Esta é uma sessão no GNOME
4696+Comment[pt_BR]=Essa sessão o leva ao GNOME
4697+Comment[ro]=Această sesiune vă va autentifica în GNOME
4698+Comment[ru]=Этот сеанс позволяет вам войти в GNOME
4699+Comment[sk]=Táto relácia vás prihlási do GNOME
4700+Comment[sl]=Seja omogoča prijavo v namizje GNOME.
4701+Comment[sr]=Ова сесија вас пријављује у Гном
4702+Comment[sr@latin]=Ova sesija vas prijavljuje u Gnom
4703+Comment[sv]=Denna session loggar in dig i GNOME
4704+Comment[ta]=இந்த அமர்வு க்நோம் இல் உங்களை நுழைக்கும்
4705+Comment[te]=ఈ సెషన్ గ్నోమ్‌లోనికి లాగ్ చేస్తుంది
4706+Comment[tg]=Ин ҷаласа шуморо ба GNOME ворид мекунад
4707+Comment[th]=วาระนี้จะเข้าสู่ GNOME
4708+Comment[tr]=Bu oturum GNOME girişi yapmanızı sağlar
4709+Comment[ug]=بۇ ئەڭگىمە سىزنى گىنومغا ئەكىرىدۇ.
4710+Comment[uk]=Це — сеанс входу в GNOME
4711+Comment[uz]=Ushbu seans GNOME'ga kirishingizni taʼminlaydi
4712+Comment[uz@cyrillic]=Ушбу сеанс GNOME'га киришингизни таъминлайди
4713+Comment[vi]=Phiên làm việc này sẽ đăng nhập bạn vào GNOME
4714+Comment[zh_CN]=此会话将您登录到 GNOME
4715+Comment[zh_HK]=這個作業階段讓你登入 GNOME
4716+Comment[zh_TW]=這個工作階段讓您登入 GNOME
4717+Exec=gnome-session --session=gnome
4718+TryExec=gnome-shell
4719+Icon=
4720+Type=Application
4721+DesktopNames=GNOME
4722
4723=== added directory 'debian/patches'
4724=== added file 'debian/patches/103_kill_the_fail_whale.patch'
4725--- debian/patches/103_kill_the_fail_whale.patch 1970-01-01 00:00:00 +0000
4726+++ debian/patches/103_kill_the_fail_whale.patch 2017-12-15 06:47:37 +0000
4727@@ -0,0 +1,41 @@
4728+Index: gnome-session/gnome-session/gsm-fail-whale.c
4729+===================================================================
4730+--- gnome-session.orig/gnome-session/gsm-fail-whale.c
4731++++ gnome-session/gnome-session/gsm-fail-whale.c
4732+@@ -21,6 +21,8 @@
4733+ #include <signal.h>
4734+ #include <stdlib.h>
4735+
4736++#include <stdlib.h>
4737++
4738+ #include <glib/gi18n.h>
4739+ #include <glib/gstdio.h>
4740+
4741+@@ -38,25 +40,6 @@ gsm_fail_whale_dialog_we_failed (gboole
4742+ gboolean allow_logout,
4743+ GsmShellExtensions *extensions)
4744+ {
4745+- gint i;
4746+- gchar *argv[5];
4747+- GPid pid;
4748+-
4749+- i = 0;
4750+- argv[i++] = LIBEXECDIR "/gnome-session-failed";
4751+- if (debug_mode)
4752+- argv[i++] = "--debug";
4753+- if (allow_logout)
4754+- argv[i++] = "--allow-logout";
4755+- if (extensions != NULL && gsm_shell_extensions_n_extensions (extensions) > 0)
4756+- argv[i++] = "--extensions";
4757+- argv[i++] = NULL;
4758+-
4759+- if (!g_spawn_async (NULL, argv, (char **) gsm_util_listenv (), G_SPAWN_DO_NOT_REAP_CHILD, NULL, NULL, &pid, NULL)) {
4760+- exit (1);
4761+- }
4762+-
4763+- g_child_watch_add (pid,
4764+- (GChildWatchFunc)on_fail_whale_failed,
4765+- NULL);
4766++ g_critical ("We failed, but the fail whale is dead. Sorry....");
4767++ exit (1);
4768+ }
4769
4770=== added file 'debian/patches/13_display_session_properties.patch'
4771--- debian/patches/13_display_session_properties.patch 1970-01-01 00:00:00 +0000
4772+++ debian/patches/13_display_session_properties.patch 2017-12-15 06:47:37 +0000
4773@@ -0,0 +1,18 @@
4774+Description: Display session-properties in the menu
4775+ gnome-control-center no longer includes the Startup Applications capplet,
4776+ so at least make session-properties discoverable via the menu or via
4777+ the builtian search.
4778+Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=683814
4779+
4780+Index: gnome-session/data/gnome-session-properties.desktop.in.in
4781+===================================================================
4782+--- gnome-session.orig/data/gnome-session-properties.desktop.in.in
4783++++ gnome-session/data/gnome-session-properties.desktop.in.in
4784+@@ -8,7 +8,6 @@ Type=Application
4785+ StartupNotify=true
4786+ Categories=GTK;GNOME;Settings;X-GNOME-PersonalSettings;
4787+ OnlyShowIn=GNOME;Unity;
4788+-NoDisplay=true
4789+ X-GNOME-Bugzilla-Bugzilla=GNOME
4790+ X-GNOME-Bugzilla-Product=gnome-session
4791+ X-GNOME-Bugzilla-Component=gnome-session-properties
4792
4793=== added file 'debian/patches/22_support_autostart_delay.patch'
4794--- debian/patches/22_support_autostart_delay.patch 1970-01-01 00:00:00 +0000
4795+++ debian/patches/22_support_autostart_delay.patch 2017-12-15 06:47:37 +0000
4796@@ -0,0 +1,232 @@
4797+Description: Add support for autostarting applications after a delay
4798+ Make it possible to delay autostarting an application for a time
4799+ period defined by the "X-GNOME-Autostart-Delay" key in the applications
4800+ desktop file
4801+Author: Chris Coulson <chrisccoulson@ubuntu.com>
4802+Bug: https://bugzilla.gnome.org/show_bug.cgi?id=608402
4803+
4804+Index: gnome-session/gnome-session/gsm-app.c
4805+===================================================================
4806+--- gnome-session.orig/gnome-session/gsm-app.c
4807++++ gnome-session/gnome-session/gsm-app.c
4808+@@ -316,6 +316,7 @@ gsm_app_class_init (GsmAppClass *klass)
4809+ klass->impl_provides = NULL;
4810+ klass->impl_get_provides = NULL;
4811+ klass->impl_is_running = NULL;
4812++ klass->impl_peek_autostart_delay = NULL;
4813+
4814+ g_object_class_install_property (object_class,
4815+ PROP_PHASE,
4816+@@ -518,7 +519,22 @@ gboolean
4817+ gsm_app_stop (GsmApp *app,
4818+ GError **error)
4819+ {
4820+- return GSM_APP_GET_CLASS (app)->impl_stop (app, error);
4821++ if (gsm_app_is_running (app))
4822++ return GSM_APP_GET_CLASS (app)->impl_stop (app, error);
4823++
4824++ return TRUE;
4825++}
4826++
4827++int
4828++gsm_app_peek_autostart_delay (GsmApp *app)
4829++{
4830++ g_return_val_if_fail (GSM_IS_APP (app), FALSE);
4831++
4832++ if (GSM_APP_GET_CLASS (app)->impl_peek_autostart_delay) {
4833++ return GSM_APP_GET_CLASS (app)->impl_peek_autostart_delay (app);
4834++ } else {
4835++ return 0;
4836++ }
4837+ }
4838+
4839+ void
4840+Index: gnome-session/gnome-session/gsm-app.h
4841+===================================================================
4842+--- gnome-session.orig/gnome-session/gsm-app.h
4843++++ gnome-session/gnome-session/gsm-app.h
4844+@@ -63,6 +63,7 @@ struct _GsmAppClass
4845+ GError **error);
4846+ gboolean (*impl_stop) (GsmApp *app,
4847+ GError **error);
4848++ int (*impl_peek_autostart_delay) (GsmApp *app);
4849+ gboolean (*impl_provides) (GsmApp *app,
4850+ const char *service);
4851+ char ** (*impl_get_provides) (GsmApp *app);
4852+@@ -120,6 +121,7 @@ gboolean gsm_app_has_autostart_c
4853+ gboolean gsm_app_get_registered (GsmApp *app);
4854+ void gsm_app_set_registered (GsmApp *app,
4855+ gboolean registered);
4856++int gsm_app_peek_autostart_delay (GsmApp *app);
4857+
4858+ G_END_DECLS
4859+
4860+Index: gnome-session/gnome-session/gsm-autostart-app.c
4861+===================================================================
4862+--- gnome-session.orig/gnome-session/gsm-autostart-app.c
4863++++ gnome-session/gnome-session/gsm-autostart-app.c
4864+@@ -20,6 +20,7 @@
4865+ #include <config.h>
4866+
4867+ #include <ctype.h>
4868++#include <stdlib.h>
4869+ #include <string.h>
4870+ #include <sys/wait.h>
4871+ #include <errno.h>
4872+@@ -73,6 +74,7 @@ struct _GsmAutostartAppPrivate {
4873+ char *condition_string;
4874+ gboolean condition;
4875+ gboolean autorestart;
4876++ int autostart_delay;
4877+
4878+ GFileMonitor *condition_monitor;
4879+ guint condition_notify_id;
4880+@@ -110,6 +112,7 @@ gsm_autostart_app_init (GsmAutostartApp
4881+ app->priv->pid = -1;
4882+ app->priv->condition_monitor = NULL;
4883+ app->priv->condition = FALSE;
4884++ app->priv->autostart_delay = -1;
4885+ }
4886+
4887+ static gboolean
4888+@@ -685,6 +688,20 @@ load_desktop_file (GsmAutostartApp *app
4889+ "AutostartCondition");
4890+ setup_condition_monitor (app);
4891+
4892++ const char *delay;
4893++ delay = g_desktop_app_info_get_string (app->priv->app_info,
4894++ GSM_AUTOSTART_APP_DELAY_KEY);
4895++
4896++ if (delay != NULL) {
4897++ app->priv->autostart_delay = strtol (delay, NULL, 10);
4898++
4899++ if (app->priv->autostart_delay < 0) {
4900++ g_warning ("Invalid autostart delay of %d for %s", app->priv->autostart_delay,
4901++ gsm_app_peek_id (GSM_APP (app)));
4902++ app->priv->autostart_delay = -1;
4903++ }
4904++ }
4905++
4906+ g_object_set (app,
4907+ "phase", phase,
4908+ "startup-id", startup_id,
4909+@@ -1401,6 +1418,14 @@ gsm_autostart_app_get_app_id (GsmApp *ap
4910+ return g_app_info_get_id (G_APP_INFO (GSM_AUTOSTART_APP (app)->priv->app_info));
4911+ }
4912+
4913++static int
4914++gsm_autostart_app_peek_autostart_delay (GsmApp *app)
4915++{
4916++ GsmAutostartApp *aapp = GSM_AUTOSTART_APP (app);
4917++
4918++ return aapp->priv->autostart_delay;
4919++}
4920++
4921+ static gboolean
4922+ gsm_autostart_app_initable_init (GInitable *initable,
4923+ GCancellable *cancellable,
4924+@@ -1448,6 +1473,7 @@ gsm_autostart_app_class_init (GsmAutosta
4925+ app_class->impl_has_autostart_condition = gsm_autostart_app_has_autostart_condition;
4926+ app_class->impl_get_app_id = gsm_autostart_app_get_app_id;
4927+ app_class->impl_get_autorestart = gsm_autostart_app_get_autorestart;
4928++ app_class->impl_peek_autostart_delay = gsm_autostart_app_peek_autostart_delay;
4929+
4930+ g_object_class_install_property (object_class,
4931+ PROP_DESKTOP_FILENAME,
4932+Index: gnome-session/gnome-session/gsm-manager.c
4933+===================================================================
4934+--- gnome-session.orig/gnome-session/gsm-manager.c
4935++++ gnome-session/gnome-session/gsm-manager.c
4936+@@ -399,7 +399,8 @@ app_condition_changed (GsmApp *app,
4937+ } else {
4938+ g_debug ("GsmManager: stopping app %s", gsm_app_peek_id (app));
4939+
4940+- /* If we don't have a client then we should try to kill the app */
4941++ /* If we don't have a client then we should try to kill the app ,
4942++ * if it is running */
4943+ error = NULL;
4944+ res = gsm_app_stop (app, &error);
4945+ if (! res) {
4946+@@ -724,10 +725,36 @@ on_phase_timeout (GsmManager *manager)
4947+ }
4948+
4949+ static gboolean
4950++_autostart_delay_timeout (GsmApp *app)
4951++{
4952++ GError *error = NULL;
4953++ gboolean res;
4954++
4955++ if (!gsm_app_peek_is_disabled (app)
4956++ && !gsm_app_peek_is_conditionally_disabled (app)) {
4957++ res = gsm_app_start (app, &error);
4958++ if (!res) {
4959++ if (error != NULL) {
4960++ g_warning ("Could not launch application '%s': %s",
4961++ gsm_app_peek_app_id (app),
4962++ error->message);
4963++ g_error_free (error);
4964++ }
4965++ }
4966++ }
4967++
4968++ g_object_unref (app);
4969++
4970++ return FALSE;
4971++}
4972++
4973++static gboolean
4974+ _start_app (const char *id,
4975+ GsmApp *app,
4976+ GsmManager *manager)
4977+ {
4978++ int delay;
4979++
4980+ if (gsm_app_peek_phase (app) != manager->priv->phase) {
4981+ goto out;
4982+ }
4983+@@ -745,6 +772,18 @@ _start_app (const char *id,
4984+ goto out;
4985+ }
4986+
4987++ /* Only accept an autostart delay for the application phase */
4988++ if (manager->priv->phase == GSM_MANAGER_PHASE_APPLICATION) {
4989++ delay = gsm_app_peek_autostart_delay (app);
4990++ if (delay > 0) {
4991++ g_timeout_add_seconds (delay,
4992++ (GSourceFunc)_autostart_delay_timeout,
4993++ g_object_ref (app));
4994++ g_debug ("GsmManager: %s is scheduled to start in %d seconds", id, delay);
4995++ goto out;
4996++ }
4997++ }
4998++
4999+ if (!start_app_or_warn (manager, app))
5000+ goto out;
The diff has been truncated for viewing.

Subscribers

People subscribed via source and target branches

to all changes: