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

2024-06-05 Thread Yixun Lan
commit: 557261ab82623ca89ad242e3d0e476512dc1b3f3
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Jun  5 08:07:04 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Jun  5 08:21:05 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=557261ab

app-i18n/ibus-hangul: add 1.5.5, py3.12 support

Closes: https://bugs.gentoo.org/929319
Signed-off-by: Yixun Lan  gentoo.org>

 app-i18n/ibus-hangul/Manifest |  1 +
 app-i18n/ibus-hangul/ibus-hangul-1.5.5.ebuild | 65 +++
 2 files changed, 66 insertions(+)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 45b735f1b8ce..5ca8d3275e15 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1 +1,2 @@
 DIST ibus-hangul-1.5.4.tar.gz 542612 BLAKE2B 
46495c04a37888a3ed21831b5bbca5b788f4d3a831fb3ce4eb13d95f302877fadddf831016f1d29aa2c1a6ba73fc0d585f2be57c10267a51a1a2186642632918
 SHA512 
dc4c755349424605de3832496a8a0cf7e8da577cbeff85d2b03da187fd5fdc9de5475eb523c69310e4f7edbb9a513f6f218de082ba32a25a477cdf5eb6f65513
+DIST ibus-hangul-1.5.5.tar.xz 356120 BLAKE2B 
8f2186d19598927c8c824dbd036cfb997db95eae08c4a59489e3be987b5445cb7dffe5bfe766b339c60ea0a892130a0269522f00c8dfd910011b7a0eefc087b5
 SHA512 
c95900b8f47fc69dda04b6a41a1965a6d3a293727749b72bd234d6e899558dffce669df29a4e8c9dcc53d9f7b6cb18e84c4b0c55ef143731a894e0b5693c0722

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.5.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.5.ebuild
new file mode 100644
index ..3d3cbefc5d2e
--- /dev/null
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.5.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit autotools gnome2-utils python-single-r1 xdg virtualx
+
+DESCRIPTION="Korean Hangul engine for IBus"
+HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
+SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.xz";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   >=app-i18n/libhangul-0.1
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/gettext
+   virtual/pkgconfig"
+
+PATCHES=( "${FILESDIR}"/${PN}-test.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   --with-python=${EPYTHON}
+}
+
+src_test() {
+   "${BROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${S}"/data || die
+
+   export GSETTINGS_BACKEND="memory"
+   export GSETTINGS_SCHEMA_DIR="${S}/data"
+   virtx default
+}
+
+pkg_preinst() {
+   xdg_pkg_preinst
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2023-03-17 Thread Yixun Lan
commit: 1c5adb57c848a4410fb7bca8c638b75bd49162dd
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 17 10:38:57 2023 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 17 13:17:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c5adb57

app-i18n/ibus-hangul: enable py3.11

Closes: https://bugs.gentoo.org/896550
Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
index 3209f64fea79..d93d65dad6a2 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit gnome2-utils python-single-r1 xdg virtualx
 



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

2021-10-30 Thread Arthur Zamarin
commit: 4196ef5f55606d68978f5374c5d36cd773356fdc
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Oct 31 06:11:47 2021 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Oct 31 06:26:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4196ef5f

app-i18n/ibus-hangul: enable py3.10

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
index a2c9a9f929a..57c4f12e5c6 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -1,8 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
-PYTHON_COMPAT=( python3_{8..9} )
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit gnome2-utils python-single-r1 xdg virtualx
 



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

2021-10-20 Thread Akinori Hattori
commit: d4665425cb0d4056817a35245b9f1f919e1b25a6
Author: Akinori Hattori  gentoo  org>
AuthorDate: Wed Oct 20 14:25:29 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Wed Oct 20 14:25:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4665425

app-i18n/ibus-hangul: amd64/x86 stable

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

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

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
index e8b64f68faa..a2c9a9f929a 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2021-10-20 Thread Akinori Hattori
commit: 7f1849731c24971bb52a4273b2b7475858b502a7
Author: Akinori Hattori  gentoo  org>
AuthorDate: Wed Oct 20 14:26:36 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Wed Oct 20 14:26:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f184973

app-i18n/ibus-hangul: drop old

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

 app-i18n/ibus-hangul/Manifest|  1 -
 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 49 
 2 files changed, 50 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 105124d7af3..45b735f1b8c 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,2 +1 @@
-DIST ibus-hangul-1.5.3.tar.gz 525834 BLAKE2B 
6c92dbbde39bc42b7df974dbb23c9ef62088c8d3f63a500bd3c7e9c90b3d80d16dc1d76616620e1d7590fee549979a03585ac635761687dc11737d65fdf09e08
 SHA512 
ba21a8afb750e33744042c5e4f9d88891764921a37c4dbe1f4efa9883fd3c889789854af57adcd24bc1ca365ee49d2e01073c54d72cd025558b41788fb6213b4
 DIST ibus-hangul-1.5.4.tar.gz 542612 BLAKE2B 
46495c04a37888a3ed21831b5bbca5b788f4d3a831fb3ce4eb13d95f302877fadddf831016f1d29aa2c1a6ba73fc0d585f2be57c10267a51a1a2186642632918
 SHA512 
dc4c755349424605de3832496a8a0cf7e8da577cbeff85d2b03da187fd5fdc9de5475eb523c69310e4f7edbb9a513f6f218de082ba32a25a477cdf5eb6f65513

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
deleted file mode 100644
index 8c38721ea65..000
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( python3_{8,9} )
-inherit gnome2-utils python-single-r1 xdg
-
-DESCRIPTION="Korean Hangul engine for IBus"
-HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
-SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   ')
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}"
-BDEPEND="sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   --with-python=${EPYTHON}
-}
-
-pkg_preinst() {
-   xdg_pkg_preinst
-   gnome2_schemas_savelist
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2021-10-15 Thread Akinori Hattori
commit: b1bd9b45d1d5217a547f0d119b6162e0c3280282
Author: Akinori Hattori  gentoo  org>
AuthorDate: Fri Oct 15 13:40:23 2021 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Fri Oct 15 13:40:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bd9b45

app-i18n/ibus-hangul: fix tests

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

 app-i18n/ibus-hangul/files/ibus-hangul-test.patch | 20 
 app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild | 14 --
 2 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/files/ibus-hangul-test.patch 
b/app-i18n/ibus-hangul/files/ibus-hangul-test.patch
new file mode 100644
index 000..7a6ef479f0e
--- /dev/null
+++ b/app-i18n/ibus-hangul/files/ibus-hangul-test.patch
@@ -0,0 +1,20 @@
+--- a/tests/ibus-hangul.c
 b/tests/ibus-hangul.c
+@@ -261,6 +261,7 @@
+   G_CALLBACK (window_inserted_text_cb), entry);
+ gtk_container_add (GTK_CONTAINER (window), entry);
+ gtk_widget_show_all (window);
++gtk_window_present (window);
+ }
+ 
+ static void
+--- a/tests/runtest
 b/tests/runtest
+@@ -7,7 +7,6 @@
+ : ${DISABLE_GUI_TESTS:=''}
+ 
+ ibus-daemon --xim --panel disable --config disable &
+-sleep 30
+ 
+ tst=$1
+ 

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
index 4d13e3d9b11..e8b64f68faa 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -2,9 +2,9 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
+PYTHON_COMPAT=( python3_{8..9} )
 
-PYTHON_COMPAT=( python3_{8,9} )
-inherit gnome2-utils python-single-r1 xdg
+inherit gnome2-utils python-single-r1 xdg virtualx
 
 DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
@@ -27,12 +27,22 @@ DEPEND="${RDEPEND}"
 BDEPEND="sys-devel/gettext
virtual/pkgconfig"
 
+PATCHES=( "${FILESDIR}"/${PN}-test.patch )
+
 src_configure() {
econf \
$(use_enable nls) \
--with-python=${EPYTHON}
 }
 
+src_test() {
+   "${BROOT}"${GLIB_COMPILE_SCHEMAS} --allow-any-name "${S}"/data || die
+
+   export GSETTINGS_BACKEND="memory"
+   export GSETTINGS_SCHEMA_DIR="${S}/data"
+   virtx default
+}
+
 pkg_preinst() {
xdg_pkg_preinst
gnome2_schemas_savelist



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

2021-06-01 Thread Sam James
commit: ee024122dee9d141f298bb6fccce82bca9118f31
Author: Sam James  gentoo  org>
AuthorDate: Tue Jun  1 11:37:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Tue Jun  1 11:37:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee024122

app-i18n/ibus-hangul: add Python 3.9

Signed-off-by: Sam James  gentoo.org>

 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 4 ++--
 app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 0ad0f8b2a9d..6ab0b33d94e 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
-PYTHON_COMPAT=( python3_{7,8} )
 
+PYTHON_COMPAT=( python3_{7,8,9} )
 inherit gnome2-utils python-single-r1 xdg
 
 DESCRIPTION="Korean Hangul engine for IBus"

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
index 411a838bb8a..05f3c852f1b 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
-PYTHON_COMPAT=( python3_{7,8} )
 
+PYTHON_COMPAT=( python3_{7,8,9} )
 inherit gnome2-utils python-single-r1 xdg
 
 DESCRIPTION="Korean Hangul engine for IBus"



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

2020-09-03 Thread Akinori Hattori
commit: bff78f62158a9dec6641401aae0cf5488d8c62f9
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Sep  3 13:58:29 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Sep  3 13:58:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bff78f62

app-i18n/ibus-hangul: new upstream release

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

 app-i18n/ibus-hangul/Manifest |  1 +
 app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild | 49 +++
 2 files changed, 50 insertions(+)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 3bedf576f9e..105124d7af3 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1 +1,2 @@
 DIST ibus-hangul-1.5.3.tar.gz 525834 BLAKE2B 
6c92dbbde39bc42b7df974dbb23c9ef62088c8d3f63a500bd3c7e9c90b3d80d16dc1d76616620e1d7590fee549979a03585ac635761687dc11737d65fdf09e08
 SHA512 
ba21a8afb750e33744042c5e4f9d88891764921a37c4dbe1f4efa9883fd3c889789854af57adcd24bc1ca365ee49d2e01073c54d72cd025558b41788fb6213b4
+DIST ibus-hangul-1.5.4.tar.gz 542612 BLAKE2B 
46495c04a37888a3ed21831b5bbca5b788f4d3a831fb3ce4eb13d95f302877fadddf831016f1d29aa2c1a6ba73fc0d585f2be57c10267a51a1a2186642632918
 SHA512 
dc4c755349424605de3832496a8a0cf7e8da577cbeff85d2b03da187fd5fdc9de5475eb523c69310e4f7edbb9a513f6f218de082ba32a25a477cdf5eb6f65513

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
new file mode 100644
index 000..1c7692b697c
--- /dev/null
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.4.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit gnome2-utils python-single-r1 xdg
+
+DESCRIPTION="Korean Hangul engine for IBus"
+HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
+SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
+   ')
+   >=app-i18n/libhangul-0.1
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/gettext
+   virtual/pkgconfig"
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   --with-python=${EPYTHON}
+}
+
+pkg_preinst() {
+   xdg_pkg_preinst
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2020-09-03 Thread Akinori Hattori
commit: 26d85ef2fa93372ed345b957f7bcaae94787b04e
Author: Akinori Hattori  gentoo  org>
AuthorDate: Thu Sep  3 13:56:57 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Thu Sep  3 13:56:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d85ef2

app-i18n/ibus-hangul: update LICENSE

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

 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 6d04d1fec63..660ec8f332e 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="nls"



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

2020-05-18 Thread Akinori Hattori
commit: 397c48d8b5880c11962da23330e60058d36401e0
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:42:13 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:42:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=397c48d8

app-i18n/ibus-hangul: call gnome2_schemas_update

Closes: https://bugs.gentoo.org/721984
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild | 5 +++--
 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
index f64e6f60530..9f9fed01d22 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
@@ -36,14 +36,15 @@ src_configure() {
 
 pkg_preinst() {
xdg_pkg_preinst
+   gnome2_schemas_savelist
 }
 
 pkg_postinst() {
xdg_pkg_postinst
-   gnome2_icon_cache_update
+   gnome2_schemas_update
 }
 
 pkg_postrm() {
xdg_pkg_postrm
-   gnome2_icon_cache_update
+   gnome2_schemas_update
 }

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index e6bf4ebc07e..06b3e0861e0 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -35,14 +35,15 @@ src_configure() {
 
 pkg_preinst() {
xdg_pkg_preinst
+   gnome2_schemas_savelist
 }
 
 pkg_postinst() {
xdg_pkg_postinst
-   gnome2_icon_cache_update
+   gnome2_schemas_update
 }
 
 pkg_postrm() {
xdg_pkg_postrm
-   gnome2_icon_cache_update
+   gnome2_schemas_update
 }



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

2020-05-18 Thread Akinori Hattori
commit: a9cb01c8665b5f60f1370ebf8cbd2840603496ba
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:47:32 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:47:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9cb01c8

app-i18n/ibus-hangul: update PYTHON_COMPAT

Bug: https://bugs.gentoo.org/721742
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild | 2 +-
 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
index 6a307ba4896..c2ded55f5f7 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit gnome2-utils python-single-r1 xdg
 

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 9ff69601584..80283405b55 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
 
 inherit gnome2-utils python-single-r1 xdg
 



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

2020-05-18 Thread Akinori Hattori
commit: 60589309fc7c928c9496762d6b7bfc0502d59fc7
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:45:09 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:45:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60589309

app-i18n/ibus-hangul: use BDEPEND

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

 app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild | 8 
 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 6 +++---
 2 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
index 9f9fed01d22..6a307ba4896 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
@@ -23,10 +23,10 @@ RDEPEND="${PYTHON_DEPS}
')
>=app-i18n/libhangul-0.1
nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
 
 src_configure() {
econf \

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 06b3e0861e0..9ff69601584 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -23,9 +23,9 @@ RDEPEND="${PYTHON_DEPS}
')
>=app-i18n/libhangul-0.1
nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
+DEPEND="${RDEPEND}"
+BDEPEND="sys-devel/gettext
+   virtual/pkgconfig"
 
 src_configure() {
econf \



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

2020-05-18 Thread Akinori Hattori
commit: 7f0a668af402461290258541f312375f47a7f6e5
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:39:42 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:39:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f0a668a

app-i18n/ibus-hangul: use xdg eclass

Bug: https://bugs.gentoo.org/721984
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Akinori Hattori  gentoo.org>

 .../{ibus-hangul-1.5.1-r1.ebuild => ibus-hangul-1.5.1-r2.ebuild}  | 8 +++-
 .../{ibus-hangul-1.5.3.ebuild => ibus-hangul-1.5.3-r1.ebuild} | 8 +++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
similarity index 88%
rename from app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
rename to app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
index ceed84bddae..f64e6f60530 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
@@ -4,7 +4,7 @@
 EAPI="7"
 PYTHON_COMPAT=( python3_6 )
 
-inherit gnome2-utils python-single-r1
+inherit gnome2-utils python-single-r1 xdg
 
 DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
@@ -34,10 +34,16 @@ src_configure() {
--with-python=${EPYTHON}
 }
 
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
 pkg_postinst() {
+   xdg_pkg_postinst
gnome2_icon_cache_update
 }
 
 pkg_postrm() {
+   xdg_pkg_postrm
gnome2_icon_cache_update
 }

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
similarity index 88%
rename from app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild
rename to app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 393fcb686ce..e6bf4ebc07e 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI="7"
 PYTHON_COMPAT=( python3_{6,7} )
 
-inherit gnome2-utils python-single-r1
+inherit gnome2-utils python-single-r1 xdg
 
 DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
@@ -33,10 +33,16 @@ src_configure() {
--with-python=${EPYTHON}
 }
 
+pkg_preinst() {
+   xdg_pkg_preinst
+}
+
 pkg_postinst() {
+   xdg_pkg_postinst
gnome2_icon_cache_update
 }
 
 pkg_postrm() {
+   xdg_pkg_postrm
gnome2_icon_cache_update
 }



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

2020-05-18 Thread Akinori Hattori
commit: 38c1862453dc35278c67e07d60baed78d042c000
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:49:31 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:49:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38c18624

app-i18n/ibus-hangul: amd64/x86 stable

Closes: https://bugs.gentoo.org/721742
Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
index 80283405b55..6d04d1fec63 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2020-05-18 Thread Akinori Hattori
commit: 85a2cab8ac7251df94a8cf45d97b5a9db124acf3
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:34:39 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:34:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85a2cab8

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

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

 app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
index 87d78aa62e7..ceed84bddae 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI="7"
 PYTHON_COMPAT=( python3_6 )
 
 inherit gnome2-utils python-single-r1



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

2020-05-18 Thread Akinori Hattori
commit: 49e3e53a959ebaeff7d95e3615e00a079d67cc16
Author: Akinori Hattori  gentoo  org>
AuthorDate: Mon May 18 14:50:42 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Mon May 18 14:50:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e3e53a

app-i18n/ibus-hangul: drop old

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

 app-i18n/ibus-hangul/Manifest|  1 -
 app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild | 50 
 2 files changed, 51 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 919c4733905..3bedf576f9e 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,2 +1 @@
-DIST ibus-hangul-1.5.1.tar.gz 460517 BLAKE2B 
913d0d8b8995fac3cd73ca40280761d5bf44f35134cb7e73075c233f9c1ef5aa00bb7d7b8da20a69273cd0eb8202b9deb409e1b8d1b6ebbeb5f0ef98d341
 SHA512 
1254398cc4daef2bcbb4cf5be5cfe4c3478097cc5be1f2b39861efe55529ba36602798a84c2540298c2c3b6405c1bd38c97543827c74a473dca5a2d23e3ac4ec
 DIST ibus-hangul-1.5.3.tar.gz 525834 BLAKE2B 
6c92dbbde39bc42b7df974dbb23c9ef62088c8d3f63a500bd3c7e9c90b3d80d16dc1d76616620e1d7590fee549979a03585ac635761687dc11737d65fdf09e08
 SHA512 
ba21a8afb750e33744042c5e4f9d88891764921a37c4dbe1f4efa9883fd3c889789854af57adcd24bc1ca365ee49d2e01073c54d72cd025558b41788fb6213b4

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
deleted file mode 100644
index c2ded55f5f7..000
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit gnome2-utils python-single-r1 xdg
-
-DESCRIPTION="Korean Hangul engine for IBus"
-HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
-SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
-   ')
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-src_configure() {
-   econf \
-   $(use_enable nls) \
-   --with-python=${EPYTHON}
-}
-
-pkg_preinst() {
-   xdg_pkg_preinst
-   gnome2_schemas_savelist
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2020-02-28 Thread Akinori Hattori
commit: 9f0ef243bd5234744c9a331f5a5ec50eb678152c
Author: Akinori Hattori  gentoo  org>
AuthorDate: Sat Feb 29 02:39:56 2020 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Sat Feb 29 02:39:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f0ef243

app-i18n/ibus-hangul: new upstream release

Closes: https://github.com/gentoo/gentoo/pull/14759
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Akinori Hattori  gentoo.org>

 app-i18n/ibus-hangul/Manifest |  1 +
 app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 639833fb607..919c4733905 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1 +1,2 @@
 DIST ibus-hangul-1.5.1.tar.gz 460517 BLAKE2B 
913d0d8b8995fac3cd73ca40280761d5bf44f35134cb7e73075c233f9c1ef5aa00bb7d7b8da20a69273cd0eb8202b9deb409e1b8d1b6ebbeb5f0ef98d341
 SHA512 
1254398cc4daef2bcbb4cf5be5cfe4c3478097cc5be1f2b39861efe55529ba36602798a84c2540298c2c3b6405c1bd38c97543827c74a473dca5a2d23e3ac4ec
+DIST ibus-hangul-1.5.3.tar.gz 525834 BLAKE2B 
6c92dbbde39bc42b7df974dbb23c9ef62088c8d3f63a500bd3c7e9c90b3d80d16dc1d76616620e1d7590fee549979a03585ac635761687dc11737d65fdf09e08
 SHA512 
ba21a8afb750e33744042c5e4f9d88891764921a37c4dbe1f4efa9883fd3c889789854af57adcd24bc1ca365ee49d2e01073c54d72cd025558b41788fb6213b4

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild
new file mode 100644
index 000..393fcb686ce
--- /dev/null
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.3.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+PYTHON_COMPAT=( python3_{6,7} )
+
+inherit gnome2-utils python-single-r1
+
+DESCRIPTION="Korean Hangul engine for IBus"
+HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
+SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
+   ')
+   >=app-i18n/libhangul-0.1
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   --with-python=${EPYTHON}
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2020-02-09 Thread Michał Górny
commit: 4e8ccc094df163b964afb0441d7320637cda177b
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Feb  7 09:30:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Feb  9 16:10:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e8ccc09

app-i18n/ibus-hangul: Switch to PYTHON_MULTI_USEDEP API

Signed-off-by: Michał Górny  gentoo.org>

 .../{ibus-hangul-1.5.1.ebuild => ibus-hangul-1.5.1-r1.ebuild}   | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
similarity index 86%
rename from app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
rename to app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
index 5fae9262586..a916c7db5b8 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1-r1.ebuild
@@ -17,8 +17,10 @@ IUSE="nls"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="${PYTHON_DEPS}
-   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   app-i18n/ibus[python(+),${PYTHON_MULTI_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
+   ')
>=app-i18n/libhangul-0.1
nls? ( virtual/libintl )"
 DEPEND="${RDEPEND}



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

2019-09-28 Thread Mike Gilbert
commit: f1c0397a323a8befd642583ca00637f88de75bd8
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Sat Sep 28 03:07:05 2019 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 29 02:56:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1c0397a

app-i18n/ibus-hangul: Delete old version (1.5.0-r1).

Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Signed-off-by: Mike Gilbert  gentoo.org>

 app-i18n/ibus-hangul/Manifest|  1 -
 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 45 
 2 files changed, 46 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 1a0f7b775f8..639833fb607 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,2 +1 @@
-DIST ibus-hangul-1.5.0.tar.gz 505707 BLAKE2B 
4dd630d7ed83ff4913e87c4d77f951845714697500a87ae337d898fe674d29e9421d5d506c2beb3acef859864d655f20d92f6a0cc5620f293a8a7623c4bd3158
 SHA512 
a9bef9ad887d1b41555af12e7589a9c4c69ddf4f61890907d90cbab6b9bf4cb6df4739c54d34ee1b2507486a1cb568f826bb4641e9ccee8ccfa11ff2d7e962bb
 DIST ibus-hangul-1.5.1.tar.gz 460517 BLAKE2B 
913d0d8b8995fac3cd73ca40280761d5bf44f35134cb7e73075c233f9c1ef5aa00bb7d7b8da20a69273cd0eb8202b9deb409e1b8d1b6ebbeb5f0ef98d341
 SHA512 
1254398cc4daef2bcbb4cf5be5cfe4c3478097cc5be1f2b39861efe55529ba36602798a84c2540298c2c3b6405c1bd38c97543827c74a473dca5a2d23e3ac4ec

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
deleted file mode 100644
index 4e80d01814d..000
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python{2_7,3_5,3_6} )
-
-inherit gnome2-utils python-single-r1
-
-DESCRIPTION="Korean Hangul engine for IBus"
-HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
-SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )"
-
-src_prepare() {
-   sed -i "s/@PYTHON@/${EPYTHON}/" setup/${PN/-/-setup-}.in
-
-   default
-}
-
-src_configure() {
-   econf $(use_enable nls)
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



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

2019-09-08 Thread Agostino Sarubbo
commit: c130b48ef92ccf7720a7d37e40b8bffd3766376e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep  8 10:55:44 2019 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep  8 10:55:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c130b48e

app-i18n/ibus-hangul: amd64 stable wrt bug #691380

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

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

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
index b427dafeb86..ec232f0cb01 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2019-09-07 Thread Thomas Deutschmann
commit: c9624767a4ea1fac6da1160f7d8e48ab747dacfd
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Sep  7 18:16:31 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Sep  7 21:05:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9624767

app-i18n/ibus-hangul: x86 stable (bug #691380)

Package-Manager: Portage-2.3.75, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
index 068462e45de..b427dafeb86 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="nls"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2018-09-04 Thread Akinori Hattori
commit: a3d17d44e9c8e7dc0969a5851c54f118cf6cbe24
Author: Akinori Hattori  gentoo  org>
AuthorDate: Tue Sep  4 12:45:07 2018 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Tue Sep  4 12:45:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d17d44

app-i18n/ibus-hangul: update DESCRIPTION

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 2 +-
 app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
index 7b61f434638..2962cc569f5 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
@@ -6,7 +6,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit gnome2-utils python-single-r1
 
-DESCRIPTION="Hangul engine for IBus"
+DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
index 0c0401cb2c0..a78ae6cb20d 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
@@ -6,7 +6,7 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit gnome2-utils python-single-r1
 
-DESCRIPTION="Hangul engine for IBus"
+DESCRIPTION="Korean Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
 
SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 



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

2018-08-29 Thread Akinori Hattori
commit: 0874742eb8d913a08a32f040e1d418f32fe03bba
Author: Akinori Hattori  gentoo  org>
AuthorDate: Wed Aug 29 12:37:40 2018 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Wed Aug 29 12:37:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0874742e

app-i18n/ibus-hangul: call gnome2_icon_cache_update

Closes: https://bugs.gentoo.org/664794
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 10 +-
 app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild| 10 +-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
index 2b33b5a4f3b..7b61f434638 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
@@ -4,7 +4,7 @@
 EAPI="6"
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
-inherit python-single-r1
+inherit gnome2-utils python-single-r1
 
 DESCRIPTION="Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
@@ -35,3 +35,11 @@ src_prepare() {
 src_configure() {
econf $(use_enable nls)
 }
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
index 382fe19f799..0c0401cb2c0 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
@@ -4,7 +4,7 @@
 EAPI="6"
 PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
-inherit python-single-r1
+inherit gnome2-utils python-single-r1
 
 DESCRIPTION="Hangul engine for IBus"
 HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
@@ -31,3 +31,11 @@ src_configure() {
$(use_enable nls) \
--with-python=${EPYTHON}
 }
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+}



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

2018-08-28 Thread Akinori Hattori
commit: d378ede4dce558902ad7bd5e0d4ccdb5d6f48a97
Author: Akinori Hattori  gentoo  org>
AuthorDate: Tue Aug 28 13:24:41 2018 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Tue Aug 28 13:27:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d378ede4

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

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 4 ++--
 app-i18n/ibus-hangul/metadata.xml| 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
index b4eb943e427..2b33b5a4f3b 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
@@ -7,8 +7,8 @@ PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 inherit python-single-r1
 
 DESCRIPTION="Hangul engine for IBus"
-HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://github.com/choehwanjin/${PN}/releases/download/${PV}/${P}.tar.gz";
+HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
+SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/app-i18n/ibus-hangul/metadata.xml 
b/app-i18n/ibus-hangul/metadata.xml
index 9b2935d879d..13995a6450c 100644
--- a/app-i18n/ibus-hangul/metadata.xml
+++ b/app-i18n/ibus-hangul/metadata.xml
@@ -10,7 +10,6 @@
app-i18n/libhangul.


-   ibus
-   ibus/ibus
+   libhangul/ibus-hangul

 



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

2018-08-28 Thread Akinori Hattori
commit: d41a369e752b6367722d44b6ac95f79f4764f368
Author: Akinori Hattori  gentoo  org>
AuthorDate: Tue Aug 28 13:26:29 2018 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Tue Aug 28 13:27:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d41a369e

app-i18n/ibus-hangul: new upstream release

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-i18n/ibus-hangul/Manifest |  1 +
 app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 6bc73e0d107..1a0f7b775f8 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1 +1,2 @@
 DIST ibus-hangul-1.5.0.tar.gz 505707 BLAKE2B 
4dd630d7ed83ff4913e87c4d77f951845714697500a87ae337d898fe674d29e9421d5d506c2beb3acef859864d655f20d92f6a0cc5620f293a8a7623c4bd3158
 SHA512 
a9bef9ad887d1b41555af12e7589a9c4c69ddf4f61890907d90cbab6b9bf4cb6df4739c54d34ee1b2507486a1cb568f826bb4641e9ccee8ccfa11ff2d7e962bb
+DIST ibus-hangul-1.5.1.tar.gz 460517 BLAKE2B 
913d0d8b8995fac3cd73ca40280761d5bf44f35134cb7e73075c233f9c1ef5aa00bb7d7b8da20a69273cd0eb8202b9deb409e1b8d1b6ebbeb5f0ef98d341
 SHA512 
1254398cc4daef2bcbb4cf5be5cfe4c3478097cc5be1f2b39861efe55529ba36602798a84c2540298c2c3b6405c1bd38c97543827c74a473dca5a2d23e3ac4ec

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
new file mode 100644
index 000..382fe19f799
--- /dev/null
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit python-single-r1
+
+DESCRIPTION="Hangul engine for IBus"
+HOMEPAGE="https://github.com/libhangul/ibus-hangul/wiki";
+SRC_URI="https://github.com/libhangul/${PN}/releases/download/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="nls"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=app-i18n/libhangul-0.1
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   --with-python=${EPYTHON}
+}



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

2018-08-28 Thread Akinori Hattori
commit: 2746248be2cb0e7478ebeaaa281ad6645bba0b43
Author: Akinori Hattori  gentoo  org>
AuthorDate: Tue Aug 28 13:22:25 2018 +
Commit: Akinori Hattori  gentoo  org>
CommitDate: Tue Aug 28 13:27:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2746248b

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

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild | 37 
 app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild| 43 
 app-i18n/ibus-hangul/metadata.xml|  5 ++-
 3 files changed, 41 insertions(+), 44 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
new file mode 100644
index 000..b4eb943e427
--- /dev/null
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0-r1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit python-single-r1
+
+DESCRIPTION="Hangul engine for IBus"
+HOMEPAGE="https://github.com/ibus/ibus/wiki";
+SRC_URI="https://github.com/choehwanjin/${PN}/releases/download/${PV}/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE="nls"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   app-i18n/ibus[python(+),${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   >=app-i18n/libhangul-0.1
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )"
+
+src_prepare() {
+   sed -i "s/@PYTHON@/${EPYTHON}/" setup/${PN/-/-setup-}.in
+
+   default
+}
+
+src_configure() {
+   econf $(use_enable nls)
+}

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
deleted file mode 100644
index 38435562f84..000
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://github.com/choehwanjin/ibus-hangul/releases/download/${PV}/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-
-RDEPEND=">=app-i18n/ibus-1.4[python,${PYTHON_USEDEP}]
-   =dev-python/pygobject-2*[${PYTHON_USEDEP}]
-   =dev-python/pygtk-2*[${PYTHON_USEDEP}]
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )
-   ${PYTHON_DEPS}"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   >=sys-devel/gettext-0.17
-   )"
-
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-src_prepare() {
-   sed -ie "s:python:${EPYTHON}:" \
-   setup/ibus-setup-hangul.in || die
-}
-
-src_configure() {
-   econf $(use_enable nls)
-}

diff --git a/app-i18n/ibus-hangul/metadata.xml 
b/app-i18n/ibus-hangul/metadata.xml
index 7f550752e70..9b2935d879d 100644
--- a/app-i18n/ibus-hangul/metadata.xml
+++ b/app-i18n/ibus-hangul/metadata.xml
@@ -5,7 +5,10 @@
c...@gentoo.org
Cjk

-   The Hangul engine for IBus platform. It 
provides Korean input method from libhangul.
+   
+   The Hangul engine for IBus. It provides Korean input method from
+   app-i18n/libhangul.
+   

ibus
ibus/ibus



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

2016-10-16 Thread Pacho Ramos
commit: 2e739c0d80a97415d2cd1263fa4ddc2dcfb5270b
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 16 09:56:53 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 16 09:56:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e739c0d

app-i18n/ibus-hangul: Drop old

Package-Manager: portage-2.3.1

 app-i18n/ibus-hangul/Manifest |  1 -
 app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 16b0b59..dc4fd39 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,2 +1 @@
-DIST ibus-hangul-1.4.2.tar.gz 483967 SHA256 
de79dff94028673f1a00b24f9af35f37f59c12b1737d171a24ac4d34fad20b89 SHA512 
ba046d3d234db71043e5dd2fbc8d38443dff4d422e360a09b05dd4c411705967495195b71f8feb5986683c20984217934e3bfe45547b4e43b83aa3f33756963f
 WHIRLPOOL 
046a9b67f6730ffbecd9be13b734fbfc87614dd0e4a72b4e5f866bc6149719e7f5a8b9300faad48470ba20432d3baebd5d7bb173e04885802686237f6c421805
 DIST ibus-hangul-1.5.0.tar.gz 505707 SHA256 
a22d4030bb20f73914a9d8a28c71b823123a5d1902a30f8328111af50f4f1788 SHA512 
a9bef9ad887d1b41555af12e7589a9c4c69ddf4f61890907d90cbab6b9bf4cb6df4739c54d34ee1b2507486a1cb568f826bb4641e9ccee8ccfa11ff2d7e962bb
 WHIRLPOOL 
fef54dd65cb6ecee1a703f93db9d46d08ce12fa15df00c59197bd4dea1bb1d00bec4e25d765ffe2e1cae7da796d16ceb04bd46657617d363e0933f6beebf55f0

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild
deleted file mode 100644
index 2a1f232..
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_DEPEND="2:2.5"
-
-inherit python
-
-DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-
-RDEPEND=">=app-i18n/ibus-1.4
-   =dev-python/pygobject-2*
-   =dev-python/pygtk-2*
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   >=sys-devel/gettext-0.17
-   )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_prepare() {
-   python_clean_py-compile_files
-   sed -ie "s:python:${EPYTHON}:" \
-   setup/ibus-setup-hangul.in || die
-}
-
-src_configure() {
-   econf $(use_enable nls)
-}
-
-pkg_postinst() {
-   python_mod_optimize /usr/share/${PN}
-}
-
-pkg_postrm() {
-   python_mod_cleanup /usr/share/${PN}
-}



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

2016-10-16 Thread Pacho Ramos
commit: 3e0544c0e46574095e3f91ebaadfeadfc3a83bd3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct 16 09:56:27 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct 16 09:56:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0544c0

app-i18n/ibus-hangul: x86 stable, bug #593184

Package-Manager: portage-2.3.1

 app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
index 934c247..48fab46 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/choehwanjin/ibus-hangul/releases/download/${PV}/${P}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 
 RDEPEND=">=app-i18n/ibus-1.4[python,${PYTHON_USEDEP}]



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

2016-10-09 Thread Pacho Ramos
commit: 38699e31ed264f8a891f2f7f40164aff5df8c4c5
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Oct  9 07:51:38 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Oct  9 07:55:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38699e31

app-i18n/ibus-hangul: Drop old

Package-Manager: portage-2.3.1

 app-i18n/ibus-hangul/Manifest|  2 -
 app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild| 54 ---
 app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild| 55 
 app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild | 44 ---
 4 files changed, 155 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index 6da25bf..16b0b59 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,4 +1,2 @@
-DIST ibus-hangul-1.4.0.tar.gz 439462 SHA256 
a955ec0c9ea90ecd8e8d0fd2de1596a5ba1186463862c387d74a418d1707ca0a SHA512 
a2ed7c5ec344d31a37fa3decc502d0b2d724f08c668e6072eade7aa5bdbaba0b5812daf5fb5503e6477d0b289f248894eb81f70729e2a87a40516b1d4d09a6de
 WHIRLPOOL 
06c2eeb6d975c414cd3209500ef562e834c02e7e1c96915cc977a9ff9d8779128e978d52cc8f11940d6a9c23ef34f285d2be63b978f2fe6c3aaf253349e8b949
-DIST ibus-hangul-1.4.1.tar.gz 484065 SHA256 
8b7cbc124850df9fb78cdcb38b138f10c648b5519d36a92107616606678b662d SHA512 
80d893c33e06108e1477bab067d24e333c9fbfaa3f1a839d9070f2b78694ff80965d9dd23cded3a512f1ed71b60ea5e8390ef9f87d2b63858b09158f90d74b9f
 WHIRLPOOL 
0ec6a6d357e2b6234ddd448c72fa04668381b4de0e82d892e83378f3f1d40a31f5a28c667b6804cdc74ed441640acc81c91d051683f664ea754021ea526c
 DIST ibus-hangul-1.4.2.tar.gz 483967 SHA256 
de79dff94028673f1a00b24f9af35f37f59c12b1737d171a24ac4d34fad20b89 SHA512 
ba046d3d234db71043e5dd2fbc8d38443dff4d422e360a09b05dd4c411705967495195b71f8feb5986683c20984217934e3bfe45547b4e43b83aa3f33756963f
 WHIRLPOOL 
046a9b67f6730ffbecd9be13b734fbfc87614dd0e4a72b4e5f866bc6149719e7f5a8b9300faad48470ba20432d3baebd5d7bb173e04885802686237f6c421805
 DIST ibus-hangul-1.5.0.tar.gz 505707 SHA256 
a22d4030bb20f73914a9d8a28c71b823123a5d1902a30f8328111af50f4f1788 SHA512 
a9bef9ad887d1b41555af12e7589a9c4c69ddf4f61890907d90cbab6b9bf4cb6df4739c54d34ee1b2507486a1cb568f826bb4641e9ccee8ccfa11ff2d7e962bb
 WHIRLPOOL 
fef54dd65cb6ecee1a703f93db9d46d08ce12fa15df00c59197bd4dea1bb1d00bec4e25d765ffe2e1cae7da796d16ceb04bd46657617d363e0933f6beebf55f0

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild
deleted file mode 100644
index 27d8b84..
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="2:2.5"
-
-inherit python
-
-DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-
-RDEPEND=">=app-i18n/ibus-1.4
-   =dev-python/pygobject-2*
-   =dev-python/pygtk-2*
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   >=sys-devel/gettext-0.17
-   )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_prepare() {
-   >py-compile
-   python_convert_shebangs 2 setup/ibus-setup-hangul.in
-}
-
-src_configure() {
-   econf $(use_enable nls)
-}
-
-pkg_postinst() {
-   python_mod_optimize /usr/share/${PN}
-}
-
-pkg_postrm() {
-   python_mod_cleanup /usr/share/${PN}
-}

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild
deleted file mode 100644
index c414634..
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="2:2.5"
-
-inherit python
-
-DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="nls"
-
-RDEPEND=">=app-i18n/ibus-1.4
-   =dev-python/pygobject-2*
-   =dev-python/pygtk-2*
-   >=app-i18n/libhangul-0.1
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   nls? (
-   dev-util/intltool
-   >=sys-devel/gettext-0.17
-   )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}
-
-src_prepare() {
-   python_clean_py-compile_files
-   sed -ie "s:python:${EPYTHON}:" \
-   setup/ibus-

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

2016-05-15 Thread Patrick Lauer
commit: ae49f16f155a21c9449f9aa9ce64b4405db4bca7
Author: Patrick Lauer  gentoo  org>
AuthorDate: Sun May 15 10:44:31 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Sun May 15 10:44:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae49f16f

app-i18n/ibus-hangul: Bump #540270

Package-Manager: portage-2.2.28

 app-i18n/ibus-hangul/Manifest   | 1 +
 app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild| 2 +-
 .../{ibus-hangul-1.4.2-r1.ebuild => ibus-hangul-1.5.0.ebuild}   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-i18n/ibus-hangul/Manifest b/app-i18n/ibus-hangul/Manifest
index f044b67..6da25bf 100644
--- a/app-i18n/ibus-hangul/Manifest
+++ b/app-i18n/ibus-hangul/Manifest
@@ -1,3 +1,4 @@
 DIST ibus-hangul-1.4.0.tar.gz 439462 SHA256 
a955ec0c9ea90ecd8e8d0fd2de1596a5ba1186463862c387d74a418d1707ca0a SHA512 
a2ed7c5ec344d31a37fa3decc502d0b2d724f08c668e6072eade7aa5bdbaba0b5812daf5fb5503e6477d0b289f248894eb81f70729e2a87a40516b1d4d09a6de
 WHIRLPOOL 
06c2eeb6d975c414cd3209500ef562e834c02e7e1c96915cc977a9ff9d8779128e978d52cc8f11940d6a9c23ef34f285d2be63b978f2fe6c3aaf253349e8b949
 DIST ibus-hangul-1.4.1.tar.gz 484065 SHA256 
8b7cbc124850df9fb78cdcb38b138f10c648b5519d36a92107616606678b662d SHA512 
80d893c33e06108e1477bab067d24e333c9fbfaa3f1a839d9070f2b78694ff80965d9dd23cded3a512f1ed71b60ea5e8390ef9f87d2b63858b09158f90d74b9f
 WHIRLPOOL 
0ec6a6d357e2b6234ddd448c72fa04668381b4de0e82d892e83378f3f1d40a31f5a28c667b6804cdc74ed441640acc81c91d051683f664ea754021ea526c
 DIST ibus-hangul-1.4.2.tar.gz 483967 SHA256 
de79dff94028673f1a00b24f9af35f37f59c12b1737d171a24ac4d34fad20b89 SHA512 
ba046d3d234db71043e5dd2fbc8d38443dff4d422e360a09b05dd4c411705967495195b71f8feb5986683c20984217934e3bfe45547b4e43b83aa3f33756963f
 WHIRLPOOL 
046a9b67f6730ffbecd9be13b734fbfc87614dd0e4a72b4e5f866bc6149719e7f5a8b9300faad48470ba20432d3baebd5d7bb173e04885802686237f6c421805
+DIST ibus-hangul-1.5.0.tar.gz 505707 SHA256 
a22d4030bb20f73914a9d8a28c71b823123a5d1902a30f8328111af50f4f1788 SHA512 
a9bef9ad887d1b41555af12e7589a9c4c69ddf4f61890907d90cbab6b9bf4cb6df4739c54d34ee1b2507486a1cb568f826bb4641e9ccee8ccfa11ff2d7e962bb
 WHIRLPOOL 
fef54dd65cb6ecee1a703f93db9d46d08ce12fa15df00c59197bd4dea1bb1d00bec4e25d765ffe2e1cae7da796d16ceb04bd46657617d363e0933f6beebf55f0

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
index 2274303..7040c96 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
@@ -10,7 +10,7 @@ inherit python-single-r1
 
 DESCRIPTION="The Hangul engine for IBus input platform"
 HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
+SRC_URI="https://github.com/choehwanjin/ibus-hangul/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
similarity index 90%
copy from app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
copy to app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
index 2274303..7040c96 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.5.0.ebuild
@@ -10,7 +10,7 @@ inherit python-single-r1
 
 DESCRIPTION="The Hangul engine for IBus input platform"
 HOMEPAGE="https://github.com/ibus/ibus/wiki";
-SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
+SRC_URI="https://github.com/choehwanjin/ibus-hangul/releases/download/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2"
 SLOT="0"



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

2015-09-01 Thread Tobias Klausmann
commit: 32748a30bfe7b3202f57b3edd192858bd19ff21b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Sep  1 18:46:22 2015 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Sep  1 18:46:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32748a30

app-i18n/ibus-hangul: Fixing HOMEPAGE move due to code.google.com shutdown

Package-Manager: portage-2.2.20.1

 app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild| 2 +-
 app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild| 2 +-
 app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild | 2 +-
 app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild| 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild
index 4ada7ac..27d8b84 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.4.0.ebuild
@@ -9,7 +9,7 @@ PYTHON_DEPEND="2:2.5"
 inherit python
 
 DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://code.google.com/p/ibus/";
+HOMEPAGE="https://github.com/ibus/ibus/wiki";
 SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
 
 LICENSE="GPL-2"

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild
index f07103b..c414634 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.4.1.ebuild
@@ -9,7 +9,7 @@ PYTHON_DEPEND="2:2.5"
 inherit python
 
 DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://code.google.com/p/ibus/";
+HOMEPAGE="https://github.com/ibus/ibus/wiki";
 SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
 
 LICENSE="GPL-2"

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
index 5750d82..2274303 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.4.2-r1.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit python-single-r1
 
 DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://code.google.com/p/ibus/";
+HOMEPAGE="https://github.com/ibus/ibus/wiki";
 SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
 
 LICENSE="GPL-2"

diff --git a/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild 
b/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild
index 5f0d7fa..2a1f232 100644
--- a/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild
+++ b/app-i18n/ibus-hangul/ibus-hangul-1.4.2.ebuild
@@ -9,7 +9,7 @@ PYTHON_DEPEND="2:2.5"
 inherit python
 
 DESCRIPTION="The Hangul engine for IBus input platform"
-HOMEPAGE="https://code.google.com/p/ibus/";
+HOMEPAGE="https://github.com/ibus/ibus/wiki";
 SRC_URI="https://ibus.googlecode.com/files/${P}.tar.gz";
 
 LICENSE="GPL-2"