From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 53195138334 for ; Sat, 3 Nov 2018 22:42:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26B44E09A5; Sat, 3 Nov 2018 22:42:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 00E93E09A5 for ; Sat, 3 Nov 2018 22:42:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2B61F335CA3 for ; Sat, 3 Nov 2018 22:42:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6779F449 for ; Sat, 3 Nov 2018 22:42:44 +0000 (UTC) From: "Thomas Deutschmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Deutschmann" Message-ID: <1541284942.1a1333d13d508dbeffdffcd80d35a79fce615dce.whissi@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libestr/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libestr/Manifest dev-libs/libestr/libestr-0.1.11.ebuild X-VCS-Directories: dev-libs/libestr/ X-VCS-Committer: whissi X-VCS-Committer-Name: Thomas Deutschmann X-VCS-Revision: 1a1333d13d508dbeffdffcd80d35a79fce615dce X-VCS-Branch: master Date: Sat, 3 Nov 2018 22:42:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 291a48f4-040b-445d-b377-25cf368f36c0 X-Archives-Hash: cf075fb89a6eae6289b954d6083c1f29 commit: 1a1333d13d508dbeffdffcd80d35a79fce615dce Author: Thomas Deutschmann gentoo org> AuthorDate: Sat Nov 3 19:15:15 2018 +0000 Commit: Thomas Deutschmann gentoo org> CommitDate: Sat Nov 3 22:42:22 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a1333d1 dev-libs/libestr: bump to v0.1.11 Package-Manager: Portage-2.3.51, Repoman-2.3.11 Signed-off-by: Thomas Deutschmann gentoo.org> dev-libs/libestr/Manifest | 1 + dev-libs/libestr/libestr-0.1.11.ebuild | 40 ++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/dev-libs/libestr/Manifest b/dev-libs/libestr/Manifest index 0ecf5cb2900..ae5c01b4387 100644 --- a/dev-libs/libestr/Manifest +++ b/dev-libs/libestr/Manifest @@ -1 +1,2 @@ DIST libestr-0.1.10.tar.gz 336122 BLAKE2B 7a157d030415bbdc8c289061c4ce1ddac4fdfd7356e82857afbf9a8d6ff4bee0a0b98f2e39c4adb69a0349c33a29f1cdd90ec901c3501c0fcafb45faecbfea7c SHA512 477b06e2b6ea9b2e34fe0d91328c9191a678b173751e595359c05772db50a4d348ac132bec0c926fba91ceccc013e15cd4cc57a6b734874c06073bf23151bac7 +DIST libestr-0.1.11.tar.gz 355544 BLAKE2B c165212c4a56ee577a76dbb95dfe9d08d84087d490422d4fb7c29cadc5b5d0eed97234369331286433e2d860d3cfa8af3117d3ff94e8833df91f6586905ad2c8 SHA512 0ab98c2fa4b58cf6fee89c88602725b8b5e8e5a171a6976cdd8cff4dfc1cd3e5b747868da74fccd1bca66b9fa524ceae1c4f1ad5ee653a44ff81df6916ab5328 diff --git a/dev-libs/libestr/libestr-0.1.11.ebuild b/dev-libs/libestr/libestr-0.1.11.ebuild new file mode 100644 index 00000000000..719c5dac253 --- /dev/null +++ b/dev-libs/libestr/libestr-0.1.11.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2018 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +inherit autotools + +DESCRIPTION="Library for some string essentials" +HOMEPAGE="http://libestr.adiscon.com/" +SRC_URI="http://libestr.adiscon.com/files/download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~x86" +IUSE="debug static-libs test" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_prepare() { + default + + eautoreconf +} + +src_configure() { + local myeconfargs=( + $(use_enable debug) + $(use_enable static-libs static) + $(use_enable test testbench) + ) + + econf "${myeconfargs[@]}" +} + +src_install() { + default + + find "${ED%/}"/usr/lib* -name '*.la' -delete || die +}