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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0BC5E158086 for ; Sun, 14 Nov 2021 13:48:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE1EDE0AB4; Sun, 14 Nov 2021 13:48:16 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C2DADE0AB4 for ; Sun, 14 Nov 2021 13:48:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C77D3434C4 for ; Sun, 14 Nov 2021 13:48:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B10071CE for ; Sun, 14 Nov 2021 13:48:10 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1636897412.c907c6d35aec14600d78360eb39fc1d461a757d2.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/bareos-fastlzlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild X-VCS-Directories: dev-libs/bareos-fastlzlib/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: c907c6d35aec14600d78360eb39fc1d461a757d2 X-VCS-Branch: master Date: Sun, 14 Nov 2021 13:48:10 +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: 48845a1e-6232-47eb-8671-1c7640eee3f5 X-Archives-Hash: 5615b403996cd0f864887732df307395 commit: c907c6d35aec14600d78360eb39fc1d461a757d2 Author: Jakov Smolić gentoo org> AuthorDate: Sun Nov 14 13:43:32 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Sun Nov 14 13:43:32 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c907c6d3 dev-libs/bareos-fastlzlib: Port to EAPI 8 Closes: https://bugs.gentoo.org/819603 Signed-off-by: Jakov Smolić gentoo.org> .../bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/dev-libs/bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild b/dev-libs/bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild index 135154284534..c7361486d41f 100644 --- a/dev-libs/bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild +++ b/dev-libs/bareos-fastlzlib/bareos-fastlzlib-0_pre20150524.ebuild @@ -1,30 +1,27 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 DESCRIPTION="Fork of zlib-like interface to fast block compression (LZ4 or FastLZ) libraries" HOMEPAGE="https://github.com/bareos/fastlzlib" SRC_URI="https://dev.gentoo.org/~mschiff/distfiles/${P}.zip" +S="${WORKDIR}/fastlzlib-master" LICENSE="BSD-1 BSD-2" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="" -DEPEND="" -RDEPEND="${DEPEND} +RDEPEND=" !app-arch/lz4 " -S="${WORKDIR}/fastlzlib-master" - src_configure() { econf --disable-static } src_install() { - emake DESTDIR="${D}" install + default find "${ED}" -name '*.la' -delete || die - find "${D}" -type d -name libfastlz -exec rm -rf {} + + find "${ED}" -type d -name libfastlz -exec rm -rf {} + || die }