-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from cgay/new-catalog-format
New catalog format, dubbed v1
- Loading branch information
Showing
47 changed files
with
716 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,10 @@ | ||
{ | ||
"category": "development tools", | ||
"contact": "[email protected]", | ||
"deps": [ "[email protected]" ], | ||
"description": "Dylan package manager catalog -- descriptors for all known Dylan packages.", | ||
"keywords": ["package"], | ||
"name": "pacman-catalog", | ||
"deps": [ | ||
"[email protected]", | ||
], | ||
"location": "https://github.com/dylan-lang/pacman-catalog" | ||
"version": "0.3.0", | ||
"url": "https://github.com/dylan-lang/pacman-catalog" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,10 @@ | ||
Module: pacman-catalog-test-suite | ||
|
||
// For now just make sure the catalog loads... | ||
|
||
define test load-catalog-test () | ||
assert-no-errors(pm/load-catalog()); | ||
end; | ||
|
||
define suite pacman-catalog-suite () | ||
test load-catalog-test; | ||
define test test-validate-catalog () | ||
assert-no-errors(validate-catalog(catalog())); | ||
let packages = load-all-packages(catalog()); | ||
test-output("loaded %d packages from catalog\n", packages.size); | ||
assert-true(packages.size > 0); | ||
end; | ||
|
||
begin | ||
run-test-application(pacman-catalog-suite); | ||
end; | ||
run-test-application(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Anaphoric constructs", | ||
"keywords": [], | ||
"name": "anaphora", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "None", | ||
"url": "https://github.com/dylan-lang/anaphora", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "editor support", | ||
"contact": "[email protected]", | ||
"description": "Dylan language support for the Atom editor", | ||
"keywords": [], | ||
"name": "atom-language-dylan", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/atom-language-dylan", | ||
"version": "0.7.3" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "encoding", | ||
"contact": "[email protected]", | ||
"description": "Base64 encoding", | ||
"keywords": [], | ||
"name": "base64", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "Public Domain", | ||
"url": "https://github.com/dylan-lang/base64", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "parsers", | ||
"contact": "[email protected]", | ||
"description": "A DSL for parsing and assembling binary data", | ||
"keywords": [], | ||
"name": "binary-data", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/binary-data", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Collection library", | ||
"keywords": [], | ||
"name": "collection-extensions", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/collection-extensions", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Interactive command interface system", | ||
"keywords": [], | ||
"name": "command-interface", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/command-interface", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Command line processing", | ||
"keywords": ["cli", "flags"], | ||
"name": "command-line-parser", | ||
"releases": [{ | ||
"deps": ["[email protected]"], | ||
"license": "opendylan license", | ||
"url": "https://github.com/dylan-lang/command-line-parser", | ||
"version": "1.0.0" | ||
}, { | ||
"deps": ["[email protected]"], | ||
"license": "opendylan license", | ||
"url": "https://github.com/dylan-lang/command-line-parser", | ||
"version": "2.0.0" | ||
}, { | ||
"deps": ["[email protected]"], | ||
"license": "opendylan license", | ||
"url": "https://github.com/dylan-lang/command-line-parser", | ||
"version": "3.0.0" | ||
}, { | ||
"deps": ["[email protected]"], | ||
"license": "opendylan license", | ||
"url": "https://github.com/dylan-lang/command-line-parser", | ||
"version": "3.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Concurrency utilities", | ||
"keywords": [], | ||
"name": "concurrency", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-foundry/concurrency", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "editor support", | ||
"contact": "[email protected]", | ||
"description": "Emacs mode for indenting and highlighting Dylan code", | ||
"keywords": [], | ||
"name": "dylan-emacs-support", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "GPL", | ||
"url": "https://github.com/dylan-lang/dylan-emacs-support", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
{ | ||
"category": "language-tools", | ||
"contact": "[email protected]", | ||
"description": "Manage Dylan workspaces, packages, and registries", | ||
"keywords": ["workspace", "package"], | ||
"name": "dylan-tool", | ||
"releases": [{ | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", | ||
"[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/dylan-tool", | ||
"version": "0.2.0" | ||
}, { | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/dylan-tool", | ||
"version": "0.3.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "cryptography", | ||
"contact": "[email protected]", | ||
"description": "Cryptographic hash functions", | ||
"keywords": [], | ||
"name": "hash-algorithms", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/hash-algorithms", | ||
"version": "1.0.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"category": "network", | ||
"contact": "[email protected]", | ||
"description": "HTTP server and client", | ||
"keywords": [], | ||
"name": "http", | ||
"releases": [{ | ||
"deps": ["base64", "concurrency", "logging", "meta", "mime", | ||
"serialization", "sphinx-extensions", | ||
"uncommon-dylan", "uri", "xml-parser"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/http", | ||
"version": "0.1.0" | ||
}, { | ||
"deps": ["base64", "concurrency", "logging", "meta", "mime", | ||
"serialization", "sphinx-extensions", | ||
"uncommon-dylan", "uri", "xml-parser"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/http", | ||
"version": "0.1.1" | ||
}, { | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/http", | ||
"version": "1.0.0" | ||
}, { | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/http", | ||
"version": "1.0.1" | ||
}, { | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]", "[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/http", | ||
"version": "1.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "parsers", | ||
"contact": "[email protected]", | ||
"description": "parse and write JSON data format", | ||
"keywords": ["workspace", "package"], | ||
"name": "json", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/json", | ||
"version": "1.0.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "development tools", | ||
"contact": "[email protected]", | ||
"description": "Convert Common Lisp code to Dylan", | ||
"keywords": [], | ||
"name": "lisp-to-dylan", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "unknown", | ||
"url": "https://github.com/dylan-lang/lisp-to-dylan", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"category": "utilities", | ||
"contact": "[email protected]", | ||
"description": "Logging library", | ||
"keywords": [], | ||
"name": "logging", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/logging", | ||
"version": "1.0.0" | ||
}, { | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/logging", | ||
"version": "1.0.1" | ||
}, { | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/logging", | ||
"version": "2.0.0" | ||
}, { | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/logging", | ||
"version": "2.0.1" | ||
}, { | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/logging", | ||
"version": "2.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"category": "development tools", | ||
"contact": "[email protected]", | ||
"description": "Language Server Protocol", | ||
"keywords": ["lsp"], | ||
"name": "lsp-dylan", | ||
"releases": [{ | ||
"deps": ["[email protected]", "[email protected]", "[email protected]", | ||
"[email protected]", "[email protected]"], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/lsp-dylan", | ||
"version": "0.1.0" | ||
}] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"category": "development tools", | ||
"contact": "[email protected]", | ||
"description": "C-FFI interface generator for Open Dylan", | ||
"keywords": [], | ||
"name": "melange", | ||
"releases": [{ | ||
"deps": [], | ||
"license": "MIT", | ||
"url": "https://github.com/dylan-lang/melange", | ||
"version": "0.1.0" | ||
}] | ||
} |
Oops, something went wrong.