ianfiske / LocalRegistry.jl

Create and maintain local registries for Julia packages.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

LocalRegistry

Create and maintain local registries for Julia packages. This package is intended to provide a simple but manual workflow for maintaining small local registries (private or public) without making any assumptions about how the registry or the packages are hosted.

For registration in the General registry, see Registrator. For a more automated but GitHub-centric workflow with either the General registry or a local registry, see PkgDev.

Compatibility

This package requires Julia 1.1 or later.

Prerequisites

You need to have command line git installed and available in the system PATH. If

run(`git --version`)

in the Julia REPL prints a version number rather than giving an error, you are good to go.

Installation

using Pkg
pkg"add https://github.com/GunnarFarneback/LocalRegistry.jl"

Create Registry

using LocalRegistry
create_registry(name, repository_url, description = "My private registry")

This prepares a registry with the given name in the the standard location for registries. Review the result and git push it manually. When created in this way the registry is automatically activated and the next section can be skipped.

The registry can also be created at a specified path. See the documentation string for details.

Add Registry

To activate the registry, do

using Pkg
pkg"registry add <repository url>"

This only needs to be done once per Julia installation.

Add a Package

using LocalRegistry
register(package, registry)

Register the new package in the registry registry. The version number and other information is obtained from the package's Project.toml. The easiest way to specify package and registry is by name as strings. See the documentation string for more options.

Notes:

  • You need to have a clean working copy of your registry.
  • The changes are committed to the registry but you need to push them yourself.
  • The package must be stored as a git working copy, e.g. having been cloned with Pkg.develop.
  • The package must be available in the current Pkg environment.
  • The package must have a Project.toml file.
  • There is no checking that the dependencies are available in any registry.

Add a New Version of a Package

using LocalRegistry
register(package)

When adding a new version of a package, the registry can be omitted. The new version number is obtained from the version field of the package's Project.toml file.

About

Create and maintain local registries for Julia packages.

License:Other


Languages

Language:Julia 100.0%