Gentoo Archives: gentoo-commits

From: "José María Alonso" <nimiux@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/cl-ppcre-unicode/
Date: Thu, 17 Dec 2015 22:32:26
Message-Id: 1450391703.813b273e70add1c1479759913dd95b4786f74350.nimiux@gentoo
1 commit: 813b273e70add1c1479759913dd95b4786f74350
2 Author: José María Alonso Josa <nimiux <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 17 22:35:03 2015 +0000
4 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 17 22:35:03 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=813b273e
7
8 dev-lisp/cl-ppcre-unicode: add from lisp overlay
9
10 Package-Manager: portage-2.2.20.1
11
12 dev-lisp/cl-ppcre-unicode/Manifest | 1 +
13 .../cl-ppcre-unicode-2.0.11.ebuild | 29 ++++++++++++++++++++++
14 dev-lisp/cl-ppcre-unicode/metadata.xml | 16 ++++++++++++
15 3 files changed, 46 insertions(+)
16
17 diff --git a/dev-lisp/cl-ppcre-unicode/Manifest b/dev-lisp/cl-ppcre-unicode/Manifest
18 new file mode 100644
19 index 0000000..2e15340
20 --- /dev/null
21 +++ b/dev-lisp/cl-ppcre-unicode/Manifest
22 @@ -0,0 +1 @@
23 +DIST cl-ppcre-2.0.11.tar.gz 158418 SHA256 ed8571915216788dc4f6cdb44e49b0e0782e203ed547fe2e58cd5b0e5c57edc4 SHA512 c693c568065c0571e5509599018e58951425a857cec3793312af0d22e248e32233f924eafc8ba67fbedad38cb3f4efa11343b785b073eaac53c31871422488b1 WHIRLPOOL 85e0bda97b1bea3da32fbe9a56dd45eb6926fccb7546ee41528a4c6b7b079a94f0d30c59d98cd0288ea26efe6b004b6856cabaaeb3cb93e441cdebc5d588bdf7
24
25 diff --git a/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.11.ebuild b/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.11.ebuild
26 new file mode 100644
27 index 0000000..9cb11ed
28 --- /dev/null
29 +++ b/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.11.ebuild
30 @@ -0,0 +1,29 @@
31 +# Copyright 1999-2015 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +# $Id$
34 +
35 +EAPI=5
36 +
37 +inherit common-lisp-3
38 +
39 +MY_P="v${PV}"
40 +
41 +DESCRIPTION="CL-PPCRE is a portable regular expression library for Common Lisp."
42 +HOMEPAGE="http://weitz.de/cl-ppcre/
43 + http://www.cliki.net/cl-ppcre"
44 +SRC_URI="https://github.com/edicl/cl-ppcre/archive/${MY_P}.tar.gz -> cl-ppcre-${PV}.tar.gz"
45 +
46 +LICENSE="BSD-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~ppc ~sparc ~x86"
49 +IUSE=""
50 +
51 +RDEPEND="=dev-lisp/cl-ppcre-${PV}*
52 + dev-lisp/cl-unicode"
53 +
54 +S="${WORKDIR}/cl-ppcre-${PV}"
55 +
56 +src_install() {
57 + common-lisp-install-sources ${PN}/ test/unicode*
58 + common-lisp-install-asdf ${PN}
59 +}
60
61 diff --git a/dev-lisp/cl-ppcre-unicode/metadata.xml b/dev-lisp/cl-ppcre-unicode/metadata.xml
62 new file mode 100644
63 index 0000000..a1563ab
64 --- /dev/null
65 +++ b/dev-lisp/cl-ppcre-unicode/metadata.xml
66 @@ -0,0 +1,16 @@
67 +<?xml version="1.0" encoding="UTF-8"?>
68 +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
69 +<pkgmetadata>
70 +<herd>common-lisp</herd>
71 + <longdescription>
72 + CL-PPCRE is a portable regular expression library for Common Lisp
73 + which has the following features:
74 +
75 + * compatible with Perl
76 + * fast (outperforms Perl)
77 + * portable (ANSI Common Lisp)
78 + * thread-safe
79 + * includes convenience features
80 + * well-documented.
81 + </longdescription>
82 +</pkgmetadata>