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 44882139082 for ; Fri, 1 Dec 2017 09:27:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F34C0E0BE0; Fri, 1 Dec 2017 09:27:44 +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 C89EAE0BE0 for ; Fri, 1 Dec 2017 09:27:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 DE6E833BEBE for ; Fri, 1 Dec 2017 09:27:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 59C5AADC1 for ; Fri, 1 Dec 2017 09:27:40 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1512120441.a360fbe26e5a2595bea2cf98e294af92dbd1bab1.grobian@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/shntool/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/shntool/Manifest media-sound/shntool/shntool-3.0.10-r1.ebuild X-VCS-Directories: media-sound/shntool/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: a360fbe26e5a2595bea2cf98e294af92dbd1bab1 X-VCS-Branch: master Date: Fri, 1 Dec 2017 09:27:40 +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: b041452d-5533-45b1-a79e-572bb6fbc556 X-Archives-Hash: ebee2446203a54d394e08733b6679dd7 commit: a360fbe26e5a2595bea2cf98e294af92dbd1bab1 Author: Fabian Groffen gentoo org> AuthorDate: Fri Dec 1 09:27:21 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Dec 1 09:27:21 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a360fbe2 media-sound/shntool: fix building when CONFIG_SHELL != bash, bug #527310 Closes: https://bugs.gentoo.org/527310 Package-Manager: Portage-2.3.13, Repoman-2.3.3 media-sound/shntool/Manifest | 2 +- media-sound/shntool/shntool-3.0.10-r1.ebuild | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/media-sound/shntool/Manifest b/media-sound/shntool/Manifest index 312183bd527..c896779cc05 100644 --- a/media-sound/shntool/Manifest +++ b/media-sound/shntool/Manifest @@ -1 +1 @@ -DIST shntool-3.0.10.tar.gz 216061 SHA256 74302eac477ca08fb2b42b9f154cc870593aec8beab308676e4373a5e4ca2102 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d WHIRLPOOL fb7c11c99482e043da2827ab682aadde4b7309d5e0739a176589de2ac8db0af01d62826eb8d8c6451c2c72876078f4147fa8712ce41acff785ac495350d17322 +DIST shntool-3.0.10.tar.gz 216061 BLAKE2B b662c64992409c1a12dd3fffab5f39c69b2c1f8fb958cba590009f599e4363403aa1d353efdec8ab7529fc22cfac0b908368a132b60f7e5acd55dcae932909e2 SHA512 2150d7123860abb54a56a1615bda991ed3713d73c338723f28b7d01a63c49a47809be16dc57b5b4edeee1567b003f9a4b54945c1cd08440f9503d22b91eaa06d diff --git a/media-sound/shntool/shntool-3.0.10-r1.ebuild b/media-sound/shntool/shntool-3.0.10-r1.ebuild index 16c9434f3ea..5e2ea531d5e 100644 --- a/media-sound/shntool/shntool-3.0.10-r1.ebuild +++ b/media-sound/shntool/shntool-3.0.10-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=4 @@ -21,3 +21,8 @@ RDEPEND="flac? ( media-libs/flac ) DEPEND="${RDEPEND}" DOCS="NEWS README ChangeLog AUTHORS doc/*" + +src_configure() { + unset CONFIG_SHELL # default to bash, bug #527310 + default +}