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 5F54B13829C for ; Sun, 12 Jun 2016 06:14:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF4DEE09D4; Sun, 12 Jun 2016 06:14:34 +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 5C15BE09D4 for ; Sun, 12 Jun 2016 06:14:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6097C340AB2 for ; Sun, 12 Jun 2016 06:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6A05D1BA1 for ; Sun, 12 Jun 2016 06:14:29 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1465712067.c75345af0abbef52fcb1b89eac8b710a7d0efcae.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/cl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/cl/cl-1.2.1.ebuild X-VCS-Directories: dev-libs/cl/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: c75345af0abbef52fcb1b89eac8b710a7d0efcae X-VCS-Branch: master Date: Sun, 12 Jun 2016 06:14:29 +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: 7eeffc7a-b635-484c-9270-2853e9361249 X-Archives-Hash: 2a7e92020715162cdd739c6dc672f98d commit: c75345af0abbef52fcb1b89eac8b710a7d0efcae Author: Jeroen Roovers gentoo org> AuthorDate: Sun Jun 12 06:14:07 2016 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Sun Jun 12 06:14:27 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c75345af dev-libs/cl: Replace "git" with PV (bug #585590 by Oleg). Package-Manager: portage-2.3.0_rc1 dev-libs/cl/cl-1.2.1.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/dev-libs/cl/cl-1.2.1.ebuild b/dev-libs/cl/cl-1.2.1.ebuild index 8dbad11..ec56ff8 100644 --- a/dev-libs/cl/cl-1.2.1.ebuild +++ b/dev-libs/cl/cl-1.2.1.ebuild @@ -3,7 +3,7 @@ # $Header: /var/cvsroot/gentoo-x86/media-libs/esdl/esdl-1.2.ebuild,v 1.1 2013/02/12 14:41:54 george Exp $ EAPI=6 -inherit eutils fixheadtails multilib +inherit eutils multilib DESCRIPTION="OpenCL bindings for Erlang" HOMEPAGE="https://github.com/tonyrog/cl" @@ -22,6 +22,12 @@ DEPEND="${RDEPEND}" S=${WORKDIR}/${PN}-${P} +src_prepare() { + sed -i -e "s|git|\"${PV}\"|" src/cl.app.src || die + + eapply_user +} + src_compile() { rebar compile || die }