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: Wed, 03 Jun 2020 18:47:13
Message-Id: 1591209886.8b29086e5ffe180c133e78a139fd537354e77341.asturm@gentoo
1 commit: 8b29086e5ffe180c133e78a139fd537354e77341
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 3 16:25:44 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 3 18:44:46 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b29086e
7
8 app-text/libnumbertext: 1.0.6 version bump
9
10 Package-Manager: Portage-2.3.100, Repoman-2.3.22
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 app-text/libnumbertext/Manifest | 1 +
14 app-text/libnumbertext/libnumbertext-1.0.6.ebuild | 24 +++++++++++++++++++++++
15 2 files changed, 25 insertions(+)
16
17 diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest
18 index 451b45940f8..3161d52dbf1 100644
19 --- a/app-text/libnumbertext/Manifest
20 +++ b/app-text/libnumbertext/Manifest
21 @@ -1 +1,2 @@
22 DIST libnumbertext-1.0.5.tar.xz 281640 BLAKE2B 5480c72fed80a9d4825b37a876efa8588c8efb187ee5a65629ac800d98a2882312f443736f4c967ee0ae2fc32a0dbe758b1c275378d807df3d1da4cee6dff9bc SHA512 4d61464f26f631d272ef7285fbb931d3931b08240b58166b7e9a28c95ff5a537ca04af4c9673541b73997339d66061858c9cd18873b4c16f9ad2ccd1b68e81a3
23 +DIST libnumbertext-1.0.6.tar.xz 283416 BLAKE2B d02a521db19a21c6036412f902af7227d7442ca25d38e5e35339f74c8ee6e275ed085aeb4c4f07f998bcdc33ac62be84ce6915dd430594dedad1fa0f65b388b6 SHA512 0b2a5226f363af9a6df90f788f6cdc5fe95ddb524d96ad2db1caf2e7f414649ce2975eae3c9e5fceecbf825a90c736a0717b02ec9671e980ab9cfb3e2df73b8d
24
25 diff --git a/app-text/libnumbertext/libnumbertext-1.0.6.ebuild b/app-text/libnumbertext/libnumbertext-1.0.6.ebuild
26 new file mode 100644
27 index 00000000000..f652a58f5a4
28 --- /dev/null
29 +++ b/app-text/libnumbertext/libnumbertext-1.0.6.ebuild
30 @@ -0,0 +1,24 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +DESCRIPTION="Number to number name and money text conversion libraries"
37 +HOMEPAGE="https://github.com/Numbertext/libnumbertext"
38 +SRC_URI="https://github.com/Numbertext/${PN}/releases/download/${PV}/${P}.tar.xz"
39 +
40 +LICENSE="LGPL-3+"
41 +SLOT="0"
42 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
43 +IUSE=""
44 +
45 +src_configure() {
46 + econf \
47 + --disable-static \
48 + --disable-werror
49 +}
50 +
51 +src_install() {
52 + default
53 + find "${D}" -name '*.la' -type f -delete || die
54 +}