public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/
@ 2017-08-01 12:30 Akinori Hattori
  0 siblings, 0 replies; 5+ messages in thread
From: Akinori Hattori @ 2017-08-01 12:30 UTC (permalink / raw
  To: gentoo-commits

commit:     ae518def120743456c76c96aa706463220ee85a3
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 12:27:00 2017 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 12:29:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae518def

app-dicts/wnn-ldic: update to EAPI 6

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-dicts/wnn-ldic/metadata.xml         |  8 ++++----
 app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild | 19 ++++++++++---------
 2 files changed, 14 insertions(+), 13 deletions(-)

diff --git a/app-dicts/wnn-ldic/metadata.xml b/app-dicts/wnn-ldic/metadata.xml
index c921b96adf6..e1a49f49888 100644
--- a/app-dicts/wnn-ldic/metadata.xml
+++ b/app-dicts/wnn-ldic/metadata.xml
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<maintainer type="project">
-	<email>cjk@gentoo.org</email>
-	<name>Cjk</name>
-</maintainer>
+  <maintainer type="project">
+    <email>cjk@gentoo.org</email>
+    <name>Cjk</name>
+  </maintainer>
 </pkgmetadata>

diff --git a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
index 36c6ccb4194..08f3cfea5e1 100644
--- a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
+++ b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
@@ -1,10 +1,12 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-DESCRIPTION="Wnn dictionary for librarian"
+EAPI="6"
 
-HOMEPAGE="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic/"
-SRC_URI="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic/ldic-${PV}-wnn.txt"
+DESCRIPTION="Wnn dictionary for librarian"
+#HOMEPAGE="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/ldic-${PV}-wnn.txt"
 
 LICENSE="HPND"
 SLOT="0"
@@ -12,15 +14,14 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND="app-i18n/freewnn"
-
-S=${WORKDIR}
+S="${WORKDIR}"
 
 src_unpack() {
-	return
+	:
 }
 
 src_compile() {
-	/usr/bin/Wnn4/atod lib.dic < "${DISTDIR}/${A}" || die
+	/usr/bin/Wnn4/atod lib.dic < "${DISTDIR}"/${A} || die
 }
 
 src_install() {
@@ -29,6 +30,6 @@ src_install() {
 }
 
 pkg_postinst() {
-	elog "lib.dic is installed in /usr/lib/wnn/ja_JP/dic/misc."
+	elog "lib.dic is installed in ${EPREFIX}/usr/lib/wnn/ja_JP/dic/misc."
 	elog "You have to edit your wnnenvrc or eggrc to use it."
 }


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/
@ 2017-08-01 12:30 Akinori Hattori
  0 siblings, 0 replies; 5+ messages in thread
From: Akinori Hattori @ 2017-08-01 12:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4ca6d819c08cc099a1b31dc1f8fc9a1e5ed32fad
Author:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
AuthorDate: Tue Aug  1 12:28:11 2017 +0000
Commit:     Akinori Hattori <hattya <AT> gentoo <DOT> org>
CommitDate: Tue Aug  1 12:29:54 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ca6d819

app-dicts/wnn-ldic: fix build

Gentoo-Bug: 626064

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
index 08f3cfea5e1..9c381729786 100644
--- a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
+++ b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
@@ -21,7 +21,11 @@ src_unpack() {
 }
 
 src_compile() {
-	/usr/bin/Wnn4/atod lib.dic < "${DISTDIR}"/${A} || die
+	local atod=atod
+	if has_version "<app-i18n/freewnn-1.1.1_alpha23"; then
+		atod="${EPREFIX}"/usr/bin/Wnn4/atod
+	fi
+	"${atod}" lib.dic < "${DISTDIR}"/${A} || die
 }
 
 src_install() {


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/
@ 2021-09-29 14:12 Yixun Lan
  0 siblings, 0 replies; 5+ messages in thread
From: Yixun Lan @ 2021-09-29 14:12 UTC (permalink / raw
  To: gentoo-commits

commit:     51ca578a1ef5f0b10f42fa32a8fc556642cdbd98
Author:     Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Tue Sep 28 06:20:27 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 14:12:07 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51ca578a

app-dicts/wnn-ldic: keyword 1.04 for ~riscv

Closes: https://github.com/gentoo/gentoo/pull/22440
Signed-off-by: Alex Fan <alexfanqi <AT> yahoo.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
index 9c381729786..0f45b493a69 100644
--- a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
+++ b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -10,7 +10,7 @@ SRC_URI="mirror://gentoo/ldic-${PV}-wnn.txt"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE=""
 
 DEPEND="app-i18n/freewnn"


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/
@ 2023-12-01  7:52 Joonas Niilola
  0 siblings, 0 replies; 5+ messages in thread
From: Joonas Niilola @ 2023-12-01  7:52 UTC (permalink / raw
  To: gentoo-commits

commit:     c61c407ec58a2553d935319a367ee68ade1ecad3
Author:     Leonardo Hernández Hernández <leohdz172 <AT> proton <DOT> me>
AuthorDate: Mon Oct 16 00:41:05 2023 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Dec  1 07:52:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c61c407e

app-dicts/wnn-ldic: update EAPI 6 -> 8

Signed-off-by: Leonardo Hernández Hernández <leohdz172 <AT> proton.me>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-dicts/wnn-ldic/wnn-ldic-1.04-r1.ebuild | 38 ++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/app-dicts/wnn-ldic/wnn-ldic-1.04-r1.ebuild b/app-dicts/wnn-ldic/wnn-ldic-1.04-r1.ebuild
new file mode 100644
index 000000000000..350c879e0a8d
--- /dev/null
+++ b/app-dicts/wnn-ldic/wnn-ldic-1.04-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Wnn dictionary for librarian"
+#HOMEPAGE="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
+SRC_URI="mirror://gentoo/ldic-${PV}-wnn.txt"
+S="${WORKDIR}"
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+DEPEND="app-i18n/freewnn"
+
+src_unpack() {
+	:
+}
+
+src_compile() {
+	local atod=atod
+	if has_version "<app-i18n/freewnn-1.1.1_alpha23"; then
+		atod="${BROOT}"/usr/bin/Wnn4/atod
+	fi
+	"${atod}" lib.dic < "${DISTDIR}"/${A} || die
+}
+
+src_install() {
+	insinto /usr/lib/wnn/ja_JP/dic/misc
+	doins lib.dic
+}
+
+pkg_postinst() {
+	elog "lib.dic is installed in ${EPREFIX}/usr/lib/wnn/ja_JP/dic/misc."
+	elog "You have to edit your wnnenvrc or eggrc to use it."
+}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/
@ 2024-04-11 11:21 Arthur Zamarin
  0 siblings, 0 replies; 5+ messages in thread
From: Arthur Zamarin @ 2024-04-11 11:21 UTC (permalink / raw
  To: gentoo-commits

commit:     54691c7b212a3a3608058bb2a2babcd939dc6831
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 11 11:20:05 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 11 11:20:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54691c7b

app-dicts/wnn-ldic: drop 1.04, EAPI6--

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild | 39 ---------------------------------
 1 file changed, 39 deletions(-)

diff --git a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild b/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
deleted file mode 100644
index 0f45b493a69b..000000000000
--- a/app-dicts/wnn-ldic/wnn-ldic-1.04.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-DESCRIPTION="Wnn dictionary for librarian"
-#HOMEPAGE="http://www.tulips.tsukuba.ac.jp/misc/export/cat/ldic"
-HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
-SRC_URI="mirror://gentoo/ldic-${PV}-wnn.txt"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv ~x86"
-IUSE=""
-
-DEPEND="app-i18n/freewnn"
-S="${WORKDIR}"
-
-src_unpack() {
-	:
-}
-
-src_compile() {
-	local atod=atod
-	if has_version "<app-i18n/freewnn-1.1.1_alpha23"; then
-		atod="${EPREFIX}"/usr/bin/Wnn4/atod
-	fi
-	"${atod}" lib.dic < "${DISTDIR}"/${A} || die
-}
-
-src_install() {
-	insinto /usr/lib/wnn/ja_JP/dic/misc
-	doins lib.dic
-}
-
-pkg_postinst() {
-	elog "lib.dic is installed in ${EPREFIX}/usr/lib/wnn/ja_JP/dic/misc."
-	elog "You have to edit your wnnenvrc or eggrc to use it."
-}


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2024-04-11 11:21 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-01  7:52 [gentoo-commits] repo/gentoo:master commit in: app-dicts/wnn-ldic/ Joonas Niilola
  -- strict thread matches above, loose matches on Subject: below --
2024-04-11 11:21 Arthur Zamarin
2021-09-29 14:12 Yixun Lan
2017-08-01 12:30 Akinori Hattori
2017-08-01 12:30 Akinori Hattori

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox