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 3B36413877A for ; Thu, 28 Aug 2014 00:21:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C3E92E0848; Thu, 28 Aug 2014 00:21:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5714FE0848 for ; Thu, 28 Aug 2014 00:21:08 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 008EA33F8DC for ; Thu, 28 Aug 2014 00:21:07 +0000 (UTC) Received: by oystercatcher.gentoo.org (Postfix, from userid 2304) id 7B80A4193; Thu, 28 Aug 2014 00:21:05 +0000 (UTC) From: "Mike Gilbert (floppym)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, floppym@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in www-plugins/chrome-binary-plugins: chrome-binary-plugins-37.0.2062.94_p1.ebuild ChangeLog X-VCS-Repository: gentoo-x86 X-VCS-Files: chrome-binary-plugins-37.0.2062.94_p1.ebuild ChangeLog X-VCS-Directories: www-plugins/chrome-binary-plugins X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: <20140828002105.7B80A4193@oystercatcher.gentoo.org> Date: Thu, 28 Aug 2014 00:21:05 +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: 093bff00-b100-4067-b7fd-5b94fe382e31 X-Archives-Hash: 24d05f8ddf0826f29e6b3d571672c4be floppym 14/08/28 00:21:05 Modified: chrome-binary-plugins-37.0.2062.94_p1.ebuild ChangeLog Log: Fix ${S} in the stable slot. (Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4) Revision Changes Path 1.3 www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild?rev=1.3&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild?rev=1.3&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild?r1=1.2&r2=1.3 Index: chrome-binary-plugins-37.0.2062.94_p1.ebuild =================================================================== RCS file: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- chrome-binary-plugins-37.0.2062.94_p1.ebuild 27 Aug 2014 20:39:35 -0000 1.2 +++ chrome-binary-plugins-37.0.2062.94_p1.ebuild 28 Aug 2014 00:21:05 -0000 1.3 @@ -1,6 +1,6 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild,v 1.2 2014/08/27 20:39:35 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/chrome-binary-plugins-37.0.2062.94_p1.ebuild,v 1.3 2014/08/28 00:21:05 floppym Exp $ EAPI=4 @@ -12,14 +12,17 @@ case ${PV} in *_alpha*) SLOT="unstable" + CHROMEDIR="opt/google/chrome-${SLOT}" MY_PV=${PV/_alpha/-} ;; *_beta*) SLOT="beta" + CHROMEDIR="opt/google/chrome-${SLOT}" MY_PV=${PV/_beta/-} ;; *_p*) SLOT="stable" + CHROMEDIR="opt/google/chrome" MY_PV=${PV/_p/-} ;; *) @@ -50,7 +53,7 @@ fi done -S="${WORKDIR}/opt/google/chrome-${SLOT}" +S="${WORKDIR}/${CHROMEDIR}" QA_PREBUILT="*" pkg_nofetch() { 1.172 www-plugins/chrome-binary-plugins/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.172&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?rev=1.172&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog?r1=1.171&r2=1.172 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v retrieving revision 1.171 retrieving revision 1.172 diff -u -r1.171 -r1.172 --- ChangeLog 27 Aug 2014 20:39:35 -0000 1.171 +++ ChangeLog 28 Aug 2014 00:21:05 -0000 1.172 @@ -1,6 +1,10 @@ # ChangeLog for www-plugins/chrome-binary-plugins # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.171 2014/08/27 20:39:35 floppym Exp $ +# $Header: /var/cvsroot/gentoo-x86/www-plugins/chrome-binary-plugins/ChangeLog,v 1.172 2014/08/28 00:21:05 floppym Exp $ + + 28 Aug 2014; Mike Gilbert + chrome-binary-plugins-37.0.2062.94_p1.ebuild: + Fix ${S} in the stable slot. 27 Aug 2014; Mike Gilbert chrome-binary-plugins-37.0.2062.94_p1.ebuild: