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 1719A138346 for ; Sun, 5 Jan 2020 15:18:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1911EE086E; Sun, 5 Jan 2020 15:18:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 E255AE0841 for ; Sun, 5 Jan 2020 15:18:05 +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 9912D34DDBD for ; Sun, 5 Jan 2020 15:18:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 420533D for ; Sun, 5 Jan 2020 15:18:02 +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: <1578237474.7fb85227fef3dd540f1b84bc831a28464e4b0932.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/squashdelta/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/squashdelta/squashdelta-0.1.1.ebuild dev-util/squashdelta/squashdelta-9999.ebuild X-VCS-Directories: dev-util/squashdelta/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7fb85227fef3dd540f1b84bc831a28464e4b0932 X-VCS-Branch: master Date: Sun, 5 Jan 2020 15:18:02 +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: 2acb22b9-89f9-4e7e-8937-47a402e36718 X-Archives-Hash: a84601928decbc3a6f1432bd431abf81 commit: 7fb85227fef3dd540f1b84bc831a28464e4b0932 Author: Michał Górny gentoo org> AuthorDate: Sun Jan 5 14:46:48 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Jan 5 15:17:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb85227 dev-util/squashdelta: Bump to EAPI 7 Signed-off-by: Michał Górny gentoo.org> dev-util/squashdelta/squashdelta-0.1.1.ebuild | 9 ++++----- dev-util/squashdelta/squashdelta-9999.ebuild | 9 ++++----- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/dev-util/squashdelta/squashdelta-0.1.1.ebuild b/dev-util/squashdelta/squashdelta-0.1.1.ebuild index 9f6ebdce8b9..ea0756376a3 100644 --- a/dev-util/squashdelta/squashdelta-0.1.1.ebuild +++ b/dev-util/squashdelta/squashdelta-0.1.1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 DESCRIPTION="Efficient (partially uncompressed) SquashFS binary delta tool" HOMEPAGE="https://github.com/mgorny/squashdelta/" @@ -12,6 +12,8 @@ LICENSE="BSD public-domain" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="lz4 +lzo" +# SquashDelta does not make much sense without a compression algo. +REQUIRED_USE="|| ( lz4 lzo )" COMMON_DEPEND=" lz4? ( app-arch/lz4:0= ) @@ -20,9 +22,6 @@ RDEPEND="${COMMON_DEPEND} dev-util/xdelta:3" DEPEND=${COMMON_DEPEND} -# SquashDelta does not make much sense without a compression algo. -REQUIRED_USE="|| ( lz4 lzo )" - src_configure() { local myconf=( $(use_enable lz4) diff --git a/dev-util/squashdelta/squashdelta-9999.ebuild b/dev-util/squashdelta/squashdelta-9999.ebuild index fd19fe30514..af4bc7cf66b 100644 --- a/dev-util/squashdelta/squashdelta-9999.ebuild +++ b/dev-util/squashdelta/squashdelta-9999.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 EGIT_REPO_URI="https://github.com/mgorny/${PN}.git" inherit autotools git-r3 @@ -15,6 +15,8 @@ LICENSE="BSD public-domain" SLOT="0" KEYWORDS="" IUSE="lz4 +lzo" +# SquashDelta does not make much sense without a compression algo. +REQUIRED_USE="|| ( lz4 lzo )" COMMON_DEPEND=" lz4? ( app-arch/lz4:0= ) @@ -23,9 +25,6 @@ RDEPEND="${COMMON_DEPEND} dev-util/xdelta:3" DEPEND=${COMMON_DEPEND} -# SquashDelta does not make much sense without a compression algo. -REQUIRED_USE="|| ( lz4 lzo )" - src_prepare() { default eautoreconf