Changeset 12062 in project
- Timestamp:
- 10/01/08 04:29:00 (12 years ago)
- Location:
- release/3/graph-cycles/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
release/3/graph-cycles/trunk/graph-cycles-eggdoc.scm
r7358 r12062 9 9 10 10 (history 11 (version "1.7" "Now using matchable extension") 11 12 (version "1.6" "Updated unit tests to use testbase") 12 13 (version "1.5" "Build script updated for better cross-platform compatibility") … … 18 19 19 20 (requires (url "iset.html" "iset") 20 (url "graph-scc.html" "graph-scc")) 21 (url "graph-scc.html" "graph-scc") 22 (url "syntax-case.html" "syntax-case") 23 (url "matchable.html" "matchable")) 21 24 22 25 (usage "(require-extension graph-cycles)") -
release/3/graph-cycles/trunk/graph-cycles.meta
r9305 r12062 16 16 ; A list of eggs graph-cycles depends on. 17 17 18 (needs testbase eggdoc iset graph-scc)18 (needs testbase eggdoc iset syntax-case matchable graph-scc) 19 19 20 20 (eggdoc "graph-cycles-eggdoc.scm") -
release/3/graph-cycles/trunk/graph-cycles.scm
r4886 r12062 23 23 (require-extension srfi-1) 24 24 (require-extension iset) 25 (require-extension syntax-case) 26 (require-extension matchable) 25 27 (require-extension graph-scc) 26 28 -
release/3/graph-cycles/trunk/graph-cycles.setup
r6974 r12062 21 21 22 22 ; Assoc list with properties for your extension: 23 `((version 1. 6)23 `((version 1.7) 24 24 (documentation "graph-cycles.html") 25 25 ,@(if has-exports? `((exports "graph-cycles.exports")) (list)) ))
Note: See TracChangeset
for help on using the changeset viewer.