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 CAD7B1386F3 for ; Wed, 12 Aug 2015 10:19:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5E5CBE07F9; Wed, 12 Aug 2015 10:19:50 +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 04CFCE07F9 for ; Wed, 12 Aug 2015 10:19:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0460B340917 for ; Wed, 12 Aug 2015 10:19:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6B73EE for ; Wed, 12 Aug 2015 10:19:46 +0000 (UTC) From: "Sergey Popov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergey Popov" Message-ID: <1439374717.c31708b96ab45da8c17fd8dfc546082f13bbba05.pinkbyte@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/retroshare/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild X-VCS-Directories: net-p2p/retroshare/ X-VCS-Committer: pinkbyte X-VCS-Committer-Name: Sergey Popov X-VCS-Revision: c31708b96ab45da8c17fd8dfc546082f13bbba05 X-VCS-Branch: master Date: Wed, 12 Aug 2015 10:19:46 +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: 8b659488-1d36-4525-a42e-65a5a59a945a X-Archives-Hash: 9f886d682da5c780fd1e7451044f3ae5 commit: c31708b96ab45da8c17fd8dfc546082f13bbba05 Author: Sergey Popov gentoo org> AuthorDate: Wed Aug 12 10:15:35 2015 +0000 Commit: Sergey Popov gentoo org> CommitDate: Wed Aug 12 10:18:37 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c31708b9 net-p2p/retroshare: fix MY_PV, which is non-portable across bash versions wrt bug #557276 Reported-by: dwfreed Suggested-by: Ulrich Müller Package-Manager: portage-2.2.20 net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild b/net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild index 3de48be..bf794f8 100644 --- a/net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild +++ b/net-p2p/retroshare/retroshare-0.6.0_rc2_pre8551.ebuild @@ -7,7 +7,7 @@ EAPI=5 inherit eutils gnome2-utils multilib qmake-utils MY_PV="${PV/_rc/.RC}" -MY_PV="${MY_PV/_pre/\~}" +MY_PV="${MY_PV/_pre/$'\x7e'}" # bug #557276 DESCRIPTION="P2P private sharing application" HOMEPAGE="http://retroshare.sourceforge.net"