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 4D4761382C5 for ; Tue, 15 Jun 2021 07:27:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6191BE0882; Tue, 15 Jun 2021 07:27:51 +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 44104E0882 for ; Tue, 15 Jun 2021 07:27:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 54DDD335D71 for ; Tue, 15 Jun 2021 07:27:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 077A17B2 for ; Tue, 15 Jun 2021 07:27:47 +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: <1623742058.934d766ed30001e2ccd3f142a7469a8cfde924bf.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-dicts/dictd-vera/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild X-VCS-Directories: app-dicts/dictd-vera/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 934d766ed30001e2ccd3f142a7469a8cfde924bf X-VCS-Branch: master Date: Tue, 15 Jun 2021 07:27:47 +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: b8df7825-62f4-4cc2-90cf-a87812f1e399 X-Archives-Hash: 5d4c54a11e3cdee5ad557da3c7e9d1c3 commit: 934d766ed30001e2ccd3f142a7469a8cfde924bf Author: Alessandro Barbieri gmail com> AuthorDate: Sun May 16 16:45:44 2021 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Tue Jun 15 07:27:38 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=934d766e app-dicts/dictd-vera: move data to /usr/share Bug: https://bugs.gentoo.org/790383 Package-Manager: Portage-3.0.18, Repoman-3.0.3 Signed-off-by: Alessandro Barbieri gmail.com> Closes: https://github.com/gentoo/gentoo/pull/20842 Signed-off-by: Joonas Niilola gentoo.org> app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild | 32 ++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild b/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild new file mode 100644 index 00000000000..57e23417d5e --- /dev/null +++ b/app-dicts/dictd-vera/dictd-vera-1.24-r1.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="V.E.R.A. -- Virtual Entity of Relevant Acronyms for dict" +HOMEPAGE="http://home.snafu.de/ohei/vera/vueber-e.html" +SRC_URI="mirror://gnu/vera/vera-${PV}.tar.gz" +S="${WORKDIR}/vera-${PV}" +SLOT="0" +LICENSE="FDL-1.3" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" + +DEPEND=">=app-text/dictd-1.5.5" +RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-U+D7.patch" ) + +src_compile() { + cat vera.[0-9a-z] | dictfmt -f -u http://home.snafu.de/ohei \ + -s "V.E.R.A. -- Virtual Entity of Relevant Acronyms" \ + vera || die + dictzip -v vera.dict || die +} + +src_install() { + insinto /usr/share/dict + doins vera.dict.dz + doins vera.index + + dodoc changelog README +}