commit: ba1121626b7ab64e31abe138af8fb12257380226 Author: Chema Alonso Josa <nimiux <AT> gentoo <DOT> org> AuthorDate: Sun Mar 18 20:56:00 2018 +0000 Commit: José María Alonso <nimiux <AT> gentoo <DOT> org> CommitDate: Sun Mar 18 20:56:00 2018 +0000 URL: https://gitweb.gentoo.org/proj/lisp.git/commit/?id=ba112162
dev-lisp/environment: Drops package dev-lisp/environment/environment-1.3.ebuild | 35 --------------------- dev-lisp/environment/files/environment.asd | 48 ----------------------------- 2 files changed, 83 deletions(-) diff --git a/dev-lisp/environment/environment-1.3.ebuild b/dev-lisp/environment/environment-1.3.ebuild deleted file mode 100644 index f5baf16a..00000000 --- a/dev-lisp/environment/environment-1.3.ebuild +++ /dev/null @@ -1,35 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit common-lisp-3 - -DESCRIPTION="Provides an CLOS (CL Object System) encapsulation of the current CL implementation environment" -HOMEPAGE="http://packages.debian.org/unstable/devel/cl-environment" -SRC_URI="mirror://debian/pool/main/c/cl-${PN}/cl-${PN}_${PV}.orig.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~sparc ~x86" -IUSE="" - -RDEPEND="!dev-lisp/cl-${PN}" - -S="${WORKDIR}"/cl-${PN}-${PV}.orig - -# FIXME: does not work with current SBCLs - -src_unpack() { - unpack ${A} -} - -src_prepare() { - cp "${FILESDIR}"/${PN}.asd "${S}" || die -} - -src_install() { - common-lisp-install-sources *.lisp impl-dependent - common-lisp-install-asdf - dodoc README -} diff --git a/dev-lisp/environment/files/environment.asd b/dev-lisp/environment/files/environment.asd deleted file mode 100644 index deb6425e..00000000 --- a/dev-lisp/environment/files/environment.asd +++ /dev/null @@ -1,48 +0,0 @@ -;;;; -*- Mode: Lisp -*- - -;;;; This file is from Debian. Copyright Kevin M. Rosenberg <[email protected]> - -(in-package :asdf) - -(defsystem :environment - :perform (load-op :after (op environment) - (pushnew :environment cl:*features*)) - :components - ((:file "env-package") - (:file "feature-tagged-type-class" :depends-on ("env-package")) - (:file "software" - :depends-on ("env-package" - "feature-tagged-type-class")) - (:file "machine" - :depends-on ("env-package" - "feature-tagged-type-class")) - (:file "operating-system" - :depends-on ("software")) - (:file "environment" - :depends-on ("operating-system" "machine")) - (:file "init-environment" - :depends-on ("environment" - "software" - "operating-system" - "machine" - )) - (:module impl-dependent - :depends-on ("init-environment") - :components - ((:file - #+clisp "clisp" - #+lispworks "lispworks" - #+allegro "allegro" - #+cmu "cmucl" - #+sbcl "sbcl" - #+scl "scl" - #+openmcl "openmcl" - #+lcl "lcl" - #+cormanlisp "corman" - ))) - - (:file "system-info" - :depends-on ("impl-dependent" "utilities")) - (:file "utilities" - :depends-on ("init-environment" "impl-dependent")) - ))
