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 8E52513835A for ; Thu, 28 May 2020 17:09:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9AA44E080E; Thu, 28 May 2020 17:09:46 +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 80852E080E for ; Thu, 28 May 2020 17:09:46 +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 D84F334F0C1 for ; Thu, 28 May 2020 17:09:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6AD1D21E for ; Thu, 28 May 2020 17:09:42 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1590685741.d59173c0848546884e6ebd49f6861c95a60ceec4.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libnumbertext/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libnumbertext/libnumbertext-1.0.5-r1.ebuild X-VCS-Directories: app-text/libnumbertext/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d59173c0848546884e6ebd49f6861c95a60ceec4 X-VCS-Branch: master Date: Thu, 28 May 2020 17:09:42 +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: 073ee9e5-a546-42df-9fbb-9be1515e58d7 X-Archives-Hash: d675f8aa12b7314bcf8fa19e50e4930e commit: d59173c0848546884e6ebd49f6861c95a60ceec4 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 28 16:07:35 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 28 17:09:01 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d59173c0 app-text/libnumbertext: --disable-static Closes: https://bugs.gentoo.org/723218 Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> .../libnumbertext/libnumbertext-1.0.5-r1.ebuild | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/app-text/libnumbertext/libnumbertext-1.0.5-r1.ebuild b/app-text/libnumbertext/libnumbertext-1.0.5-r1.ebuild new file mode 100644 index 00000000000..a0453adf49f --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.5-r1.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="Number to number name and money text conversion libraries" +HOMEPAGE="https://github.com/Numbertext/libnumbertext" +SRC_URI="https://github.com/Numbertext/${PN}/releases/download/${PV}/${P}.tar.xz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="amd64 ~arm arm64 ~ppc64 x86" +IUSE="" + +src_configure() { + econf \ + --disable-static \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -type f -delete || die +}