forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-lisp/flexi-streams: add from lisp overlay
Package-Manager: portage-2.2.20.1
- Loading branch information
José María Alonso Josa
committed
Dec 15, 2015
1 parent
11dc620
commit 9653d4d
Showing
3 changed files
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST v1.0.15.tar.gz 135550 SHA256 1c9d8020cfd2bf0344e5baf1dff8b01aa7cefcdc5bc3765d029bd2e723d00251 SHA512 103e6c53f8c0ffd6d218e08e49fd49c21f420c1221912121dba1218d4631b6869357002fb1a18444e58283e2d6e59ae3f43d5a23c06c506538d69f4a178b3973 WHIRLPOOL d8a88f21b26079f86d5deb55cfeae0bc4c7f34d853e4b2a887eeb829f38e5be8d8902dea675caa7d373503f25c798b2492d6a1212fb58ea15e352e1c3c9b90fa |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<herd>common-lisp</herd> | ||
<longdescription lang="en"> | ||
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. | ||
</longdescription> | ||
</pkgmetadata> |