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 819711384B4 for ; Tue, 15 Dec 2015 22:21:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AFC921C008; Tue, 15 Dec 2015 22:21:45 +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 978E721C008 for ; Tue, 15 Dec 2015 22:21:44 +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 5C50433E3A9 for ; Tue, 15 Dec 2015 22:21:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A2D8DA91 for ; Tue, 15 Dec 2015 22:21:40 +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: <1450218260.9653d4d64b577b06f1b7c50edb22abdd9f4168f9.nimiux@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lisp/flexi-streams/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lisp/flexi-streams/Manifest dev-lisp/flexi-streams/flexi-streams-1.0.15.ebuild dev-lisp/flexi-streams/metadata.xml X-VCS-Directories: dev-lisp/flexi-streams/ X-VCS-Committer: nimiux X-VCS-Committer-Name: José María Alonso X-VCS-Revision: 9653d4d64b577b06f1b7c50edb22abdd9f4168f9 X-VCS-Branch: master Date: Tue, 15 Dec 2015 22:21:40 +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: c61afe0c-d7ec-4150-bb5d-db1ee46c837d X-Archives-Hash: 16dd850fffab1c6fc0d2906e7e58756d commit: 9653d4d64b577b06f1b7c50edb22abdd9f4168f9 Author: José María Alonso Josa gentoo org> AuthorDate: Tue Dec 15 22:24:20 2015 +0000 Commit: José María Alonso gentoo org> CommitDate: Tue Dec 15 22:24:20 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9653d4d6 dev-lisp/flexi-streams: add from lisp overlay Package-Manager: portage-2.2.20.1 dev-lisp/flexi-streams/Manifest | 1 + dev-lisp/flexi-streams/flexi-streams-1.0.15.ebuild | 28 ++++++++++++++++++++++ dev-lisp/flexi-streams/metadata.xml | 12 ++++++++++ 3 files changed, 41 insertions(+) diff --git a/dev-lisp/flexi-streams/Manifest b/dev-lisp/flexi-streams/Manifest new file mode 100644 index 0000000..3a09bbe --- /dev/null +++ b/dev-lisp/flexi-streams/Manifest @@ -0,0 +1 @@ +DIST v1.0.15.tar.gz 135550 SHA256 1c9d8020cfd2bf0344e5baf1dff8b01aa7cefcdc5bc3765d029bd2e723d00251 SHA512 103e6c53f8c0ffd6d218e08e49fd49c21f420c1221912121dba1218d4631b6869357002fb1a18444e58283e2d6e59ae3f43d5a23c06c506538d69f4a178b3973 WHIRLPOOL d8a88f21b26079f86d5deb55cfeae0bc4c7f34d853e4b2a887eeb829f38e5be8d8902dea675caa7d373503f25c798b2492d6a1212fb58ea15e352e1c3c9b90fa diff --git a/dev-lisp/flexi-streams/flexi-streams-1.0.15.ebuild b/dev-lisp/flexi-streams/flexi-streams-1.0.15.ebuild new file mode 100644 index 0000000..54995d5 --- /dev/null +++ b/dev-lisp/flexi-streams/flexi-streams-1.0.15.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_V="v${PV}" + +DESCRIPTION="Flexible bivalent streams for Common Lisp" +HOMEPAGE="http://weitz.de/flexi-streams/ + http://www.cliki.net/flexi-streams/" +SRC_URI="https://github.com/edicl/${PN}/archive/${MY_V}.tar.gz" + +LICENSE="BSD-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="!dev-lisp/cl-${PN} + >=dev-lisp/trivial-gray-streams-20060925" + +src_install() { + common-lisp-install-sources *.lisp + common-lisp-install-asdf + dohtml doc/index.html +} diff --git a/dev-lisp/flexi-streams/metadata.xml b/dev-lisp/flexi-streams/metadata.xml new file mode 100644 index 0000000..417d4b8 --- /dev/null +++ b/dev-lisp/flexi-streams/metadata.xml @@ -0,0 +1,12 @@ + + + + common-lisp + + FLEXI-STREAMS implements "virtual" bivalent streams that can be + layered atop real binary or bivalent streams and that can be used + to read and write character data in various single- or multi-octet + encodings which can be changed on the fly. It also supplies + in-memory binary streams which are similar to string streams. + +