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: Tue, 12 Jun 2018 16:30:04
Message-Id: 1528820989.5da9d3a8d79c69b526e8add0e145febfe7a70cb2.asturm@gentoo
1 commit: 5da9d3a8d79c69b526e8add0e145febfe7a70cb2
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jun 12 15:37:25 2018 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 12 16:29:49 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5da9d3a8
7
8 app-text/libnumbertext: Add 1.0_beta3_p20180611 snapshot bump
9
10 Instead of multiple patching of the broken beta3.
11
12 Package-Manager: Portage-2.3.40, Repoman-2.3.9
13
14 app-text/libnumbertext/Manifest | 1 +
15 .../libnumbertext-1.0_beta3_p20180611.ebuild | 36 ++++++++++++++++++++++
16 2 files changed, 37 insertions(+)
17
18 diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest
19 index 8790fb44c46..b9db9ce0f75 100644
20 --- a/app-text/libnumbertext/Manifest
21 +++ b/app-text/libnumbertext/Manifest
22 @@ -1 +1,2 @@
23 DIST libnumbertext-1.0_beta3.tar.gz 415089 BLAKE2B 2e0e493f9553b363418c9a0003fef8ac20f28d4beebebcfb1beceddc693010dbeeafbfa4f1887feda2861f17a8397a78f8a836d8b87c0af96e1fad2ef3e77d10 SHA512 7afe747a243933c42d4e2c4b9de0d2a2d98bf990decd0f5a6b31b7ffca4a0a76c1d4f657612e50dabe07a1355331595c997e1cdd561760efba5b62779e1adfa1
24 +DIST libnumbertext-1.0_beta3_p20180611.tar.gz 403211 BLAKE2B decdee3357aae20ae023e7e73e7321635afa247a574cec7eff079c9f2002c70d76c53afd22ebd9a4f30484cdfbd844028dd1f206fe894b1df0bba760c7037960 SHA512 031464da9e8fd0a6fe60cf22d70207847482c73a447dc49c679791fbbdf448abb40cfa4ba79671cafc70c75ae89a32db3c98ad77785b5a47af37c5658f66bebd
25
26 diff --git a/app-text/libnumbertext/libnumbertext-1.0_beta3_p20180611.ebuild b/app-text/libnumbertext/libnumbertext-1.0_beta3_p20180611.ebuild
27 new file mode 100644
28 index 00000000000..952934d6ba8
29 --- /dev/null
30 +++ b/app-text/libnumbertext/libnumbertext-1.0_beta3_p20180611.ebuild
31 @@ -0,0 +1,36 @@
32 +# Copyright 1999-2018 Gentoo Foundation
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +COMMIT=53ee927a1d431aea09a4f844213d608d8c10defd
38 +inherit autotools
39 +
40 +DESCRIPTION="Number to number name and money text conversion libraries"
41 +HOMEPAGE="https://github.com/Numbertext/libnumbertext"
42 +SRC_URI="https://github.com/Numbertext/${PN}/archive/${COMMIT}.tar.gz -> ${P}.tar.gz"
43 +
44 +LICENSE="LGPL-3+"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="debug doc test"
48 +
49 +RDEPEND=""
50 +DEPEND="${RDEPEND}"
51 +
52 +S="${WORKDIR}/${PN}-${COMMIT}"
53 +
54 +src_prepare() {
55 + default
56 + eautoreconf
57 +}
58 +
59 +src_configure() {
60 + econf \
61 + --disable-werror
62 +}
63 +
64 +src_install() {
65 + default
66 + find "${D}" -name '*.la' -delete || die
67 +}