Dylan developer swiss army knife (beta)
This repository has been archived on 2025年11月12日 . You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
- Dylan 98.3%
- Makefile 1.7%
|
Carl Gay
292b7bf761
dylan-package.json: Increment version to 0.11.1 |
||
|---|---|---|
| .github/workflows | automation: .yaml -> .yml standardization | |
| documentation | doc: hide the inline ToC, update intro text | |
| ext | Update submodules pacman-catalog and testworks | |
| registry/generic | Move source files to "sources" directory | |
| sources | workspaces: choose a reasonable default library name | |
| .gitignore | .gitignore file | |
| .gitmodules | Fix the remote for the uncommon-dylan module | |
| dylan-package.json | dylan-package.json: Increment version to 0.11.1 | |
| LICENSE | Initial commit | |
| Makefile | Makefile: build with -unify flag | |
| README.md | Fix #81 broken link in README | |
Dylan Tool
- Package management
- Repeatable builds with "minimal version selection"
- No more editing registry files
- No more Git submodules
- Build/test from anywhere in your workspace
The dylan tool simplifies the management of Dylan workspaces and packages and
provides a simplified interface to the Open Dylan compiler for building and
(soon) testing, and generating documentation. It eliminates the need to manage
library locations (registries) by hand and the need to use git submodules to
track dependencies.
$ dylan new application hello
Downloaded pacman-catalog@master to /tmp/dylan/_packages/pacman-catalog/master/src/
Created library hello.
Created library hello-test-suite.
Created library hello-app.
Downloaded strings@1.1.0 to /tmp/hello/_packages/strings/1.1.0/src/
Downloaded command-line-parser@3.1.1 to /tmp/hello/_packages/command-line-parser/3.1.1/src/
Downloaded json@1.0.0 to /tmp/hello/_packages/json/1.0.0/src/
Downloaded testworks@2.3.1 to /tmp/hello/_packages/testworks/2.3.1/src/
Updated 18 files in /tmp/hello/registry/.
$ cd hello
$ dylan build --all
Open Dylan 2023.1
Build of 'hello-test-suite' completed
Build of 'hello-app' completed
Build of 'hello' completed
$ _build/bin/hello-app
Hello world!
A key part of this tool is the package manager (pacman) and its catalog of packages, the pacman-catalog repository. For any package to be downloadable it must have an entry in the catalog.
Full documentation is here.
Bugs
If you have a feature request, think something should be designed differently, or find bugs, file a bug report.