-
Notifications
You must be signed in to change notification settings - Fork 116
Open
Labels
specificationIssue regarding fpm manifest and modelIssue regarding fpm manifest and model
Description
Before we make fpm aware of the fpm-registry, we should create a minimal working implementation for a local registry (this registry might even be built-in to simplify things a bit at the beginning).
In analogy to Cargo we could use a syntax like:
[dependencies]
[dependencies.toml-f]
version = "^0.2.1"
registry = "internal" # or URI to a registry
[dependencies.M_CLI2]
version = "^0.1.0"
registry = "default" # for whatever the default URI will beThis requires:
- a way to specify and match version requirements (
src/fpm/versioning.f90defines only a version type) - the possibility to cache dependencies in a project (we have
build/cache.toml, alternatively a lock file) - a format for the registry (JSON?, TOML?, XML?, SQL?) and an fpm package implementing the format
(the fpm-registry has both TOML and JSON representations of the registry right now) - an interface to fetch from URIs that are not
local://orfile://(libcurl interface or just shell escape to curl/wget)
A full registry is discussed in #35
LKedward
Metadata
Metadata
Assignees
Labels
specificationIssue regarding fpm manifest and modelIssue regarding fpm manifest and model
Type
Projects
Status
In Progress