commit fcitx-kkc for openSUSE:Factory

2017-12-19 Thread root
Hello community,

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

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


Package is "fcitx-kkc"

Tue Dec 19 10:58:58 2017 rev:6 rq:558110 version:0.1.4

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-kkc/fcitx-kkc.changes  2015-06-01 
09:52:49.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-kkc.new/fcitx-kkc.changes 2017-12-19 
10:59:00.835825531 +0100
@@ -1,0 +2,7 @@
+Sat Dec  2 05:17:36 UTC 2017 - i...@marguerite.su
+
+- update version 0.1.4
+  * port kkc config to qt5
+- add qt5-version.patch
+
+---

Old:

  fcitx-kkc-0.1.2.tar.xz

New:

  fcitx-kkc-0.1.4.tar.xz
  qt5-version.patch



Other differences:
--
++ fcitx-kkc.spec ++
--- /var/tmp/diff_new_pack.xUEmDQ/_old  2017-12-19 10:59:01.323801975 +0100
+++ /var/tmp/diff_new_pack.xUEmDQ/_new  2017-12-19 10:59:01.327801781 +0100
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-kkc
 #
-# Copyright (c) 2015 SUSE LINUX 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,19 +17,23 @@
 
 
 Name:   fcitx-kkc
-Version:0.1.2
+Version:0.1.4
 Release:0
 Summary:Japanese KKC IME Wrapper for Fcitx
 License:GPL-3.0+
 Group:  System/I18n/Japanese
 Url:https://github.com/fcitx/fcitx-kkc
 Source: 
http://download.fcitx-im.org/fcitx-kkc/%{name}-%{version}.tar.xz
+#PATCH-FIX-UPSTREAM lower qt5 version
+Patch:  qt5-version.patch
 BuildRequires:  cmake
 BuildRequires:  fcitx-devel >= 4.2.8
+BuildRequires:  fcitx-qt5-devel
 BuildRequires:  fdupes
 BuildRequires:  gcc-c++
 BuildRequires:  hicolor-icon-theme
 BuildRequires:  libkkc-devel
+BuildRequires:  libqt5-qtbase-devel
 BuildRequires:  xz
 BuildRoot:  %{_tmppath}/%{name}-%{version}-build
 %{fcitx_requires}
@@ -39,6 +43,7 @@
 
 %prep
 %setup -q
+%patch -p1
 
 %build
 mkdir -p build
@@ -63,6 +68,7 @@
 %files -f %{name}.lang
 %defattr(-,root,root)
 %doc COPYING
+%dir %{_fcitx_libdir}/qt
 %{_fcitx_moduleincdir}/kkc/
 %{_fcitx_libdir}/%{name}.so
 %{_fcitx_libdir}/qt/lib%{name}-config.so

++ fcitx-kkc-0.1.2.tar.xz -> fcitx-kkc-0.1.4.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.2/CMakeLists.txt 
new/fcitx-kkc-0.1.4/CMakeLists.txt
--- old/fcitx-kkc-0.1.2/CMakeLists.txt  2015-05-18 17:47:33.0 +0200
+++ new/fcitx-kkc-0.1.4/CMakeLists.txt  2017-10-18 18:03:25.0 +0200
@@ -10,8 +10,8 @@
 find_package(Fcitx 4.2.8 REQUIRED)
 
 if (ENABLE_QT)
-find_package(Qt 4.8 REQUIRED)
-pkg_check_modules(FCITX_QT "fcitx-qt>=4.2.8" REQUIRED)
+find_package(Qt5 5.7 REQUIRED COMPONENTS Core Gui Widgets)
+find_package(FcitxQt5WidgetsAddons 1.1 REQUIRED)
 endif ()
 
 if (NOT SKK_DEFAULT_PATH)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.2/gui/CMakeLists.txt 
new/fcitx-kkc-0.1.4/gui/CMakeLists.txt
--- old/fcitx-kkc-0.1.2/gui/CMakeLists.txt  2015-05-18 17:47:33.0 
+0200
+++ new/fcitx-kkc-0.1.4/gui/CMakeLists.txt  2017-10-18 18:03:25.0 
+0200
@@ -16,17 +16,13 @@
 endif()
 
 include_directories(
-  ${FCITX_QT_INCLUDE_DIRS}
-  ${QT_QTCORE_INCLUDE_DIR}
-  ${QT_QTGUI_INCLUDE_DIR}
   ${CMAKE_CURRENT_BINARY_DIR}
   )
 
 link_directories(
-  ${FCITX_QT_LIBRARY_DIRS}
   ${FCITX4_FCITX_CONFIG_LIBRARY_DIRS}
   )
-qt4_wrap_ui(KKC_CONFIG_SRCS dictwidget.ui adddictdialog.ui shortcutwidget.ui 
addshortcutdialog.ui)
+qt5_wrap_ui(KKC_CONFIG_SRCS dictwidget.ui adddictdialog.ui shortcutwidget.ui 
addshortcutdialog.ui)
 add_library(fcitx-kkc-config
   MODULE ${KKC_CONFIG_SRCS})
 
@@ -37,13 +33,9 @@
   AUTOMOC TRUE
 )
 target_link_libraries(fcitx-kkc-config
-  debug ${QT_QTCORE_LIBRARY_DEBUG}
-  debug ${QT_QTDBUS_LIBRARY_DEBUG}
-  debug ${QT_QTGUI_LIBRARY_DEBUG}
-  optimized ${QT_QTCORE_LIBRARY_RELEASE}
-  optimized ${QT_QTDBUS_LIBRARY_RELEASE}
-  optimized ${QT_QTGUI_LIBRARY_RELEASE}
-  ${FCITX_QT_LIBRARIES}
+  Qt5::Core
+  Qt5::Widgets
+  FcitxQt5::WidgetsAddons
   ${FCITX4_FCITX_CONFIG_LIBRARIES}
   ${LIBKKC_LIBRARIES}
   )
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.2/gui/addshortcutdialog.ui 
new/fcitx-kkc-0.1.4/gui/addshortcutdialog.ui
--- old/fcitx-kkc-0.1.2/gui/addshortcutdialog.ui2015-05-18 
17:47:33.0 +0200
+++ new/fcitx-kkc-0.

commit fcitx-kkc for openSUSE:Factory

2015-06-01 Thread h_root
Hello community,

here is the log from the commit of package fcitx-kkc for openSUSE:Factory 
checked in at 2015-06-01 09:52:48

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


Package is "fcitx-kkc"

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-kkc/fcitx-kkc.changes  2014-06-10 
14:39:12.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-kkc.new/fcitx-kkc.changes 2015-06-01 
09:52:49.0 +0200
@@ -1,0 +2,6 @@
+Sat May 30 07:23:36 UTC 2015 - i...@marguerite.su
+
+- update version 0.1.2
+  * add more skk dictionaries
+
+---

Old:

  fcitx-kkc-0.1.1.tar.xz

New:

  fcitx-kkc-0.1.2.tar.xz



Other differences:
--
++ fcitx-kkc.spec ++
--- /var/tmp/diff_new_pack.RV5VaT/_old  2015-06-01 09:52:49.0 +0200
+++ /var/tmp/diff_new_pack.RV5VaT/_new  2015-06-01 09:52:49.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-kkc
 #
-# Copyright (c) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
+# Copyright (c) 2015 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,7 +17,7 @@
 
 
 Name:   fcitx-kkc
-Version:0.1.1
+Version:0.1.2
 Release:0
 Summary:Japanese KKC IME Wrapper for Fcitx
 License:GPL-3.0+

++ fcitx-kkc-0.1.1.tar.xz -> fcitx-kkc-0.1.2.tar.xz ++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.1/CMakeLists.txt 
new/fcitx-kkc-0.1.2/CMakeLists.txt
--- old/fcitx-kkc-0.1.1/CMakeLists.txt  2014-05-16 03:59:59.0 +0200
+++ new/fcitx-kkc-0.1.2/CMakeLists.txt  2015-05-18 17:47:33.0 +0200
@@ -15,7 +15,7 @@
 endif ()
 
 if (NOT SKK_DEFAULT_PATH)
-set(SKK_DEFAULT_PATH "/usr/share/skk/SKK-JISYO.L")
+set(SKK_DEFAULT_PATH "/usr/share/skk/")
 endif ()
 
 # This will add a uninstall target. Comment out this line if other cmake 
packages
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.1/po/ja.po new/fcitx-kkc-0.1.2/po/ja.po
--- old/fcitx-kkc-0.1.1/po/ja.po2014-05-16 03:59:59.0 +0200
+++ new/fcitx-kkc-0.1.2/po/ja.po2015-05-18 17:47:33.0 +0200
@@ -4,16 +4,17 @@
 #
 # Translators:
 # しろう, 2013
-# しろう, 2013
+# WAKAYAMA Shirou , 2013
+# AWASHIRO Ikuya , 2014-2015
 # Masaharu IWAI , 2013
-# しろう, 2013
+# WAKAYAMA Shirou , 2013
 msgid ""
 msgstr ""
 "Project-Id-Version: fcitx\n"
 "Report-Msgid-Bugs-To: fcitx-...@googlegroups.com\n"
-"POT-Creation-Date: 2013-11-07 18:02-0500\n"
-"PO-Revision-Date: 2013-11-07 22:59+\n"
-"Last-Translator: Masaharu IWAI \n"
+"POT-Creation-Date: 2015-04-29 18:02+0200\n"
+"PO-Revision-Date: 2015-04-29 14:31+\n"
+"Last-Translator: AWASHIRO Ikuya \n"
 "Language-Team: Japanese (http://www.transifex.com/projects/p/fcitx/language/";
 "ja/)\n"
 "Language: ja\n"
@@ -44,7 +45,7 @@
 
 #: gui/adddictdialog.cpp:35
 msgid "&Type:"
-msgstr ""
+msgstr "形式(&T):"
 
 #: src/fcitx-kkc.desc:47
 msgid "Auto correct input sequence"
@@ -95,7 +96,7 @@
 
 #: src/fcitx-kkc.desc:33
 msgid "Global"
-msgstr "全体"
+msgstr "任せる"
 
 #: gui/shortcutmodel.cpp:50 src/kkc.c:83 src/fcitx-kkc.desc:18
 msgid "Half width Katakana"
@@ -139,7 +140,7 @@
 
 #: gui/shortcutwidget.cpp:155
 msgid "Key to add is conflict with existing shortcut."
-msgstr "追加したキーは存在するするショートカットキーと競合しています。"
+msgstr "追加したキーは存在するショートカットキーと競合しています。"
 
 #: src/fcitx-kkc.conf.in:3
 msgid "Kkc Addon of Fcitx"
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/fcitx-kkc-0.1.1/po/zh_TW.po 
new/fcitx-kkc-0.1.2/po/zh_TW.po
--- old/fcitx-kkc-0.1.1/po/zh_TW.po 2014-05-16 03:59:59.0 +0200
+++ new/fcitx-kkc-0.1.2/po/zh_TW.po 2015-05-18 17:47:33.0 +0200
@@ -3,14 +3,15 @@
 # This file is distributed under the same license as the PACKAGE package.
 #
 # Translators:
+# BrLi , 2014
 # fhoshino , 2014
 msgid ""
 msgstr ""
 "Project-Id-Version: fcitx\n"
 "Report-Msgid-Bugs-To: fcitx-...@googlegroups.com\n"
-"POT-Creation-Date: 2014-04-10 07:02+0200\n"
-"PO-Revision-Date: 2014-04-10 04:43+\n"
-"Last-Translator: fhoshino \n"
+"POT-Creation-Date: 2014-06-06 07:02+0200\n"
+"PO-Revision-Date: 2014-06-06 04:46+\n"
+"Last-Translator: BrLi \n"
 "Language-Team: Chinese (Taiwan) (http://www.transifex.com/projects/p/fcitx/";
 "language/zh_TW/)\n"
 "Language: zh_TW\n"
@@ -41,7 +42,7 @@
 
 #: gui/adddictdialog.cpp:35
 msgid "&Type:"
-msgstr ""
+msgstr "&類型:"
 
 #: src/fcitx-kkc.desc:47
 msgid "Auto correct input sequence"
diff -urN '--exclude=CV

commit fcitx-kkc for openSUSE:Factory

2014-06-10 Thread h_root
Hello community,

here is the log from the commit of package fcitx-kkc for openSUSE:Factory 
checked in at 2014-06-10 14:39:08

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


Package is "fcitx-kkc"

Changes:

--- /work/SRC/openSUSE:Factory/fcitx-kkc/fcitx-kkc.changes  2013-07-08 
12:36:08.0 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-kkc.new/fcitx-kkc.changes 2014-06-10 
14:39:12.0 +0200
@@ -1,0 +2,6 @@
+Mon Jun  9 05:10:56 UTC 2014 - i...@marguerite.su
+
+- update version 0.1.1
+  * Fix kana mode yen/backslash problem.
+
+---

Old:

  COPYING
  fcitx-kkc-0.1.0.tar.xz

New:

  fcitx-kkc-0.1.1.tar.xz



Other differences:
--
++ fcitx-kkc.spec ++
--- /var/tmp/diff_new_pack.2xZ68T/_old  2014-06-10 14:39:13.0 +0200
+++ /var/tmp/diff_new_pack.2xZ68T/_new  2014-06-10 14:39:13.0 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package fcitx-kkc
 #
-# 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
@@ -15,15 +15,15 @@
 # Please submit bugfixes or comments via http://bugs.opensuse.org/
 #
 
+
 Name:   fcitx-kkc
-Version:   0.1.0
+Version:0.1.1
 Release:   0
-License:   GPL-3.0+
 Summary:   Japanese KKC IME Wrapper for Fcitx
-Url:   https://github.com/fcitx/fcitx-kkc
+License:GPL-3.0+
 Group: System/I18n/Japanese
+Url:https://github.com/fcitx/fcitx-kkc
 Source:http://download.fcitx-im.org/fcitx-kkc/%{name}-%{version}.tar.xz
-Source1: COPYING
 BuildRequires: cmake
 BuildRequires: fcitx-devel >= 4.2.8
 BuildRequires: fdupes
@@ -39,7 +39,6 @@
 
 %prep
 %setup -q
-cp -r %{SOURCE1} ./
 
 %build
 mkdir -p build

++ fcitx-kkc-0.1.0.tar.xz -> fcitx-kkc-0.1.1.tar.xz ++
 2307 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-kkc for openSUSE:Factory

2013-07-08 Thread h_root
Hello community,

here is the log from the commit of package fcitx-kkc for openSUSE:Factory 
checked in at 2013-07-08 12:36:07

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


Package is "fcitx-kkc"

Changes:

New Changes file:

--- /dev/null   2013-07-02 09:26:14.908030755 +0200
+++ /work/SRC/openSUSE:Factory/.fcitx-kkc.new/fcitx-kkc.changes 2013-07-08 
12:36:08.0 +0200
@@ -0,0 +1,6 @@
+---
+Sat Apr 27 12:01:19 UTC 2013 - i...@marguerite.su
+
+- initial package.
+  * for testing purpose. not for production use.
+

New:

  COPYING
  fcitx-kkc-0.1.0.tar.xz
  fcitx-kkc.changes
  fcitx-kkc.spec



Other differences:
--
++ fcitx-kkc.spec ++
#
# spec file for package fcitx-kkc
#
# 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
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.

# Please submit bugfixes or comments via http://bugs.opensuse.org/
#

Name:   fcitx-kkc
Version:0.1.0
Release:0
License:GPL-3.0+
Summary:Japanese KKC IME Wrapper for Fcitx
Url:https://github.com/fcitx/fcitx-kkc
Group:  System/I18n/Japanese
Source: http://download.fcitx-im.org/fcitx-kkc/%{name}-%{version}.tar.xz
Source1: COPYING
BuildRequires:  cmake
BuildRequires:  fcitx-devel >= 4.2.8
BuildRequires:  fdupes
BuildRequires:  gcc-c++
BuildRequires:  hicolor-icon-theme
BuildRequires:  libkkc-devel
BuildRequires:  xz
BuildRoot:  %{_tmppath}/%{name}-%{version}-build
%{fcitx_requires}

%description
fcitx-kkc is a Japanese KKC IME Wrapper for Fcitx.

%prep
%setup -q
cp -r %{SOURCE1} ./

%build
mkdir -p build
pushd build
cmake -DCMAKE_INSTALL_PREFIX=%{_prefix} ..
make %{?_smp_mflags}
popd

%install
pushd build
%make_install
popd

%find_lang %{name}

%fdupes %{buildroot}

%post -p /sbin/ldconfig

%postun -p /sbin/ldconfig

%files -f %{name}.lang
%defattr(-,root,root)
%doc COPYING
%{_fcitx_moduleincdir}/kkc/
%{_fcitx_libdir}/%{name}.so
%{_fcitx_libdir}/qt/lib%{name}-config.so
%{_fcitx_addondir}/%{name}.conf
%{_fcitx_descdir}/%{name}.desc
%{_fcitx_inputmethoddir}/kkc.conf
%{_fcitx_imicondir}/kkc.png
%{_fcitx_datadir}/kkc
%{_datadir}/icons/hicolor/64x64/apps/%{name}.png

%changelog

++ COPYING ++
 674 lines (skipped)

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