From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id AE076138334 for ; Mon, 27 Aug 2018 14:06:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6D394E0897; Mon, 27 Aug 2018 14:06:07 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 462C1E0897 for ; Mon, 27 Aug 2018 14:06:06 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D1AD3335CA0 for ; Mon, 27 Aug 2018 14:06:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05A3638D for ; Mon, 27 Aug 2018 14:06:02 +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: <1535378906.56e8d3d22ab71b381d0b4e6f3db8c4d5d81fcc54.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/cl-ppcre/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild X-VCS-Directories: dev-lisp/cl-ppcre/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 56e8d3d22ab71b381d0b4e6f3db8c4d5d81fcc54 X-VCS-Branch: master Date: Mon, 27 Aug 2018 14:06:02 +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: 91b0808c-9a37-44c8-af6a-357ec433266c X-Archives-Hash: 6b8725b71e409c48955547842de76de7 commit: 56e8d3d22ab71b381d0b4e6f3db8c4d5d81fcc54 Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Aug 27 14:08:26 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Aug 27 14:08:26 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=56e8d3d2 dev-lisp/cl-ppcre: Bump to version 2.1.0 dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild b/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild new file mode 100644 index 00000000..70c99953 --- /dev/null +++ b/dev-lisp/cl-ppcre/cl-ppcre-2.1.0.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit common-lisp-3 + +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="https://github.com/edicl/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="dev-lisp/flexi-streams" +PDEPEND="dev-lisp/cl-ppcre-unicode" + +src_unpack() { + unpack ${A} && cd "${S}" + rm -rf cl-ppcre-unicode test/unicode* +} + +src_install() { + common-lisp-install-sources *.lisp test/ + common-lisp-install-asdf ${PN} + dodoc CHANGELOG docs/index.html +}