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 BD148138334 for ; Wed, 9 Oct 2019 05:22:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6EBF2E082F; Wed, 9 Oct 2019 05:22:04 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 2116BE0831 for ; Wed, 9 Oct 2019 05:22:04 +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 EDD3134BAA8 for ; Wed, 9 Oct 2019 05:22:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42D8D83D for ; Wed, 9 Oct 2019 05:22:00 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1570598484.1e456119483a0255c124ac83e2b519e04949adcb.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libite/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libite/Manifest dev-libs/libite/libite-2.1.0.ebuild X-VCS-Directories: dev-libs/libite/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: 1e456119483a0255c124ac83e2b519e04949adcb X-VCS-Branch: master Date: Wed, 9 Oct 2019 05:22:00 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d4c43033-b06a-40c1-89bb-87bf7c4f2384 X-Archives-Hash: ed50b1fc831af1dc4848da4d82654709 commit: 1e456119483a0255c124ac83e2b519e04949adcb Author: Oz Tiram gmail com> AuthorDate: Sat Oct 5 16:20:47 2019 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Wed Oct 9 05:21:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e456119 dev-libs/libite: bump version to 2.1.0 Closes: https://bugs.gentoo.org/696528 Package-Manager: Portage-2.3.76, Repoman-2.3.16 Signed-off-by: Oz Tiram gmail.com> Closes: https://github.com/gentoo/gentoo/pull/13169 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/libite/Manifest | 1 + dev-libs/libite/libite-2.1.0.ebuild | 23 +++++++++++++++++++++++ 2 files changed, 24 insertions(+) diff --git a/dev-libs/libite/Manifest b/dev-libs/libite/Manifest index cec74c2497b..1c523fdd246 100644 --- a/dev-libs/libite/Manifest +++ b/dev-libs/libite/Manifest @@ -1 +1,2 @@ DIST libite-2.0.0.tar.xz 259960 BLAKE2B 4c5393daaf2ca6eb830fc5f11b1d38e9c1e2374c5f5d87bb973c7e54b9f81480d4a270a4551689806620cd5a84671d1055d409d6dd090acb64bf7fc454d1c283 SHA512 18516f19d36d81169116562b4b27d76240715424cdde9b87eae831f35adb17d70fb01e2eae5e7e9ce99e2c88344c2c15d2b7d11f4ea2e9ae0deb25ee5ee4c563 +DIST libite-2.1.0.tar.xz 265712 BLAKE2B c8a0f2a55bc6e0ae2ad774be67501d2d8ec31927cc107b1b38de409ce78334b9a516727722aa57d615b234edf1057967b2375a96dd947637e987d2583e2efc2a SHA512 dd6b48ed6dc646ce2d17e647179173bf5d3b478db38f05c2133119ce81da9778be8bb277db9beb0e28aeff7f81cb3fc361d3737de31623f6661141efa63d64d3 diff --git a/dev-libs/libite/libite-2.1.0.ebuild b/dev-libs/libite/libite-2.1.0.ebuild new file mode 100644 index 00000000000..285bb078460 --- /dev/null +++ b/dev-libs/libite/libite-2.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A collection of useful BSD APIs" +HOMEPAGE="https://github.com/troglobit/libite" +SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.xz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="static-libs" + +src_configure(){ + econf --enable-static=$(usex static-libs) +} + +src_install(){ + default + find "${D}" -name '*.la' -delete || die + rm "${D}/usr/share/doc/${PF}/LICENSE" || die +}