Changeset 14305
- Timestamp:
- 12/06/12 21:20:34 (8 years ago)
- Location:
- trunk/abcl/contrib
- Files:
-
- 12 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/abcl/contrib/README.markdown
r14259 r14305 15 15 asdf-jar 16 16 17 Package ASDF system definitions into JVM artifacts for distribution 17 Package ASDF system definitions into JVM artifacts for 18 distribution 18 19 19 20 … … 22 23 A higher-order, more Lisp oriented interface for constructing Lisp 23 24 interfaces to existing binary code libraries available for the JVM 24 built on the primitives provided by the JAVA package. 25 built on the primitives provided by the JAVA package. Used in the 26 [lsw2][] Semantic Web package for dealing with OWL2 ontologies in 27 RDF(S) and other notations. 28 29 [lsw2]: http://code.google.com/p/lsw2/ 25 30 26 31 jfli 27 32 28 The "original" higher-order JVM inter opdescended from Rich33 The "original" higher-order JVM interface descended from Rich 29 34 Hickey's work on the JVM before Clojure. This implementation 30 35 currently uses a fork of the public [JFLI][] API that uses the 31 36 java interop of the ABCL JAVA package instead of the JNI 32 interface. 37 interface. 33 38 34 39 [jfli]: http://sourceforge.net/projects/jfli/ 40 41 quicklisp-abcl 42 43 Stub for loading Quicklisp from main repository if not locally 44 present. Must currently be invoked with the force option: 35 45 46 CL-USER> (asdf:load-system :quicklisp-abcl :force t) 36 47 37 48 mvn 38 --- 39 40 A collection of various useful JVM artifacts downloaded and cached by 41 the Aether Maven connector. Requires the maven-3.0.3 executable "mvn" 42 (or "mvn.bat" under MSFT Windows) to be in the current processes's path. 49 A collection of various useful JVM artifacts downloaded and cached by 50 the Aether Maven connector. Requires the maven-3.0.3 executable "mvn" 51 (or "mvn.bat" under MSFT Windows) to be in the current processes's 52 path. 43 53 44 jna 45 Cache, from the network if necessary, the jna-3.4.0.jar in 46 the current JVM process, allowing the bootstrapping of 47 dynamically linking to shared executables on the host platform. 54 mvn currently includes only the single artifact: 55 56 jna 57 Cache, from the network if necessary, the jna-3.4.0.jar in 58 the current JVM process, allowing the bootstrapping of 59 dynamically linking to shared executables on the host platform. 48 60 49 61 … … 57 69 Deprecated, use Quicklisp from the REPL via 58 70 59 CL-USER> (load "http s://beta.quicklisp.org/quicklisp.lisp")71 CL-USER> (load "http://beta.quicklisp.org/quicklisp.lisp") 60 72 61 73 instead. … … 65 77 Mark <evenson.not.org@gmail.com> 66 78 Created: 2011-09-11 67 Revised: 2012-11-28 79 Revised: 2012-12-06 80 <> abcl:documents <release#abcl-contrib.jar> . 68 81 69 82 -
trunk/abcl/contrib/abcl-asdf/README.markdown
r14259 r14305 4 4 To use: 5 5 6 CL-USER> (require 'abcl-contrib)6 CL-USER> (require :abcl-contrib) 7 7 8 CL-USER> (require 'abcl-asdf)8 CL-USER> (require :abcl-asdf) 9 9 10 10 … … 43 43 ASDF classes derived from ASDF:COMPONENT: 44 44 45 JAR-DIRECTORY, JAR-FILE, and CLASS-FILE-DIRECTORY for JVM artifacts46 that have a currently valid pathname representation (i.e. they exist47 on the local filesystem).45 JAR-DIRECTORY, JAR-FILE, and CLASS-FILE-DIRECTORY for JVM artifacts 46 that have a currently valid pathname representation (i.e. they exist 47 on the local filesystem). 48 48 49 The MVN and IRI classes descend from ASDF-COMPONENT, but do not50 directly have a filesystem location.49 The MVN and IRI classes descend from ASDF-COMPONENT, but do not 50 directly have a filesystem location. 51 51 52 The IRI component is currently unused, but serves as a point to base53 the inheritance of the MVN component while allowing other forms of54 uri-like resources to be encapsulated in the future.52 The IRI component is currently unused, but serves as a point to base 53 the inheritance of the MVN component while allowing other forms of 54 uri-like resources to be encapsulated in the future. 55 55 56 56 The MVN component should specifiy a [Maven URI][1] as its PATH. A … … 165 165 166 166 Created: 2011-01-01 167 Revised: 2012-1 1-28167 Revised: 2012-12-06 168 168 -
trunk/abcl/contrib/abcl-asdf/abcl-asdf.asd
r14259 r14305 3 3 (asdf:defsystem :abcl-asdf 4 4 :author "Mark Evenson" 5 :version "1.0.0" 5 :version "1.1.0" 6 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/abcl-asdf#1.1.0>" 6 7 :depends-on (jss) 7 8 :components -
trunk/abcl/contrib/asdf-install/asdf-install.asd
r13322 r14305 14 14 #+:sbcl (sb-bsd-sockets) 15 15 :version "0.6.10.2" 16 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/asdf-install#0.6.10.2>" 16 17 :author "Dan Barlow <dan@telent.net>, Edi Weitz <edi@agharta.de> and many others. See the file COPYRIGHT for more details." 17 18 :maintainer "Gary Warren King <gwking@metabang.com>" -
trunk/abcl/contrib/asdf-jar/README.markdown
r13350 r14305 1 1 ASDF-JAR 2 2 ======== 3 4 Mark Evenson5 Created: 20-JUN-20116 Modified: 20-JUN-20117 3 8 4 ASDF-JAR provides a system for packaging ASDF systems into jar … … 58 54 Setting CL:*LOAD-VERBOSE* will allow one to verify that the subsequent 59 55 load is indeed coming from the jar. 56 57 # Colophon 58 59 Mark Evenson 60 Created: 20-JUN-2011 61 Modified: 20-JUN-2011 62 <> abcl:documents <release#asdf-jar> . -
trunk/abcl/contrib/asdf-jar/asdf-jar.asd
r13351 r14305 5 5 :author "Mark Evenson" 6 6 :version "0.2.1" 7 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/asdf-jar#0.2.1> 7 8 :components 8 9 ((:module base :pathname "" :components -
trunk/abcl/contrib/jfli/README
r14258 r14305 35 35 and whatever else you can think of, to asimon@math.bme.hu. 36 36 37 # Colophon 38 39 <> abcl:documents <urn:abcl.org/release/1.1.0/contrib/jfli#0.2.0> . -
trunk/abcl/contrib/jfli/jfli.asd
r14258 r14305 5 5 :components ((:file "jfli"))) 6 6 7 8 ;;; Requires integration with 7 ;;; Requires integration with IntelliJ IDEA editor (free download) 9 8 (asdf:defsystem jfli-intellij-tests 10 9 :version "0.1.0" 10 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/jfli#0.2.0> ." 11 11 :components ((:module test 12 12 :components ((:file "yanking"))))) -
trunk/abcl/contrib/jss/README.markdown
r13869 r14305 134 134 <> dc:created "2005" ; 135 135 dc:author "Mark <evenson.not.org@gmail.com>"; 136 revised: "29-JAN-2012" . 136 dc:revised "06-DEC-2012" ; 137 <> abcl:documents <urn:abcl.org/release/1.1.0/contrib/jss#3.0.5" . 138 137 139 -
trunk/abcl/contrib/jss/jss.asd
r14239 r14305 3 3 :author "Alan Ruttenberg, Mark Evenson" 4 4 :version "3.0.5" 5 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/jss#3.05" . 5 6 :components ((:module base 6 7 :pathname "" :serial t -
trunk/abcl/contrib/mvn/jna.asd
r14236 r14305 4 4 (asdf:defsystem :jna 5 5 :version "3.5.1" 6 :description "<> asdf:defsystem <urn:abcl.org/release/1.1.0/contrib/jna#3.5.1" 6 7 :defsystem-depends-on (jss abcl-asdf) 7 8 ;; FIXME: always seems to be resolving the LATEST maven artifact. -
trunk/abcl/contrib/quicklisp/quicklisp-abcl.asd
r14261 r14305 4 4 (require :abcl-asdf) 5 5 (in-package :asdf) 6 6 7 ;; Quicklisp defines: 7 8 ;;(defvar *setup-url* "http://beta.quicklisp.org/quickstart/setup.lisp") 9 8 10 (defsystem :quicklisp-abcl 11 :description 12 "Load Quicklisp from the network if it isn't already installed. <urn:abcl.org/release/1.1.0/contrib/quicklisp-abcl#0.2.0>" 9 13 :version "0.2.0" 10 :description "Convenience stubs to load locally installed Quicklisp."11 ;; #+nil::defsystem-depends-on (abcl-asdf)12 14 :components nil) 15 13 16 ;; #+nil::needs-abcl-asdf((:iri "http://beta.quicklisp.org/quicklisp.lisp")) 14 17 ;; #+nil::in-order-to ((asdf:compile-op (ql::install))) ;;; FIXME tickle the internal Quicklisp setup
Note: See TracChangeset
for help on using the changeset viewer.