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 B6020138330 for ; Thu, 31 May 2018 21:16:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6B1C2E08EA; Thu, 31 May 2018 21:16:41 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 185FCE08EA for ; Thu, 31 May 2018 21:16: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 D5D0A335C77 for ; Thu, 31 May 2018 21:16:38 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9A972CC for ; Thu, 31 May 2018 21:16:36 +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: <1527801376.cbe7d3f88c590574a686df9a11a7c51ad2f06d3d.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_beta3.ebuild X-VCS-Directories: app-text/libnumbertext/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: cbe7d3f88c590574a686df9a11a7c51ad2f06d3d X-VCS-Branch: master Date: Thu, 31 May 2018 21:16:36 +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-Archives-Salt: 410a6974-78c9-42f8-9955-76564f4d985c X-Archives-Hash: 87d36d714895f5e7654ae13a5f562f21 commit: cbe7d3f88c590574a686df9a11a7c51ad2f06d3d Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu May 31 20:44:34 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu May 31 21:16:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbe7d3f8 app-text/libnumbertext: 1.0_beta3 version bump Package-Manager: Portage-2.3.40, Repoman-2.3.9 app-text/libnumbertext/Manifest | 1 + .../libnumbertext/libnumbertext-1.0_beta3.ebuild | 35 ++++++++++++++++++++++ 2 files changed, 36 insertions(+) diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index 64923abc106..36abe43815c 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ DIST libnumbertext-1.0_beta2.tar.gz 407135 BLAKE2B 6fecc6c885fbd9a2a701e5d3c10d38205e2d66a9e1e26609da8dd3ae92d2a954528ba011e7442fee0f4ffb3035ebe9381076a3eaac368e15a98a02508828997c SHA512 0db0e800495507b6173a134b1d2e681c326df56fc6fdaf5ae9e69e9f10ccfde1ad13b2150fb6120d15bd401c348a58570cbcad1b0be01fd80e24b67a67fd236a +DIST libnumbertext-1.0_beta3.tar.gz 415089 BLAKE2B 2e0e493f9553b363418c9a0003fef8ac20f28d4beebebcfb1beceddc693010dbeeafbfa4f1887feda2861f17a8397a78f8a836d8b87c0af96e1fad2ef3e77d10 SHA512 7afe747a243933c42d4e2c4b9de0d2a2d98bf990decd0f5a6b31b7ffca4a0a76c1d4f657612e50dabe07a1355331595c997e1cdd561760efba5b62779e1adfa1 diff --git a/app-text/libnumbertext/libnumbertext-1.0_beta3.ebuild b/app-text/libnumbertext/libnumbertext-1.0_beta3.ebuild new file mode 100644 index 00000000000..9145fa33adb --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0_beta3.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +DESCRIPTION="Number to number name and money text conversion libraries" +HOMEPAGE="https://github.com/Numbertext/libnumbertext" +SRC_URI="https://github.com/Numbertext/${PN}/archive/${PV/_/.}.tar.gz -> ${P}.tar.gz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug doc test" + +RDEPEND="" +DEPEND="${RDEPEND}" + +S="${WORKDIR}/${P/_/.}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}