Skip to content

Commit

Permalink
Put list of contributors into a separate files, clean .asd files.
Browse files Browse the repository at this point in the history
  • Loading branch information
sionescu committed Dec 24, 2009
1 parent c0001c1 commit e22b33d
Show file tree
Hide file tree
Showing 3 changed files with 39 additions and 34 deletions.
17 changes: 17 additions & 0 deletions CONTRIBUTORS
@@ -0,0 +1,17 @@
-*- outline -*-

Based on original Bordeaux-MP spec by Dan Barlow <dan@telent.net>

Contributors:

* Attila Lendvai <attila.lendvai@gmail.com>
- better handling of unsupported Lisps
* Vladimir Sekissov <svg@surnet.ru>
- fixes for CMUCL implementation
* Pierre Thierry <nowhere.man@levallois.eu.org>
- added license information
* Stelian Ionescu <sionescu@cddr.org>
- finished conversion from generic functions
- enabled running thread-safe code in unthreaded lisps
* Douglas Crosher <dtc@scieneer.com>
- added Scieneer Common Lisp support
3 changes: 2 additions & 1 deletion bordeaux-threads-test.asd
Expand Up @@ -6,4 +6,5 @@ Distributed under the MIT license (see LICENSE file)

(defsystem :bordeaux-threads-test
:depends-on (:bordeaux-threads :lift)
:components ((:module "test" :components ((:file "bordeaux-threads-test")))))
:components ((:module "test"
:components ((:file "bordeaux-threads-test")))))
53 changes: 20 additions & 33 deletions bordeaux-threads.asd
Expand Up @@ -29,42 +29,29 @@ Distributed under the MIT license (see LICENSE file)

(defsystem :bordeaux-threads
:author "Greg Pfeil <greg@technomadic.org>"
;; based on original Bordeaux-MP spec by Dan Barlow <dan@telent.net>
;; contributors:
;; Attila Lendvai <attila.lendvai@gmail.com>
;; - better handling of unsupported Lisps
;; Vladimir Sekissov <svg@surnet.ru>
;; - fixes for CMUCL implementation
;; Pierre Thierry <nowhere.man@levallois.eu.org>
;; - added license information
;; Stelian Ionescu <sionescu@cddr.org>
;; - finished conversion from generic functions
;; - enabled running thread-safe code in unthreaded lisps
;; Douglas Crosher <dtc@scieneer.com>
;; - added Scieneer Common Lisp support
:licence "MIT"
:version "0.5.1"
:version "0.6.0-dev"
:depends-on (:alexandria)
:components ((:module "src"
:serial t
:components
((:file "bordeaux-threads")
(:file #+(and thread-support allegro) "allegro"
#+(and thread-support armedbear) "armedbear"
#+(and thread-support cmu) "cmu"
#+(and thread-support scl) "scl"
#+(and thread-support corman) "corman"
#+(and thread-support digitool) "mcl"
#+(and thread-support ecl) "ecl"
#+(and thread-support lispworks) "lispworks"
#+(and thread-support openmcl) "openmcl"
#+(and thread-support sbcl) "sbcl"
#+(and thread-support clisp) "clisp"
#-thread-support "unsupported")
(:file "default-implementations")
#+(and thread-support
(or armedbear ecl lispworks digitool))
(:file "condition-variables"))))
:serial t
:components
((:file "bordeaux-threads")
(:file #+(and thread-support allegro) "allegro"
#+(and thread-support armedbear) "armedbear"
#+(and thread-support cmu) "cmu"
#+(and thread-support scl) "scl"
#+(and thread-support corman) "corman"
#+(and thread-support digitool) "mcl"
#+(and thread-support ecl) "ecl"
#+(and thread-support lispworks) "lispworks"
#+(and thread-support openmcl) "openmcl"
#+(and thread-support sbcl) "sbcl"
#+(and thread-support clisp) "clisp"
#-thread-support "unsupported")
(:file "default-implementations")
#+(and thread-support
(or armedbear ecl lispworks digitool))
(:file "condition-variables"))))
:in-order-to ((test-op (load-op bordeaux-threads-test)))
:perform (test-op :after (op c)
(describe
Expand Down

0 comments on commit e22b33d

Please sign in to comment.