diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-01-07 11:47:11 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-01-07 14:46:35 +0100 |
commit | ac0ad5ef61da1e17aff5463425b80b92e3baf237 (patch) | |
tree | cd6e92551386c03fd7477dfa9ab659d86fb2b12d /app-text/libnumbertext | |
parent | net-libs/rpcsvc-proto: add 1.4.3 (diff) | |
download | gentoo-ac0ad5ef61da1e17aff5463425b80b92e3baf237.tar.gz gentoo-ac0ad5ef61da1e17aff5463425b80b92e3baf237.tar.bz2 gentoo-ac0ad5ef61da1e17aff5463425b80b92e3baf237.zip |
app-text/libnumbertext: 1.0.8 version bump
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-text/libnumbertext')
-rw-r--r-- | app-text/libnumbertext/Manifest | 1 | ||||
-rw-r--r-- | app-text/libnumbertext/libnumbertext-1.0.8.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index 0188c3e9fa47..b9cc30a32ff1 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ DIST libnumbertext-1.0.7.tar.xz 289764 BLAKE2B dc7a340dd1843ac77088fd31d4343b570bba0bd5758b939ad228d9d31a7f283ce9c11cf8a504e0c14464bfc6962911b7d1c075122d3efaa7014180a57d419248 SHA512 7755c713dd9b9b75e486eac7ffbfb418c3bdfefd67ecb149f0e25a339410814bf73296f69a4e009a17f9f21292f0eeafa931aef60596cd3d932dab47278de8c2 +DIST libnumbertext-1.0.8.tar.xz 292568 BLAKE2B d385f0bdb19013673190533a21305e12211e1427d59503a9b3c54bc1deda27f405dae347c4cc43161766a901ec14c9ea4b0eed17ba468eb0855ef1a6b0ec95c3 SHA512 b29e544eac25a0603ba7fc68744ac54a372402af32f4bbf52f2373b280efce2eb6831c803d0a10e1f674988839f4c123b8a120e2697bcfa2510d3852d856fe2d diff --git a/app-text/libnumbertext/libnumbertext-1.0.8.ebuild b/app-text/libnumbertext/libnumbertext-1.0.8.ebuild new file mode 100644 index 000000000000..14a4ecfc51f3 --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.8.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Number to number name and money text conversion libraries" +HOMEPAGE="https://github.com/Numbertext/libnumbertext" +SRC_URI="https://github.com/Numbertext/${PN}/releases/download/${PV}/${P}.tar.xz" + +LICENSE="LGPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +IUSE="" + +src_configure() { + econf \ + --disable-werror +} + +src_install() { + default + find "${D}" -name '*.la' -type f -delete || die +} |