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 CEA9C138334 for ; Mon, 15 Oct 2018 13:44:10 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 95E7AE0907; Mon, 15 Oct 2018 13:44:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 73578E0907 for ; Mon, 15 Oct 2018 13:44:08 +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 B87C2335C07 for ; Mon, 15 Oct 2018 13:44:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D20233F0 for ; Mon, 15 Oct 2018 13:44:04 +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: <1539611235.3c83db92059e7ab0bb81c17d9144f4ca400de54f.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.5.0.ebuild X-VCS-Directories: dev-lisp/split-sequence/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 3c83db92059e7ab0bb81c17d9144f4ca400de54f X-VCS-Branch: master Date: Mon, 15 Oct 2018 13:44:04 +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: 3d8244d4-4688-4818-89d2-b97f0c8df1ea X-Archives-Hash: 4fa4995f9edd5094c0040fb7d243b78b commit: 3c83db92059e7ab0bb81c17d9144f4ca400de54f Author: Chema Alonso Josa gentoo org> AuthorDate: Mon Oct 15 13:47:15 2018 +0000 Commit: José María Alonso gentoo org> CommitDate: Mon Oct 15 13:47:15 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=3c83db92 dev-lisp/split-sequence: Bump version to 1.5.0 .../split-sequence/split-sequence-1.5.0.ebuild | 26 ++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild b/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild new file mode 100644 index 00000000..59f7c7c4 --- /dev/null +++ b/dev-lisp/split-sequence/split-sequence-1.5.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +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.sexp + common-lisp-install-asdf + dodoc README.md +}