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 DC1061386F1 for ; Mon, 10 Aug 2015 04:28:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CE68E07F4; Mon, 10 Aug 2015 04:28:05 +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 31537E07F4 for ; Mon, 10 Aug 2015 04:28:05 +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 398D5340901 for ; Mon, 10 Aug 2015 04:28:04 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5940B12A for ; Mon, 10 Aug 2015 04:28:02 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1439180877.4f1b90a27021102d5eeac770b4f6cb0c62dbd041.robbat2@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: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: 4f1b90a27021102d5eeac770b4f6cb0c62dbd041 X-VCS-Branch: master Date: Mon, 10 Aug 2015 04:28:02 +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: e292dbc2-2473-4b1c-9504-7408038e1ef5 X-Archives-Hash: e414b6936400cc4baa33470fdf16c2a0 commit: 4f1b90a27021102d5eeac770b4f6cb0c62dbd041 Author: Robin H. Johnson gentoo org> AuthorDate: Mon Aug 10 04:27:45 2015 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Mon Aug 10 04:27:57 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f1b90a2 Explicitly quote the ~ in the replacement, so that it does not get expanded to a homedir. Package-Manager: portage-2.2.18 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 a98daf9..3de48be 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/\~}" DESCRIPTION="P2P private sharing application" HOMEPAGE="http://retroshare.sourceforge.net"