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 C5A8B1382C5 for ; Wed, 14 Feb 2018 16:27:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E91EE0AFE; Wed, 14 Feb 2018 16:27:54 +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 EFDE4E0AFE for ; Wed, 14 Feb 2018 16:27:53 +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 19DA4335C2C for ; Wed, 14 Feb 2018 16:27:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 776AA1F5 for ; Wed, 14 Feb 2018 16:27:50 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1518625662.77f304cb22f6603176ca9f5efb4b56000219489a.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-VersionControl_SVN/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.2-r1.ebuild X-VCS-Directories: dev-php/PEAR-VersionControl_SVN/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: 77f304cb22f6603176ca9f5efb4b56000219489a X-VCS-Branch: master Date: Wed, 14 Feb 2018 16:27:50 +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: 510966a3-551b-45c4-96fd-079cdab0ed50 X-Archives-Hash: c3e9937c043a16dd5630d863c8c23449 commit: 77f304cb22f6603176ca9f5efb4b56000219489a Author: Brian Evans gentoo org> AuthorDate: Wed Feb 14 16:26:49 2018 +0000 Commit: Brian Evans gentoo org> CommitDate: Wed Feb 14 16:27:42 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f304cb dev-php/PEAR-VersionControl_SVN: Revbump for EAPI and eclass change Package-Manager: Portage-2.3.24, Repoman-2.3.6 .../PEAR-VersionControl_SVN-0.5.2-r1.ebuild | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.2-r1.ebuild b/dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.2-r1.ebuild new file mode 100644 index 00000000000..7fea8919316 --- /dev/null +++ b/dev-php/PEAR-VersionControl_SVN/PEAR-VersionControl_SVN-0.5.2-r1.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit php-pear-r2 + +DESCRIPTION="Simple OO wrapper interface for the Subversion command-line client" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +RDEPEND="" + +src_prepare() { + einfo "Patching SVN.php and SVN/Command.php to use proper paths by default" + sed -i -e 's:/usr/local:/usr:g' VersionControl/SVN.php || die "sed failed" + sed -i -e 's:/usr/local:/usr:g' VersionControl/SVN/Command.php || die "sed failed" + default +}