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 28173139085 for ; Sat, 14 Jan 2017 01:36:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 83743E0DA6; Sat, 14 Jan 2017 01:36:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 60094E0DA6 for ; Sat, 14 Jan 2017 01:36:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 557EF341827 for ; Sat, 14 Jan 2017 01:36:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7F7042637 for ; Sat, 14 Jan 2017 01:36:21 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1484357756.2a8b932a7c58338e111b42f6049c1d1ce75abef8.blueness@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-libs/fts-standalone/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-libs/fts-standalone/Manifest sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild X-VCS-Directories: sys-libs/fts-standalone/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 2a8b932a7c58338e111b42f6049c1d1ce75abef8 X-VCS-Branch: master Date: Sat, 14 Jan 2017 01:36:21 +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: 90fd4eb1-ffa8-489d-ad77-eb2dcbbbec1d X-Archives-Hash: 2b7903f508036591328aac4e488f1880 commit: 2a8b932a7c58338e111b42f6049c1d1ce75abef8 Author: Aric Belsito gmail com> AuthorDate: Thu Jan 12 20:52:17 2017 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Jan 14 01:35:56 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a8b932a sys-libs/fts-standalone: Switch to musl-fts sys-libs/fts-standalone/Manifest | 1 + .../fts-standalone/fts-standalone-1.2.7.ebuild | 38 ++++++++++++++++++++++ 2 files changed, 39 insertions(+) diff --git a/sys-libs/fts-standalone/Manifest b/sys-libs/fts-standalone/Manifest index 4f58f86..25515d6 100644 --- a/sys-libs/fts-standalone/Manifest +++ b/sys-libs/fts-standalone/Manifest @@ -1 +1,2 @@ DIST fts-0.2.tar.gz 339498 SHA256 4ee5db6449dc0fa4a83438616fd4bbed0f65b2123e56ac253cba5b25dbd9e056 SHA512 4f31182f4ebce7f663db893def0e2380b87ef1a262a021837fc6fc9965803a829217142df140c67b1cd83b292eb8862fa0a470cf795a312494674e6e94f02f79 WHIRLPOOL 23a55fc572189d827fc35849205296ac39d83d74ccab9431fb47b1eab7e2da8e196aca50b8161e9b9ea4a2f0e7471676a4f229f8c510c4b6af023beb5a5657b4 +DIST fts-standalone-1.2.7.tar.gz 19336 SHA256 49ae567a96dbab22823d045ffebe0d6b14b9b799925e9ca9274d47d26ff482a6 SHA512 949f73b9406b06bd8712c721b4ec89afcb37d4eaef5666cccf3712242d3a57fc0acf3ca994934e0f57c1e92f40521a9370132a21eb6d1957415a83c76bf20feb WHIRLPOOL c2ae59855a8093ca789d3d26e1300c89d8ca11cc4e60714e4a0364181feb82b9380beba8e034311ea0df13a62a64a6cbfbc485fc79b1c84c021895eb60c43d19 diff --git a/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild new file mode 100644 index 00000000..3922920 --- /dev/null +++ b/sys-libs/fts-standalone/fts-standalone-1.2.7.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit autotools + +DESCRIPTION="Standalone fts library for use with musl" +HOMEPAGE="https://github.com/pullmoll/musl-fts" +SRC_URI="https://github.com/pullmoll/musl-fts/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86" +IUSE="static-libs" + +DEPEND=" + !sys-libs/glibc + !sys-libs/uclibc" + +S="${WORKDIR}/musl-fts-${PV}" + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die + mv "${ED%/}"/usr/$(get_libdir)/pkgconfig/{musl-fts,fts-standalone}.pc || die +}