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/cl-ppcre/
Date: Mon, 27 Aug 2018 14:06:08
Message-Id: 1535378906.56e8d3d22ab71b381d0b4e6f3db8c4d5d81fcc54.nimiux@gentoo
1 commit: 56e8d3d22ab71b381d0b4e6f3db8c4d5d81fcc54
2 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Mon Aug 27 14:08:26 2018 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Mon Aug 27 14:08:26 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=56e8d3d2
7
8 dev-lisp/cl-ppcre: Bump to version 2.1.0
9
10 dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild | 30 ++++++++++++++++++++++++++++++
11 1 file changed, 30 insertions(+)
12
13 diff --git a/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild b/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild
14 new file mode 100644
15 index 00000000..70c99953
16 --- /dev/null
17 +++ b/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild
18 @@ -0,0 +1,30 @@
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 +DESCRIPTION="CL-PPCRE is a portable regular expression library for Common Lisp."
27 +HOMEPAGE="http://weitz.de/cl-ppcre/
28 + http://www.cliki.net/cl-ppcre"
29 +SRC_URI="https://github.com/edicl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 +
31 +LICENSE="BSD-2"
32 +SLOT="0"
33 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
34 +IUSE=""
35 +
36 +RDEPEND="dev-lisp/flexi-streams"
37 +PDEPEND="dev-lisp/cl-ppcre-unicode"
38 +
39 +src_unpack() {
40 + unpack ${A} && cd "${S}"
41 + rm -rf cl-ppcre-unicode test/unicode*
42 +}
43 +
44 +src_install() {
45 + common-lisp-install-sources *.lisp test/
46 + common-lisp-install-asdf ${PN}
47 + dodoc CHANGELOG docs/index.html
48 +}