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 F10C91382C5 for ; Thu, 4 Mar 2021 10:56:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43615E0877; Thu, 4 Mar 2021 10:56:30 +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 26022E0877 for ; Thu, 4 Mar 2021 10:56:30 +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 01EF0340F10 for ; Thu, 4 Mar 2021 10:56:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 824494DB for ; Thu, 4 Mar 2021 10:56:27 +0000 (UTC) From: "Andrew Ammerlaan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrew Ammerlaan" Message-ID: <1614855355.baddf1872d10e46372a316b7e75b73acb898314f.andrewammerlaan@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/openfst/ X-VCS-Repository: proj/sci X-VCS-Files: sci-misc/openfst/openfst-1.8.1.ebuild X-VCS-Directories: sci-misc/openfst/ X-VCS-Committer: andrewammerlaan X-VCS-Committer-Name: Andrew Ammerlaan X-VCS-Revision: baddf1872d10e46372a316b7e75b73acb898314f X-VCS-Branch: master Date: Thu, 4 Mar 2021 10:56:27 +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: 70d55eb9-efbd-4cb0-aa4d-e62de475e2a2 X-Archives-Hash: 1d0fe53fc73c5d070401af77abc8ded1 commit: baddf1872d10e46372a316b7e75b73acb898314f Author: Andrew Ammerlaan riseup net> AuthorDate: Thu Mar 4 10:55:55 2021 +0000 Commit: Andrew Ammerlaan riseup net> CommitDate: Thu Mar 4 10:55:55 2021 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=baddf187 sci-misc/openfst: version bump 1.8.1 Package-Manager: Portage-3.0.16, Repoman-3.0.2 Signed-off-by: Andrew Ammerlaan riseup.net> sci-misc/openfst/openfst-1.8.1.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/sci-misc/openfst/openfst-1.8.1.ebuild b/sci-misc/openfst/openfst-1.8.1.ebuild new file mode 100644 index 000000000..16c275e8e --- /dev/null +++ b/sci-misc/openfst/openfst-1.8.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Finite State Transducer tools by Google et al" +HOMEPAGE="http://www.openfst.org" +SRC_URI="http://www.openfst.org/twiki/pub/FST/FstDownload/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +src_configure() { + local myeconfargs=( + --enable-compact-fsts + --enable-compress + --enable-const-fsts + --enable-far + --enable-linear-fsts + --enable-lookahead-fsts + --enable-mpdt + --enable-ngram-fsts + --enable-pdt + --enable-special + --enable-bin + --enable-grm + ) + econf ${myeconfargs[@]} +}