PackageManager

The PackageManager can retrieve present packages and get / remove packages.

class PackageManager {}

Constructors

this
this(NativePath path)

Instantiate an instance with a single search path

this
deprecated this(NativePath user_path, NativePath system_path, bool refresh_packages)
Undocumented in source.
this
this(NativePath package_path, NativePath user_path, NativePath system_path, bool refresh_packages)
Undocumented in source.

Members

Aliases

Hash
alias Hash = ubyte[]
Undocumented in source.

Functions

_disableDefaultSearchPaths
void _disableDefaultSearchPaths(bool val)
Undocumented in source. Be warned that the author may not have intended to support it.
addLocalPackage
Package addLocalPackage(NativePath path, string verName, LocalPackageType type)
Undocumented in source. Be warned that the author may not have intended to support it.
addOverride
void addOverride(LocalPackageType scope_, string package_, Dependency version_spec, Version target)
void addOverride(LocalPackageType scope_, string package_, Dependency version_spec, NativePath target)

Adds a new override for the given package.

addSearchPath
void addSearchPath(NativePath path, LocalPackageType type)

For the given type add another path where packages will be looked up.

getBestPackage
Package getBestPackage(string name, Dependency version_spec, bool enable_overrides)
Package getBestPackage(string name, string version_spec)

Searches for the latest version of a package matching the given dependency.

getFirstPackage
Package getFirstPackage(string name)

Looks up the first package matching the given name.

getLatestPackage
Package getLatestPackage(string name)

Looks up the latest package matching the given name.

getOrLoadPackage
Package getOrLoadPackage(NativePath path, NativePath recipe_path, bool allow_sub_packages)

For a given package path, returns the corresponding package.

getOverrides
const(PackageOverride)[] getOverrides(LocalPackageType scope_)

Returns a list of all package overrides for the given scope.

getPackage
Package getPackage(string name, Version ver, bool enable_overrides)
Package getPackage(string name, string ver, bool enable_overrides)
Package getPackage(string name, Version ver, NativePath path)
Package getPackage(string name, string ver, NativePath path)
Package getPackage(string name, NativePath path)

Looks up a specific package.

getPackageIterator
int delegate(int delegate(ref Package)) getPackageIterator()

Enables iteration over all known local packages.

getPackageIterator
int delegate(int delegate(ref Package)) getPackageIterator(string name)

Enables iteration over all known local packages with a certain name.

getSubPackage
Package getSubPackage(Package base_package, string sub_name, bool silent_fail)

Gets the a specific sub package.

hashPackage
Hash hashPackage(Package pack)

Generates a hash value for a given package. Some files or folders are ignored during the generation (like .dub and .svn folders)

isManagedPackage
bool isManagedPackage(Package pack)

Determines if a package is managed by DUB.

isManagedPath
bool isManagedPath(NativePath path)

Determines if a specific path is within a DUB managed package folder.

loadSCMPackage
Package loadSCMPackage(string name, Dependency dependency)

For a given SCM repository, returns the corresponding package.

refresh
void refresh(bool refresh_existing_packages)
Undocumented in source. Be warned that the author may not have intended to support it.
remove
void remove(Package pack)

Removes the given the package.

remove
deprecated void remove(Package pack, bool force_remove)

Compatibility overload. Use the version without a force_remove argument instead.

removeLocalPackage
void removeLocalPackage(NativePath path, LocalPackageType type)
Undocumented in source. Be warned that the author may not have intended to support it.
removeOverride
void removeOverride(LocalPackageType scope_, string package_, Dependency version_spec)

Removes an existing package override.

removeSearchPath
void removeSearchPath(NativePath path, LocalPackageType type)

Removes a search path from the given type.

storeFetchedPackage
Package storeFetchedPackage(NativePath zip_file_path, Json package_info, NativePath destination)

Extracts the package supplied as a path to it's zip file to the destination and sets a version field in the package description.

Properties

completeSearchPath
const(NativePath)[] completeSearchPath [@property getter]

Returns the effective list of search paths, including default ones.

customCachePaths
NativePath[] customCachePaths [@property setter]

Sets additional (read-only) package cache paths to search for packages.

disableDefaultSearchPaths
deprecated bool disableDefaultSearchPaths [@property setter]

Disables searching DUB's predefined search paths.

searchPath
NativePath[] searchPath [@property setter]
const(NativePath)[] searchPath [@property getter]

Gets/sets the list of paths to search for local packages.

Meta