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 54D72138206 for ; Wed, 27 Apr 2016 09:03:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67D44E079E; Wed, 27 Apr 2016 09:03:53 +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 DDC65E079E for ; Wed, 27 Apr 2016 09:03:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 817B8340B27 for ; Wed, 27 Apr 2016 09:03:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EAC8F15F for ; Wed, 27 Apr 2016 09:03:48 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1461746740.5e1f0a1a9e9925d7bb2dce0bb4645d9593676b92.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/bashdb/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild X-VCS-Directories: app-shells/bashdb/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: 5e1f0a1a9e9925d7bb2dce0bb4645d9593676b92 X-VCS-Branch: master Date: Wed, 27 Apr 2016 09:03:48 +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: f19630d3-39a4-4cbc-8dab-7f0350a31be3 X-Archives-Hash: a36a2566d0bdaaaa366022fb982c79b6 commit: 5e1f0a1a9e9925d7bb2dce0bb4645d9593676b92 Author: Patrice Clement gentoo org> AuthorDate: Wed Apr 27 07:23:39 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Apr 27 08:45:40 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e1f0a1a app-shells/bashdb: EAPI 6 bump. Package-Manager: portage-2.2.26 app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild new file mode 100644 index 0000000..7e664c6 --- /dev/null +++ b/app-shells/bashdb/bashdb-4.3.0.91-r2.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +MY_P="${PN}-${PV:0:3}-${PV:4}" +DESCRIPTION="bash source code debugging" +HOMEPAGE="http://bashdb.sourceforge.net/" +SRC_URI="mirror://sourceforge/bashdb/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="!>=app-shells/bash-${PV:0:1}.$((${PV:2:1}+1))" + +S="${WORKDIR}/${MY_P}" + +# Unfortunately, not all tests pass. +RESTRICT="test" + +src_prepare() { + default + # We don't install this, so don't bother building it. #468044 + sed -i 's:texi2html:true:' doc/Makefile.in || die +}