Portage is a package management system used by Gentoo Linux
# ChangeLog for dev-lisp/cl-hello
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-hello/ChangeLog,v 1.5 2007/02/04 01:01:37 flameeyes Exp $
04 Feb 2007; Diego Pettenò
Regenerate digest in Manifest2 format.
24 May 2005;
Keywording ~sparc
16 Apr 2005; Matthew Kennedy
Keywording
21 Mar 2005; Matthew Kennedy
Keywording for ~amd64
*cl-hello-0.2 (20 Mar 2005)
20 Mar 2005; Matthew Kennedy
+cl-hello-0.2.ebuild:
Initial port. Ebuild contributed by Matthew Kennedy
DIST hello-lisp-0.2.tar.gz 1820 RMD160 55ac5ee1c70a1b788922a40c986b84673956250e SHA1 d7876d222fc1b76bd14a0692a8a9b3cfefee6579 SHA256 994dcb627b61c6b7afcfd7f3f1e93b6f583b96e8923171f592c29a670ee0483c
EBUILD cl-hello-0.2.ebuild 707 RMD160 2211ca0cf2e3261432fd2bd28763a50508aca883 SHA1 81543e02c538b931185a3d11625aa209497630ff SHA256 3c15af7fae4879db8f59f5576ab9d952782c1a54ae5c56faeae4c20fda4cdd7e
MISC ChangeLog 780 RMD160 e7e67513fa985f2153e14dd94ffa06842e0af95a SHA1 d90ee155ba4b8638631958b58cc5e70af709f704 SHA256 d20a93b97bc89338c7dfa4b9d4bb8b89244e7ff16a772cd79c8163746bd09ba7
MISC metadata.xml 428 RMD160 a05f1abd3660d3f87f7067bc218665eb6c11d893 SHA1 bc49cbb624bb7ca9adae95d89d90a96cbdb51731 SHA256 7866fae4918176a1476a702e7b32b4b1c028e2223e93a8c24a8b97d875c7af97
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-hello/cl-hello-0.2.ebuild,v 1.4 2005/05/24 18:48:33 mkennedy Exp $
inherit common-lisp
DESCRIPTION="An example of how to layout the file structure of a Lisp program or library."
HOMEPAGE="http://www.cliki.net/hello-lisp"
SRC_URI="http://constantly.at/lisp/hello-lisp-${PV}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE=""
DEPEND="dev-lisp/common-lisp-controller
virtual/commonlisp"
CLPACKAGE=hello-lisp
S=${WORKDIR}/hello-lisp
src_install() {
common-lisp-install *.asd *.lisp
common-lisp-system-symlink
dodoc README
}
HELLO-LISP is an example of how to lay out the file structure of a Lisp program
/ library. It serves as a reference document for intermediate Lisp programmers
who want to use asdf and make their programs asdf-install-friendly.