Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/fiveam/
Date: Wed, 30 Nov 2016 12:48:53
Message-Id: 1480510125.dbae7b149f8b7f748a2e793e1067dcaca4853fc4.nimiux@gentoo
1 commit: dbae7b149f8b7f748a2e793e1067dcaca4853fc4
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 30 12:48:45 2016 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 30 12:48:45 2016 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=dbae7b14
7
8 dev-lisp/fiveam: Bumps version to 1.3
9
10 dev-lisp/fiveam/fiveam-1.3.ebuild | 34 ++++++++++++++++++++++++++++++++++
11 1 file changed, 34 insertions(+)
12
13 diff --git a/dev-lisp/fiveam/fiveam-1.3.ebuild b/dev-lisp/fiveam/fiveam-1.3.ebuild
14 new file mode 100644
15 index 0000000..12207cc
16 --- /dev/null
17 +++ b/dev-lisp/fiveam/fiveam-1.3.ebuild
18 @@ -0,0 +1,34 @@
19 +# Copyright 1999-2016 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +# $Id$
22 +
23 +EAPI=6
24 +
25 +inherit common-lisp-3
26 +
27 +MY_PV="v${PV}"
28 +
29 +DESCRIPTION="FiveAM is a simple regression testing framework designed for Common Lisp."
30 +HOMEPAGE="http://common-lisp.net/project/fiveam/"
31 +SRC_URI="https://github.com/cl-fiveam/fiveam/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
32 +
33 +LICENSE="BSD"
34 +SLOT="0"
35 +KEYWORDS="~amd64 ~x86"
36 +IUSE=""
37 +
38 +RDEPEND="!dev-lisp/cl-${PN}
39 + !dev-lisp/cl-${PN}-darcs
40 + dev-lisp/alexandria
41 + dev-lisp/asdf-flv
42 + dev-lisp/trivial-backtrace"
43 +
44 +src_prepare() {
45 + sed -i -e 's/net\.didierverna\.//g' "${PN}.asd" "src/suite.lisp" || die
46 + default
47 +}
48 +src_install() {
49 + common-lisp-install-sources -t all docs src t version.sexp
50 + common-lisp-install-asdf
51 + dodoc README
52 +}