PackageSupplier

Base interface for remote package suppliers.

Provides functionality necessary to query package versions, recipes and contents.

Members

Functions

fetchPackage
void fetchPackage(NativePath path, string package_id, Dependency dep, bool pre_release)

Downloads a package and stores it as a ZIP file.

fetchPackageRecipe
Json fetchPackageRecipe(string package_id, Dependency dep, bool pre_release)

Retrieves only the recipe of a particular package.

getVersions
Version[] getVersions(string package_id)

Retrieves a list of all available versions(/branches) of a package.

searchPackages
SearchResult[] searchPackages(string query)

Searches for packages matching the given search query term.

Properties

description
string description [@property getter]

Returns a human-readable representation of the package supplier.

Structs

SearchResult
struct SearchResult

Represents a single package search result.

Meta