From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 1BA3B1381F3 for ; Fri, 10 May 2013 17:37:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A83B0E09F3; Fri, 10 May 2013 17:37:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D647E09F3 for ; Fri, 10 May 2013 17:37:51 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2027933DF46 for ; Fri, 10 May 2013 17:37:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id B1166E516C for ; Fri, 10 May 2013 17:37:48 +0000 (UTC) From: "José María Alonso" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "José María Alonso" Message-ID: <1368207461.5384574383fa4a33b2de25ab274537841565cdb5.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-ppcre-unicode/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.4.ebuild X-VCS-Directories: dev-lisp/cl-ppcre-unicode/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 5384574383fa4a33b2de25ab274537841565cdb5 X-VCS-Branch: master Date: Fri, 10 May 2013 17:37:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 311170a0-d9ab-4118-89be-d762b9c1a2fe X-Archives-Hash: a5353da9e082dad436cf1fda90e6e829 commit: 5384574383fa4a33b2de25ab274537841565cdb5 Author: Chema Alonso gentoo org> AuthorDate: Fri May 10 17:37:41 2013 +0000 Commit: José María Alonso gentoo org> CommitDate: Fri May 10 17:37:41 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=53845743 dev-lisp/cl-ppcre-unicode: bump to version 2.0.4 --- .../cl-ppcre-unicode/cl-ppcre-unicode-2.0.4.ebuild | 29 ++++++++++++++++++++ 1 files changed, 29 insertions(+), 0 deletions(-) diff --git a/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.4.ebuild b/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.4.ebuild new file mode 100644 index 0000000..25dd3f4 --- /dev/null +++ b/dev-lisp/cl-ppcre-unicode/cl-ppcre-unicode-2.0.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit common-lisp-3 + +MY_P=cl-ppcre-${PV} + +DESCRIPTION="CL-PPCRE is a portable regular expression library for Common Lisp." +HOMEPAGE="http://weitz.de/cl-ppcre/ + http://www.cliki.net/cl-ppcre" +SRC_URI="mirror://gentoo/${MY_P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="=dev-lisp/cl-ppcre-${PV}* + dev-lisp/cl-unicode" + +S="${WORKDIR}"/${MY_P} + +src_install() { + common-lisp-install-sources -t all ${PN}/ test/unicode* + common-lisp-install-asdf ${PN}.asd + dodoc CHANGELOG README.md + dohtml doc/index.html +}