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 2C6CF1393FF for ; Sat, 25 Jul 2015 16:32:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DB33314030; Sat, 25 Jul 2015 16:32:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8093314030 for ; Sat, 25 Jul 2015 16:32:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5C241340B09 for ; Sat, 25 Jul 2015 16:32:53 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DF30EB7 for ; Sat, 25 Jul 2015 16:32:50 +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: <1437842156.d26fc02c7863acd8f432ad77aed82d4196794145.nimiux@gentoo> Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/split-sequence/ X-VCS-Repository: proj/lisp X-VCS-Files: dev-lisp/split-sequence/split-sequence-1.2.ebuild X-VCS-Directories: dev-lisp/split-sequence/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: d26fc02c7863acd8f432ad77aed82d4196794145 X-VCS-Branch: master Date: Sat, 25 Jul 2015 16:32:50 +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: e58a9719-2cbb-4e9a-a8bc-94aacb10a7b6 X-Archives-Hash: 7116bcfde2f0e8dc458b48cd7fce56b1 commit: d26fc02c7863acd8f432ad77aed82d4196794145 Author: Chema Alonso Josa gentoo org> AuthorDate: Sat Jul 25 16:35:56 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Sat Jul 25 16:35:56 2015 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=d26fc02c dev-lisp/split-sequence: bump to version 1.2 dev-lisp/split-sequence/split-sequence-1.2.ebuild | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/dev-lisp/split-sequence/split-sequence-1.2.ebuild b/dev-lisp/split-sequence/split-sequence-1.2.ebuild new file mode 100644 index 0000000..a699498 --- /dev/null +++ b/dev-lisp/split-sequence/split-sequence-1.2.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +inherit common-lisp-3 + +MY_PV="v${PV}" + +DESCRIPTION="Functions to partition a Common Lisp sequence into multiple result sequences" +HOMEPAGE="http://www.cliki.net/SPLIT-SEQUENCE" +SRC_URI="https://github.com/sharplispers/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + dev-lisp/fiveam" + +src_install() { + common-lisp-install-sources -t all *.lisp version.lisp-expr + common-lisp-install-asdf + dodoc README.md +}