diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2003-09-01 19:41:37 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2003-09-01 19:41:37 +0000 |
commit | 8238dd5e9039d437b50b29ee07a406d436a01592 (patch) | |
tree | df7857693a7b108a8ec34a98a6ce592a0a769b38 /dev-lisp/cl-binary-types | |
parent | initial import (diff) | |
download | gentoo-2-8238dd5e9039d437b50b29ee07a406d436a01592.tar.gz gentoo-2-8238dd5e9039d437b50b29ee07a406d436a01592.tar.bz2 gentoo-2-8238dd5e9039d437b50b29ee07a406d436a01592.zip |
initial import
Diffstat (limited to 'dev-lisp/cl-binary-types')
-rw-r--r-- | dev-lisp/cl-binary-types/ChangeLog | 8 | ||||
-rw-r--r-- | dev-lisp/cl-binary-types/Manifest | 7 | ||||
-rw-r--r-- | dev-lisp/cl-binary-types/cl-binary-types-0.84.ebuild | 26 | ||||
-rw-r--r-- | dev-lisp/cl-binary-types/files/binary-types.asd | 31 | ||||
-rw-r--r-- | dev-lisp/cl-binary-types/files/digest-cl-binary-types-0.84 | 1 |
5 files changed, 69 insertions, 4 deletions
diff --git a/dev-lisp/cl-binary-types/ChangeLog b/dev-lisp/cl-binary-types/ChangeLog new file mode 100644 index 000000000000..338fd36fe723 --- /dev/null +++ b/dev-lisp/cl-binary-types/ChangeLog @@ -0,0 +1,8 @@ +# ChangeLog for dev-lisp/cl-binary-types +# Copyright 2000-2003 Gentoo Technologies, Inc. and Matthew Kennedy <mkennedy@gentoo.org>; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-binary-types/ChangeLog,v 1.1 2003/09/01 19:41:35 mkennedy Exp $ + +*cl-binary-types-0.84 (01 Sep 2003) + + 01 Sep 2003; Matthew Kennedy <mkennedy@gentoo.org> : + Initial import. diff --git a/dev-lisp/cl-binary-types/Manifest b/dev-lisp/cl-binary-types/Manifest index 9cec9d9aeb34..0a9bb98d5487 100644 --- a/dev-lisp/cl-binary-types/Manifest +++ b/dev-lisp/cl-binary-types/Manifest @@ -1,5 +1,4 @@ -MD5 4d8196919708609756bcc6b4815ca6c3 cl-binary-types-0.84.ebuild~ 732 -MD5 53f334364c330439118042c2dfac6be1 cl-binary-types-0.84.ebuild 1008 +MD5 1938d53d24337f576235abb901563ef5 ChangeLog 384 +MD5 589bdddadbd8664fb4e0b0421a8bb69b cl-binary-types-0.84.ebuild 1025 MD5 fdbadabdd46b39bfdcefad8254042838 files/digest-cl-binary-types-0.84 68 -MD5 5bfa51ee1f09e20753c181d969a3d0a3 files/binary-types.asd 1309 -MD5 8947ffb804e5019056bff157e3bbf1f2 files/binary-types.asd~ 1157 +MD5 bf152b8888126284672b5bb0cbd63304 files/binary-types.asd 1312 diff --git a/dev-lisp/cl-binary-types/cl-binary-types-0.84.ebuild b/dev-lisp/cl-binary-types/cl-binary-types-0.84.ebuild new file mode 100644 index 000000000000..82806d328f59 --- /dev/null +++ b/dev-lisp/cl-binary-types/cl-binary-types-0.84.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2003 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-binary-types/cl-binary-types-0.84.ebuild,v 1.1 2003/09/01 19:41:35 mkennedy Exp $ + +inherit common-lisp + +DESCRIPTION="Binary-types is a Library for accessing binary files with fixed bit-length code-words. Binary-types provides macros that are used to declare the mapping between Common Lisp objects and some binary (i.e. octet-based) representation." +HOMEPAGE="http://www.cliki.net/Binary-types + http://www.cs.uit.no/~frodef/sw/binary-types/" +SRC_URI="http://www.cs.uit.no/~frodef/sw/binary-types/binary-types-${PV}.tar.gz" +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp" + +CLPACKAGE=binary-types + +S=${WORKDIR}/${P/cl-/} + +src_install() { + common-lisp-install ${FILESDIR}/binary-types.asd *.lisp + common-lisp-system-symlink + dodoc README-bitfield COPYING ChangeLog type-hierarchy.ps README example.lisp +} diff --git a/dev-lisp/cl-binary-types/files/binary-types.asd b/dev-lisp/cl-binary-types/files/binary-types.asd new file mode 100644 index 000000000000..e2c289952c7c --- /dev/null +++ b/dev-lisp/cl-binary-types/files/binary-types.asd @@ -0,0 +1,31 @@ +;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*- + +;;;; This file originally from the Debian project's cl-binary-types +;;;; package maintained by Kevin M. Rosenberg <kmr@debian.org> + +;;;; ************************************************************************* +;;;; FILE IDENTIFICATION +;;;; +;;;; Name: binary-types.asd +;;;; Purpose: ASDF definition file for Binary-Types +;;;; Programmer: Kevin M. Rosenberg +;;;; Date Started: Sep 2002 +;;;; +;;;; $Id: binary-types.asd,v 1.1 2003/09/01 19:41:35 mkennedy Exp $ +;;;; +;;;; ************************************************************************* + +(in-package :asdf) + +(defsystem :binary-types + :name "cl-binary-types" + :author "Frode Vatvedt Fjeld <frodef@acm.org>" + :version "0.84" + :maintainer "Kevin M. Rosenberg <kmr@debian.org>" + :licence "GNU Lesser General Public License" + :description "Library for reading and writing binary files" + :long-description "Binary-types is a Common Lisp package for reading and writing binary files. Binary-types provides macros that are used to declare the mapping between lisp objects and some binary (i.e. octet-based) representation." + :perform (load-op :after (op binary-types) + (pushnew :binary-types cl:*features*)) + :components + ((:file "binary-types"))) diff --git a/dev-lisp/cl-binary-types/files/digest-cl-binary-types-0.84 b/dev-lisp/cl-binary-types/files/digest-cl-binary-types-0.84 new file mode 100644 index 000000000000..70358376d3f4 --- /dev/null +++ b/dev-lisp/cl-binary-types/files/digest-cl-binary-types-0.84 @@ -0,0 +1 @@ +MD5 25b0397203e0129f63fd3d48ce515dc5 binary-types-0.84.tar.gz 18616 |