From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 9A91A59CAF for ; Sat, 9 Apr 2016 18:15:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9FEA121C018; Sat, 9 Apr 2016 18:15:45 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45AF121C018 for ; Sat, 9 Apr 2016 18:15:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E17F9340BD2 for ; Sat, 9 Apr 2016 18:15:43 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 756937E for ; Sat, 9 Apr 2016 18:15:41 +0000 (UTC) From: "NP Hardass" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "NP Hardass" Message-ID: <1460225686.a971a53c94485d66d0e0345e34a298099ab9ec36.np-hardass@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/wine/wine-1.8.1.ebuild app-emulation/wine/wine-1.9.6.ebuild app-emulation/wine/wine-1.9.7.ebuild app-emulation/wine/wine-9999.ebuild X-VCS-Directories: app-emulation/wine/ X-VCS-Committer: np-hardass X-VCS-Committer-Name: NP Hardass X-VCS-Revision: a971a53c94485d66d0e0345e34a298099ab9ec36 X-VCS-Branch: master Date: Sat, 9 Apr 2016 18:15:41 +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: db3c42bf-1e52-4dbe-b3f2-ac0400cc8667 X-Archives-Hash: ed5f323d8e9de600a0243b421f141156 commit: a971a53c94485d66d0e0345e34a298099ab9ec36 Author: NP-Hardass gentoo org> AuthorDate: Sat Apr 9 17:36:10 2016 +0000 Commit: NP Hardass gentoo org> CommitDate: Sat Apr 9 18:14:46 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a971a53c app-emulation/wine: Fix logic evaluation order Package-Manager: portage-2.2.26 app-emulation/wine/wine-1.8.1.ebuild | 3 ++- app-emulation/wine/wine-1.9.6.ebuild | 3 ++- app-emulation/wine/wine-1.9.7.ebuild | 3 ++- app-emulation/wine/wine-9999.ebuild | 3 ++- 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/app-emulation/wine/wine-1.8.1.ebuild b/app-emulation/wine/wine-1.8.1.ebuild index 466e8f5..1d2d4c8 100644 --- a/app-emulation/wine/wine-1.8.1.ebuild +++ b/app-emulation/wine/wine-1.8.1.ebuild @@ -269,8 +269,9 @@ src_prepare() { eend $? # To differentiate unofficial staging releases - [[ ! -z ${SUFFIX} ]] && \ + if [[ ! -z ${SUFFIX} ]]; then sed -i "s/(Staging)/(Staging [Unofficial])/" libs/wine/Makefile.in || die + fi fi default diff --git a/app-emulation/wine/wine-1.9.6.ebuild b/app-emulation/wine/wine-1.9.6.ebuild index 89b9b23..e735b28 100644 --- a/app-emulation/wine/wine-1.9.6.ebuild +++ b/app-emulation/wine/wine-1.9.6.ebuild @@ -265,8 +265,9 @@ src_prepare() { eend $? # To differentiate unofficial staging releases - [[ ! -z ${SUFFIX} ]] && \ + if [[ ! -z ${SUFFIX} ]]; then sed -i "s/(Staging)/(Staging [Unofficial])/" libs/wine/Makefile.in || die + fi fi autotools-utils_src_prepare diff --git a/app-emulation/wine/wine-1.9.7.ebuild b/app-emulation/wine/wine-1.9.7.ebuild index 89b9b23..e735b28 100644 --- a/app-emulation/wine/wine-1.9.7.ebuild +++ b/app-emulation/wine/wine-1.9.7.ebuild @@ -265,8 +265,9 @@ src_prepare() { eend $? # To differentiate unofficial staging releases - [[ ! -z ${SUFFIX} ]] && \ + if [[ ! -z ${SUFFIX} ]]; then sed -i "s/(Staging)/(Staging [Unofficial])/" libs/wine/Makefile.in || die + fi fi autotools-utils_src_prepare diff --git a/app-emulation/wine/wine-9999.ebuild b/app-emulation/wine/wine-9999.ebuild index 89b9b23..e735b28 100644 --- a/app-emulation/wine/wine-9999.ebuild +++ b/app-emulation/wine/wine-9999.ebuild @@ -265,8 +265,9 @@ src_prepare() { eend $? # To differentiate unofficial staging releases - [[ ! -z ${SUFFIX} ]] && \ + if [[ ! -z ${SUFFIX} ]]; then sed -i "s/(Staging)/(Staging [Unofficial])/" libs/wine/Makefile.in || die + fi fi autotools-utils_src_prepare