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 4204D138334 for ; Sun, 15 Jul 2018 09:09:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7CD7EE091F; Sun, 15 Jul 2018 09:09:24 +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 482A9E091F for ; Sun, 15 Jul 2018 09:09:24 +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 9702D335C99 for ; Sun, 15 Jul 2018 09:09:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 37B0E371 for ; Sun, 15 Jul 2018 09:09:19 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1531645752.a0d3bf1fd9ef6077acc8a6097613f5277ccb7f73.hattya@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-scheme/gauche-cdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild X-VCS-Directories: dev-scheme/gauche-cdb/ X-VCS-Committer: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: a0d3bf1fd9ef6077acc8a6097613f5277ccb7f73 X-VCS-Branch: master Date: Sun, 15 Jul 2018 09:09:19 +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: a78fbe5b-3e20-43b4-8de3-bd265d6134b3 X-Archives-Hash: 564881c98c1d174bd48dd2f719894426 commit: a0d3bf1fd9ef6077acc8a6097613f5277ccb7f73 Author: Akinori Hattori gentoo org> AuthorDate: Sun Jul 15 09:03:53 2018 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Sun Jul 15 09:09:12 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0d3bf1f dev-scheme/gauche-cdb: update to EAPI 6 Package-Manager: Portage-2.3.40, Repoman-2.3.9 dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild b/dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild index b70d34302bb..1fc2a6ee138 100644 --- a/dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild +++ b/dev-scheme/gauche-cdb/gauche-cdb-0.3.1-r1.ebuild @@ -1,15 +1,15 @@ # Copyright 1999-2018 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI="6" -inherit autotools eutils +inherit autotools -MY_P="${P/g/G}" +MY_P="${P^g}" DESCRIPTION="CDB binding for Gauche" HOMEPAGE="http://sourceforge.jp/projects/gauche/" -SRC_URI="mirror://sourceforge.jp/gauche/8407/${MY_P}.tar.gz" +SRC_URI="mirror://sourceforge.jp/${PN%-*}/8407/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" @@ -21,8 +21,12 @@ RDEPEND="dev-scheme/gauche DEPEND="${RDEPEND}" S="${WORKDIR}/${MY_P}" +PATCHES=( + "${FILESDIR}"/${P}-gauche-package.diff + "${FILESDIR}"/${P}-undefined-reference.diff +) + src_prepare() { - epatch "${FILESDIR}"/${P}-gauche-package.diff - epatch "${FILESDIR}"/${P}-undefined-reference.diff + default eautoreconf }