public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Mart Raudsepp" <leio@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/link-grammar/
Date: Mon, 30 Oct 2017 22:26:18 +0000 (UTC)	[thread overview]
Message-ID: <1509402315.2d09596d0b6cbd34a9a4f133f82b3b3c31e663a0.leio@gentoo> (raw)

commit:     2d09596d0b6cbd34a9a4f133f82b3b3c31e663a0
Author:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 30 20:44:30 2017 +0000
Commit:     Mart Raudsepp <leio <AT> gentoo <DOT> org>
CommitDate: Mon Oct 30 22:25:15 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d09596d

dev-libs/link-grammar: remove old

Package-Manager: Portage-2.3.8, Repoman-2.3.2

 dev-libs/link-grammar/Manifest                   |   1 -
 dev-libs/link-grammar/link-grammar-5.3.10.ebuild | 155 -----------------------
 2 files changed, 156 deletions(-)

diff --git a/dev-libs/link-grammar/Manifest b/dev-libs/link-grammar/Manifest
index fb34a93c186..26ae979fde2 100644
--- a/dev-libs/link-grammar/Manifest
+++ b/dev-libs/link-grammar/Manifest
@@ -1,2 +1 @@
-DIST link-grammar-5.3.10.tar.gz 3612522 SHA256 7ead9a5190cfac2f8a0f8b2608fd48b6d71a50aa55cb4fedd3f52e85a4df0a95 SHA512 b91c79c6c668c7d1ccb0f29e3762e4426f082421fc3a15e77bfacbc3681d4f969db7015010504dc8418e4d8c90847ed156bcc0ea01fd6589ef31c4d35af6e989 WHIRLPOOL 3c1d05f3523e6b411b653803c4f2490078d3a227eec3fc4497c0d801127c00fe3eca7bb9d1b868b2c776b59829ea96da42ceee70d24d6617f9040b0164dfe1bc
 DIST link-grammar-5.3.11.tar.gz 3632617 SHA256 73ca3ae82ec7ddbfce827eb7017a2953afea2cea854b4d7517139881e1170cd7 SHA512 09671d187deac3b9530dd63eb4497de9c2c9db32d79da06c677bdbccac015adef06813819692a92d15499c7cb347071c58b73c52505af154bdc8a8fcd409ddd2 WHIRLPOOL c4f1cfa11d7d1b07dfdd15d9798789fd5c7b2d8f79d12e717c9b92527757b7b9e67c9813deb8aac93e60a145c0783c23f3ee9654e570858ec428af094ba95831

diff --git a/dev-libs/link-grammar/link-grammar-5.3.10.ebuild b/dev-libs/link-grammar/link-grammar-5.3.10.ebuild
deleted file mode 100644
index fdfa8ffeb61..00000000000
--- a/dev-libs/link-grammar/link-grammar-5.3.10.ebuild
+++ /dev/null
@@ -1,155 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit autotools eutils gnome2 java-pkg-opt-2 python-r1
-
-DESCRIPTION="A Syntactic English parser"
-HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/"
-SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE="aspell +hunspell java python static-libs threads"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-	aspell? ( app-text/aspell )
-	hunspell? ( app-text/hunspell )
-	java? (
-		>=virtual/jdk-1.6:*
-		dev-java/ant-core )
-	python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}
-	dev-lang/swig:0
-	sys-devel/autoconf-archive
-	virtual/pkgconfig
-"
-
-NORMAL_BUILD_DIR="${WORKDIR}/${P}-normal"
-
-pkg_setup() {
-	if use aspell && use hunspell; then
-		ewarn "You have enabled 'aspell' and 'hunspell' support, but both cannot coexist,"
-		ewarn "only hunspell will be built. Press Ctrl+C and set only 'aspell' USE flag if"
-		ewarn "you want aspell support."
-	fi
-	use java && java-pkg-opt-2_pkg_setup
-}
-
-src_prepare() {
-	use java && java-pkg-opt-2_src_prepare
-
-	# http://bugzilla.abisource.com/show_bug.cgi?id=13806
-	eapply "${FILESDIR}"/${PN}-5.3.9-out-of-source-build.patch
-	eautoreconf
-
-	if use python ; then
-		prepare_python() {
-			mkdir -p "${BUILD_DIR}" || die
-		}
-		python_foreach_impl prepare_python
-	fi
-
-	mkdir -p "${NORMAL_BUILD_DIR}" || die
-	gnome2_src_prepare
-}
-
-src_configure() {
-	local myconf=(
-		--disable-editline
-		--disable-perl-bindings
-		--enable-shared
-		$(use_enable aspell)
-		$(use_enable hunspell)
-		$(usex hunspell --with-hunspell-dictdir=/usr/share/myspell)
-		$(use_enable java java-bindings)
-		$(use_enable static-libs static)
-		$(use_enable threads pthreads)
-	)
-
-	cd "${NORMAL_BUILD_DIR}" || die
-	ECONF_SOURCE="${S}" gnome2_src_configure \
-		--disable-python-bindings \
-		--disable-python3-bindings \
-		${myconf[@]}
-
-	if use python ; then
-		prepare_python() {
-			if python_is_python3; then
-				ECONF_SOURCE="${S}" gnome2_src_configure \
-					--disable-python-bindings \
-					--enable-python3-bindings \
-					${myconf[@]}
-			else
-				ECONF_SOURCE="${S}" gnome2_src_configure \
-					--enable-python-bindings \
-					--disable-python3-bindings \
-					${myconf[@]}
-			fi
-		}
-		python_foreach_impl run_in_build_dir prepare_python
-	fi
-}
-
-src_compile() {
-	cd "${NORMAL_BUILD_DIR}" || die
-	gnome2_src_compile
-
-	if use python ; then
-		compile_binding() {
-			local pysuffix
-			if python_is_python3; then
-				pysuffix=3
-			else
-				pysuffix=
-			fi
-
-			emake -C bindings/python$pysuffix \
-				VPATH="${S}:${NORMAL_BUILD_DIR}" \
-				_clinkgrammar_la_DEPENDENCIES="${NORMAL_BUILD_DIR}"/link-grammar/liblink-grammar.la \
-				_clinkgrammar_la_LIBADD="${NORMAL_BUILD_DIR}"/link-grammar/liblink-grammar.la
-		}
-		python_foreach_impl run_in_build_dir compile_binding
-	fi
-}
-
-src_test() {
-	cd "${NORMAL_BUILD_DIR}" || die
-	ln -s "${S}"/data tests/data || die
-	emake check
-}
-
-src_install() {
-	cd "${NORMAL_BUILD_DIR}" || die
-	gnome2_src_install
-
-	if use python ; then
-		install_binding() {
-			local pysuffix
-			if python_is_python3; then
-				pysuffix=3
-			else
-				pysuffix=
-			fi
-
-			emake -C bindings/python$pysuffix \
-				VPATH="${S}:${NORMAL_BUILD_DIR}" \
-				_clinkgrammar_la_DEPENDENCIES="${NORMAL_BUILD_DIR}"/link-grammar/liblink-grammar.la \
-				_clinkgrammar_la_LIBADD="${NORMAL_BUILD_DIR}"/link-grammar/liblink-grammar.la \
-				DESTDIR="${D}" \
-				install
-		}
-		python_foreach_impl run_in_build_dir install_binding
-	fi
-}
-
-pkg_preinst() {
-	use java && java-pkg-opt-2_pkg_preinst
-	gnome2_pkg_preinst
-}


             reply	other threads:[~2017-10-30 22:26 UTC|newest]

Thread overview: 62+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-10-30 22:26 Mart Raudsepp [this message]
  -- strict thread matches above, loose matches on Subject: below --
2024-11-13 11:22 [gentoo-commits] repo/gentoo:master commit in: dev-libs/link-grammar/ David Seifert
2024-11-13 11:22 David Seifert
2024-11-08  2:49 Sam James
2024-11-03 18:28 Sam James
2024-11-03 18:28 Sam James
2024-07-04 13:31 David Seifert
2024-06-03  7:51 David Seifert
2024-05-28 13:19 Sam James
2024-05-28 12:11 Michał Górny
2024-05-11 16:22 David Seifert
2024-02-15  9:26 David Seifert
2023-08-02 16:18 Sam James
2023-05-04 11:01 David Seifert
2023-04-27 23:29 Sam James
2023-04-27 21:29 Sam James
2023-04-27 21:29 Sam James
2023-03-26 10:23 David Seifert
2023-03-25 11:03 David Seifert
2023-02-19 11:45 David Seifert
2023-02-11 17:54 Sam James
2023-02-11 17:54 Sam James
2023-02-11 17:54 Sam James
2023-01-13 19:03 Arthur Zamarin
2022-12-24  0:19 Matt Turner
2022-11-05 18:58 Arthur Zamarin
2022-10-30  1:50 Matt Turner
2022-10-07  8:24 David Seifert
2022-08-15 17:04 Arthur Zamarin
2022-07-03 10:31 David Seifert
2022-07-03 10:31 David Seifert
2022-06-20 19:55 Matt Turner
2022-04-11  6:35 Jakov Smolić
2022-04-10 17:47 Arthur Zamarin
2022-03-19  7:53 Agostino Sarubbo
2022-03-10  9:13 Agostino Sarubbo
2022-03-10  8:36 David Seifert
2022-01-22 13:12 David Seifert
2022-01-22 13:12 David Seifert
2022-01-22 12:34 David Seifert
2022-01-22 12:34 David Seifert
2021-12-13  5:54 Yixun Lan
2021-06-23 21:33 David Seifert
2020-12-14  0:46 Sam James
2020-09-28 17:41 Sergei Trofimovich
2020-09-04  3:20 Sam James
2020-09-03 14:29 Thomas Deutschmann
2020-07-03 23:22 Aaron Bauman
2020-04-04 11:07 Sergei Trofimovich
2020-02-10 21:00 Michał Górny
2018-06-27 20:32 Pacho Ramos
2017-12-10  0:36 Sergei Trofimovich
2017-03-16 13:24 Jeroen Roovers
2017-02-15 19:24 Mart Raudsepp
2016-10-16 22:23 Gilles Dartiguelongue
2016-09-17 13:32 Pacho Ramos
2016-09-11 11:28 Gilles Dartiguelongue
2016-07-30 10:27 Jeroen Roovers
2016-02-21 10:46 Pacho Ramos
2016-02-17 21:34 Dennis Lamm
2016-02-17 19:34 Dennis Lamm
2016-02-14 23:25 Dennis Lamm

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1509402315.2d09596d0b6cbd34a9a4f133f82b3b3c31e663a0.leio@gentoo \
    --to=leio@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox