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 9693A138330 for ; Sun, 27 May 2018 12:34:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 45C49E092D; Sun, 27 May 2018 12:34:57 +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 2166DE092D for ; Sun, 27 May 2018 12:34:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 BDDD3335CC1 for ; Sun, 27 May 2018 12:34:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 11C4E40 for ; Sun, 27 May 2018 12:34:54 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1527424487.6959ad89eb8358457ee751e36f1bff856a68fd9b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-arch/snappy/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-arch/snappy/Manifest app-arch/snappy/snappy-1.1.3-r1.ebuild X-VCS-Directories: app-arch/snappy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 6959ad89eb8358457ee751e36f1bff856a68fd9b X-VCS-Branch: master Date: Sun, 27 May 2018 12:34:54 +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: caf4ffaf-85f4-45a2-85c4-21ada5425d64 X-Archives-Hash: ace3ad9bef09bd39318f6534ce29406a commit: 6959ad89eb8358457ee751e36f1bff856a68fd9b Author: Michał Górny gentoo org> AuthorDate: Sun May 27 12:31:17 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun May 27 12:34:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6959ad89 app-arch/snappy: Revert "Drop old" Revdeps need to be fixed to stop relying on static-libs first. app-arch/snappy/Manifest | 1 + app-arch/snappy/snappy-1.1.3-r1.ebuild | 40 ++++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) diff --git a/app-arch/snappy/Manifest b/app-arch/snappy/Manifest index 60e8583cc5d..8f0b00eb865 100644 --- a/app-arch/snappy/Manifest +++ b/app-arch/snappy/Manifest @@ -1 +1,2 @@ +DIST snappy-1.1.3.tar.gz 1509026 BLAKE2B d8dbb6e92d1788f7b13e6e36aa0297cfcb28d664fb625d0798831ccd00de818675c224821359cc66f38f274da248725737510a85b01a36efe07aa4c9a8bcfda4 SHA512 4c4f47c657a072989179be9df0e5e98d14f4a67c27ec7ae0e5a15d14289a75d4e266bc6c5c89723f3e9860408ffcc7138a815f8ad9299407c4a1946fc00ab5bf DIST snappy-1.1.7.tar.gz 1090550 BLAKE2B e389c96e093de5db92b896a7fa17a90d3ad0be07972e279321f24875f0f0c8c704ff478f4902a6356d458f93c249e3e06424d5a4efc9753a23ab12b7ee83a088 SHA512 32046f532606ba545a4e4825c0c66a19be449f2ca2ff760a6fa170a3603731479a7deadb683546e5f8b5033414c50f4a9a29f6d23b7a41f047e566e69eca7caf diff --git a/app-arch/snappy/snappy-1.1.3-r1.ebuild b/app-arch/snappy/snappy-1.1.3-r1.ebuild new file mode 100644 index 00000000000..56a519b607b --- /dev/null +++ b/app-arch/snappy/snappy-1.1.3-r1.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +inherit autotools multilib-minimal + +DESCRIPTION="A high-speed compression/decompression library by Google" +HOMEPAGE="https://github.com/google/snappy" +SRC_URI="https://github.com/google/${PN}/releases/download/${PV}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 x86 ~amd64-fbsd ~amd64-linux ~x86-linux" +IUSE="static-libs" + +src_prepare() { + # Avoid automagic lzo and gzip by not checking for it + sed -i '/^CHECK_EXT_COMPRESSION_LIB/d' configure.ac || die + + # don't install unwanted files + sed -i 's/COPYING INSTALL//' Makefile.am || die + + default + eautoreconf +} + +multilib_src_configure() { + local myconf=( + --without-gflags + --disable-gtest + $(use_enable static-libs static) + ) + + ECONF_SOURCE=${S} \ + econf "${myconf[@]}" +} + +multilib_src_install_all() { + find "${ED%/}"/usr/lib* -name '*.la' -delete || die +}