Gentoo Archives: gentoo-commits

From: Thomas Deutschmann <whissi@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libestr/
Date: Sat, 03 Nov 2018 22:42:49
Message-Id: 1541284942.1a1333d13d508dbeffdffcd80d35a79fce615dce.whissi@gentoo
1 commit: 1a1333d13d508dbeffdffcd80d35a79fce615dce
2 Author: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 3 19:15:15 2018 +0000
4 Commit: Thomas Deutschmann <whissi <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 3 22:42:22 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1333d1
7
8 dev-libs/libestr: bump to v0.1.11
9
10 Package-Manager: Portage-2.3.51, Repoman-2.3.11
11 Signed-off-by: Thomas Deutschmann <whissi <AT> gentoo.org>
12
13 dev-libs/libestr/Manifest | 1 +
14 dev-libs/libestr/libestr-0.1.11.ebuild | 40 ++++++++++++++++++++++++++++++++++
15 2 files changed, 41 insertions(+)
16
17 diff --git a/dev-libs/libestr/Manifest b/dev-libs/libestr/Manifest
18 index 0ecf5cb2900..ae5c01b4387 100644
19 --- a/dev-libs/libestr/Manifest
20 +++ b/dev-libs/libestr/Manifest
21 @@ -1 +1,2 @@
22 DIST libestr-0.1.10.tar.gz 336122 BLAKE2B 7a157d030415bbdc8c289061c4ce1ddac4fdfd7356e82857afbf9a8d6ff4bee0a0b98f2e39c4adb69a0349c33a29f1cdd90ec901c3501c0fcafb45faecbfea7c SHA512 477b06e2b6ea9b2e34fe0d91328c9191a678b173751e595359c05772db50a4d348ac132bec0c926fba91ceccc013e15cd4cc57a6b734874c06073bf23151bac7
23 +DIST libestr-0.1.11.tar.gz 355544 BLAKE2B c165212c4a56ee577a76dbb95dfe9d08d84087d490422d4fb7c29cadc5b5d0eed97234369331286433e2d860d3cfa8af3117d3ff94e8833df91f6586905ad2c8 SHA512 0ab98c2fa4b58cf6fee89c88602725b8b5e8e5a171a6976cdd8cff4dfc1cd3e5b747868da74fccd1bca66b9fa524ceae1c4f1ad5ee653a44ff81df6916ab5328
24
25 diff --git a/dev-libs/libestr/libestr-0.1.11.ebuild b/dev-libs/libestr/libestr-0.1.11.ebuild
26 new file mode 100644
27 index 00000000000..719c5dac253
28 --- /dev/null
29 +++ b/dev-libs/libestr/libestr-0.1.11.ebuild
30 @@ -0,0 +1,40 @@
31 +# Copyright 1999-2018 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI="7"
35 +
36 +inherit autotools
37 +
38 +DESCRIPTION="Library for some string essentials"
39 +HOMEPAGE="http://libestr.adiscon.com/"
40 +SRC_URI="http://libestr.adiscon.com/files/download/${P}.tar.gz"
41 +
42 +LICENSE="LGPL-2.1"
43 +SLOT="0"
44 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86"
45 +IUSE="debug static-libs test"
46 +
47 +DEPEND=""
48 +RDEPEND="${DEPEND}"
49 +
50 +src_prepare() {
51 + default
52 +
53 + eautoreconf
54 +}
55 +
56 +src_configure() {
57 + local myeconfargs=(
58 + $(use_enable debug)
59 + $(use_enable static-libs static)
60 + $(use_enable test testbench)
61 + )
62 +
63 + econf "${myeconfargs[@]}"
64 +}
65 +
66 +src_install() {
67 + default
68 +
69 + find "${ED%/}"/usr/lib* -name '*.la' -delete || die
70 +}