Hello community, here is the log from the commit of package lxdm for openSUSE:Factory checked in at 2014-04-26 10:06:11 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lxdm (Old) and /work/SRC/openSUSE:Factory/.lxdm.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lxdm" Changes: -------- --- /work/SRC/openSUSE:Factory/lxdm/lxdm.changes 2013-01-12 14:52:20.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.lxdm.new/lxdm.changes 2014-04-26 10:06:12.000000000 +0200 @@ -1,0 +2,12 @@ +Fri Apr 18 18:02:24 UTC 2014 - [email protected] + +- added lxdm-0.4.1-fix-gtk2-keyboard-list-empty.patch +- added lxdm-0.4.1-fix-small-bug-in-theme.patch + * "prompt" color in Industrial theme gtkrc file is honored +- modified lxdm-0.4.1-background-12.1.patch + * 1920x1080 is 16:9, the most common aspect ratio for monitors +- removed checks and patches for discontinued versions + * lxdm-0.4.0-background.patch + * cleaned spec file + +------------------------------------------------------------------- Old: ---- lxdm-0.4.0-background.patch New: ---- lxdm-0.4.1-fix-gtk2-keyboard-list-empty.patch lxdm-0.4.1-fix-small-bug-in-theme.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lxdm.spec ++++++ --- /var/tmp/diff_new_pack.qK8j4Z/_old 2014-04-26 10:06:13.000000000 +0200 +++ /var/tmp/diff_new_pack.qK8j4Z/_new 2014-04-26 10:06:13.000000000 +0200 @@ -32,19 +32,20 @@ Source4: config-users.png Source5: lxdm Source6: sysconfig.lxdm -Patch0: %{name}-0.4.0-background.patch # PATCH-FEATURE-OPENSUSE lxdm-0.4.0-use-sysconfig.patch [email protected] # this patch allow lxdm to read system settings from /etc/sysconfig Patch1: %{name}-0.4.0-use-sysconfig.patch Patch2: %{name}-0.4.0-gnome-start.patch # PATCH-FIX-OPENSUSE lxdm-0.4.0-common.patch [email protected] # this patch fix bnc#586555 lxdm now use common scripts in /etc/X11/xdm -Patch4: %{name}-0.4.0-common.patch -Patch5: %{name}-0.4.0-fix-null-pointer-dereference.patch +Patch3: %{name}-0.4.0-common.patch +Patch4: %{name}-0.4.0-fix-null-pointer-dereference.patch # Patch needed to use current new default wallpaper location # bnc#732671 -Patch6: %{name}-0.4.1-background-12.1.patch -Patch7: %{name}-bnc-741454-d4e41ec.patch +Patch5: %{name}-0.4.1-background-12.1.patch +Patch6: %{name}-bnc-741454-d4e41ec.patch +Patch7: %{name}-0.4.1-fix-gtk2-keyboard-list-empty.patch +Patch8: %{name}-0.4.1-fix-small-bug-in-theme.patch BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: ConsoleKit-devel BuildRequires: autoconf @@ -63,9 +64,7 @@ Requires: desktop-data-openSUSE Requires: pam PreReq: %fillup_prereq -%if 0%{?suse_version} >= 1210 Recommends: gnome-control-center-user-faces -%endif Provides: lxdm-conf = %version Obsoletes: lxdm-conf < %version @@ -76,17 +75,14 @@ %prep %setup -q -%if 0%{?suse_version} <= 1140 -%patch0 -p1 -%endif %patch1 -p1 %patch2 -p1 +%patch3 -p1 %patch4 -p1 %patch5 -p1 -%if 0%{?suse_version} >= 1210 %patch6 -p1 %patch7 -p1 -%endif +%patch8 -p1 %__cp %{SOURCE1} . ++++++ lxdm-0.4.1-background-12.1.patch ++++++ --- /var/tmp/diff_new_pack.qK8j4Z/_old 2014-04-26 10:06:13.000000000 +0200 +++ /var/tmp/diff_new_pack.qK8j4Z/_new 2014-04-26 10:06:13.000000000 +0200 @@ -5,7 +5,7 @@ ## background of the greeter -bg=/usr/share/backgrounds/default.png -+bg=/usr/share/wallpapers/openSUSEdefault/contents/images/1600x1200.jpg ++bg=/usr/share/wallpapers/openSUSEdefault/contents/images/1920x1080.jpg ## if show bottom pane bottom_pane=1 ++++++ lxdm-0.4.1-fix-gtk2-keyboard-list-empty.patch ++++++ From: 4e4f5ca87fb03c2e5b937f381673c51fd00bcb54 2012-10-22 From: dgod <[email protected]> Subject: [PATCH] fix gtk2 keyboard list empty diff -uNr lxdm-0.4.1-old/data/themes/Industrial/greeter.ui lxdm-0.4.1-new/data/themes/Industrial/greeter.ui --- lxdm-0.4.1-old/data/themes/Industrial/greeter.ui 2011-07-29 15:42:33.000000000 +0200 +++ lxdm-0.4.1-new/data/themes/Industrial/greeter.ui 2012-10-22 11:15:02.000000000 +0200 @@ -201,7 +201,9 @@ </packing> </child> <child> - <object class="GtkComboBoxEntry" id="keyboard"/> + <object class="GtkComboBoxEntry" id="keyboard"> + <property name="text_column">0</property> + </object> <packing> <property name="expand">False</property> <property name="position">3</property> diff -uNr lxdm-0.4.1-old/data/lxdm.glade lxdm-0.4.1-new/data/lxdm.glade --- lxdm-0.4.1-old/data/lxdm.glade 2011-07-29 15:42:33.000000000 +0200 +++ lxdm-0.4.1-new/data/lxdm.glade 2012-10-22 11:15:02.000000000 +0200 @@ -125,7 +125,9 @@ </packing> </child> <child> - <object class="GtkComboBoxEntry" id="keyboard"/> + <object class="GtkComboBoxEntry" id="keyboard"> + <property name="text_column">0</property> + </object> <packing> <property name="expand">False</property> <property name="position">3</property> ++++++ lxdm-0.4.1-fix-small-bug-in-theme.patch ++++++ From: 8bdf42d903408ed6111b95a2992f3b9d471cfab6 2012-05-29 From: dgod <[email protected]> Subject: [PATCH] fix small bug in theme diff -uNr lxdm-0.4.1-old/data/themes/Industrial/greeter-gtk3.ui lxdm-0.4.1-new/data/themes/Industrial/greeter-gtk3.ui --- lxdm-0.4.1-old/data/themes/Industrial/greeter-gtk3.ui 2011-07-29 15:42:33.000000000 +0200 +++ lxdm-0.4.1-new/data/themes/Industrial/greeter-gtk3.ui 2014-04-18 19:41:03.548173619 +0200 @@ -1,7 +1,5 @@ <?xml version="1.0"?> <interface> - <!-- interface-requires gtk+ 2.12 --> - <!-- interface-naming-policy project-wide --> <object class="GtkWindow" id="lxdm"> <property name="decorated">False</property> <child> diff -uNr lxdm-0.4.1-old/data/themes/Industrial/gtkrc lxdm-0.4.1-new/data/themes/Industrial/gtkrc --- lxdm-0.4.1-old/data/themes/Industrial/gtkrc 2011-07-29 15:42:33.000000000 +0200 +++ lxdm-0.4.1-new/data/themes/Industrial/gtkrc 2014-04-18 19:40:46.627466119 +0200 @@ -45,6 +45,6 @@ widget "lxdm" style "back" widget "lxdm.*.time" style "time" -widget "lxdm.*.prompt" style "prompt" +widget "*.prompt" style "prompt" widget "lxdm.*.bottom_pane" style "bottom" widget_class "GtkWindow.*.GtkEventBox.*.<GtkLabel>" style "bottom" -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
