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 A4AE41382C5 for ; Mon, 7 May 2018 07:42:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D2D75E0855; Mon, 7 May 2018 07:42:13 +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 B3B3DE0855 for ; Mon, 7 May 2018 07:42:13 +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 EEA78335C75 for ; Mon, 7 May 2018 07:42:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9573B257 for ; Mon, 7 May 2018 07:42:11 +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: <1525678908.bda6d06a6ac9e522a8f432c8bfe2284ac44a6de0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: games-rpg/soltys/ X-VCS-Repository: repo/gentoo X-VCS-Files: games-rpg/soltys/soltys-1.0-r2.ebuild X-VCS-Directories: games-rpg/soltys/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: bda6d06a6ac9e522a8f432c8bfe2284ac44a6de0 X-VCS-Branch: master Date: Mon, 7 May 2018 07:42:11 +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: 7947c22a-1166-4b61-9420-3fa7412bce44 X-Archives-Hash: 509a9649d1789a1674e32f96ee31cf6c commit: bda6d06a6ac9e522a8f432c8bfe2284ac44a6de0 Author: Michał Górny gentoo org> AuthorDate: Sun May 6 20:32:24 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 7 07:41:48 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda6d06a games-rpg/soltys: Remove unnecessary use of unpacker Replace the unnecessary use of unpacker.eclass with built-in EAPI unpacking. This also fixes missing dependency on app-arch/unzip due to unpacker.eclass being broken with complex SRC_URIs in EAPI 6. games-rpg/soltys/soltys-1.0-r2.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/games-rpg/soltys/soltys-1.0-r2.ebuild b/games-rpg/soltys/soltys-1.0-r2.ebuild index e709836c31e..f3e8b8ccb22 100644 --- a/games-rpg/soltys/soltys-1.0-r2.ebuild +++ b/games-rpg/soltys/soltys-1.0-r2.ebuild @@ -2,7 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 EAPI=6 -inherit unpacker eutils +inherit eutils DESCRIPTION="Classic adventure game" HOMEPAGE="http://wiki.scummvm.org/index.php/Soltys" @@ -18,24 +18,24 @@ KEYWORDS="~amd64 ~x86" IUSE="l10n_en l10n_es l10n_pl" RDEPEND=">=games-engines/scummvm-1.5" -DEPEND="$(unpacker_src_uri_depends)" +DEPEND="app-arch/unzip" S="${WORKDIR}" src_unpack() { if use l10n_en || ( ! use l10n_en && ! use l10n_es && ! use l10n_pl ) ; then mkdir -p en || die - unpacker ${PN}-en-v${PV}.zip + unpack ${PN}-en-v${PV}.zip mv vol.{cat,dat} en/ || die fi if use l10n_es ; then mkdir -p es || die - unpacker ${PN}-es-v${PV}.zip + unpack ${PN}-es-v${PV}.zip mv soltys-es-v1-0/vol.{cat,dat} es/ || die fi if use l10n_pl ; then mkdir -p pl || die - unpacker ${PN}-pl-v${PV}.zip + unpack ${PN}-pl-v${PV}.zip mv vol.{cat,dat} pl/ || die fi }