From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 668831382C5 for ; Wed, 16 Jun 2021 05:30:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 21DBBE08F9; Wed, 16 Jun 2021 05:30:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 05E2BE08F9 for ; Wed, 16 Jun 2021 05:30:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8A09F340B35 for ; Wed, 16 Jun 2021 05:30:39 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC78E794 for ; Wed, 16 Jun 2021 05:30:37 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1623821428.1956c7340d53fddd73e81a78cc1380cf74d10d50.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/dictd-wn/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/dictd-wn/dictd-wn-3.0_p33-r1.ebuild X-VCS-Directories: app-dicts/dictd-wn/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 1956c7340d53fddd73e81a78cc1380cf74d10d50 X-VCS-Branch: master Date: Wed, 16 Jun 2021 05:30:37 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 15134bff-8764-435a-a366-e2db7409554b X-Archives-Hash: f8d6418b4fbf16a42cace256dedc3e84 commit: 1956c7340d53fddd73e81a78cc1380cf74d10d50 Author: Alessandro Barbieri gmail com> AuthorDate: Tue Jun 15 12:54:51 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Jun 16 05:30:28 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1956c734 app-dicts/dictd-wn: install files into /usr/share Closes: https://bugs.gentoo.org/790383 Package-Manager: Portage-3.0.19, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> Closes: https://github.com/gentoo/gentoo/pull/21249 Signed-off-by: Joonas Niilola gentoo.org> app-dicts/dictd-wn/dictd-wn-3.0_p33-r1.ebuild | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/app-dicts/dictd-wn/dictd-wn-3.0_p33-r1.ebuild b/app-dicts/dictd-wn/dictd-wn-3.0_p33-r1.ebuild new file mode 100644 index 00000000000..b0efe465234 --- /dev/null +++ b/app-dicts/dictd-wn/dictd-wn-3.0_p33-r1.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit unpacker + +DESCRIPTION="WordNet for dict" +HOMEPAGE="https://wordnet.princeton.edu" +SRC_URI="mirror://debian/pool/main/w/wordnet/dict-wn_${PV/_p/-}_all.deb" +S="${WORKDIR}" +LICENSE="Princeton" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +RDEPEND=">=app-text/dictd-1.5.5" + +src_unpack() { + unpack_deb ${A} +} + +src_install() { + insinto /usr/share/dict + doins usr/share/dictd/{wn.dict.dz,wn.index} +}