diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2004-07-11 05:27:16 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2004-07-11 05:27:16 +0000 |
commit | 4ef23d70172de40834fab9a6835040988164f32b (patch) | |
tree | 52355204ae1373045a7195e4c301895e061c57ee /dev-lisp | |
parent | (no commit message) (diff) | |
download | historical-4ef23d70172de40834fab9a6835040988164f32b.tar.gz historical-4ef23d70172de40834fab9a6835040988164f32b.tar.bz2 historical-4ef23d70172de40834fab9a6835040988164f32b.zip |
*** empty log message ***
Diffstat (limited to 'dev-lisp')
-rw-r--r-- | dev-lisp/cl-xml/ChangeLog | 19 | ||||
-rw-r--r-- | dev-lisp/cl-xml/Manifest | 0 | ||||
-rw-r--r-- | dev-lisp/cl-xml/cl-xml-2-r1.ebuild | 31 | ||||
-rw-r--r-- | dev-lisp/cl-xml/cl-xml-2.ebuild | 48 | ||||
-rw-r--r-- | dev-lisp/cl-xml/cl-xml-3.ebuild | 31 | ||||
-rw-r--r-- | dev-lisp/cl-xml/files/digest-cl-xml-2 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-xml/files/digest-cl-xml-2-r1 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-xml/files/digest-cl-xml-3 | 1 | ||||
-rw-r--r-- | dev-lisp/cl-xml/metadata.xml | 5 |
9 files changed, 0 insertions, 137 deletions
diff --git a/dev-lisp/cl-xml/ChangeLog b/dev-lisp/cl-xml/ChangeLog deleted file mode 100644 index 8909d5c71281..000000000000 --- a/dev-lisp/cl-xml/ChangeLog +++ /dev/null @@ -1,19 +0,0 @@ -# ChangeLog for dev-lisp/cl-xml -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lisp/cl-xml/ChangeLog,v 1.4 2004/06/24 23:57:07 agriffis Exp $ - -*cl-xml-3 (13 May 2004) - - 13 May 2004; <mkennedy@gentoo.org> +cl-xml-3.ebuild: - New upstream version. Resolves Bug #40105 - -*cl-xml-2-r1 (12 Feb 2004) - - 12 Feb 2004; <mkennedy@gentoo.org> cl-xml-2-r1.ebuild: - Cleanup for eclass changes. - -*cl-xml-2 (09 Jan 2004) - - 09 Jan 2004; <mkennedy@gentoo.org> cl-xml-2.ebuild: - initial import. ebuild contributed by Matthew Kennedy <mkennedy@gentoo.org> - diff --git a/dev-lisp/cl-xml/Manifest b/dev-lisp/cl-xml/Manifest deleted file mode 100644 index e69de29bb2d1..000000000000 --- a/dev-lisp/cl-xml/Manifest +++ /dev/null diff --git a/dev-lisp/cl-xml/cl-xml-2-r1.ebuild b/dev-lisp/cl-xml/cl-xml-2-r1.ebuild deleted file mode 100644 index 8eea5da4cdfd..000000000000 --- a/dev-lisp/cl-xml/cl-xml-2-r1.ebuild +++ /dev/null @@ -1,31 +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-xml/cl-xml-2-r1.ebuild,v 1.2 2004/06/24 23:57:07 agriffis Exp $ - -inherit common-lisp - -DESCRIPTION="A Simple XML Parser for Common Lisp" -HOMEPAGE="http://homepage.mac.com/svc/xml/readme.html" -SRC_URI="mirror://gentoo/xml-${PV}.tar.gz" -LICENSE="LLGPL-2.1" -SLOT="0" -KEYWORDS="~x86" -DEPEND="dev-lisp/common-lisp-controller - virtual/commonlisp" - -S=${WORKDIR}/xml - -CLPACKAGE='xml-parser-only xml' - -src_install() { - insinto /usr/share/common-lisp/source/xml - doins *.asd *.lisp - dodir /usr/share/common-lisp/systems - for package in ${CLPACKAGE}; do - dosym /usr/share/common-lisp/source/xml/${package}.asd \ - /usr/share/common-lisp/systems/${package}.asd - done - dohtml *.html - insinto /usr/share/common-lisp/source/${CLPACKAGE}/test - doins test/*.{lisp,xml} -} diff --git a/dev-lisp/cl-xml/cl-xml-2.ebuild b/dev-lisp/cl-xml/cl-xml-2.ebuild deleted file mode 100644 index 9c386dd4420d..000000000000 --- a/dev-lisp/cl-xml/cl-xml-2.ebuild +++ /dev/null @@ -1,48 +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-xml/cl-xml-2.ebuild,v 1.2 2004/06/24 23:57:07 agriffis Exp $ - -inherit common-lisp - -DESCRIPTION=" A Simple XML Parser for Common Lisp" -HOMEPAGE="http://homepage.mac.com/svc/xml/readme.html" -SRC_URI="mirror://gentoo/xml-${PV}.tar.gz" -LICENSE="LLGPL-2.1" -SLOT="0" -KEYWORDS="~x86" -IUSE="" -DEPEND="dev-lisp/common-lisp-controller - virtual/commonlisp" - -S=${WORKDIR}/xml - -CLPACKAGE=xml - -src_install() { - common-lisp-install *.asd *.lisp - common-lisp-system-symlink - dohtml *.html - insinto /usr/share/common-lisp/source/${CLPACKAGE}/test - doins test/*.{lisp,xml} -} - - -pkg_preinst() { - rm -rf /usr/lib/common-lisp/*/${CLPACKAGE} || true -} - -pkg_postinst() { - while read line; do einfo ${line}; done <<EOF - -You can test ${PN} by issuing the following commands in your favourite -Common Lisp implementation: - - (require :xml) - (load "/usr/share/common-lisp/source/xml/test/all-tests.lisp") - -EOF -} - -pkg_postrm() { - rm -rf /usr/lib/common-lisp/*/${CLPACKAGE} || true -} diff --git a/dev-lisp/cl-xml/cl-xml-3.ebuild b/dev-lisp/cl-xml/cl-xml-3.ebuild deleted file mode 100644 index 8db039f09758..000000000000 --- a/dev-lisp/cl-xml/cl-xml-3.ebuild +++ /dev/null @@ -1,31 +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-xml/cl-xml-3.ebuild,v 1.2 2004/06/24 23:57:07 agriffis Exp $ - -inherit common-lisp - -DESCRIPTION="A Simple XML Parser for Common Lisp" -HOMEPAGE="http://homepage.mac.com/svc/xml/readme.html" -SRC_URI="mirror://gentoo/xml-${PV}.tar.gz" -LICENSE="LLGPL-2.1" -SLOT="0" -KEYWORDS="~x86" -DEPEND="dev-lisp/common-lisp-controller - virtual/commonlisp" - -S=${WORKDIR}/xml - -CLPACKAGE='xml-parser-only xml' - -src_install() { - insinto /usr/share/common-lisp/source/xml - doins *.asd *.lisp - dodir /usr/share/common-lisp/systems - for package in ${CLPACKAGE}; do - dosym /usr/share/common-lisp/source/xml/${package}.asd \ - /usr/share/common-lisp/systems/${package}.asd - done - dohtml *.html - insinto /usr/share/common-lisp/source/${CLPACKAGE}/test - doins test/*.{lisp,xml} -} diff --git a/dev-lisp/cl-xml/files/digest-cl-xml-2 b/dev-lisp/cl-xml/files/digest-cl-xml-2 deleted file mode 100644 index e1d99119ae06..000000000000 --- a/dev-lisp/cl-xml/files/digest-cl-xml-2 +++ /dev/null @@ -1 +0,0 @@ -MD5 44c7d6a8ad8caf77e8ff5ed4461fbf27 xml-2.tar.gz 19404 diff --git a/dev-lisp/cl-xml/files/digest-cl-xml-2-r1 b/dev-lisp/cl-xml/files/digest-cl-xml-2-r1 deleted file mode 100644 index e1d99119ae06..000000000000 --- a/dev-lisp/cl-xml/files/digest-cl-xml-2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 44c7d6a8ad8caf77e8ff5ed4461fbf27 xml-2.tar.gz 19404 diff --git a/dev-lisp/cl-xml/files/digest-cl-xml-3 b/dev-lisp/cl-xml/files/digest-cl-xml-3 deleted file mode 100644 index bc210d2c7683..000000000000 --- a/dev-lisp/cl-xml/files/digest-cl-xml-3 +++ /dev/null @@ -1 +0,0 @@ -MD5 44c7d6a8ad8caf77e8ff5ed4461fbf27 xml-3.tar.gz 19404 diff --git a/dev-lisp/cl-xml/metadata.xml b/dev-lisp/cl-xml/metadata.xml deleted file mode 100644 index f418045b09c8..000000000000 --- a/dev-lisp/cl-xml/metadata.xml +++ /dev/null @@ -1,5 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>common-lisp</herd> -</pkgmetadata> |