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 131741382C5 for ; Wed, 3 Jun 2020 18:47:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D201E0985; Wed, 3 Jun 2020 18:47:12 +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 24883E0985 for ; Wed, 3 Jun 2020 18:47:12 +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 0BDE434EC7F for ; Wed, 3 Jun 2020 18:47:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B65569C for ; Wed, 3 Jun 2020 18:47:09 +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: <1591209886.8b29086e5ffe180c133e78a139fd537354e77341.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libnumbertext/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libnumbertext/Manifest app-text/libnumbertext/libnumbertext-1.0.6.ebuild X-VCS-Directories: app-text/libnumbertext/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 8b29086e5ffe180c133e78a139fd537354e77341 X-VCS-Branch: master Date: Wed, 3 Jun 2020 18:47:09 +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: 3caee200-617e-4b75-ad56-b68f1028f386 X-Archives-Hash: 53b0419f34473f1637a8251ab8e1a257 commit: 8b29086e5ffe180c133e78a139fd537354e77341 Author: Andreas Sturmlechner gentoo org> AuthorDate: Wed Jun 3 16:25:44 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Wed Jun 3 18:44:46 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b29086e app-text/libnumbertext: 1.0.6 version bump Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/libnumbertext/Manifest | 1 + app-text/libnumbertext/libnumbertext-1.0.6.ebuild | 24 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index 451b45940f8..3161d52dbf1 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ DIST libnumbertext-1.0.5.tar.xz 281640 BLAKE2B 5480c72fed80a9d4825b37a876efa8588c8efb187ee5a65629ac800d98a2882312f443736f4c967ee0ae2fc32a0dbe758b1c275378d807df3d1da4cee6dff9bc SHA512 4d61464f26f631d272ef7285fbb931d3931b08240b58166b7e9a28c95ff5a537ca04af4c9673541b73997339d66061858c9cd18873b4c16f9ad2ccd1b68e81a3 +DIST libnumbertext-1.0.6.tar.xz 283416 BLAKE2B d02a521db19a21c6036412f902af7227d7442ca25d38e5e35339f74c8ee6e275ed085aeb4c4f07f998bcdc33ac62be84ce6915dd430594dedad1fa0f65b388b6 SHA512 0b2a5226f363af9a6df90f788f6cdc5fe95ddb524d96ad2db1caf2e7f414649ce2975eae3c9e5fceecbf825a90c736a0717b02ec9671e980ab9cfb3e2df73b8d diff --git a/app-text/libnumbertext/libnumbertext-1.0.6.ebuild b/app-text/libnumbertext/libnumbertext-1.0.6.ebuild new file mode 100644 index 00000000000..f652a58f5a4 --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.6.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 +}