[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/files/, app-i18n/ibus-handwrite/

2021-10-14 Thread Akinori Hattori
commit: bcbb5da0e0f053c69889beab5d94d336f4be75c5
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Oct 14 12:43:00 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Oct 14 12:43:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcbb5da0

app-i18n/ibus-handwrite: fix blink

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori  gentoo.org>

 .../files/ibus-handwrite-blink.patch   | 23 ++
 ...3.0.0.ebuild => ibus-handwrite-3.0.0-r1.ebuild} |  5 -
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/files/ibus-handwrite-blink.patch 
b/app-i18n/ibus-handwrite/files/ibus-handwrite-blink.patch
new file mode 100644
index 000..7954f2018c2
--- /dev/null
+++ b/app-i18n/ibus-handwrite/files/ibus-handwrite-blink.patch
@@ -0,0 +1,23 @@
+From fcffa8f1ed798db3c2c4db0dbfc953f3147d37ba Mon Sep 17 00:00:00 2001
+From: Peng Wu 
+Date: Mon, 31 Aug 2020 15:32:48 +0800
+Subject: [PATCH] Fix focus in/out issue
+
+---
+ src/engine.c | 2 --
+ 1 file changed, 2 deletions(-)
+
+diff --git a/src/engine.c b/src/engine.c
+index da01f06..d3d924e 100644
+--- a/src/engine.c
 b/src/engine.c
+@@ -155,9 +155,7 @@ static void 
ibus_handwrite_engine_focus_in(IBusHandwriteEngine *engine)
+ 
+ static void ibus_handwrite_engine_focus_out(IBusHandwriteEngine *engine)
+ {
+-  UI_hide_ui(engine);
+   printf("%s \n", __func__);
+-
+ }
+ 
+ static void ibus_handwrite_engine_reset(IBusHandwriteEngine *engine)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
similarity index 90%
rename from app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
rename to app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
index 9846756601f..a57383c4952 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
@@ -23,7 +23,10 @@ DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
-PATCHES=( "${FILESDIR}"/${PN}-headers.patch )
+PATCHES=(
+   "${FILESDIR}"/${PN}-blink.patch
+   "${FILESDIR}"/${PN}-headers.patch
+)
 
 src_configure() {
econf \



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2021-10-14 Thread Akinori Hattori
commit: 3b7de4e964636e45292d43e62a2c5990275b5b1b
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Oct 14 12:39:39 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Oct 14 12:39:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b7de4e9

app-i18n/ibus-handwrite: update to EAPI 7

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index cbabf59f679..9dc9b664797 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 
 DESCRIPTION="Hand write recognition/input for IBus"
 HOMEPAGE="https://github.com/microcai/ibus-handwrite;
@@ -19,8 +19,8 @@ RDEPEND="app-i18n/ibus
app-i18n/zinnia
app-i18n/zinnia-tomoe
)"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
 PATCHES=( "${FILESDIR}"/${PN}-headers.patch )



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/, app-i18n/ibus-handwrite/files/

2021-10-14 Thread Akinori Hattori
commit: d46211d53b0a5634ce6f61807fa53e06d776252b
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Oct 14 12:44:51 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Oct 14 12:44:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d46211d5

app-i18n/ibus-handwrite: fix build with Clang

Closes: https://bugs.gentoo.org/734216
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori  gentoo.org>

 .../files/ibus-handwrite-nested-function.patch | 26 ++
 .../ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild  |  1 +
 2 files changed, 27 insertions(+)

diff --git a/app-i18n/ibus-handwrite/files/ibus-handwrite-nested-function.patch 
b/app-i18n/ibus-handwrite/files/ibus-handwrite-nested-function.patch
new file mode 100644
index 000..96cbc118fa4
--- /dev/null
+++ b/app-i18n/ibus-handwrite/files/ibus-handwrite-nested-function.patch
@@ -0,0 +1,26 @@
+--- a/src/UI_gtk.c
 b/src/UI_gtk.c
+@@ -74,6 +74,11 @@
+   return TRUE;
+ }
+ 
++static void clicked(GtkButton *button, IBusHandwriteEngine *engine)
++{
++
ibus_handwrite_engine_commit_text(engine,GPOINTER_TO_INT(g_object_get_data(G_OBJECT(button),"order")));
++}
++
+ static void regen_loopuptable(GtkWidget * widget, IBusHandwriteEngine * 
engine)
+ {
+   int i;
+@@ -98,11 +103,6 @@
+ 
+   gtk_widget_show(bt);
+ 
+-  void clicked(GtkButton *button, IBusHandwriteEngine *engine)
+-  {
+-  
ibus_handwrite_engine_commit_text(engine,GPOINTER_TO_INT(g_object_get_data(G_OBJECT(button),"order")));
+-  }
+-
+   g_object_set_data(G_OBJECT(bt),"order",GINT_TO_POINTER(i));
+   g_signal_connect(bt,"clicked",G_CALLBACK(clicked),engine);
+ 

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
index a57383c4952..ffbab323476 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0-r1.ebuild
@@ -26,6 +26,7 @@ BDEPEND="virtual/pkgconfig
 PATCHES=(
"${FILESDIR}"/${PN}-blink.patch
"${FILESDIR}"/${PN}-headers.patch
+   "${FILESDIR}"/${PN}-nested-function.patch
 )
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2021-10-14 Thread Akinori Hattori
commit: a9ba98540763e261714cb87ca2bbdabcff034b59
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Oct 14 12:41:04 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Oct 14 12:41:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9ba9854

app-i18n/ibus-handwrite: update LICENSE

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index 9dc9b664797..9846756601f 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -7,7 +7,7 @@ DESCRIPTION="Hand write recognition/input for IBus"
 HOMEPAGE="https://github.com/microcai/ibus-handwrite;
 
SRC_URI="https://github.com/microcai/${PN}/releases/download/${PV%.0}/${P}.tar.bz2;
 
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="nls +zinnia"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2020-01-23 Thread Agostino Sarubbo
commit: 7d809f2187590d682cbffdd257bb7ca0e1d14259
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 23 12:18:12 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 23 12:18:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d809f21

app-i18n/ibus-handwrite: x86 stable wrt bug #705906

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index b8867b2c7cd..cbabf59f679 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/microcai/${PN}/releases/download/${PV%.0}/${P}.tar.b
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="nls +zinnia"
 
 RDEPEND="app-i18n/ibus



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2020-01-23 Thread Agostino Sarubbo
commit: ea23473db734a6fb96802014159eba21412d9019
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jan 23 09:43:13 2020 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jan 23 09:43:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea23473d

app-i18n/ibus-handwrite: amd64 stable wrt bug #705906

Package-Manager: Portage-2.3.79, Repoman-2.3.16
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index 60037d4c45e..b8867b2c7cd 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/microcai/${PN}/releases/download/${PV%.0}/${P}.tar.b
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="nls +zinnia"
 
 RDEPEND="app-i18n/ibus



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/files/, app-i18n/ibus-handwrite/

2020-01-21 Thread David Seifert
commit: 808f686d9d23d07ed543496a93ad20386ace9dce
Author: David Seifert  gentoo  org>
AuthorDate: Tue Jan 21 23:47:12 2020 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Jan 21 23:47:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=808f686d

app-i18n/ibus-handwrite: Remove old

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: David Seifert  gentoo.org>

 app-i18n/ibus-handwrite/Manifest   |  1 -
 .../ibus-handwrite/files/ibus-handwrite-link.patch | 11 --
 .../ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild  | 44 --
 3 files changed, 56 deletions(-)

diff --git a/app-i18n/ibus-handwrite/Manifest b/app-i18n/ibus-handwrite/Manifest
index 122444d676c..c6b9e388ae0 100644
--- a/app-i18n/ibus-handwrite/Manifest
+++ b/app-i18n/ibus-handwrite/Manifest
@@ -1,2 +1 @@
-DIST ibus-handwrite-2.1.4.tar.bz2 237980 BLAKE2B 
7f8fae383a779b2893e5e014b5dcbdcb48a7f541f04e6b829dffd008fa95b73eb3e1af395c29e68a9c80e7cfdc95928f0a360f84df62c1dc06a9431d1dcf4eec
 SHA512 
fca7129edb7433e7ea6df1ce67b3f27285fe102cc029a7a1bdb8ba0402407bd81724d1b14667d342ef41491acff03e9c152b748e4fee5387f315d4673c2964e6
 DIST ibus-handwrite-3.0.0.tar.bz2 239452 BLAKE2B 
379b283565efc16c75c1811e096f814a4a0f009ab469a7bc251f34889bd62c7158379a63b71529db942969a3444a6be42f3db3bc5787993f8e15f86a6a7ddb76
 SHA512 
ed9b2b35919f3e061230c7085c88e5ce80ee978ffa7f8391e74364e8d6152f0d88a08f91ec58b55fc7067e9fe45d03018760ccfca7b026f36211fa344d16c9b1

diff --git a/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch 
b/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch
deleted file mode 100644
index 1d8415fbaf8..000
--- a/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/configure.ac
-+++ b/configure.ac
-@@ -80,6 +80,8 @@
-   AM_CONDITIONAL(WITH_ZINNIA,[false]) 
- ])
- 
-+AC_CHECK_LIB([m],[atan2])
-+
- # check ibus
- PKG_CHECK_MODULES(IBUS, [
- ibus-1.0 >= 1.3

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
deleted file mode 100644
index 6965a9cf27e..000
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-inherit autotools
-
-DESCRIPTION="Hand write recognition/input for IBus"
-HOMEPAGE="https://github.com/microcai/ibus-handwrite;
-SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${P}.tar.bz2;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls +zinnia"
-
-RDEPEND="app-i18n/ibus
-   x11-libs/gtk+:2
-   x11-libs/gtkglext
-   nls? ( virtual/libintl )
-   zinnia? (
-   app-i18n/zinnia
-   app-i18n/zinnia-tomoe
-   )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-headers.patch
-   "${FILESDIR}"/${PN}-link.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   $(use_enable zinnia) \
-   $(use_with zinnia zinnia-tomoe 
"${EPREFIX}"/usr/$(get_libdir)/zinnia/model/tomoe)
-}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2020-01-19 Thread Andreas Sturmlechner
commit: 383130c75019d414ee3b84725ed38fab7e9aaa9e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan 19 14:51:48 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 19 14:52:06 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=383130c7

app-i18n/ibus-handwrite: Fix Copyright

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index f9f2e8db1b1..60037d4c45e 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2020-01-19 Thread Andreas Sturmlechner
commit: 14a1a2b9c58f37b2e5e8c4d80d04b23866d2e754
Author: David Heidelberg  ixit  cz>
AuthorDate: Wed Oct 30 21:12:34 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan 19 13:46:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14a1a2b9

app-i18n/ibus-handwrite: cannot depend on gtkglext

- no occurence is found [1]
- is ported to GTK3, while gtkglext is GTK2 library

[1] 
https://github.com/microcai/ibus-handwrite/search?q=gtkglext_q=gtkglext

Closes: https://bugs.gentoo.org/698958

Signed-off-by: David Heidelberg  ixit.cz>
Closes: https://github.com/gentoo/gentoo/pull/13505
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
index 25419a692eb..f9f2e8db1b1 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2020 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -14,7 +14,6 @@ IUSE="nls +zinnia"
 
 RDEPEND="app-i18n/ibus
x11-libs/gtk+:3
-   x11-libs/gtkglext
nls? ( virtual/libintl )
zinnia? (
app-i18n/zinnia



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2017-08-12 Thread Akinori Hattori
commit: cf506b3c1f1d6a4d240ff45ee4c2ea6e866e4f37
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Aug 12 16:05:14 2017 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Aug 12 16:05:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf506b3c

app-i18n/ibus-handwrite: new upstream release

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-i18n/ibus-handwrite/Manifest   |  1 +
 .../ibus-handwrite/ibus-handwrite-3.0.0.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/app-i18n/ibus-handwrite/Manifest b/app-i18n/ibus-handwrite/Manifest
index 9fdf3cb8eb4..35c7dc1dd6c 100644
--- a/app-i18n/ibus-handwrite/Manifest
+++ b/app-i18n/ibus-handwrite/Manifest
@@ -1 +1,2 @@
 DIST ibus-handwrite-2.1.4.tar.bz2 237980 SHA256 
fa4ec0624e1ca904d8026fda75a26f0edd3ac6c781c28c03262e4c6ec52ceb34 SHA512 
fca7129edb7433e7ea6df1ce67b3f27285fe102cc029a7a1bdb8ba0402407bd81724d1b14667d342ef41491acff03e9c152b748e4fee5387f315d4673c2964e6
 WHIRLPOOL 
13facb5d7c4a34586202cc1d6b46eb857aaf3649fb64ca44a5b367135860217c554d0cf48656096ac43cc3411b0466c9b2a468d9e2dc99ddac4d7729ff0ad6d9
+DIST ibus-handwrite-3.0.0.tar.bz2 239452 SHA256 
f7483f44fb9cc70f066ab43e891e2eb757a46028947dd1bfbc70cb2afadac0e5 SHA512 
ed9b2b35919f3e061230c7085c88e5ce80ee978ffa7f8391e74364e8d6152f0d88a08f91ec58b55fc7067e9fe45d03018760ccfca7b026f36211fa344d16c9b1
 WHIRLPOOL 
ce33df8f846b2bb89d396c292832cfe44759b6d9f88480344be16655f791a0962a2fcc4eaed50119242e604b54d20876a6250cec41b1ef943d475789d3affc9c

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
new file mode 100644
index 000..25419a692eb
--- /dev/null
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-3.0.0.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+DESCRIPTION="Hand write recognition/input for IBus"
+HOMEPAGE="https://github.com/microcai/ibus-handwrite;
+SRC_URI="https://github.com/microcai/${PN}/releases/download/${PV%.0}/${P}.tar.bz2;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls +zinnia"
+
+RDEPEND="app-i18n/ibus
+   x11-libs/gtk+:3
+   x11-libs/gtkglext
+   nls? ( virtual/libintl )
+   zinnia? (
+   app-i18n/zinnia
+   app-i18n/zinnia-tomoe
+   )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+PATCHES=( "${FILESDIR}"/${PN}-headers.patch )
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   $(use_enable zinnia) \
+   $(use_with zinnia zinnia-tomoe 
"${EPREFIX}"/usr/$(get_libdir)/zinnia/model/tomoe)
+}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/files/

2017-08-12 Thread Akinori Hattori
commit: 62182aa708cfc2281ed99675874109da925cb266
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Aug 12 15:56:04 2017 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Aug 12 15:56:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62182aa7

app-i18n/ibus-handwrite: update patch

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch 
b/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch
index bd73e4f41f4..1d8415fbaf8 100644
--- a/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch
+++ b/app-i18n/ibus-handwrite/files/ibus-handwrite-link.patch
@@ -1,12 +1,10 @@
-diff --git a/configure.ac b/configure.ac
-index 8625fe9..20fdd42 100644
 --- a/configure.ac
 +++ b/configure.ac
-@@ -80,6 +80,8 @@ AS_IF([test "x${have_zinnia}" = "xyes" ],[
+@@ -80,6 +80,8 @@
AM_CONDITIONAL(WITH_ZINNIA,[false]) 
  ])
  
-+AC_SEARCH_LIBS([atan2],[m])
++AC_CHECK_LIB([m],[atan2])
 +
  # check ibus
  PKG_CHECK_MODULES(IBUS, [



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/files/, app-i18n/ibus-handwrite/

2017-08-12 Thread Akinori Hattori
commit: 3ccaa0fc8598fdc581dd78cbcc3356b7d1bf02f1
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Aug 12 16:02:51 2017 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Aug 12 16:02:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ccaa0fc

app-i18n/ibus-handwrite: fix implicit declarations

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../files/ibus-handwrite-headers.patch   | 20 
 .../ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild|  5 -
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/app-i18n/ibus-handwrite/files/ibus-handwrite-headers.patch 
b/app-i18n/ibus-handwrite/files/ibus-handwrite-headers.patch
new file mode 100644
index 000..f1cb4d57462
--- /dev/null
+++ b/app-i18n/ibus-handwrite/files/ibus-handwrite-headers.patch
@@ -0,0 +1,20 @@
+--- a/src/handrecog_lucykila.c
 b/src/handrecog_lucykila.c
+@@ -14,6 +14,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ 
+--- a/src/main.c
 b/src/main.c
+@@ -3,6 +3,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
index ac74a30b986..6965a9cf27e 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
@@ -26,7 +26,10 @@ DEPEND="${RDEPEND}
virtual/pkgconfig
nls? ( sys-devel/gettext )"
 
-PATCHES=( "${FILESDIR}"/${PN}-link.patch  )
+PATCHES=(
+   "${FILESDIR}"/${PN}-headers.patch
+   "${FILESDIR}"/${PN}-link.patch
+)
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2017-08-12 Thread Akinori Hattori
commit: bcad7f0bcea8f20982b023f03db4d76bd712e206
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Aug 12 16:00:15 2017 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Aug 12 16:00:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcad7f0b

app-i18n/ibus-handwrite: update to EAPI 6

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild  | 35 +++---
 app-i18n/ibus-handwrite/metadata.xml   | 14 -
 2 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
index c06ecaed54b..2f77a8b03ab 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
@@ -1,12 +1,11 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI="6"
 
-PYTHON_COMPAT=( python2_7 )
-inherit eutils python-single-r1 autotools-utils multilib
+inherit autotools
 
-DESCRIPTION="hand write recognition/input using ibus IM engine"
+DESCRIPTION="Hand write recognition/input for IBus"
 HOMEPAGE="https://code.google.com/p/ibus-handwrite/;
 SRC_URI="https://ibus-handwrite.googlecode.com/files/${P}.tar.bz2;
 
@@ -14,27 +13,29 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="nls +zinnia"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-RDEPEND="zinnia? ( app-i18n/zinnia app-i18n/zinnia-tomoe )
-   >=app-i18n/ibus-1.3.0
-   >=x11-libs/gtk+-2.10:2
+RDEPEND="app-i18n/ibus
+   x11-libs/gtk+:2
x11-libs/gtkglext
-   ${PYTHON_DEPS}"
+   nls? ( virtual/libintl )
+   zinnia? (
+   app-i18n/zinnia
+   app-i18n/zinnia-tomoe
+   )"
 DEPEND="${RDEPEND}
-   virtual/pkgconfig"
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
 
-DOCS=( AUTHORS ChangeLog NEWS README )
+PATCHES=( "${FILESDIR}"/${PN}-link.patch  )
 
 src_prepare() {
-   epatch "${FILESDIR}"/${PN}-link.patch #bug #501954
+   default
+   eautoreconf
 }
 
 src_configure() {
-   local myeconfargs=(
-   $(use_enable nls)
-   $(use_enable zinnia)
+   econf \
+   $(use_enable nls) \
+   $(use_enable zinnia) \
$(use_with zinnia zinnia-tomoe 
"${EPREFIX}"/usr/$(get_libdir)/zinnia/model/tomoe)
-   )
-   autotools-utils_src_configure
 }

diff --git a/app-i18n/ibus-handwrite/metadata.xml 
b/app-i18n/ibus-handwrite/metadata.xml
index 37f9895979f..23f5c6be388 100644
--- a/app-i18n/ibus-handwrite/metadata.xml
+++ b/app-i18n/ibus-handwrite/metadata.xml
@@ -1,11 +1,11 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
- 
-   c...@gentoo.org
-   Cjk
- 
-
-   Build with app-i18n/zinnia engine.
-
+  
+c...@gentoo.org
+Cjk
+  
+  
+Enable support for app-i18n/zinnia
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2017-08-12 Thread Akinori Hattori
commit: cee1363428105bf89def8a253c69ea32876ed550
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Aug 12 16:01:44 2017 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Aug 12 16:01:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cee13634

app-i18n/ibus-handwrite: update HOMEPAGE and SRC_URI

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
index 2f77a8b03ab..ac74a30b986 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
@@ -6,8 +6,8 @@ EAPI="6"
 inherit autotools
 
 DESCRIPTION="Hand write recognition/input for IBus"
-HOMEPAGE="https://code.google.com/p/ibus-handwrite/;
-SRC_URI="https://ibus-handwrite.googlecode.com/files/${P}.tar.bz2;
+HOMEPAGE="https://github.com/microcai/ibus-handwrite;
+SRC_URI="https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2017-04-20 Thread David Seifert
commit: a6535ab7e007106894b65b5662330c881bc3f04c
Author: David Seifert  gentoo  org>
AuthorDate: Thu Apr 20 07:13:19 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Apr 20 07:57:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6535ab7

app-i18n/ibus-handwrite: [QA] Add missing python metadata variables

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
index 560f93272a5..c06ecaed54b 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,16 +14,16 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="nls +zinnia"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="zinnia? ( app-i18n/zinnia app-i18n/zinnia-tomoe )
>=app-i18n/ibus-1.3.0
>=x11-libs/gtk+-2.10:2
-   x11-libs/gtkglext"
+   x11-libs/gtkglext
+   ${PYTHON_DEPS}"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
 DOCS=( AUTHORS ChangeLog NEWS README )
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2016-10-12 Thread Pacho Ramos
commit: fd4dd9a957bc294bfa8228978368f1ff1bfe251a
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Oct 12 18:02:24 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Oct 12 18:10:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd4dd9a9

app-i18n/ibus-handwrite: This needs slot 2

Package-Manager: portage-2.3.1

 app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
index e4517b1..c7c8fd8 100644
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
+++ b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,7 +18,7 @@ IUSE="nls +zinnia"
 
 RDEPEND="zinnia? ( app-i18n/zinnia app-i18n/zinnia-tomoe )
>=app-i18n/ibus-1.3.0
-   >=x11-libs/gtk+-2.10
+   >=x11-libs/gtk+-2.10:2
x11-libs/gtkglext"
 DEPEND="${RDEPEND}
virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/ibus-handwrite/

2016-10-09 Thread Pacho Ramos
commit: bd6222e9400557a80d11438fa03ed92a4706a332
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct  9 07:51:06 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct  9 07:55:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6222e9

app-i18n/ibus-handwrite: Drop old

Package-Manager: portage-2.3.1

 .../ibus-handwrite/ibus-handwrite-2.1.4.ebuild | 34 --
 1 file changed, 34 deletions(-)

diff --git a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4.ebuild 
b/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4.ebuild
deleted file mode 100644
index 12b1a20..
--- a/app-i18n/ibus-handwrite/ibus-handwrite-2.1.4.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit eutils python autotools-utils multilib
-
-DESCRIPTION="hand write recognition/input using ibus IM engine"
-HOMEPAGE="https://code.google.com/p/ibus-handwrite/;
-SRC_URI="https://ibus-handwrite.googlecode.com/files/${P}.tar.bz2;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls +zinnia"
-
-RDEPEND="zinnia? ( app-i18n/zinnia app-i18n/zinnia-tomoe )
-   >=app-i18n/ibus-1.3.0
-   >=x11-libs/gtk+-2.10
-   x11-libs/gtkglext"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_configure() {
-   local myeconfargs=(
-   $(use_enable nls)
-   $(use_enable zinnia)
-   $(use_with zinnia zinnia-tomoe 
"${EPREFIX}"/usr/$(get_libdir)/zinnia/model/tomoe)
-   )
-   autotools-utils_src_configure
-}