Hello community, here is the log from the commit of package WindowMaker for openSUSE:Factory checked in at 2014-11-11 01:11:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/WindowMaker (Old) and /work/SRC/openSUSE:Factory/.WindowMaker.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "WindowMaker" Changes: -------- --- /work/SRC/openSUSE:Factory/WindowMaker/WindowMaker.changes 2014-07-10 14:55:09.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.WindowMaker.new/WindowMaker.changes 2014-11-11 01:11:58.000000000 +0100 @@ -1,0 +2,14 @@ +Thu Nov 6 00:12:35 UTC 2014 - [email protected] + +- Update to WindowMaker-0.95.6 + - Add: WindowMaker-0.95.6.tar.gz + - Remove: WindowMaker-0.95.5.tar.gz + - Update WindowMaker-menu.patch to reflect changed menu.nl in + 0.95.6. + - Update fix_wmgenmenu_paths.patch as most changes are already + present in 0.95.6. + - Update wm-giflib.c to reflect code changes (ie. re-written + wrlib/gif.c with wrlib/load_gif.c). Not clear if this patch + is even needed, but keeping it around. + +------------------------------------------------------------------- Old: ---- WindowMaker-0.95.5.tar.gz New: ---- WindowMaker-0.95.6.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ WindowMaker.spec ++++++ --- /var/tmp/diff_new_pack.VIdb7S/_old 2014-11-11 01:12:00.000000000 +0100 +++ /var/tmp/diff_new_pack.VIdb7S/_new 2014-11-11 01:12:00.000000000 +0100 @@ -20,7 +20,7 @@ Summary: A Colorful and Flexible Window Manager License: GPL-2.0+ and LGPL-2.1+ and SUSE-Public-Domain Group: System/GUI/Other -Version: 0.95.5 +Version: 0.95.6 Release: 0 # 81eefca4ef70414d73048300058e5007f402dd7f # f846b7cdd39749b5291d4559185a229b752b4fed ++++++ WindowMaker-0.95.5.tar.gz -> WindowMaker-0.95.6.tar.gz ++++++ ++++ 91803 lines of diff (skipped) ++++++ WindowMaker-menu.patch ++++++ ++++ 759 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/WindowMaker/WindowMaker-menu.patch ++++ and /work/SRC/openSUSE:Factory/.WindowMaker.new/WindowMaker-menu.patch ++++++ fix_wmgenmenu_paths.patch ++++++ --- /var/tmp/diff_new_pack.VIdb7S/_old 2014-11-11 01:12:00.000000000 +0100 +++ /var/tmp/diff_new_pack.VIdb7S/_new 2014-11-11 01:12:00.000000000 +0100 @@ -12,51 +12,26 @@ Signed-off-by: Carlos R. Mafra <[email protected]> --- -diff -rupN WindowMaker-0.95.4.old/util/wmgenmenu.c WindowMaker-0.95.4/util/wmgenmenu.c ---- WindowMaker-0.95.4.old/util/wmgenmenu.c 2013-01-09 13:42:39.000000000 -0800 -+++ WindowMaker-0.95.4/util/wmgenmenu.c 2014-04-10 13:02:00.693514632 -0700 -@@ -35,6 +35,13 @@ int main(int argc, char *argv[]) +Index: WindowMaker-0.95.6/util/wmgenmenu.c +=================================================================== +--- WindowMaker-0.95.6.orig/util/wmgenmenu.c ++++ WindowMaker-0.95.6/util/wmgenmenu.c +@@ -41,12 +41,13 @@ int main(int argc, char *argv[]) { char *t; int ch; +- char *tmp, *theme_paths, *style_paths, *icon_paths; + char *tmp, *theme_paths, *style_paths, *icon_paths, *bg_paths; -+ -+ tmp = wstrconcat("-noext ", PKGDATADIR); -+ theme_paths = wstrconcat(tmp, "/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"); -+ style_paths = wstrconcat(tmp, "/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"); -+ icon_paths = wstrconcat(tmp, "/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"); + + tmp = wstrconcat("-noext ", PKGDATADIR); + theme_paths = wstrconcat(tmp, "/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"); + style_paths = wstrconcat(tmp, "/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"); + icon_paths = wstrconcat(tmp, "/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"); + bg_paths = wstrconcat(tmp, "/Backgrounds $HOME/GNUstep/Library/WindowMaker/Backgrounds WITH wmsetbg -u -t"); struct option longopts[] = { { "version", no_argument, NULL, 'v' }, -@@ -146,7 +153,7 @@ int main(int argc, char *argv[]) - L2Menu = WMCreatePLArray( - WMCreatePLString(_("Themes")), - WMCreatePLString("OPEN_MENU"), -- WMCreatePLString("-noext /usr/local/share/WindowMaker/Themes $HOME/GNUstep/Library/WindowMaker/Themes WITH setstyle"), -+ WMCreatePLString(theme_paths), - NULL - ); - WMAddToPLArray(L1Menu, L2Menu); -@@ -155,7 +162,7 @@ int main(int argc, char *argv[]) - L2Menu = WMCreatePLArray( - WMCreatePLString(_("Styles")), - WMCreatePLString("OPEN_MENU"), -- WMCreatePLString("-noext /usr/local/share/WindowMaker/Styles $HOME/GNUstep/Library/WindowMaker/Styles WITH setstyle"), -+ WMCreatePLString(style_paths), - NULL - ); - WMAddToPLArray(L1Menu, L2Menu); -@@ -164,7 +171,7 @@ int main(int argc, char *argv[]) - L2Menu = WMCreatePLArray( - WMCreatePLString(_("Icon Sets")), - WMCreatePLString("OPEN_MENU"), -- WMCreatePLString("-noext /usr/local/share/WindowMaker/IconSets $HOME/GNUstep/Library/WindowMaker/IconSets WITH seticons"), -+ WMCreatePLString(icon_paths), - NULL - ); - WMAddToPLArray(L1Menu, L2Menu); -@@ -232,7 +239,7 @@ int main(int argc, char *argv[]) +@@ -244,7 +245,7 @@ int main(int argc, char *argv[]) L3Menu = WMCreatePLArray( WMCreatePLString(_("Images")), WMCreatePLString("OPEN_MENU"), @@ -65,7 +40,7 @@ NULL ); WMAddToPLArray(L2Menu, L3Menu); -@@ -321,7 +328,7 @@ int main(int argc, char *argv[]) +@@ -333,7 +334,7 @@ int main(int argc, char *argv[]) L1Menu = WMCreatePLArray( WMCreatePLString(_("Configure Window Maker")), WMCreatePLString("EXEC"), ++++++ wm-giflib.patch ++++++ ++++ 2486 lines (skipped) ++++ between /work/SRC/openSUSE:Factory/WindowMaker/wm-giflib.patch ++++ and /work/SRC/openSUSE:Factory/.WindowMaker.new/wm-giflib.patch -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
