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/split-sequence/
Date: Mon, 15 Oct 2018 13:44:10
Message-Id: 1539611235.3c83db92059e7ab0bb81c17d9144f4ca400de54f.nimiux@gentoo
1 commit: 3c83db92059e7ab0bb81c17d9144f4ca400de54f
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 15 13:47:15 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 15 13:47:15 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=3c83db92
7
8 dev-lisp/split-sequence: Bump version to 1.5.0
9
10 .../split-sequence/split-sequence-1.5.0.ebuild | 26 ++++++++++++++++++++++
11 1 file changed, 26 insertions(+)
12
13 diff --git a/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild b/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild
14 new file mode 100644
15 index 00000000..59f7c7c4
16 --- /dev/null
17 +++ b/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild
18 @@ -0,0 +1,26 @@
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="Functions to partition a Common Lisp sequence into multiple result sequences"
29 +HOMEPAGE="http://www.cliki.net/SPLIT-SEQUENCE"
30 +SRC_URI="https://github.com/sharplispers/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
31 +
32 +LICENSE="public-domain"
33 +SLOT="0"
34 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
35 +IUSE=""
36 +
37 +RDEPEND="!dev-lisp/cl-${PN}
38 + dev-lisp/fiveam"
39 +
40 +src_install() {
41 + common-lisp-install-sources -t all *.lisp version.sexp
42 + common-lisp-install-asdf
43 + dodoc README.md
44 +}