- SearchResult
struct SearchResult
Represents a single package search result.
- description
string description [@property getter]
Returns a human-readable representation of the package supplier.
- getVersions
deprecated Version[] getVersions(string name)
Retrieves a list of all available versions(/branches) of a package.
- getVersions
Version[] getVersions(PackageName name)
Undocumented in source.
- fetchPackage
ubyte[] fetchPackage(PackageName name, VersionRange dep, bool pre_release)
Downloads a package and returns its binary content
- fetchPackage
deprecated void fetchPackage(NativePath path, PackageName name, VersionRange dep, bool pre_release)
Undocumented in source. Be warned that the author may not have intended to support it.
- fetchPackage
deprecated void fetchPackage(NativePath path, string name, Dependency dep, bool pre_release)
Undocumented in source. Be warned that the author may not have intended to support it.
- fetchPackageRecipe
Json fetchPackageRecipe(PackageName name, VersionRange dep, bool pre_release)
Retrieves only the recipe of a particular package.
- fetchPackageRecipe
deprecated Json fetchPackageRecipe(string name, Dependency dep, bool pre_release)
Undocumented in source. Be warned that the author may not have intended to support it.
- searchPackages
SearchResult[] searchPackages(string query)
Searches for packages matching the given search query term.
Maven repository based package supplier.
This package supplier connects to a maven repository to search for available packages.