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 DD3971395E2 for ; Wed, 30 Nov 2016 12:48:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3A16CE0BC1; Wed, 30 Nov 2016 12:48:52 +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 22ACDE0BC1 for ; Wed, 30 Nov 2016 12:48:52 +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 47AAA341668 for ; Wed, 30 Nov 2016 12:48:49 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA6794A5 for ; Wed, 30 Nov 2016 12:48:47 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1480510125.dbae7b149f8b7f748a2e793e1067dcaca4853fc4.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/fiveam/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/fiveam/fiveam-1.3.ebuild X-VCS-Directories: dev-lisp/fiveam/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: dbae7b149f8b7f748a2e793e1067dcaca4853fc4 X-VCS-Branch: master Date: Wed, 30 Nov 2016 12:48:47 +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: 83b52730-6ad5-4b29-8247-31df249d7487 X-Archives-Hash: edf8d706eb8a39c48cb6609fd4806123 commit: dbae7b149f8b7f748a2e793e1067dcaca4853fc4 Author: Chema Alonso Josa gentoo org> AuthorDate: Wed Nov 30 12:48:45 2016 +0000 Commit: José María Alonso gentoo org> CommitDate: Wed Nov 30 12:48:45 2016 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=dbae7b14 dev-lisp/fiveam: Bumps version to 1.3 dev-lisp/fiveam/fiveam-1.3.ebuild | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/dev-lisp/fiveam/fiveam-1.3.ebuild b/dev-lisp/fiveam/fiveam-1.3.ebuild new file mode 100644 index 0000000..12207cc --- /dev/null +++ b/dev-lisp/fiveam/fiveam-1.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit common-lisp-3 + +MY_PV="v${PV}" + +DESCRIPTION="FiveAM is a simple regression testing framework designed for Common Lisp." +HOMEPAGE="http://common-lisp.net/project/fiveam/" +SRC_URI="https://github.com/cl-fiveam/fiveam/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + !dev-lisp/cl-${PN}-darcs + dev-lisp/alexandria + dev-lisp/asdf-flv + dev-lisp/trivial-backtrace" + +src_prepare() { + sed -i -e 's/net\.didierverna\.//g' "${PN}.asd" "src/suite.lisp" || die + default +} +src_install() { + common-lisp-install-sources -t all docs src t version.sexp + common-lisp-install-asdf + dodoc README +}