Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libnumbertext/
Date: Fri, 06 Jul 2018 06:33:46
Message-Id: 1530858811.45f62bf61bb23e54aa7ca7c65de5a2bab0f105ea.asturm@gentoo
1 commit: 45f62bf61bb23e54aa7ca7c65de5a2bab0f105ea
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 5 22:09:20 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 6 06:33:31 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45f62bf6
7
8 app-text/libnumbertext: 1.0 version bump
9
10 Package-Manager: Portage-2.3.41, Repoman-2.3.9
11
12 app-text/libnumbertext/Manifest | 1 +
13 app-text/libnumbertext/libnumbertext-1.0.ebuild | 33 +++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest
17 index dba3f33812a..54f6629b3db 100644
18 --- a/app-text/libnumbertext/Manifest
19 +++ b/app-text/libnumbertext/Manifest
20 @@ -1 +1,2 @@
21 +DIST libnumbertext-1.0.tar.gz 408181 BLAKE2B ceeba0a98c0d6fbfa92ad37347f7b7cb9887ea516126e35212d61e572a382a56c520406409e08024d53f1520219ec7e986324893b1c2b53330a217319d35ffc7 SHA512 b30f3650ba8cbaa771415026f40b7fc2cf5d9cd956a365d6654b1e2996fe61f714adfda845432e41f61f0fa474b1b60d99cc46cd6b7e42e1dccfd53f5017ae63
22 DIST libnumbertext-1.0_beta3_p20180611.tar.gz 403211 BLAKE2B decdee3357aae20ae023e7e73e7321635afa247a574cec7eff079c9f2002c70d76c53afd22ebd9a4f30484cdfbd844028dd1f206fe894b1df0bba760c7037960 SHA512 031464da9e8fd0a6fe60cf22d70207847482c73a447dc49c679791fbbdf448abb40cfa4ba79671cafc70c75ae89a32db3c98ad77785b5a47af37c5658f66bebd
23
24 diff --git a/app-text/libnumbertext/libnumbertext-1.0.ebuild b/app-text/libnumbertext/libnumbertext-1.0.ebuild
25 new file mode 100644
26 index 00000000000..ad6d58d47eb
27 --- /dev/null
28 +++ b/app-text/libnumbertext/libnumbertext-1.0.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=7
34 +
35 +inherit autotools
36 +
37 +DESCRIPTION="Number to number name and money text conversion libraries"
38 +HOMEPAGE="https://github.com/Numbertext/libnumbertext"
39 +SRC_URI="https://github.com/Numbertext/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
40 +
41 +LICENSE="LGPL-3+"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE=""
45 +
46 +RDEPEND=""
47 +DEPEND="${RDEPEND}"
48 +
49 +src_prepare() {
50 + default
51 + eautoreconf
52 +}
53 +
54 +src_configure() {
55 + econf \
56 + --disable-werror
57 +}
58 +
59 +src_install() {
60 + default
61 + find "${D}" -name '*.la' -delete || die
62 +}