public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Stelian Ionescu" <sionescu@cddr.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/lisp:master commit in: dev-lisp/uiop/, dev-lisp/gentoo-init/, dev-lisp/asdf/, ...
Date: Thu,  4 Apr 2013 00:05:19 +0000 (UTC)	[thread overview]
Message-ID: <1365033882.65897b1f9f5cec2f9ff435f339e4142e5a231d3d.fenlix@gentoo> (raw)

commit:     65897b1f9f5cec2f9ff435f339e4142e5a231d3d
Author:     Stelian Ionescu <sionescu <AT> cddr <DOT> org>
AuthorDate: Wed Apr  3 23:43:31 2013 +0000
Commit:     Stelian Ionescu <sionescu <AT> cddr <DOT> org>
CommitDate: Thu Apr  4 00:04:42 2013 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/lisp.git;a=commit;h=65897b1f

Update to ASDF3 including UIOP and changes to gentoo-init

---
 .../asdf/{asdf-2.016.ebuild => asdf-2.32.ebuild}   |   17 +++++++++----
 dev-lisp/gentoo-init/files/gentoo-init.lisp        |    5 +---
 ...ntoo-init-1.0.ebuild => gentoo-init-1.1.ebuild} |    4 +-
 dev-lisp/uiop/uiop-2.32.ebuild                     |   26 ++++++++++++++++++++
 4 files changed, 41 insertions(+), 11 deletions(-)

diff --git a/dev-lisp/asdf/asdf-2.016.ebuild b/dev-lisp/asdf/asdf-2.32.ebuild
similarity index 58%
rename from dev-lisp/asdf/asdf-2.016.ebuild
rename to dev-lisp/asdf/asdf-2.32.ebuild
index 76dce70..85ef872 100644
--- a/dev-lisp/asdf/asdf-2.016.ebuild
+++ b/dev-lisp/asdf/asdf-2.32.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -16,11 +16,18 @@ IUSE=""
 
 RDEPEND="!dev-lisp/cl-${PN}
 		!dev-lisp/asdf-binary-locations"
+PDEPEND="~dev-lisp/uiop-${PV}
+		 >=dev-lisp/gentoo-init-1.1"
 
-S="${WORKDIR}/${PN}"
+S="${WORKDIR}"
+
+src_compile() {
+	make
+}
 
 src_install() {
-	common-lisp-install-sources {asdf,asdf-ecl,wild-modules}.lisp
-	common-lisp-install-asdf asdf.asd
-	dodoc README
+	common-lisp-install-sources -t all build contrib test *.lisp version.lisp-expr
+	common-lisp-install-asdf asdf.asd asdf-driver.asd
+	dodoc README TODO
+	dohtml doc/*.{html,css,ico,png}
 }

diff --git a/dev-lisp/gentoo-init/files/gentoo-init.lisp b/dev-lisp/gentoo-init/files/gentoo-init.lisp
index 263aedd..6d82944 100644
--- a/dev-lisp/gentoo-init/files/gentoo-init.lisp
+++ b/dev-lisp/gentoo-init/files/gentoo-init.lisp
@@ -4,8 +4,5 @@
       (*compile-verbose* nil)
       #+cmu (ext:*gc-verbose* nil))
   (handler-bind ((warning #'muffle-warning))
-    (load #p"/usr/share/common-lisp/source/asdf/asdf.lisp"
-          :print nil :verbose nil)
-    #+ecl
-    (load #p"/usr/share/common-lisp/source/asdf/asdf-ecl.lisp"
+    (load #p"/usr/share/common-lisp/source/asdf/build/asdf.lisp"
           :print nil :verbose nil)))

diff --git a/dev-lisp/gentoo-init/gentoo-init-1.0.ebuild b/dev-lisp/gentoo-init/gentoo-init-1.1.ebuild
similarity index 85%
rename from dev-lisp/gentoo-init/gentoo-init-1.0.ebuild
rename to dev-lisp/gentoo-init/gentoo-init-1.1.ebuild
index 916467d..eacd501 100644
--- a/dev-lisp/gentoo-init/gentoo-init-1.0.ebuild
+++ b/dev-lisp/gentoo-init/gentoo-init-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
@@ -12,7 +12,7 @@ SLOT="0"
 KEYWORDS="~amd64 ~ppc ~sparc ~x86"
 IUSE=""
 
-RDEPEND=">=dev-lisp/asdf-2.0.0"
+RDEPEND=">=dev-lisp/asdf-2.32"
 
 S="${WORKDIR}"
 

diff --git a/dev-lisp/uiop/uiop-2.32.ebuild b/dev-lisp/uiop/uiop-2.32.ebuild
new file mode 100644
index 0000000..e18d75d
--- /dev/null
+++ b/dev-lisp/uiop/uiop-2.32.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=3
+inherit eutils common-lisp-3
+
+DESCRIPTION="UIOP is a portability layer spun off ASDF3"
+HOMEPAGE="http://common-lisp.net/project/asdf/"
+SRC_URI="http://common-lisp.net/project/asdf/archives/asdf-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="~dev-lisp/asdf-${PV}"
+
+S="${WORKDIR}"
+
+src_install() {
+	common-lisp-install-sources contrib/debug.lisp
+	cd ${PN}
+	common-lisp-install-sources -t all *.lisp version.lisp-expr
+	common-lisp-install-asdf uiop.asd
+}


                 reply	other threads:[~2013-04-04  0:05 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1365033882.65897b1f9f5cec2f9ff435f339e4142e5a231d3d.fenlix@gentoo \
    --to=sionescu@cddr.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox