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 E5CA3139694 for ; Fri, 17 Mar 2017 18:47:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1251421C08A; Fri, 17 Mar 2017 18:47:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 D8D8121C07E for ; Fri, 17 Mar 2017 18:47:05 +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 AB49D3415B7 for ; Fri, 17 Mar 2017 18:47:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 217306BA0 for ; Fri, 17 Mar 2017 18:47:03 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1489776385.9a609ec75673220be26e8ca4f8f7164cf3262aa2.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libzip/, dev-libs/libzip/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libzip/files/libzip-1.1.3-fts.patch dev-libs/libzip/libzip-1.1.3-r1.ebuild X-VCS-Directories: dev-libs/libzip/files/ dev-libs/libzip/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 9a609ec75673220be26e8ca4f8f7164cf3262aa2 X-VCS-Branch: master Date: Fri, 17 Mar 2017 18:47:03 +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: f4810169-901c-4c3c-a038-89076875dd4e X-Archives-Hash: 0b92771e7535d2b154ebeac222498a9e commit: 9a609ec75673220be26e8ca4f8f7164cf3262aa2 Author: A. Wilcox Wilcox-Tech com> AuthorDate: Sat Feb 25 22:47:58 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Mar 17 18:46:25 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a609ec7 dev-libs/libzip: Use fts-standalone on musl libc Gentoo-bug: 610936 Package-Manager: portage-2.3.1 dev-libs/libzip/files/libzip-1.1.3-fts.patch | 11 +++++++++ dev-libs/libzip/libzip-1.1.3-r1.ebuild | 35 ++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) diff --git a/dev-libs/libzip/files/libzip-1.1.3-fts.patch b/dev-libs/libzip/files/libzip-1.1.3-fts.patch new file mode 100644 index 00000000000..bd9bf232c0a --- /dev/null +++ b/dev-libs/libzip/files/libzip-1.1.3-fts.patch @@ -0,0 +1,11 @@ +--- a/configure.ac 2016-05-28 10:35:31.000000000 +0100 ++++ b/configure.ac 2017-02-25 23:34:22.309684397 +0100 +@@ -65,6 +65,8 @@ + AC_DEFINE([HAVE___PROGNAME], [1], [Define if libc defines __progname]) + fi + ++AC_SEARCH_LIBS(fts_open, fts) ++ + AC_CACHE_CHECK([whether we are building for a Win32 host], [ac_cv_win32_host], + AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#ifdef _WIN32 + choke me diff --git a/dev-libs/libzip/libzip-1.1.3-r1.ebuild b/dev-libs/libzip/libzip-1.1.3-r1.ebuild new file mode 100644 index 00000000000..ecc3aa63760 --- /dev/null +++ b/dev-libs/libzip/libzip-1.1.3-r1.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="Library for manipulating zip archives" +HOMEPAGE="http://www.nih.at/libzip/" +SRC_URI="http://www.nih.at/libzip/${P}.tar.xz" + +LICENSE="BSD" +SLOT="0/4" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos" +IUSE="static-libs" + +RDEPEND=" + sys-libs/zlib + elibc_musl? ( sys-libs/fts-standalone ) +" +DEPEND="${RDEPEND} + app-arch/xz-utils +" + +DOCS=( AUTHORS NEWS.md API-CHANGES THANKS ) + +PATCHES=( + "${FILESDIR}/${PN}-1.1.3-headers.patch" + "${FILESDIR}/${PN}-1.1.3-fts.patch" +) + +src_prepare() { + default + eautoreconf +}