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 8D332138334 for ; Fri, 6 Jul 2018 06:33:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4DCA2E0AF2; Fri, 6 Jul 2018 06:33:45 +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 12E56E0AFC for ; Fri, 6 Jul 2018 06:33:45 +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 49907335C97 for ; Fri, 6 Jul 2018 06:33:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC201360 for ; Fri, 6 Jul 2018 06:33:40 +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: <1530858811.45f62bf61bb23e54aa7ca7c65de5a2bab0f105ea.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.ebuild X-VCS-Directories: app-text/libnumbertext/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 45f62bf61bb23e54aa7ca7c65de5a2bab0f105ea X-VCS-Branch: master Date: Fri, 6 Jul 2018 06:33:40 +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: 5f9a72e2-6363-4c5f-b00c-d2668e2f2469 X-Archives-Hash: feecdce61180df7219752debec3f8043 commit: 45f62bf61bb23e54aa7ca7c65de5a2bab0f105ea Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Jul 5 22:09:20 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jul 6 06:33:31 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f62bf6 app-text/libnumbertext: 1.0 version bump Package-Manager: Portage-2.3.41, Repoman-2.3.9 app-text/libnumbertext/Manifest | 1 + app-text/libnumbertext/libnumbertext-1.0.ebuild | 33 +++++++++++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index dba3f33812a..54f6629b3db 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ +DIST libnumbertext-1.0.tar.gz 408181 BLAKE2B ceeba0a98c0d6fbfa92ad37347f7b7cb9887ea516126e35212d61e572a382a56c520406409e08024d53f1520219ec7e986324893b1c2b53330a217319d35ffc7 SHA512 b30f3650ba8cbaa771415026f40b7fc2cf5d9cd956a365d6654b1e2996fe61f714adfda845432e41f61f0fa474b1b60d99cc46cd6b7e42e1dccfd53f5017ae63 DIST libnumbertext-1.0_beta3_p20180611.tar.gz 403211 BLAKE2B decdee3357aae20ae023e7e73e7321635afa247a574cec7eff079c9f2002c70d76c53afd22ebd9a4f30484cdfbd844028dd1f206fe894b1df0bba760c7037960 SHA512 031464da9e8fd0a6fe60cf22d70207847482c73a447dc49c679791fbbdf448abb40cfa4ba79671cafc70c75ae89a32db3c98ad77785b5a47af37c5658f66bebd diff --git a/app-text/libnumbertext/libnumbertext-1.0.ebuild b/app-text/libnumbertext/libnumbertext-1.0.ebuild new file mode 100644 index 00000000000..ad6d58d47eb --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.ebuild @@ -0,0 +1,33 @@ +# 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="" + +RDEPEND="" +DEPEND="${RDEPEND}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}