Changeset 14301
- Timestamp:
- 12/06/12 20:17:24 (8 years ago)
- Location:
- branches/1.1.x
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1.x/abcl.rdf
r14300 r14301 1 1 # -*- Mode: n3 -*- 2 2 3 @prefix abcl: <https://abcl.org> . 3 @prefix abcl: <https://abcl.org#> . 4 <> 5 abcl:is "W3C Turtle RDF serializations format" ; 6 abcl:tag <http://svn.common-lisp.net/tags/1.1.0/> . 7 4 8 @prefix doap: <http://usefulinc.com/ns/doap#> . 5 9 @prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> . … … 12 16 13 17 @prefix dc: <http://purl.org/dc/elements/1.1/> . 14 <> dc:modified "06-DEC-2012" . 18 <> 19 abcl:tag <http://svn.common-lisp.net/tags/1.1.0/> ; 20 dc:identifier <urn:abcl.org/release/1.1.0> ; 21 doap:language "Common Lisp" ; 22 dc:created "01-JAN-2004" ; 23 dc:modified "06-DEC-2012" ; 15 24 16 <> dc:version "abcl-1.1.0" . 17 <>abcl:releaseCandidate "rc-3" .25 dc:version "abcl-1.1.0" ; 26 abcl:releaseCandidate "rc-3" . 18 27 19 <> rdfs:seeAlso <README> . 20 <> rdfs:seeAlso <file:doc/manual/abcl.tex> . 28 <> 29 rdfs:seeAlso <README> ; 30 rdfs:seeAlso <file:doc/manual/abcl.tex> . 21 31 22 <https://abcl.org/index#doap> 32 @prefix dc: <http://purl.org/dc/elements/1.1/> . 33 34 <abcl:doap> 23 35 a doap:Project ; 24 36 doap:label "Armed Bear Common Lisp" ; 25 37 doap:download <http://common-lisp.net/project/armedbear/> ; 26 doap:shortname "ABCL" ;27 doap:contributors """( ehu easye v-ille astalla rudi peter)""" .28 38 29 <https://abcl.org/index#doap> 39 dc:abstract "An implementation of ANSI Common Lisp that runs on the JVM." ; 40 doap:shortname "ABCL" ; 41 abcl:contributors """ehu easye v-ille astalla rudi peter""" . 42 43 44 <abcl:doap> doap:language "Common Lisp" . 45 46 <> <urn:abcl.org:releng:implementation:language> [ 47 48 a rdf:Bag; 49 rdf:_1 "Java"; 50 rdf:_2 "Ant"; 51 rdf:_3 "Bourne Shell Script"; 52 rdf:_4"Windows Batch Script" 53 ] . 54 55 56 <abcl:doap> 57 dc:contributor [ 58 a rdf:Alt; 59 rdf:_1 _:ehu ; 60 rdf:_2 _:easye ; 61 rdf:_3 _:ville ; 62 rdf:_4 _:astala ; 63 rdf:_5 _:rudi 64 ] . 65 66 <abcl:doap> 30 67 doap:language 31 68 "Common Lisp", "Java", "Ant", "Bourne Shell Script", "Windows Batch Script" . 32 69 33 <https://abcl.org/index#doap> 34 doap:license [ 35 dc:license <http://usefulinc.com/doap/licenses/gplv2> , 36 <http://usefulinc.com/doap/licenses/gplv2-classpath-exception> ; 37 ] . 70 _:user dc:identifier <http://ville.not.org/#me> ; 71 rdf:label "V-ille" . 72 73 74 <http://purl.org/dc/elements/1.1/> rdfs:seeAlso <http://dublincore.org/documents/2012/06/14/dcmi-terms/> . 75 76 <> doap:license [ 77 dc:license <http://usefulinc.com/doap/licenses/gplv2> ; 78 dc:license <http://usefulinc.com/doap/licenses/gplv2-classpath-exception> ; 79 80 rdfs:seeAlso <urn:abcl.org/release/1.1.0> ; 81 dc:licenseDocument <file:COPYING> ; 82 dc:licenseDocument <http://svn.common-lisp.net/branches/1.1.x/src/org/armedbear/LICENSE> ; 83 ] . 84 85 doap:Project rdfs:seeAlso [ 86 a rdf:Bag; 87 rdf:_1 <http://trac.common-lisp.net/armedbear/timeline> ; 88 rdf:_2 <http://trac.common-lisp.net/armedbear/wiki> ; 89 rdf:_3 <http://code.google.com/p/abcl-dynamic-install/> ; 90 dc:source abcl:tag ; 91 dc:Software [ 92 a rdf:Bag; 93 rdf:_1 <urn:abcl:previousVersion> ; 94 rdf:_2 <https://code.google.com/p/abcl-dynamic-install/files/abcl-1.1.0-rc-2.jar> 95 ] ; 96 ] . 97 98 <> abcl:provides <release#abcl-contrib.jar> ; 99 rdfs:seeAlso <file:contrib/README.markdown>. 100 101 <> dc:Standard <urn:abcl.org/ansi/common-lisp#X3J13> ; 102 rdfs:seeAlso [ 103 a rdf:Bag ; 104 rdf:_1 <urn:ansi.common-lisp> ; 105 rdf:_2 "ANSI+INCITS+226-1994+(R2004).pdf" 106 ] ; 107 dc:abstract 108 "ANSI INCITS 226-1994 (R2004) American National Standard for Programming Language Common LISP (X3J13)" . 109 110 <> rdfs:seeAlso <urn:abcl.org/ansi/common-lisp#X3J13> . 38 111 39 112 doap:Project rdfs:seeAlso -
branches/1.1.x/contrib/README.markdown
r14259 r14301 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 -
branches/1.1.x/contrib/abcl-asdf/README.markdown
r14259 r14301 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 -
branches/1.1.x/contrib/abcl-asdf/abcl-asdf.asd
r14259 r14301 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 -
branches/1.1.x/contrib/asdf-install/asdf-install.asd
r13322 r14301 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>" -
branches/1.1.x/contrib/asdf-jar/README.markdown
r13350 r14301 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> . -
branches/1.1.x/contrib/asdf-jar/asdf-jar.asd
r13351 r14301 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 -
branches/1.1.x/contrib/jfli/README
r14258 r14301 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> . -
branches/1.1.x/contrib/jfli/jfli.asd
r14258 r14301 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"))))) -
branches/1.1.x/contrib/jss/README.markdown
r13869 r14301 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 -
branches/1.1.x/contrib/jss/jss.asd
r14239 r14301 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 -
branches/1.1.x/contrib/mvn/jna.asd
r14236 r14301 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. -
branches/1.1.x/contrib/quicklisp/quicklisp-abcl.asd
r14261 r14301 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.