diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2022-04-07 14:36:46 +0200 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2022-04-07 16:21:22 +0200 |
commit | 7cb35b13746e8fd6fb0f41a6413b5c1e93acc13d (patch) | |
tree | 1b85d3804d62fb850fd2b9dd6e68e78f9af3cfef /app-text/libnumbertext | |
parent | app-emacs/deft: new package; add version 08_p20210707 (diff) | |
download | gentoo-7cb35b13746e8fd6fb0f41a6413b5c1e93acc13d.tar.gz gentoo-7cb35b13746e8fd6fb0f41a6413b5c1e93acc13d.tar.bz2 gentoo-7cb35b13746e8fd6fb0f41a6413b5c1e93acc13d.zip |
app-text/libnumbertext: 1.0.10 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.10.ebuild | 23 |
2 files changed, 24 insertions, 0 deletions
diff --git a/app-text/libnumbertext/Manifest b/app-text/libnumbertext/Manifest index db700863ca04..c9ce7a60f588 100644 --- a/app-text/libnumbertext/Manifest +++ b/app-text/libnumbertext/Manifest @@ -1 +1,2 @@ +DIST libnumbertext-1.0.10.tar.xz 292852 BLAKE2B 1dfc5bd974525a3923325357c30cc80ecac0be856288cfc9effe13a0cda5f45eba22b333b606113bea8dff0bc08333a4b203f539b860ec48e214c35bc4dacb41 SHA512 6cb1b09b43c77f9fe1928d72deabdd06cbb3f7185823fcf045855b26ea6e0e017b2eba9dcd4725161012ed6d37a416c98b838145aa418bd0bd79ce52bf456417 DIST libnumbertext-1.0.8.tar.xz 292568 BLAKE2B d385f0bdb19013673190533a21305e12211e1427d59503a9b3c54bc1deda27f405dae347c4cc43161766a901ec14c9ea4b0eed17ba468eb0855ef1a6b0ec95c3 SHA512 b29e544eac25a0603ba7fc68744ac54a372402af32f4bbf52f2373b280efce2eb6831c803d0a10e1f674988839f4c123b8a120e2697bcfa2510d3852d856fe2d diff --git a/app-text/libnumbertext/libnumbertext-1.0.10.ebuild b/app-text/libnumbertext/libnumbertext-1.0.10.ebuild new file mode 100644 index 000000000000..14a4ecfc51f3 --- /dev/null +++ b/app-text/libnumbertext/libnumbertext-1.0.10.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 +} |