From 615925969ee1ff6719fc9ce3344913a43136339a Mon Sep 17 00:00:00 2001 From: Matthew Kennedy <mkennedy@gentoo.org> Date: Sun, 6 Feb 2005 00:41:31 +0000 Subject: Package-Manager: portage-2.0.51-r15 --- dev-lisp/cl-aima/ChangeLog | 12 +++++- dev-lisp/cl-aima/Manifest | 7 +-- dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild | 45 -------------------- dev-lisp/cl-aima/cl-aima-1.0.4.ebuild | 47 +++++++++++++++++++++ ....0.4-defsystem-and-package-lock-gentoo.patch.gz | Bin 0 -> 5052 bytes dev-lisp/cl-aima/files/digest-cl-aima-1.0.2-r1 | 2 - dev-lisp/cl-aima/files/digest-cl-aima-1.0.4 | 2 + 7 files changed, 63 insertions(+), 52 deletions(-) delete mode 100644 dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild create mode 100644 dev-lisp/cl-aima/cl-aima-1.0.4.ebuild create mode 100644 dev-lisp/cl-aima/files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz delete mode 100644 dev-lisp/cl-aima/files/digest-cl-aima-1.0.2-r1 create mode 100644 dev-lisp/cl-aima/files/digest-cl-aima-1.0.4 (limited to 'dev-lisp/cl-aima') diff --git a/dev-lisp/cl-aima/ChangeLog b/dev-lisp/cl-aima/ChangeLog index dcb5a0939d07..e2acfb04a5f7 100644 --- a/dev-lisp/cl-aima/ChangeLog +++ b/dev-lisp/cl-aima/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for dev-lisp/cl-aima -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-aima/ChangeLog,v 1.8 2004/06/24 23:40:00 agriffis Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-aima/ChangeLog,v 1.9 2005/02/06 00:41:31 mkennedy Exp $ + +*cl-aima-1.0.4 (05 Feb 2005) + + 05 Feb 2005; Matthew Kennedy <mkennedy@gentoo.org> + +files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz, + -cl-aima-1.0.2-r1.ebuild, +cl-aima-1.0.4.ebuild: + Removed old ebuilds; New upstream version; Include an ASDF system definition + file; Fix for package locks (CMUCL) 23 Mar 2004; <mkennedy@gentoo.org> cl-aima-1.0.2-r1.ebuild: Marking stable for x86 diff --git a/dev-lisp/cl-aima/Manifest b/dev-lisp/cl-aima/Manifest index 31151c29b4c8..59ed50babcb2 100644 --- a/dev-lisp/cl-aima/Manifest +++ b/dev-lisp/cl-aima/Manifest @@ -1,4 +1,5 @@ -MD5 eff8a1637aec11c9ce6e06160093afc5 cl-aima-1.0.2-r1.ebuild 1395 -MD5 368345351fd4bba364a8e5a197a1ff53 ChangeLog 936 +MD5 bd9dbeab71b755a06c67b0eead4d9433 cl-aima-1.0.4.ebuild 1616 +MD5 abef503f170516a72aad952f2e674513 ChangeLog 1247 MD5 9b65b0341efc8f4b29498aad23315229 metadata.xml 164 -MD5 1b11e210086362909b8f0d4af6489c09 files/digest-cl-aima-1.0.2-r1 136 +MD5 e3eb78b3fd180b27d032e20b551747cc files/digest-cl-aima-1.0.4 136 +MD5 8fb00bb7d54826f9eab646777630e873 files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz 5052 diff --git a/dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild b/dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild deleted file mode 100644 index ffdcbeb541a8..000000000000 --- a/dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-aima/cl-aima-1.0.2-r1.ebuild,v 1.6 2004/06/24 23:40:00 agriffis Exp $ - -inherit common-lisp eutils - -DEB_PV=1 - -DESCRIPTION="Common Lisp source code from Peter Norvig's Artificial Intelligence: A Modern Approach" -HOMEPAGE="http://aima.cs.berkeley.edu/ http://www.norvig.com/ http://packages.debian.org/unstable/devel/cl-aima.html" -SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-aima/cl-aima_${PV}.orig.tar.gz - http://ftp.debian.org/debian/pool/main/c/cl-aima/cl-aima_${PV}-${DEB_PV}.diff.gz" - -LICENSE="Norvig" -SLOT="0" -KEYWORDS="x86" -IUSE="" - -DEPEND="dev-lisp/common-lisp-controller - virtual/commonlisp" - -S=${WORKDIR}/cl-aima-${PV} - -CLPACKAGE=aima - -src_unpack() { - unpack ${A} - epatch ${PN}_${PV}-${DEB_PV}.diff -} - -src_install() { - insinto /usr/share/common-lisp/source/aima/ - doins debian/aima.asd aima.lisp - for module in agents language learning logic search uncertainty utilities; do - find ${module} -type f -name \*.lisp -print | while read lisp; do \ - local dir=${D}/usr/share/common-lisp/source/aima/$(dirname ${lisp}) - mkdir -p ${dir} &>/dev/null - cp ${lisp} ${dir} - done - mv ${module}/README.html README-${module}.html && dohtml README-${module}.html - done - common-lisp-system-symlink - dohtml doc/* - do-debian-credits -} diff --git a/dev-lisp/cl-aima/cl-aima-1.0.4.ebuild b/dev-lisp/cl-aima/cl-aima-1.0.4.ebuild new file mode 100644 index 000000000000..c16729adbf1e --- /dev/null +++ b/dev-lisp/cl-aima/cl-aima-1.0.4.ebuild @@ -0,0 +1,47 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-aima/cl-aima-1.0.4.ebuild,v 1.1 2005/02/06 00:41:31 mkennedy Exp $ + +inherit common-lisp eutils + +DEB_PV=1 + +DESCRIPTION="Common Lisp source code from Peter Norvig's Artificial Intelligence: A Modern Approach" +HOMEPAGE="http://aima.cs.berkeley.edu/ http://www.norvig.com/ http://packages.debian.org/unstable/devel/cl-aima.html" +SRC_URI="http://ftp.debian.org/debian/pool/main/c/cl-aima/cl-aima_${PV}.orig.tar.gz + http://ftp.debian.org/debian/pool/main/c/cl-aima/cl-aima_${PV}-${DEB_PV}.diff.gz" +LICENSE="Norvig" +SLOT="0" +KEYWORDS="x86" +IUSE="" +DEPEND="dev-lisp/common-lisp-controller + virtual/commonlisp" + +S=${WORKDIR}/cl-aima-${PV} + +CLPACKAGE=aima + +src_unpack() { + unpack ${A} + epatch ${PN}_${PV}-${DEB_PV}.diff + gunzip -c ${FILESDIR}/${PV}-defsystem-and-package-lock-gentoo.patch.gz \ + >${PV}-defsystem-and-package-lock-gentoo.patch \ + && epatch ${PV}-defsystem-and-package-lock-gentoo.patch || die +} + +src_install() { + insinto /usr/share/common-lisp/source/aima/ + doins aima.asd aima.lisp + for module in agents language learning logic search uncertainty utilities; do + find ${module} -type f -name \*.lisp -print | while read lisp; do \ + local dir=${D}/usr/share/common-lisp/source/aima/$(dirname ${lisp}) + mkdir -p ${dir} &>/dev/null + cp ${lisp} ${dir} + done + mv ${module}/README.html README-${module}.html && dohtml README-${module}.html + done + common-lisp-system-symlink + dohtml doc/* + do-debian-credits + find ${D} -type f -exec chmod 644 '{}' \; +} diff --git a/dev-lisp/cl-aima/files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz b/dev-lisp/cl-aima/files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz new file mode 100644 index 000000000000..db8e7e6ffe9e Binary files /dev/null and b/dev-lisp/cl-aima/files/1.0.4-defsystem-and-package-lock-gentoo.patch.gz differ diff --git a/dev-lisp/cl-aima/files/digest-cl-aima-1.0.2-r1 b/dev-lisp/cl-aima/files/digest-cl-aima-1.0.2-r1 deleted file mode 100644 index 87b37df54ea6..000000000000 --- a/dev-lisp/cl-aima/files/digest-cl-aima-1.0.2-r1 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 da29b0ec00d2abac61d1bcdb769bbf0e cl-aima_1.0.2.orig.tar.gz 188037 -MD5 d51a6942f2745109c5b81ee0b897dc13 cl-aima_1.0.2-1.diff.gz 3511 diff --git a/dev-lisp/cl-aima/files/digest-cl-aima-1.0.4 b/dev-lisp/cl-aima/files/digest-cl-aima-1.0.4 new file mode 100644 index 000000000000..3988e64256ea --- /dev/null +++ b/dev-lisp/cl-aima/files/digest-cl-aima-1.0.4 @@ -0,0 +1,2 @@ +MD5 b8689e66bca8ebc64f43d7f7fe808655 cl-aima_1.0.4.orig.tar.gz 187684 +MD5 a6744374bfdd33dc25c4bff488e49207 cl-aima_1.0.4-1.diff.gz 3752 -- cgit v1.2.3-65-gdbad