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: Mon, 19 Feb 2018 18:35:35
Message-Id: 1519065375.9b0d5cfdc9379a3334c9846e467cd780a0468299.nimiux@gentoo
1 commit: 9b0d5cfdc9379a3334c9846e467cd780a0468299
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 19 18:36:15 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 19 18:36:15 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=9b0d5cfd
7
8 dev-lisp/fiveam: Bumps version to 1.4
9
10 dev-lisp/fiveam/fiveam-1.4.ebuild | 34 ++++++++++++++++++++++++++++++++++
11 1 file changed, 34 insertions(+)
12
13 diff --git a/dev-lisp/fiveam/fiveam-1.4.ebuild b/dev-lisp/fiveam/fiveam-1.4.ebuild
14 new file mode 100644
15 index 00000000..c7b93a21
16 --- /dev/null
17 +++ b/dev-lisp/fiveam/fiveam-1.4.ebuild
18 @@ -0,0 +1,34 @@
19 +# Copyright 1999-2018 Gentoo Foundation
20 +# Distributed under the terms of the GNU General Public License v2
21 +
22 +EAPI=6
23 +
24 +inherit common-lisp-3
25 +
26 +MY_PV="v${PV}"
27 +
28 +DESCRIPTION="FiveAM is a simple regression testing framework designed for Common Lisp."
29 +HOMEPAGE="http://common-lisp.net/project/fiveam/"
30 +SRC_URI="https://github.com/cl-fiveam/fiveam/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="BSD"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="!dev-lisp/cl-${PN}
38 + !dev-lisp/cl-${PN}-darcs
39 + dev-lisp/alexandria
40 + dev-lisp/asdf-flv
41 + dev-lisp/trivial-backtrace"
42 +
43 +src_prepare() {
44 + sed -i -e 's/net\.didierverna\.//g' "${PN}.asd" "src/suite.lisp" || die
45 + eapply_user
46 +}
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 +}