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 7017D1384B4 for ; Tue, 15 Dec 2015 22:09:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 163D721C008; Tue, 15 Dec 2015 22:09:44 +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 765BE21C008 for ; Tue, 15 Dec 2015 22:09:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 253D733BF44 for ; Tue, 15 Dec 2015 22:09:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6F7A2B33 for ; Tue, 15 Dec 2015 22:09:37 +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: <1450217446.12258bb30a6f0de2297501eea706c1ce1d8e9914.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/trivial-gray-streams/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/trivial-gray-streams/Manifest dev-lisp/trivial-gray-streams/metadata.xml dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild dev-lisp/trivial-gray-streams/trivial-gray-streams-9999.ebuild X-VCS-Directories: dev-lisp/trivial-gray-streams/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 12258bb30a6f0de2297501eea706c1ce1d8e9914 X-VCS-Branch: master Date: Tue, 15 Dec 2015 22:09:37 +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: 0ad8ffd4-1841-45b1-9dd5-1ad53cc1d6ac X-Archives-Hash: 5478dd6c1852b1c862ea5be5a3c39964 commit: 12258bb30a6f0de2297501eea706c1ce1d8e9914 Author: José María Alonso Josa gentoo org> AuthorDate: Tue Dec 15 22:10:00 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Dec 15 22:10:46 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12258bb3 dev-lisp/trivial-gray-streams add from lisp overlay Package-Manager: portage-2.2.20.1 dev-lisp/trivial-gray-streams/Manifest | 1 + dev-lisp/trivial-gray-streams/metadata.xml | 9 +++++++ .../trivial-gray-streams-20081102.ebuild | 28 ++++++++++++++++++++++ .../trivial-gray-streams-9999.ebuild | 17 +++++++++++++ 4 files changed, 55 insertions(+) diff --git a/dev-lisp/trivial-gray-streams/Manifest b/dev-lisp/trivial-gray-streams/Manifest new file mode 100644 index 0000000..80183fe --- /dev/null +++ b/dev-lisp/trivial-gray-streams/Manifest @@ -0,0 +1 @@ +DIST trivial-gray-streams-2008-11-02.tar.gz 3522 SHA256 827eff9528b469f18c332d0dec68a2498ca9261950635b1cd8e589a492b589a4 SHA512 81ca798988511237a5a4c9ae4e0b15253404c47e245cc644211ffc58015fd46fa1623fecf7f07ea5df7acf80fff24782410ef832f08fd55f71c57daad6ced787 WHIRLPOOL 07b4ba232c7a6156667a084adf56684c3d04ace96d56a282298fd7e284760b60c1fefa09f90053e1400fed5c2d6cb25dbb2756697c08ad15b2647fd72933e26e diff --git a/dev-lisp/trivial-gray-streams/metadata.xml b/dev-lisp/trivial-gray-streams/metadata.xml new file mode 100644 index 0000000..6dbd467 --- /dev/null +++ b/dev-lisp/trivial-gray-streams/metadata.xml @@ -0,0 +1,9 @@ + + + + common-lisp + + This system provides an extremely thin compatibility layer for + Gray streams + + diff --git a/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild b/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild new file mode 100644 index 0000000..71cf386 --- /dev/null +++ b/dev-lisp/trivial-gray-streams/trivial-gray-streams-20081102.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit common-lisp-3 + +MY_PV=${PV:0:4}-${PV:4:2}-${PV:6:2} +MY_P=${PN}-${MY_PV} + +DESCRIPTION="A thin compatibility layer between Gray Stream Common Lisp implementations" +HOMEPAGE="https://common-lisp.net/project/trivial-gray-streams/" +SRC_URI="http://common-lisp.net/project/cl-plus-ssl/download/${MY_P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN}" + +S="${WORKDIR}"/${MY_P} + +src_unpack() { + unpack ${A} + rm "${S}"/Makefile +} diff --git a/dev-lisp/trivial-gray-streams/trivial-gray-streams-9999.ebuild b/dev-lisp/trivial-gray-streams/trivial-gray-streams-9999.ebuild new file mode 100644 index 0000000..f73f20d --- /dev/null +++ b/dev-lisp/trivial-gray-streams/trivial-gray-streams-9999.ebuild @@ -0,0 +1,17 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit common-lisp-3 git-2 + +DESCRIPTION="A thin compatibility layer between Gray Stream Common Lisp implementations" +HOMEPAGE="https://common-lisp.net/project/trivial-gray-streams/" +EGIT_REPO_URI="git://github.com/${PN}/${PN}" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN}"