commit fcitx-configtool for openSUSE:Factory

2017-12-19 Thread root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2017-12-19 10:50:56

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is "fcitx-configtool"

Tue Dec 19 10:50:56 2017 rev:22 rq:547520 version:0.4.10

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2017-08-22 11:10:19.522488550 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2017-12-19 10:51:05.026794845 +0100
@@ -1,0 +2,7 @@
+Fri Nov 24 11:33:14 UTC 2017 - i...@marguerite.su
+
+- update version 0.4.10
+  * enforce c99
+  * remove usage of deprecated gtk3 api
+
+---

Old:

  fcitx-configtool-0.4.9.tar.xz

New:

  fcitx-configtool-0.4.10.tar.xz



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.h8GPgn/_old  2017-12-19 10:51:05.606766847 +0100
+++ /var/tmp/diff_new_pack.h8GPgn/_new  2017-12-19 10:51:05.606766847 +0100
@@ -18,7 +18,7 @@
 
 %definepkgname fcitx-config-gtk3
 Name:   fcitx-configtool
-Version:0.4.9
+Version:0.4.10
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+
@@ -38,7 +38,6 @@
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  dbus-1-glib-devel
 
-
 %description
 fcitx-config Gtk based configure tool for fcitx.
 

++ fcitx-configtool-0.4.9.tar.xz -> fcitx-configtool-0.4.10.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.9/CMakeLists.txt 
new/fcitx-configtool-0.4.10/CMakeLists.txt
--- old/fcitx-configtool-0.4.9/CMakeLists.txt   2017-02-04 19:49:17.0 
+0100
+++ new/fcitx-configtool-0.4.10/CMakeLists.txt  2017-09-15 00:30:03.0 
+0200
@@ -1,7 +1,10 @@
-cmake_minimum_required(VERSION 2.6)
+cmake_minimum_required(VERSION 3.1)
 
 project(fcitx-configtool)
 
+set(CMAKE_C_STANDARD_REQUIRED TRUE)
+set(CMAKE_C_STANDARD 99)
+
 option(ENABLE_GTK2 "Enable GTK2 Version" Off)
 option(ENABLE_GTK3 "Enable GTK3 Version" On)
 
@@ -11,7 +14,7 @@
 
 if(ENABLE_GTK3)
   pkg_check_modules(FCITX_GCLIENT "fcitx-gclient>=4.2.6" REQUIRED)
-  pkg_check_modules(GTK3 "gtk+-3.0>=3.12" REQUIRED)
+  pkg_check_modules(GTK3 "gtk+-3.0>=3.20" REQUIRED)
 endif()
 
 if(ENABLE_GTK2)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.9/gtk3/config_widget.c 
new/fcitx-configtool-0.4.10/gtk3/config_widget.c
--- old/fcitx-configtool-0.4.9/gtk3/config_widget.c 2017-02-04 
19:49:17.0 +0100
+++ new/fcitx-configtool-0.4.10/gtk3/config_widget.c2017-09-15 
00:30:03.0 +0200
@@ -611,7 +611,7 @@
 self->advanceCheckBox = gtk_check_button_new();
 gtk_grid_attach(GTK_GRID(self), self->advanceCheckBox, 0, 1, 1, 1);
 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(self->advanceCheckBox), 
FALSE);
-gtk_button_set_label(GTK_BUTTON(self->advanceCheckBox), _("Show 
Advance Option"));
+gtk_button_set_label(GTK_BUTTON(self->advanceCheckBox), _("Show 
Advanced Options"));
 g_signal_connect(self->advanceCheckBox, "toggled", (GCallback) 
_fcitx_config_widget_toggle_simple_full, self);
 
_fcitx_config_widget_toggle_simple_full(GTK_TOGGLE_BUTTON(self->advanceCheckBox),
 self);
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.9/gtk3/keygrab.c 
new/fcitx-configtool-0.4.10/gtk3/keygrab.c
--- old/fcitx-configtool-0.4.9/gtk3/keygrab.c   2017-02-04 19:49:17.0 
+0100
+++ new/fcitx-configtool-0.4.10/gtk3/keygrab.c  2017-09-15 00:30:03.0 
+0200
@@ -85,17 +85,10 @@
 
 GdkWindow* window = gtk_widget_get_window(GTK_WIDGET(b->popup));
 GdkDisplay* display = gdk_window_get_display (window);
-GdkDeviceManager* device_manager = gdk_display_get_device_manager 
(display);
-GdkDevice* pointer = gdk_device_manager_get_client_pointer 
(device_manager);
-GdkDevice* keyboard = gdk_device_get_associated_device (pointer);
-
-while (gdk_device_grab(
-keyboard,
-window,
-GDK_OWNERSHIP_WINDOW, TRUE,
-GDK_KEY_PRESS | GDK_KEY_RELEASE,
-NULL,
-GDK_CURRENT_TIME) != GDK_GRAB_SUCCESS)
+GdkSeat* seat = gdk_display_get_default_seat (display);
+while (gdk_seat_grab (seat, window,
+ GDK_SEAT_CAPABILITY_ALL, FALSE,
+ NULL, NULL, NULL, NULL) != GDK_GRAB_SUCCESS)
 usleep(100);
 }
 
@@ -104,10 +97,8 @@
 KeyGrabButton* b = 

commit fcitx-configtool for openSUSE:Factory

2017-08-22 Thread root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2017-08-22 11:10:18

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is "fcitx-configtool"

Tue Aug 22 11:10:18 2017 rev:21 rq:517944 version:0.4.9

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2017-02-15 10:06:04.239027892 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2017-08-22 11:10:19.522488550 +0200
@@ -1,0 +2,7 @@
+Sun Aug 20 22:49:28 UTC 2017 - zai...@opensuse.org
+
+- Drop conditional libunique-devel, libunique1-devel,
+  dbus-glib-devel and unique-devel BuildRequires: Obsolete and
+  unused, keeping just dbus-1-glib-devel is sufficient.
+
+---



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.rnEy6Q/_old  2017-08-22 11:10:20.406364095 +0200
+++ /var/tmp/diff_new_pack.rnEy6Q/_new  2017-08-22 11:10:20.414362968 +0200
@@ -36,17 +36,8 @@
 BuildRequires:  libtool
 BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-%if 0%{?suse_version}
 BuildRequires:  dbus-1-glib-devel
-%if 0%{?suse_version} <= 1140
-BuildRequires:  libunique-devel
-%else
-BuildRequires:  libunique1-devel
-%endif
-%else
-BuildRequires:  dbus-glib-devel
-BuildRequires:  unique-devel
-%endif
+
 
 %description
 fcitx-config Gtk based configure tool for fcitx.




commit fcitx-configtool for openSUSE:Factory

2017-02-15 Thread root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2017-02-15 10:06:03

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is "fcitx-configtool"

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2016-11-15 18:01:14.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2017-02-15 10:06:04.239027892 +0100
@@ -1,0 +2,12 @@
+Sat Feb 11 22:49:37 UTC 2017 - i...@marguerite.su
+
+- update version 0.4.9
+  * shouldn't create dummy config when cfdesc doesn't exist
+  * remove usage of some deprecated gtk3 functions and bump
+requirement to 3.12
+  * add qt5 wrapper support to use qt5's webengine since qt4's
+webkiti is no longer maintained upstream
+- add patch: fcitx-configtool-0.4.9-for-loop-init-declaration-c99.patch
+  * for loop initial declarations are only allowed in C99 mode
+
+---

Old:

  _service
  fcitx-configtool-0.4.8.tar.xz

New:

  fcitx-configtool-0.4.9-for-loop-init-declaration-c99.patch
  fcitx-configtool-0.4.9.tar.xz



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.0uD8OQ/_old  2017-02-15 10:06:04.698963107 +0100
+++ /var/tmp/diff_new_pack.0uD8OQ/_new  2017-02-15 10:06:04.698963107 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-configtool
 #
-# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -17,15 +17,25 @@
 
 
 %definepkgname fcitx-config-gtk3
-
 Name:   fcitx-configtool
-Version:0.4.8
+Version:0.4.9
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+
 Group:  System/I18n/Chinese
-Url:http://code.google.com/p/fcitx
+Url:https://github.com/fcitx/fcitx-configtool
 Source: 
http://download.fcitx-im.org/fcitx-configtool/%{name}-%{version}.tar.xz
+#PATCH-FIX-UPSTREAM for loop init declaration is only allowed in c99 mode
+Patch:  fcitx-configtool-0.4.9-for-loop-init-declaration-c99.patch
+BuildRequires:  cmake
+BuildRequires:  fcitx-devel
+BuildRequires:  gcc-c++
+BuildRequires:  gtk3-devel
+BuildRequires:  intltool
+BuildRequires:  iso-codes-devel
+BuildRequires:  libtool
+BuildRequires:  xz
+BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %if 0%{?suse_version}
 BuildRequires:  dbus-1-glib-devel
 %if 0%{?suse_version} <= 1140
@@ -37,15 +47,6 @@
 BuildRequires:  dbus-glib-devel
 BuildRequires:  unique-devel
 %endif
-BuildRequires:  cmake
-BuildRequires:  fcitx-devel
-BuildRequires:  gcc-c++
-BuildRequires:  gtk3-devel
-BuildRequires:  intltool
-BuildRequires:  iso-codes-devel
-BuildRequires:  libtool
-BuildRequires:  xz
-BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
 fcitx-config Gtk based configure tool for fcitx.
@@ -55,6 +56,7 @@
 %package -n %{pkgname}
 Summary:GTK GUI Config tool for FCITX
 Group:  System/I18n/Chinese
+Supplements:packageand(fcitx:libgtk-3-0)
 Provides:   fcitx-config-gtk = %{version}
 Obsoletes:  fcitx-config-gtk < %{version}
 Provides:   fcitx-config-gtk2 = %{version}
@@ -62,7 +64,6 @@
 Provides:   %{name} = %{version}
 Obsoletes:  %{name} < %{version}
 Provides:   locale(libgnome:ko;zh_CN;zh_SG)
-Supplements:packageand(fcitx:libgtk-3-0)
 %{fcitx_requires}
 
 %description -n %{pkgname}
@@ -72,29 +73,23 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
-mkdir -pv build
-pushd build
-cmake   -DCMAKE_INSTALL_PREFIX=%{_prefix} \
--DLIB_INSTALL_DIR=%{_libdir} \
-..
-make
+%cmake
+make %{?_smp_mflags}
 
 %install
-pushd build
-%makeinstall
-popd
+%cmake_install
 
 %find_lang %{name}
 
 %post -p /sbin/ldconfig
-
 %postun -p /sbin/ldconfig
 
 %files -n %{pkgname} -f %{name}.lang
 %defattr(-,root,root)
 %doc COPYING
-%{_bindir}/*
+%{_bindir}/fcitx-config-gtk3
 
 %changelog

++ fcitx-configtool-0.4.9-for-loop-init-declaration-c99.patch ++
Index: b/gtk3/sub_config_widget.c
===
--- a/gtk3/sub_config_widget.c
+++ b/gtk3/sub_config_widget.c
@@ -194,7 +194,8 @@ void open_native_file(GtkButton *button,
 fcitx_utils_get_fcitx_path_with_filename ("libdir", 
"fcitx/libexec/fcitx-qt5-gui-wrapper")
 };
 char* wrapper = NULL;
-for (int i = 0; i < FCITX_ARRAY_SIZE(qtguiwrapper); 

commit fcitx-configtool for openSUSE:Factory

2016-11-15 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2016-11-15 18:01:13

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is "fcitx-configtool"

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2014-02-19 06:54:31.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2016-11-15 18:01:14.0 +0100
@@ -1,0 +2,7 @@
+Sun Nov 13 15:28:44 UTC 2016 - toddrme2...@gmail.com
+
+- Fix accidental use of ":" isntead of ";" as locale delimeter
+  in "Provides"
+- Update year
+
+---



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.ctGifi/_old  2016-11-15 18:01:15.0 +0100
+++ /var/tmp/diff_new_pack.ctGifi/_new  2016-11-15 18:01:15.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-configtool
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2016 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -61,7 +61,7 @@
 Obsoletes:  fcitx-config-gtk2 < %{version}
 Provides:   %{name} = %{version}
 Obsoletes:  %{name} < %{version}
-Provides:   locale(libgnome:ko;zh_CN:zh_SG)
+Provides:   locale(libgnome:ko;zh_CN;zh_SG)
 Supplements:packageand(fcitx:libgtk-3-0)
 %{fcitx_requires}
 




commit fcitx-configtool for openSUSE:Factory

2014-02-18 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2014-02-19 06:54:30

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2013-10-29 11:03:27.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2014-02-19 06:54:31.0 +0100
@@ -1,0 +2,5 @@
+Fri Feb 14 14:01:50 UTC 2014 - fcro...@suse.com
+
+- Package COPYING as %doc
+
+---



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.EsIAi6/_old  2014-02-19 06:54:32.0 +0100
+++ /var/tmp/diff_new_pack.EsIAi6/_new  2014-02-19 06:54:32.0 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-configtool
 #
-# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -94,6 +94,7 @@
 
 %files -n %{pkgname} -f %{name}.lang
 %defattr(-,root,root)
+%doc COPYING
 %{_bindir}/*
 
 %changelog

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2013-10-18 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2013-10-18 13:33:44

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2013-07-08 13:34:29.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2013-10-18 13:39:07.0 +0200
@@ -1,0 +2,13 @@
+Fri Oct 18 06:09:23 UTC 2013 - i...@marguerite.su
+
+- fix bnc#846037
+  * New: Too narrow window in fcitx-config-gtk3 input method 
+addition dialog
+  * gtk_scrolled_window_add_with_viewport has been deprecated 
+since version 3.8, now gtk_container_add() will now 
+automatically add a GtkViewport if the child doesn't 
+implement GtkScrollable
+- GTK_STOCK_* is also depreciated
+- Add patch:fcitx-configtool-gnome-3.10-fixes.patch
+
+---

New:

  fcitx-configtool-gnome-3.10-fixes.patch



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.dd9CxW/_old  2013-10-18 13:39:08.0 +0200
+++ /var/tmp/diff_new_pack.dd9CxW/_new  2013-10-18 13:39:08.0 +0200
@@ -26,6 +26,8 @@
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/fcitx
 Source: 
http://download.fcitx-im.org/fcitx-configtool/%{name}-%{version}.tar.xz
+# PATCH-FIX-UPSTREAM wen...@gmail.com - fix gtk depreciated functions and 
bnc#846037
+Patch:  fcitx-configtool-gnome-3.10-fixes.patch
 %if 0%{?suse_version}
 BuildRequires:  dbus-1-glib-devel
 %if 0%{?suse_version} = 1140
@@ -72,6 +74,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 mkdir -pv build

++ fcitx-configtool-gnome-3.10-fixes.patch ++
Index: fcitx-configtool-0.4.7/gtk3/config_widget.c
===
--- fcitx-configtool-0.4.7.orig/gtk3/config_widget.c
+++ fcitx-configtool-0.4.7/gtk3/config_widget.c
@@ -483,7 +483,15 @@ fcitx_config_widget_create_full_ui(Fcitx
 g_object_set(G_OBJECT(scrollwnd), shadow-type, GTK_SHADOW_NONE, 
NULL);
 
 gtk_scrolled_window_set_policy(GTK_SCROLLED_WINDOW(scrollwnd), 
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
+
+#if ((GTK_MAJOR_VERSION == 3  GTK_MINOR_VERSION  7) || (GTK_MAJOR_VERSION 
== 3  GTK_MINOR_VERSION == 7  GTK_MICRO_VERSION  8))
+/* 
http://developer.gnome.org/gtk3/unstable/GtkScrolledWindow.html#gtk-scrolled-window-add-with-viewport
 */
+/* gtk_scrolled_window_add_with_viewport has been deprecated since 
version 3.8 and should not be used in newly-written code. */
 
gtk_scrolled_window_add_with_viewport(GTK_SCROLLED_WINDOW(scrollwnd), grid);
+#else
+/* gtk_container_add() will now automatically add a GtkViewport if 
the child doesn't implement GtkScrollable. */
+gtk_container_add(GTK_CONTAINER(scrollwnd), grid);
+#endif
 gtk_notebook_append_page(GTK_NOTEBOOK(configNotebook),
  scrollwnd,
  plabel);
@@ -926,9 +934,9 @@ GtkWidget* fcitx_config_dialog_new(Fcitx
 GtkWidget* dialog = gtk_dialog_new_with_buttons(addon-generalname,
 parent,
 GTK_DIALOG_MODAL,
-GTK_STOCK_CANCEL,
+_(_Cancel),
 GTK_RESPONSE_CANCEL,
-GTK_STOCK_OK,
+_(_OK),
 GTK_RESPONSE_OK,
 NULL
 );
Index: fcitx-configtool-0.4.7/gtk3/im_config_dialog.c
===
--- fcitx-configtool-0.4.7.orig/gtk3/im_config_dialog.c
+++ fcitx-configtool-0.4.7/gtk3/im_config_dialog.c
@@ -70,9 +70,9 @@ fcitx_im_config_dialog_init(FcitxImConfi
 gtk_window_set_modal(GTK_WINDOW(self), TRUE);
 
 gtk_dialog_add_buttons(GTK_DIALOG(self),
-   GTK_STOCK_CANCEL,
+   _(_Cancel),
GTK_RESPONSE_CANCEL,
-   GTK_STOCK_OK,
+   _(_OK),
GTK_RESPONSE_OK,
NULL
   );
Index: 

commit fcitx-configtool for openSUSE:Factory

2013-07-08 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2013-07-08 13:34:27

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2013-01-29 12:08:12.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2013-07-08 13:34:29.0 +0200
@@ -1,0 +2,9 @@
+Mon Jul  1 02:44:53 UTC 2013 - i...@marguerite.su
+
+- update version 0.4.7
+  * Support for new SubConfig Type
+  * Support for Modifier Only Key Grab
+- drop fcitx-config-gtk2
+  * New fcitx-configtool requires gtk3-devel to build
+
+---

Old:

  fcitx-configtool-0.4.6.tar.bz2

New:

  fcitx-configtool-0.4.7.tar.xz



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.sAmQ8L/_old  2013-07-08 13:34:29.0 +0200
+++ /var/tmp/diff_new_pack.sAmQ8L/_new  2013-07-08 13:34:29.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-configtool
 #
-# Copyright (c) 2012 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
 #
 # All modifications and additions to the file contributed by third parties
 # remain the property of their copyright owners, unless otherwise agreed
@@ -16,19 +16,16 @@
 #
 
 
-%if 0%{?suse_version}  1140
-%definepkgname fcitx-config-gtk2
-%else
 %definepkgname fcitx-config-gtk3
-%endif
 
 Name:   fcitx-configtool
-Version:0.4.6
+Version:0.4.7
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/fcitx
+Source: 
http://download.fcitx-im.org/fcitx-configtool/%{name}-%{version}.tar.xz
 %if 0%{?suse_version}
 BuildRequires:  dbus-1-glib-devel
 %if 0%{?suse_version} = 1140
@@ -40,20 +37,15 @@
 BuildRequires:  dbus-glib-devel
 BuildRequires:  unique-devel
 %endif
-BuildRequires:  fcitx-devel
-BuildRequires:  gtk2-devel
-%if 0%{?suse_version} = 1140 || 0%{?fedora_version}
-BuildRequires:  gtk3-devel
-%endif
-#Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
-Source: %{name}-%{version}.tar.bz2
 BuildRequires:  cmake
+BuildRequires:  fcitx-devel
 BuildRequires:  gcc-c++
+BuildRequires:  gtk3-devel
 BuildRequires:  intltool
 BuildRequires:  iso-codes-devel
 BuildRequires:  libtool
+BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
-Provides:   locale(libgnome:ko;zh_CN;zh_SG)
 
 %description
 fcitx-config Gtk based configure tool for fcitx.
@@ -65,6 +57,13 @@
 Group:  System/I18n/Chinese
 Provides:   fcitx-config-gtk = %{version}
 Obsoletes:  fcitx-config-gtk  %{version}
+Provides:   fcitx-config-gtk2 = %{version}
+Obsoletes:  fcitx-config-gtk2  %{version}
+Provides:   %{name} = %{version}
+Obsoletes:  %{name}  %{version}
+Provides:   locale(libgnome:ko;zh_CN:zh_SG)
+Supplements:packageand(fcitx:libgtk-3-0)
+%{fcitx_requires}
 
 %description -n %{pkgname}
 fcitx-config GTK based configure tool for fcitx.
@@ -84,7 +83,7 @@
 
 %install
 pushd build
-%make_install
+%makeinstall
 popd
 
 %find_lang %{name}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2013-01-29 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2013-01-29 12:08:08

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2013-01-14 09:38:19.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2013-01-29 12:08:12.0 +0100
@@ -1,0 +2,6 @@
+Sat Jan 26 18:57:54 UTC 2013 - i...@marguerite.su
+
+- update version 0.4.6
+  * Add support for new custom configuration ui.
+
+---

Old:

  fcitx-configtool-0.4.5.2.tar.bz2

New:

  fcitx-configtool-0.4.6.tar.bz2



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.BUhA7M/_old  2013-01-29 12:08:13.0 +0100
+++ /var/tmp/diff_new_pack.BUhA7M/_new  2013-01-29 12:08:13.0 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.5.2
+Version:0.4.6
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+

++ fcitx-configtool-0.4.5.2.tar.bz2 - fcitx-configtool-0.4.6.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.2/.gitignore 
new/fcitx-configtool-0.4.6/.gitignore
--- old/fcitx-configtool-0.4.5.2/.gitignore 2013-01-12 17:16:06.0 
+0100
+++ new/fcitx-configtool-0.4.6/.gitignore   2013-01-18 21:09:35.0 
+0100
@@ -1,20 +1,13 @@
 *~
-/build*/
+build*/
 .*
 !.git*
 .git/
-data/pinyin.tar.gz
-data/pinyin.tar.gz.md5
-data/table/table.tar.gz
-data/table/table.tar.gz.md5
+*.tar.*
 *.kdev4
-tools/pybase.mb
-tools/pyphrase.mb
-data/desc.po
-.kdev_include_paths
-.directory
 *.kate-swp
 *.orig
 tags
 astyle.sh
 cscope.*
+*.part
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.2/CMakeLists.txt 
new/fcitx-configtool-0.4.6/CMakeLists.txt
--- old/fcitx-configtool-0.4.5.2/CMakeLists.txt 2013-01-12 17:16:06.0 
+0100
+++ new/fcitx-configtool-0.4.6/CMakeLists.txt   2013-01-18 21:09:35.0 
+0100
@@ -1,4 +1,4 @@
-cmake_minimum_required (VERSION 2.6)
+cmake_minimum_required(VERSION 2.6)
 
 project(fcitx-configtool)
 
@@ -8,32 +8,19 @@
 find_package(PkgConfig REQUIRED)
 
 if(ENABLE_GTK3)
-  PKG_CHECK_MODULES(FCITX_GCLIENT fcitx-gclient=4.2.6 REQUIRED)
-  PKG_CHECK_MODULES(GTK3 gtk+-3.0 REQUIRED)
-endif(ENABLE_GTK3)
-
-if (ENABLE_GTK2)
-PKG_CHECK_MODULES (GTK2 gtk+-2.0=2.22 REQUIRED)
-endif (ENABLE_GTK2)
+  pkg_check_modules(FCITX_GCLIENT fcitx-gclient=4.2.6 REQUIRED)
+  pkg_check_modules(GTK3 gtk+-3.0 REQUIRED)
+endif()
+
+if(ENABLE_GTK2)
+  pkg_check_modules(GTK2 gtk+-2.0=2.22 REQUIRED)
+endif()
 
-PKG_CHECK_MODULES(ISO_CODES iso-codes REQUIRED)
+pkg_check_modules(ISO_CODES iso-codes REQUIRED)
 _pkgconfig_invoke(iso-codes ISO_CODES PREFIX  --variable=prefix)
 
-# uninstall target
-configure_file(
-${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in
-${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake
-IMMEDIATE @ONLY)
-
-add_custom_target(uninstall
-COMMAND ${CMAKE_COMMAND} -P 
${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake)
-
-include(FindPkgConfig)
-FIND_PACKAGE(Gettext REQUIRED)
-find_package(Fcitx 4.2.6 REQUIRED)
-FIND_PROGRAM(INTLTOOL_EXTRACT intltool-extract)
-FIND_PROGRAM(INTLTOOL_UPDATE intltool-update)
-FIND_PROGRAM(INTLTOOL_MERGE intltool-merge)
+find_package(Fcitx 4.2.7 REQUIRED)
+_fcitx_add_uninstall_target()
 add_definitions(-D_GNU_SOURCE)
 set(CMAKE_C_FLAGS -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter 
-fvisibility=hidden ${CMAKE_C_FLAGS})
 set(CMAKE_CXX_FLAGS -Wall -Wextra -Wno-sign-compare -Wno-unused-parameter 
-fvisibility=hidden ${CMAKE_CXX_FLAGS})
@@ -52,11 +39,6 @@
 configure_file(config.h.in config.h)
 include_directories(${CMAKE_CURRENT_BINARY_DIR})
 
-if(ENABLE_GTK3)
-  add_subdirectory(gtk3)
-endif(ENABLE_GTK3)
-
-if (ENABLE_GTK2)
-add_subdirectory(gtk)
-endif (ENABLE_GTK2)
 add_subdirectory(po)
+add_subdirectory(gtk3)
+add_subdirectory(gtk)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' 
old/fcitx-configtool-0.4.5.2/cmake/cmake_uninstall.cmake.in 
new/fcitx-configtool-0.4.6/cmake/cmake_uninstall.cmake.in
--- old/fcitx-configtool-0.4.5.2/cmake/cmake_uninstall.cmake.in 2013-01-12 
17:16:06.0 +0100
+++ new/fcitx-configtool-0.4.6/cmake/cmake_uninstall.cmake.in   1970-01-01 
01:00:00.0 +0100
@@ -1,21 +0,0 @@
-if (NOT EXISTS 

commit fcitx-configtool for openSUSE:Factory

2013-01-14 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2013-01-14 09:38:16

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-10-16 11:30:44.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2013-01-14 09:38:19.0 +0100
@@ -1,0 +2,6 @@
+Sun Jan 13 05:53:18 UTC 2013 - i...@marguerite.su
+
+- update version 0.4.5.2
+  * bugfix release, fix some possible crash.
+
+---

Old:

  fcitx-configtool-0.4.5.1.tar.bz2

New:

  fcitx-configtool-0.4.5.2.tar.bz2



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.YGTOSM/_old  2013-01-14 09:38:20.0 +0100
+++ /var/tmp/diff_new_pack.YGTOSM/_new  2013-01-14 09:38:20.0 +0100
@@ -23,7 +23,7 @@
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.5.1
+Version:0.4.5.2
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+

++ fcitx-configtool-0.4.5.1.tar.bz2 - fcitx-configtool-0.4.5.2.tar.bz2 
++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.1/COPYING 
new/fcitx-configtool-0.4.5.2/COPYING
--- old/fcitx-configtool-0.4.5.1/COPYING2012-10-11 15:30:34.0 
+0200
+++ new/fcitx-configtool-0.4.5.2/COPYING2013-01-12 17:16:06.0 
+0100
@@ -2,7 +2,7 @@
Version 2, June 1991
 
  Copyright (C) 1989, 1991 Free Software Foundation, Inc.
- 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  Everyone is permitted to copy and distribute verbatim copies
  of this license document, but changing it is not allowed.
 
@@ -305,7 +305,7 @@
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
 
 Also add information on how to contact you by electronic and paper mail.
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.1/gtk/gdm-languages.c 
new/fcitx-configtool-0.4.5.2/gtk/gdm-languages.c
--- old/fcitx-configtool-0.4.5.1/gtk/gdm-languages.c2012-10-11 
15:30:34.0 +0200
+++ new/fcitx-configtool-0.4.5.2/gtk/gdm-languages.c2013-01-12 
17:16:06.0 +0100
@@ -15,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA..
  *
  * Written by : William Jon McCann mcc...@jhu.edu
  *  Ray Strode rstr...@redhat.com
@@ -356,7 +356,7 @@
 GdmLocale *locale;
 GdmLocale *old_locale;
 char  *name;
-gboolean   is_utf8;
+gboolean   is_utf8 = TRUE;
 
 g_return_val_if_fail(language_name != NULL, FALSE);
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.1/gtk/gdm-languages.h 
new/fcitx-configtool-0.4.5.2/gtk/gdm-languages.h
--- old/fcitx-configtool-0.4.5.1/gtk/gdm-languages.h2012-10-11 
15:30:34.0 +0200
+++ new/fcitx-configtool-0.4.5.2/gtk/gdm-languages.h2013-01-12 
17:16:06.0 +0100
@@ -15,7 +15,7 @@
  *
  * You should have received a copy of the GNU General Public License
  * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
  *
  * Written by: Ray Strode
  * William Jon McCann
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5.1/gtk/im_widget.c 
new/fcitx-configtool-0.4.5.2/gtk/im_widget.c
--- old/fcitx-configtool-0.4.5.1/gtk/im_widget.c2012-10-11 
15:30:34.0 +0200
+++ new/fcitx-configtool-0.4.5.2/gtk/im_widget.c2013-01-12 
17:16:06.0 +0100
@@ -46,7 +46,7 @@
 GHashTable* langTable;
 } foreach_ct;
 
-static void fcitx_im_widget_finalize(GObject* object);
+static void fcitx_im_widget_dispose(GObject* object);
 static 

commit fcitx-configtool for openSUSE:Factory

2012-10-16 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-10-16 11:30:42

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-09-20 15:25:21.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-10-16 11:30:44.0 +0200
@@ -1,0 +2,6 @@
+Sat Oct 13 17:48:11 UTC 2012 - i...@marguerite.su
+
+- update version 0.4.5.1
+  * many gtk3 fixes.
+
+---

Old:

  fcitx-configtool-0.4.5.tar.bz2

New:

  fcitx-configtool-0.4.5.1.tar.bz2



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.OZ4e0o/_old  2012-10-16 11:30:45.0 +0200
+++ /var/tmp/diff_new_pack.OZ4e0o/_new  2012-10-16 11:30:45.0 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.5
+Version:0.4.5.1
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+

++ fcitx-configtool-0.4.5.tar.bz2 - fcitx-configtool-0.4.5.1.tar.bz2 ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-configtool-0.4.5/gtk/im_widget.c 
new/fcitx-configtool-0.4.5.1/gtk/im_widget.c
--- old/fcitx-configtool-0.4.5/gtk/im_widget.c  2012-09-11 21:40:29.0 
+0200
+++ new/fcitx-configtool-0.4.5.1/gtk/im_widget.c2012-10-11 
15:30:34.0 +0200
@@ -26,7 +26,7 @@
 #include gdm-languages.h
 #include im.h
 
-G_DEFINE_TYPE(FcitxImWidget, fcitx_im_widget, GTK_TYPE_HBOX)
+G_DEFINE_TYPE(FcitxImWidget, fcitx_im_widget, GTK_TYPE_VBOX)
 
 enum {
 AVAIL_TREE_IM_STRING,
@@ -77,6 +77,7 @@
 static void
 fcitx_im_widget_init(FcitxImWidget* self)
 {
+GtkWidget* hbox = gtk_hbox_new(FALSE, 0);
 self-availimstore = gtk_tree_store_new(AVAIL_N_COLUMNS, G_TYPE_STRING, 
G_TYPE_POINTER, G_TYPE_STRING);
 self-filtermodel = 
gtk_tree_model_filter_new(GTK_TREE_MODEL(self-availimstore), NULL);
 
@@ -123,7 +124,7 @@
 gtk_container_add(GTK_CONTAINER(scrolledwindow), self-availimview);
 gtk_box_pack_start(GTK_BOX(vbox), scrolledwindow, TRUE, TRUE, 5);
 gtk_box_pack_start(GTK_BOX(vbox), self-onlycurlangcheckbox, FALSE, TRUE, 
5);
-gtk_box_pack_start(GTK_BOX(self), vbox, TRUE, TRUE, 5);
+gtk_box_pack_start(GTK_BOX(hbox), vbox, TRUE, TRUE, 5);
 
 vbox = gtk_vbox_new(FALSE, 0);
 
@@ -140,7 +141,7 @@
 gtk_box_pack_start(GTK_BOX(vbox), self-delimbutton, FALSE, FALSE, 0);
 gtk_box_pack_start(GTK_BOX(vbox), gtk_label_new(), TRUE, TRUE, 0);
 
-gtk_box_pack_start(GTK_BOX(self), vbox, FALSE, TRUE, 5);
+gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, TRUE, 5);
 
 label = gtk_label_new(_(Current Input Method));
 
@@ -166,7 +167,7 @@
 gtk_container_add(GTK_CONTAINER(scrolledwindow), self-imview);
 gtk_box_pack_start(GTK_BOX(vbox), scrolledwindow, TRUE, TRUE, 5);
 
-gtk_box_pack_start(GTK_BOX(self), GTK_WIDGET(vbox), TRUE, TRUE, 5);
+gtk_box_pack_start(GTK_BOX(hbox), GTK_WIDGET(vbox), TRUE, TRUE, 5);
 
 vbox = gtk_vbox_new(FALSE, 0);
 
@@ -183,7 +184,22 @@
 gtk_box_pack_start(GTK_BOX(vbox), self-movedownbutton, FALSE, FALSE, 0);
 gtk_box_pack_start(GTK_BOX(vbox), gtk_label_new(), TRUE, TRUE, 0);
 
-gtk_box_pack_start(GTK_BOX(self), vbox, FALSE, TRUE, 5);
+gtk_box_pack_start(GTK_BOX(hbox), vbox, FALSE, TRUE, 5);
+
+label = gtk_label_new(NULL);
+gtk_label_set_line_wrap(GTK_LABEL(label), TRUE);
+gtk_label_set_markup(GTK_LABEL(label),
+ _(The first input method will be inactive state. 
Usually you need to put 
+ bKeyboard/b or bKeyboard - ilayout 
name/i/b in the first place.));
+GtkWidget* image = gtk_image_new_from_stock(GTK_STOCK_ABOUT, 
GTK_ICON_SIZE_BUTTON);
+GtkWidget* infohbox = gtk_hbox_new(FALSE, 0);
+gtk_box_pack_start(GTK_BOX(infohbox), gtk_label_new(NULL), TRUE, TRUE, 0);
+gtk_box_pack_start(GTK_BOX(infohbox), image, TRUE, TRUE, 0);
+gtk_box_pack_start(GTK_BOX(infohbox), label, TRUE, TRUE, 0);
+gtk_box_pack_start(GTK_BOX(infohbox), gtk_label_new(NULL), TRUE, TRUE, 0);
+
+gtk_box_pack_start(GTK_BOX(self), hbox, TRUE, TRUE, 0);
+gtk_box_pack_start(GTK_BOX(self), infohbox, FALSE, TRUE, 0);
 
 g_signal_connect(G_OBJECT(self-addimbutton), clicked, 
G_CALLBACK(_fcitx_im_widget_addim_button_clicked), self);
 g_signal_connect(G_OBJECT(self-delimbutton), clicked, 
G_CALLBACK(_fcitx_im_widget_delim_button_clicked), 

commit fcitx-configtool for openSUSE:Factory

2012-09-20 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-09-20 15:24:52

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-06-26 15:21:00.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-09-20 15:25:21.0 +0200
@@ -1,0 +2,8 @@
+Sat Sep 15 21:09:27 UTC 2012 - i...@marguerite.su
+
+- update version 0.4.5
+  * Fix icons problem when there is no gnome-icon-symbolic
+  * Add support for hidden options
+  * Simplify access to current UI setting
+
+---

Old:

  fcitx-configtool-0.4.4.tar.bz2

New:

  fcitx-configtool-0.4.5.tar.bz2



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.GYtx6X/_old  2012-09-20 15:25:25.0 +0200
+++ /var/tmp/diff_new_pack.GYtx6X/_new  2012-09-20 15:25:25.0 +0200
@@ -23,7 +23,7 @@
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.4
+Version:0.4.5
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+

++ fcitx-configtool-0.4.4.tar.bz2 - fcitx-configtool-0.4.5.tar.bz2 ++
 2639 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2012-06-26 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-06-26 15:20:59

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-06-07 15:38:07.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-06-26 15:21:00.0 +0200
@@ -1,0 +2,5 @@
+Mon Jun 25 11:12:51 UTC 2012 - i...@marguerite.su
+
+- fix fedora builds.
+
+---



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.Oy2yys/_old  2012-06-26 15:21:01.0 +0200
+++ /var/tmp/diff_new_pack.Oy2yys/_new  2012-06-26 15:21:01.0 +0200
@@ -29,15 +29,22 @@
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/fcitx
+%if 0%{?suse_version}
 BuildRequires:  dbus-1-glib-devel
-BuildRequires:  fcitx-devel
-BuildRequires:  gtk2-devel
-BuildRequires:  gtk3-devel
 %if 0%{?suse_version} = 1140
 BuildRequires:  libunique-devel
 %else
 BuildRequires:  libunique1-devel
 %endif
+%else
+BuildRequires:  dbus-glib-devel
+BuildRequires:  unique-devel
+%endif
+BuildRequires:  fcitx-devel
+BuildRequires:  gtk2-devel
+%if 0%{?suse_version} = 1140 || 0%{?fedora_version}
+BuildRequires:  gtk3-devel
+%endif
 #Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
 Source: %{name}-%{version}.tar.bz2
 BuildRequires:  cmake

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2012-06-07 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-06-07 15:37:59

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-05-31 17:03:57.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-06-07 15:38:07.0 +0200
@@ -1,0 +2,7 @@
+Mon Jun  4 14:37:47 UTC 2012 - i...@marguerite.su
+
+- update version 0.4.4
+  * fix a potential crash with newer gtk3
+  * rework gtk3 version UI,  able to configure input method from input method 
page
+
+---

Old:

  fcitx-configtool-0.4.3.tar.xz

New:

  fcitx-configtool-0.4.4.tar.bz2



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.YvCszd/_old  2012-06-07 15:38:09.0 +0200
+++ /var/tmp/diff_new_pack.YvCszd/_new  2012-06-07 15:38:09.0 +0200
@@ -16,14 +16,14 @@
 #
 
 
-%if 0%{?suse_version} = 1140
+%if 0%{?suse_version}  1140
 %definepkgname fcitx-config-gtk2
 %else
 %definepkgname fcitx-config-gtk3
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.3
+Version:0.4.4
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+
@@ -31,20 +31,20 @@
 Url:http://code.google.com/p/fcitx
 BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fcitx-devel
+BuildRequires:  gtk2-devel
+BuildRequires:  gtk3-devel
 %if 0%{?suse_version} = 1140
 BuildRequires:  libunique-devel
-BuildRequires:  pkgconfig(gtk+-2.0)
 %else
-BuildRequires:  gtk3-devel
 BuildRequires:  libunique1-devel
 %endif
-Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
+#Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
+Source: %{name}-%{version}.tar.bz2
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
 BuildRequires:  iso-codes-devel
 BuildRequires:  libtool
-BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 Provides:   locale(libgnome:ko;zh_CN;zh_SG)
 

++ fcitx-configtool-0.4.3.tar.xz - fcitx-configtool-0.4.4.tar.bz2 ++
 10436 lines of diff (skipped)

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2012-05-31 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-05-31 17:03:39

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-05-08 12:26:33.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-05-31 17:03:57.0 +0200
@@ -1,0 +2,5 @@
+Mon May 28 23:06:20 UTC 2012 - i...@marguerite.su
+
+- bring it into DVD.
+
+---



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.JxyFmp/_old  2012-05-31 17:03:59.0 +0200
+++ /var/tmp/diff_new_pack.JxyFmp/_new  2012-05-31 17:03:59.0 +0200
@@ -46,6 +46,7 @@
 BuildRequires:  libtool
 BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
+Provides:   locale(libgnome:ko;zh_CN;zh_SG)
 
 %description
 fcitx-config Gtk based configure tool for fcitx.


-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2012-05-08 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-05-08 12:26:30

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-04-18 12:34:10.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-05-08 12:26:33.0 +0200
@@ -1,0 +2,6 @@
+Sun May  6 23:13:16 UTC 2012 - i...@marguerite.su
+
+- update to 0.4.3
+  * lower gtk2 version library request compatible to RHEL/CentOS 6.
+
+---

Old:

  fcitx-configtool-0.4.2.tar.xz

New:

  fcitx-configtool-0.4.3.tar.xz



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.cTz1pv/_old  2012-05-08 12:26:34.0 +0200
+++ /var/tmp/diff_new_pack.cTz1pv/_new  2012-05-08 12:26:34.0 +0200
@@ -23,12 +23,13 @@
 %endif
 
 Name:   fcitx-configtool
-Version:0.4.2
+Version:0.4.3
 Release:0
 Summary:GTK GUI config tool for FCITX
 License:GPL-2.0+
 Group:  System/I18n/Chinese
 Url:http://code.google.com/p/fcitx
+BuildRequires:  dbus-1-glib-devel
 BuildRequires:  fcitx-devel
 %if 0%{?suse_version} = 1140
 BuildRequires:  libunique-devel

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org



commit fcitx-configtool for openSUSE:Factory

2012-04-18 Thread h_root
Hello community,

here is the log from the commit of package fcitx-configtool for 
openSUSE:Factory checked in at 2012-04-18 12:34:08

Comparing /work/SRC/openSUSE:Factory/fcitx-configtool (Old)
 and  /work/SRC/openSUSE:Factory/.fcitx-configtool.new (New)


Package is fcitx-configtool, Maintainer is 

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-configtool/fcitx-configtool.changes
2012-03-12 20:13:26.0 +0100
+++ /work/SRC/openSUSE:Factory/.fcitx-configtool.new/fcitx-configtool.changes   
2012-04-18 12:34:10.0 +0200
@@ -1,0 +2,6 @@
+Tue Apr 17 07:45:25 UTC 2012 - i...@marguerite.su
+
+- update to 0.4.2
+  * fix fcitx-config-gtk3 color and hotkey problem.
+
+---

Old:

  fcitx-configtool-0.4.1.tar.xz

New:

  fcitx-configtool-0.4.2.tar.xz



Other differences:
--
++ fcitx-configtool.spec ++
--- /var/tmp/diff_new_pack.RNPnDu/_old  2012-04-18 12:34:12.0 +0200
+++ /var/tmp/diff_new_pack.RNPnDu/_new  2012-04-18 12:34:12.0 +0200
@@ -15,30 +15,35 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
-%definepkgname fcitx-config-gtk
+
+%if 0%{?suse_version} = 1140
+%definepkgname fcitx-config-gtk2
+%else
+%definepkgname fcitx-config-gtk3
+%endif
 
 Name:   fcitx-configtool
-Version:0.4.1
-Release:1
+Version:0.4.2
+Release:0
 Summary:GTK GUI config tool for FCITX
-Group:  System/I18n/Chinese 
 License:GPL-2.0+
+Group:  System/I18n/Chinese
 Url:http://code.google.com/p/fcitx
 BuildRequires:  fcitx-devel
 %if 0%{?suse_version} = 1140
 BuildRequires:  libunique-devel
+BuildRequires:  pkgconfig(gtk+-2.0)
 %else
+BuildRequires:  gtk3-devel
 BuildRequires:  libunique1-devel
 %endif
-BuildRequires:  xz
+Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
 BuildRequires:  cmake
 BuildRequires:  gcc-c++
 BuildRequires:  intltool
-BuildRequires:  libtool
-BuildRequires:  gtk2-devel
-BuildRequires: gtk3-devel
 BuildRequires: iso-codes-devel
-Source: http://fcitx.googlecode.com/files/%{name}-%{version}.tar.xz
+BuildRequires:  libtool
+BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 
 %description
@@ -49,6 +54,8 @@
 %package -n %{pkgname}
 Summary:   GTK GUI Config tool for FCITX
 Group: System/I18n/Chinese
+Provides:   fcitx-config-gtk = %{version}
+Obsoletes:  fcitx-config-gtk  %{version}
 
 %description -n %{pkgname}
 fcitx-config GTK based configure tool for fcitx.
@@ -56,10 +63,10 @@
 KDE Version see fcitx-config-kde4 or kcm-fcitx.
 
 %prep
-%setup -q -n %{name}-%{version} 
+%setup -q
 
 %build
-%{__mkdir} -pv build
+mkdir -pv build
 pushd build
 cmake   -DCMAKE_INSTALL_PREFIX=%{_prefix} \
 -DLIB_INSTALL_DIR=%{_libdir} \
@@ -68,7 +75,7 @@
 
 %install
 pushd build
-make DESTDIR=$RPM_BUILD_ROOT install
+%make_install
 popd
 
 %find_lang %{name}

-- 
To unsubscribe, e-mail: opensuse-commit+unsubscr...@opensuse.org
For additional commands, e-mail: opensuse-commit+h...@opensuse.org