public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2017-04-26 14:04 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2017-04-26 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     2536b924a6ea1050361636d0aabf3aa9dcce2f51
Author:     Ethan Kiang <chocopuff298 <AT> gmail <DOT> com>
AuthorDate: Sun Apr 23 07:15:01 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 14:04:29 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2536b924

app-dicts/wordnet: Update database files to 3.1

Closes: https://github.com/gentoo/gentoo/pull/4474

 app-dicts/wordnet/Manifest           |  1 +
 app-dicts/wordnet/wordnet-3.1.ebuild | 94 ++++++++++++++++++++++++++++++++++++
 2 files changed, 95 insertions(+)

diff --git a/app-dicts/wordnet/Manifest b/app-dicts/wordnet/Manifest
index 0c1ab1f8439..23ab21dfe03 100644
--- a/app-dicts/wordnet/Manifest
+++ b/app-dicts/wordnet/Manifest
@@ -1,2 +1,3 @@
 DIST WordNet-3.0.tar.gz 11537227 SHA256 b4d8b1feeb22defe686cf1c5062d723bd854997614da9547fa135e5137843531 SHA512 d39c008cec41de8f1b2aeacb4ad818f9997a13b30a992fda100b6dcc9c11c253530b00a1909b55ff7b564bafc33f7763c1ce9b0a6ae3e591695db2083e9ead7a WHIRLPOOL cfba84209b4366b1ab381957f82cc2a32039d073baf8fbd44252c829c9291be76f05b214e014157f3ec03a354aaec68a14e20103dde37d11f13b846056aa90f4
+DIST wn3.1.dict.tar.gz 16358468 SHA256 3f7d8be8ef6ecc7167d39b10d66954ec734280b5bdcd57f7d9eafe429d11c22a SHA512 16dca17a87026d8a0b7b4758219cd21a869c3ef3da23ce7875924546f2eacac4c2f376cb271b798b2c458fe8c078fb43d681356e3d9beef40f4bd88d3579394f WHIRLPOOL 67b1dd7cfc0df9957d2dedf405dea72ef2aeffb0e696778d88550405070aad11ae59d4cf8f1063f9d828edd88f6032e6e07c351be546e672b44df4a063305997
 DIST wordnet-3.0-patchset-1.tar.bz2 8076 SHA256 d8333b107f53e188981e9ec0e1e53890c8bd7155924ae140c777c3f443d8aba7 SHA512 17668d736dd6dfe83e4d5d328729cbcdfb4dbca9a9707651534169bd2ce6fc2238d5c820d63330c51c20ab9b2964b56a609f58242b05dabbcfdfc0da61c048cb WHIRLPOOL 30e3820c2679148206bc14d5acf8eb7a2bde422f13ce2e9b0a90145e510667d70b1c1ef5d3486c85eddf6492c72b2243672683164f917f8ff5910370e30bd0f8

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
new file mode 100644
index 00000000000..48f463038ef
--- /dev/null
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic
+
+DESCRIPTION="A lexical database for the English language"
+HOMEPAGE="http://wordnet.princeton.edu/"
+SRC_URI="
+	http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz
+	mirror://gentoo/${PN}-3.0-patchset-1.tar.bz2
+	http://wordnetcode.princeton.edu/wn3.1.dict.tar.gz"
+LICENSE="Princeton"
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+IUSE="doc"
+
+# In contrast to what the configure script seems to imply, Tcl/Tk is NOT
+# optional. cf. bug 163478 for details. (Yes, it's about 2.1 but it's
+# still the same here.)
+DEPEND="
+	dev-lang/tcl:0=
+	dev-lang/tk:0="
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/WordNet-3.0"
+
+PATCHES1=(
+	# Don't install into PREFIX/dict but PREFIX/share/wordnet/dict
+	"${WORKDIR}/"${PN}-3.0"-dict-location.patch"
+	# Fixes bug 130024, make an additional shared lib
+	"${WORKDIR}/"${PN}-3.0"-shared-lib.patch"
+	# Don't install the docs directly into PREFIX/doc but PREFIX/doc/PN
+	"${WORKDIR}/"${PN}-3.0"-docs-path.patch"
+	"${WORKDIR}"/"${PN}-3.0"-CVE-2008-3908.patch #211491
+
+	"${FILESDIR}"/"${PN}-3.0"-tcl8.6.patch
+	"${FILESDIR}"/"${PN}-3.0"-format-security.patch
+	"${FILESDIR}"/"${PN}-3.0"-src_stubs_c.patch
+	"${FILESDIR}"/"${PN}-3.0"-fix-indexing-bug-314799.patch
+)
+
+PATCHES0=(
+	"${WORKDIR}"/"${PN}-3.0"-CVE-2008-2149.patch #211491
+)
+
+src_prepare() {
+	eapply -p1 "${PATCHES1[@]}"
+	eapply -p0 "${PATCHES0[@]}"
+	eapply_user
+
+	# Don't install all the extra docs (html, pdf, ps) without doc USE flag.
+	if ! use doc; then
+		sed -i -e "s:SUBDIRS =.*:SUBDIRS = man:" doc/Makefile.am || die
+	fi
+
+	# Drop installation of OLD tk.h headers #255590
+	sed '/^SUBDIRS/d' -i include/Makefile.am || die
+	sed 's: include/tk/Makefile::' -i configure.ac || die
+	eautoreconf
+}
+
+src_configure() {
+	append-cppflags -DUNIX -I"${T}"/usr/include
+
+	PLATFORM=linux WN_ROOT="${T}/usr" \
+	WN_DICTDIR="${T}/usr/share/wordnet/dict" \
+	WN_MANDIR="${T}/usr/share/man" \
+	WN_DOCDIR="${T}/usr/share/doc/wordnet-3.0" \
+	WNHOME="${EPREFIX}/usr/share/wordnet" \
+	econf \
+		--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
+		--with-tk="${EPREFIX}"/usr/$(get_libdir)
+}
+
+src_compile(){
+	emake -e || die "emake failed"
+}
+
+src_install(){
+	# For clarification, WN is still on  version 3.0. Only the database files
+	# have been updated to 3.1 as a package for 3.1 does not currently exist.
+	emake -e DESTDIR="${D}" install
+	einstalldocs
+	rm -r "${D}/usr/share/wordnet/dict" || die
+	mv "${WORKDIR}/dict" "${D}/usr/share/wordnet" || die
+}
+
+pkg_postinst(){
+	elog "The WordNet 3.1 ebuild has installed WordNet v3.0 with v3.1 database files instead."
+	elog "See http://wordnet.princeton.edu/wordnet/download/current-version/ for more."
+}


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2017-04-26 14:04 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2017-04-26 14:04 UTC (permalink / raw
  To: gentoo-commits

commit:     db6995d064915be31bd58504eb70bd2d6e550515
Author:     Ethan Kiang <chocopuff298 <AT> gmail <DOT> com>
AuthorDate: Sun Apr 23 07:15:01 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Apr 26 14:04:28 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db6995d0

app-dicts/wordnet: Take maintenance over, #615006

 app-dicts/wordnet/metadata.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/metadata.xml b/app-dicts/wordnet/metadata.xml
index 6f49eba8f49..169711de78b 100644
--- a/app-dicts/wordnet/metadata.xml
+++ b/app-dicts/wordnet/metadata.xml
@@ -1,5 +1,12 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-<!-- maintainer-needed -->
+<maintainer type="person">
+	<email>chocopuff298+gentoo@gmail.com</email>
+	<name>Ethan Kiang</name>
+</maintainer>
+<maintainer type="project">
+	<email>proxy-maint@gentoo.org</email>
+	<name>Proxy Maintainers</name>
+</maintainer>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2017-08-06 10:52 Michał Górny
  0 siblings, 0 replies; 10+ messages in thread
From: Michał Górny @ 2017-08-06 10:52 UTC (permalink / raw
  To: gentoo-commits

commit:     47edb7c0373f58cda7990f0785b2db969cb92321
Author:     Ethan Kiang <chocopuff298 <AT> gmail <DOT> com>
AuthorDate: Sat Aug  5 15:15:48 2017 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sun Aug  6 10:51:36 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47edb7c0

app-dicts/wordnet: updated metadata to reflect updated bugzilla email

Closes: https://github.com/gentoo/gentoo/pull/5306

 app-dicts/wordnet/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/metadata.xml b/app-dicts/wordnet/metadata.xml
index 169711de78b..c40afbd5319 100644
--- a/app-dicts/wordnet/metadata.xml
+++ b/app-dicts/wordnet/metadata.xml
@@ -2,7 +2,7 @@
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
 <maintainer type="person">
-	<email>chocopuff298+gentoo@gmail.com</email>
+	<email>chocopuff298@gmail.com</email>
 	<name>Ethan Kiang</name>
 </maintainer>
 <maintainer type="project">


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2018-05-27 16:23 Aaron Bauman
  0 siblings, 0 replies; 10+ messages in thread
From: Aaron Bauman @ 2018-05-27 16:23 UTC (permalink / raw
  To: gentoo-commits

commit:     b32dcdb58a9af16becd618df97382160645575f3
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun May 27 14:47:45 2018 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 27 16:22:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32dcdb5

app-dicts/wordnet: use HTTPs

Closes: https://github.com/gentoo/gentoo/pull/8624

 app-dicts/wordnet/wordnet-3.0-r4.ebuild | 4 ++--
 app-dicts/wordnet/wordnet-3.0-r5.ebuild | 4 ++--
 app-dicts/wordnet/wordnet-3.1.ebuild    | 6 +++---
 3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-dicts/wordnet/wordnet-3.0-r4.ebuild b/app-dicts/wordnet/wordnet-3.0-r4.ebuild
index 5b1c21d480e..bd72aae233c 100644
--- a/app-dicts/wordnet/wordnet-3.0-r4.ebuild
+++ b/app-dicts/wordnet/wordnet-3.0-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -6,7 +6,7 @@ EAPI=5
 inherit autotools eutils flag-o-matic multilib
 
 DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="http://wordnet.princeton.edu/"
+HOMEPAGE="https://wordnet.princeton.edu/"
 SRC_URI="
 	ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PV}/WordNet-${PV}.tar.gz
 	mirror://gentoo/${P}-patchset-1.tar.bz2"

diff --git a/app-dicts/wordnet/wordnet-3.0-r5.ebuild b/app-dicts/wordnet/wordnet-3.0-r5.ebuild
index eba742265ed..68cdec705c1 100644
--- a/app-dicts/wordnet/wordnet-3.0-r5.ebuild
+++ b/app-dicts/wordnet/wordnet-3.0-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools eutils flag-o-matic
 
 DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="http://wordnet.princeton.edu/"
+HOMEPAGE="https://wordnet.princeton.edu/"
 SRC_URI="
 	http://wordnetcode.princeton.edu/${PV}/WordNet-${PV}.tar.gz
 	mirror://gentoo/${P}-patchset-1.tar.bz2"

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
index 48f463038ef..b0f8adbbf56 100644
--- a/app-dicts/wordnet/wordnet-3.1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools eutils flag-o-matic
 
 DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="http://wordnet.princeton.edu/"
+HOMEPAGE="https://wordnet.princeton.edu/"
 SRC_URI="
 	http://wordnetcode.princeton.edu/3.0/WordNet-3.0.tar.gz
 	mirror://gentoo/${PN}-3.0-patchset-1.tar.bz2
@@ -90,5 +90,5 @@ src_install(){
 
 pkg_postinst(){
 	elog "The WordNet 3.1 ebuild has installed WordNet v3.0 with v3.1 database files instead."
-	elog "See http://wordnet.princeton.edu/wordnet/download/current-version/ for more."
+	elog "See https://wordnet.princeton.edu/download/current-version/ for more."
 }


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2021-04-19 21:26 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-19 21:26 UTC (permalink / raw
  To: gentoo-commits

commit:     bb092dd8fd2b1513d5ada3f8bdf281e3835e7187
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 21:24:35 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 21:25:57 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb092dd8

app-dicts/wordnet: Stabilize 3.1 x86, #772071

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-dicts/wordnet/wordnet-3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
index 60fc8318712..634a8a7ef65 100644
--- a/app-dicts/wordnet/wordnet-3.1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 LICENSE="Princeton"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
 # In contrast to what the configure script seems to imply, Tcl/Tk is NOT


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2021-04-19 21:26 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-19 21:26 UTC (permalink / raw
  To: gentoo-commits

commit:     583fbc6651669bc69099b05508b6f682ef8e18f4
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 19 21:25:02 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Apr 19 21:25:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=583fbc66

app-dicts/wordnet: Stabilize 3.1 amd64, #772071

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-dicts/wordnet/wordnet-3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
index 634a8a7ef65..652b2015dc5 100644
--- a/app-dicts/wordnet/wordnet-3.1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 LICENSE="Princeton"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
 # In contrast to what the configure script seems to imply, Tcl/Tk is NOT


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2021-04-20 11:59 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2021-04-20 11:59 UTC (permalink / raw
  To: gentoo-commits

commit:     a44cce4eef52cc8b52a79e2c72ce821325b9c9d7
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Apr 20 11:58:17 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Apr 20 11:58:17 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a44cce4e

app-dicts/wordnet: Stabilize 3.1 ppc, #772071

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-dicts/wordnet/wordnet-3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
index 652b2015dc5..e6f8e9318c1 100644
--- a/app-dicts/wordnet/wordnet-3.1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 LICENSE="Princeton"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
 # In contrast to what the configure script seems to imply, Tcl/Tk is NOT


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2021-09-29  7:54 Yixun Lan
  0 siblings, 0 replies; 10+ messages in thread
From: Yixun Lan @ 2021-09-29  7:54 UTC (permalink / raw
  To: gentoo-commits

commit:     6f4ec8db42748b40c4d21059175795545eee9b76
Author:     Alex Fan <alexfanqi <AT> yahoo <DOT> com>
AuthorDate: Mon Sep 27 12:23:26 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 29 07:22:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f4ec8db

app-dicts/wordnet: keyword 3.1 for ~riscv

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

 app-dicts/wordnet/wordnet-3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/wordnet/wordnet-3.1.ebuild b/app-dicts/wordnet/wordnet-3.1.ebuild
index e6f8e9318c1..ff31be0b663 100644
--- a/app-dicts/wordnet/wordnet-3.1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 LICENSE="Princeton"
 
 SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 ppc ~riscv x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc"
 
 # In contrast to what the configure script seems to imply, Tcl/Tk is NOT


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2021-10-16 13:59 David Seifert
  0 siblings, 0 replies; 10+ messages in thread
From: David Seifert @ 2021-10-16 13:59 UTC (permalink / raw
  To: gentoo-commits

commit:     ce13fd747dc1f1ae60a2e0b680d8809ace09c2a7
Author:     David Seifert <soap <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 16 13:58:30 2021 +0000
Commit:     David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Sat Oct 16 13:58:30 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce13fd74

app-dicts/wordnet: drop 3.0-r4, 3.0-r5

Signed-off-by: David Seifert <soap <AT> gentoo.org>

 app-dicts/wordnet/wordnet-3.0-r4.ebuild | 71 -------------------------------
 app-dicts/wordnet/wordnet-3.0-r5.ebuild | 75 ---------------------------------
 2 files changed, 146 deletions(-)

diff --git a/app-dicts/wordnet/wordnet-3.0-r4.ebuild b/app-dicts/wordnet/wordnet-3.0-r4.ebuild
deleted file mode 100644
index 8fc6f3f46f7..00000000000
--- a/app-dicts/wordnet/wordnet-3.0-r4.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit autotools epatch flag-o-matic multilib
-
-DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="https://wordnet.princeton.edu/"
-SRC_URI="
-	ftp://ftp.cogsci.princeton.edu/pub/wordnet/${PV}/WordNet-${PV}.tar.gz
-	mirror://gentoo/${P}-patchset-1.tar.bz2"
-LICENSE="Princeton"
-
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc"
-
-# In contrast to what the configure script seems to imply, Tcl/Tk is NOT optional.
-# cf. bug 163478 for details. (Yes, it's about 2.1 but it's still the same here.)
-DEPEND="
-	dev-lang/tcl:0=
-	dev-lang/tk:0="
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/WordNet-${PV}"
-
-PATCHES=(
-	# Don't install into PREFIX/dict but PREFIX/share/wordnet/dict
-	"${WORKDIR}/${P}-dict-location.patch"
-	# Fixes bug 130024, make an additional shared lib
-	"${WORKDIR}/${P}-shared-lib.patch"
-	# Don't install the docs directly into PREFIX/doc but PREFIX/doc/PN
-	"${WORKDIR}/${P}-docs-path.patch"
-	"${WORKDIR}"/${P}-CVE-2008-3908.patch #211491
-	"${WORKDIR}"/${P}-CVE-2008-2149.patch #211491
-
-	"${FILESDIR}"/${P}-tcl8.6.patch
-	"${FILESDIR}"/${P}-format-security.patch
-	"${FILESDIR}"/${P}-src_stubs_c.patch
-)
-
-src_prepare() {
-	epatch "${PATCHES[@]}"
-	# Don't install all the extra docs (html, pdf, ps) without doc USE flag.
-	if ! use doc; then
-		sed -i -e "s:SUBDIRS =.*:SUBDIRS = man:" doc/Makefile.am || die
-	fi
-
-	# Drop installation of OLD tk.h headers #255590
-	sed '/^SUBDIRS/d' -i include/Makefile.am || die
-	sed 's: include/tk/Makefile::' -i configure.ac || die
-	rm -rf include/tk/ || die
-
-	rm -f configure || die
-	eautoreconf
-	MAKEOPTS+=" -e"
-}
-
-src_configure() {
-	append-cppflags -DUNIX -I"${T}"/usr/include
-
-	PLATFORM=linux WN_ROOT="${T}/usr" \
-	WN_DICTDIR="${T}/usr/share/wordnet/dict" \
-	WN_MANDIR="${T}/usr/share/man" \
-	WN_DOCDIR="${T}/usr/share/doc/wordnet-${PV}" \
-	WNHOME="${EPREFIX}/usr/share/wordnet" \
-	econf \
-		--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
-		--with-tk="${EPREFIX}"/usr/$(get_libdir)
-}

diff --git a/app-dicts/wordnet/wordnet-3.0-r5.ebuild b/app-dicts/wordnet/wordnet-3.0-r5.ebuild
deleted file mode 100644
index fc8af0edea2..00000000000
--- a/app-dicts/wordnet/wordnet-3.0-r5.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools epatch flag-o-matic
-
-DESCRIPTION="A lexical database for the English language"
-HOMEPAGE="https://wordnet.princeton.edu/"
-SRC_URI="
-	http://wordnetcode.princeton.edu/${PV}/WordNet-${PV}.tar.gz
-	mirror://gentoo/${P}-patchset-1.tar.bz2"
-LICENSE="Princeton"
-
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc"
-
-# In contrast to what the configure script seems to imply, Tcl/Tk is NOT
-# optional. cf. bug 163478 for details. (Yes, it's about 2.1 but it's
-# still the same here.)
-DEPEND="
-	dev-lang/tcl:0=
-	dev-lang/tk:0="
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/WordNet-${PV}"
-
-PATCHES=(
-	# Don't install into PREFIX/dict but PREFIX/share/wordnet/dict
-	"${WORKDIR}/${P}-dict-location.patch"
-	# Fixes bug 130024, make an additional shared lib
-	"${WORKDIR}/${P}-shared-lib.patch"
-	# Don't install the docs directly into PREFIX/doc but PREFIX/doc/PN
-	"${WORKDIR}/${P}-docs-path.patch"
-	"${WORKDIR}"/${P}-CVE-2008-3908.patch #211491
-	"${WORKDIR}"/${P}-CVE-2008-2149.patch #211491
-
-	"${FILESDIR}"/${P}-tcl8.6.patch
-	"${FILESDIR}"/${P}-format-security.patch
-	"${FILESDIR}"/${P}-src_stubs_c.patch
-	"${FILESDIR}"/${P}-fix-indexing-bug-314799.patch
-)
-
-src_prepare() {
-	epatch "${PATCHES[@]}"
-	eapply_user
-
-	# Don't install all the extra docs (html, pdf, ps) without doc USE flag.
-	if ! use doc; then
-		sed -i -e "s:SUBDIRS =.*:SUBDIRS = man:" doc/Makefile.am || die
-	fi
-
-	# Drop installation of OLD tk.h headers #255590
-	sed '/^SUBDIRS/d' -i include/Makefile.am || die
-	sed 's: include/tk/Makefile::' -i configure.ac || die
-	rm -rf include/tk/ || die
-
-	rm -f configure || die
-	eautoreconf
-	MAKEOPTS+=" -e"
-}
-
-src_configure() {
-	append-cppflags -DUNIX -I"${T}"/usr/include
-
-	PLATFORM=linux WN_ROOT="${T}/usr" \
-	WN_DICTDIR="${T}/usr/share/wordnet/dict" \
-	WN_MANDIR="${T}/usr/share/man" \
-	WN_DOCDIR="${T}/usr/share/doc/wordnet-${PV}" \
-	WNHOME="${EPREFIX}/usr/share/wordnet" \
-	econf \
-		--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
-		--with-tk="${EPREFIX}"/usr/$(get_libdir)
-}


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

* [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/
@ 2023-07-12 22:11 Sam James
  0 siblings, 0 replies; 10+ messages in thread
From: Sam James @ 2023-07-12 22:11 UTC (permalink / raw
  To: gentoo-commits

commit:     cb9272351e3f684e280d1e946b9848e90329a279
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 12 22:11:01 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Jul 12 22:11:01 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb927235

app-dicts/wordnet: Stabilize 3.1-r1 amd64, #910257

Signed-off-by: Sam James <sam <AT> gentoo.org>

 app-dicts/wordnet/wordnet-3.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-dicts/wordnet/wordnet-3.1-r1.ebuild b/app-dicts/wordnet/wordnet-3.1-r1.ebuild
index f445295b7a54..7e4089827a07 100644
--- a/app-dicts/wordnet/wordnet-3.1-r1.ebuild
+++ b/app-dicts/wordnet/wordnet-3.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ S="${WORKDIR}/WordNet-3.0"
 
 LICENSE="Princeton"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~ppc ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
 # In contrast to what the configure script seems to imply, Tcl/Tk is NOT
 # optional. cf. bug 163478 for details. (Yes, it's about 2.1 but it's


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

end of thread, other threads:[~2023-07-12 22:11 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-20 11:59 [gentoo-commits] repo/gentoo:master commit in: app-dicts/wordnet/ Sam James
  -- strict thread matches above, loose matches on Subject: below --
2023-07-12 22:11 Sam James
2021-10-16 13:59 David Seifert
2021-09-29  7:54 Yixun Lan
2021-04-19 21:26 Sam James
2021-04-19 21:26 Sam James
2018-05-27 16:23 Aaron Bauman
2017-08-06 10:52 Michał Górny
2017-04-26 14:04 Michał Górny
2017-04-26 14:04 Michał Górny

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