libalpm
Arch Linux Package Manager Library
|
Functions to manipulate libalpm packages More...
Data Structures | |
struct | alpm_pkg_xdata_t |
The extended data type used to store non-standard package data fields. More... | |
Enumerations | |
enum | alpm_pkgreason_t { ALPM_PKG_REASON_EXPLICIT = 0 , ALPM_PKG_REASON_DEPEND = 1 , ALPM_PKG_REASON_UNKNOWN = 2 } |
Package install reasons. More... | |
enum | alpm_pkgfrom_t { ALPM_PKG_FROM_FILE = 1 , ALPM_PKG_FROM_LOCALDB , ALPM_PKG_FROM_SYNCDB } |
Location a package object was loaded from. More... | |
enum | alpm_pkgvalidation_t { ALPM_PKG_VALIDATION_UNKNOWN = 0 , ALPM_PKG_VALIDATION_NONE = (1 << 0) , ALPM_PKG_VALIDATION_MD5SUM = (1 << 1) , ALPM_PKG_VALIDATION_SHA256SUM = (1 << 2) , ALPM_PKG_VALIDATION_SIGNATURE = (1 << 3) } |
Method used to validate a package. More... | |
Functions | |
int | alpm_pkg_load (alpm_handle_t *handle, const char *filename, int full, int level, alpm_pkg_t **pkg) |
Create a package from a file. | |
int | alpm_fetch_pkgurl (alpm_handle_t *handle, const alpm_list_t *urls, alpm_list_t **fetched) |
Fetch a list of remote packages. | |
alpm_pkg_t * | alpm_pkg_find (alpm_list_t *haystack, const char *needle) |
Find a package in a list by name. | |
int | alpm_pkg_free (alpm_pkg_t *pkg) |
Free a package. | |
int | alpm_pkg_checkmd5sum (alpm_pkg_t *pkg) |
Check the integrity (with md5) of a package from the sync cache. | |
int | alpm_pkg_vercmp (const char *a, const char *b) |
Compare two version strings and determine which one is 'newer'. | |
alpm_list_t * | alpm_pkg_compute_requiredby (alpm_pkg_t *pkg) |
Computes the list of packages requiring a given package. | |
alpm_list_t * | alpm_pkg_compute_optionalfor (alpm_pkg_t *pkg) |
Computes the list of packages optionally requiring a given package. | |
int | alpm_pkg_should_ignore (alpm_handle_t *handle, alpm_pkg_t *pkg) |
Test if a package should be ignored. | |
Package Property Accessors | |
Any pointer returned by these functions points to internal structures allocated by libalpm. They should not be freed nor modified in any way. For loaded packages, they will be freed when alpm_pkg_free is called. For database packages, they will be freed when the database is unregistered. | |
alpm_handle_t * | alpm_pkg_get_handle (alpm_pkg_t *pkg) |
Gets the handle of a package. | |
const char * | alpm_pkg_get_filename (alpm_pkg_t *pkg) |
Gets the name of the file from which the package was loaded. | |
const char * | alpm_pkg_get_base (alpm_pkg_t *pkg) |
Returns the package base name. | |
const char * | alpm_pkg_get_name (alpm_pkg_t *pkg) |
Returns the package name. | |
const char * | alpm_pkg_get_version (alpm_pkg_t *pkg) |
Returns the package version as a string. | |
alpm_pkgfrom_t | alpm_pkg_get_origin (alpm_pkg_t *pkg) |
Returns the origin of the package. | |
const char * | alpm_pkg_get_desc (alpm_pkg_t *pkg) |
Returns the package description. | |
const char * | alpm_pkg_get_url (alpm_pkg_t *pkg) |
Returns the package URL. | |
alpm_time_t | alpm_pkg_get_builddate (alpm_pkg_t *pkg) |
Returns the build timestamp of the package. | |
alpm_time_t | alpm_pkg_get_installdate (alpm_pkg_t *pkg) |
Returns the install timestamp of the package. | |
const char * | alpm_pkg_get_packager (alpm_pkg_t *pkg) |
Returns the packager's name. | |
const char * | alpm_pkg_get_md5sum (alpm_pkg_t *pkg) |
Returns the package's MD5 checksum as a string. | |
const char * | alpm_pkg_get_sha256sum (alpm_pkg_t *pkg) |
Returns the package's SHA256 checksum as a string. | |
const char * | alpm_pkg_get_arch (alpm_pkg_t *pkg) |
Returns the architecture for which the package was built. | |
off_t | alpm_pkg_get_size (alpm_pkg_t *pkg) |
Returns the size of the package. | |
off_t | alpm_pkg_get_isize (alpm_pkg_t *pkg) |
Returns the installed size of the package. | |
alpm_pkgreason_t | alpm_pkg_get_reason (alpm_pkg_t *pkg) |
Returns the package installation reason. | |
alpm_list_t * | alpm_pkg_get_licenses (alpm_pkg_t *pkg) |
Returns the list of package licenses. | |
alpm_list_t * | alpm_pkg_get_groups (alpm_pkg_t *pkg) |
Returns the list of package groups. | |
alpm_list_t * | alpm_pkg_get_depends (alpm_pkg_t *pkg) |
Returns the list of package dependencies as alpm_depend_t. | |
alpm_list_t * | alpm_pkg_get_optdepends (alpm_pkg_t *pkg) |
Returns the list of package optional dependencies. | |
alpm_list_t * | alpm_pkg_get_checkdepends (alpm_pkg_t *pkg) |
Returns a list of package check dependencies. | |
alpm_list_t * | alpm_pkg_get_makedepends (alpm_pkg_t *pkg) |
Returns a list of package make dependencies. | |
alpm_list_t * | alpm_pkg_get_conflicts (alpm_pkg_t *pkg) |
Returns the list of packages conflicting with pkg. | |
alpm_list_t * | alpm_pkg_get_provides (alpm_pkg_t *pkg) |
Returns the list of packages provided by pkg. | |
alpm_list_t * | alpm_pkg_get_replaces (alpm_pkg_t *pkg) |
Returns the list of packages to be replaced by pkg. | |
alpm_filelist_t * | alpm_pkg_get_files (alpm_pkg_t *pkg) |
Returns the list of files installed by pkg. | |
alpm_list_t * | alpm_pkg_get_backup (alpm_pkg_t *pkg) |
Returns the list of files backed up when installing pkg. | |
alpm_db_t * | alpm_pkg_get_db (alpm_pkg_t *pkg) |
Returns the database containing pkg. | |
const char * | alpm_pkg_get_base64_sig (alpm_pkg_t *pkg) |
Returns the base64 encoded package signature. | |
int | alpm_pkg_get_sig (alpm_pkg_t *pkg, unsigned char **sig, size_t *sig_len) |
Extracts package signature either from embedded package signature or if it is absent then reads data from detached signature file. | |
int | alpm_pkg_get_validation (alpm_pkg_t *pkg) |
Returns the method used to validate a package during install. | |
alpm_list_t * | alpm_pkg_get_xdata (alpm_pkg_t *pkg) |
Gets the extended data field of a package. | |
int | alpm_pkg_has_scriptlet (alpm_pkg_t *pkg) |
Returns whether the package has an install scriptlet. | |
off_t | alpm_pkg_download_size (alpm_pkg_t *newpkg) |
Returns the size of the files that will be downloaded to install a package. | |
int | alpm_pkg_set_reason (alpm_pkg_t *pkg, alpm_pkgreason_t reason) |
Set install reason for a package in the local database. | |
Changelog functions | |
Functions for reading the changelog | |
void * | alpm_pkg_changelog_open (alpm_pkg_t *pkg) |
Open a package changelog for reading. | |
size_t | alpm_pkg_changelog_read (void *ptr, size_t size, const alpm_pkg_t *pkg, void *fp) |
Read data from an open changelog 'file stream'. | |
int | alpm_pkg_changelog_close (const alpm_pkg_t *pkg, void *fp) |
Close a package changelog for reading. | |
Mtree functions | |
Functions for reading the mtree | |
struct archive * | alpm_pkg_mtree_open (alpm_pkg_t *pkg) |
Open a package mtree file for reading. | |
int | alpm_pkg_mtree_next (const alpm_pkg_t *pkg, struct archive *archive, struct archive_entry **entry) |
Read next entry from a package mtree file. | |
int | alpm_pkg_mtree_close (const alpm_pkg_t *pkg, struct archive *archive) |
Close a package mtree file. | |
Functions to manipulate libalpm packages
struct alpm_pkg_xdata_t |
enum alpm_pkgfrom_t |
Location a package object was loaded from.
Enumerator | |
---|---|
ALPM_PKG_FROM_FILE | Loaded from a file via alpm_pkg_load. |
ALPM_PKG_FROM_LOCALDB | From the local database. |
ALPM_PKG_FROM_SYNCDB | From a sync database. |
enum alpm_pkgreason_t |
enum alpm_pkgvalidation_t |
Method used to validate a package.
int alpm_fetch_pkgurl | ( | alpm_handle_t * | handle, |
const alpm_list_t * | urls, | ||
alpm_list_t ** | fetched ) |
Fetch a list of remote packages.
handle | the context handle |
urls | list of package URLs to download |
fetched | list of filepaths to the fetched packages, each item corresponds to one in urls list. This is an output parameter, the caller should provide a pointer to an empty list (*fetched === NULL) and the callee fills the list with data. |
References _, dload_payload::allow_resume, ALPM_ERR_MEMORY, ALPM_ERR_RETRIEVE, ALPM_ERR_WRONG_ARGS, ALPM_EVENT_PKG_RETRIEVE_DONE, ALPM_EVENT_PKG_RETRIEVE_FAILED, ALPM_EVENT_PKG_RETRIEVE_START, alpm_list_add(), alpm_list_append(), alpm_list_count(), alpm_list_free_inner(), ALPM_LOG_WARNING, ALPM_SIG_PACKAGE, ALPM_SIG_PACKAGE_OPTIONAL, ASSERT, CALLOC, CHECK_HANDLE, create_tempfile(), alpm_list_t::data, dload_payload::destfile_name, dload_payload::download_signature, EVENT, filecache_find_url(), dload_payload::filepath, dload_payload::fileurl, FREE, FREELIST, get_filename(), GOTO_ERR, dload_payload::handle, dload_payload::localf, alpm_list_t::next, dload_payload::remote_name, RET_ERR, dload_payload::signature_optional, STRDUP, dload_payload::tempfile_name, dload_payload::tempfile_openmode, and dload_payload::unlink_on_fail.
int alpm_pkg_changelog_close | ( | const alpm_pkg_t * | pkg, |
void * | fp ) |
Close a package changelog for reading.
pkg | the package to close the changelog of (either file or db) |
fp | the 'file stream' to the package changelog to close |
References ALPM_ERR_OK, and ASSERT.
void * alpm_pkg_changelog_open | ( | alpm_pkg_t * | pkg | ) |
Open a package changelog for reading.
Similar to fopen in functionality, except that the returned 'file stream' could really be from an archive as well as from the database.
pkg | the package to read the changelog of (either file or db) |
References ALPM_ERR_OK, and ASSERT.
size_t alpm_pkg_changelog_read | ( | void * | ptr, |
size_t | size, | ||
const alpm_pkg_t * | pkg, | ||
void * | fp ) |
Read data from an open changelog 'file stream'.
Similar to fread in functionality, this function takes a buffer and amount of data to read. If an error occurs pm_errno will be set.
ptr | a buffer to fill with raw changelog data |
size | the size of the buffer |
pkg | the package that the changelog is being read from |
fp | a 'file stream' to the package changelog |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_checkmd5sum | ( | alpm_pkg_t * | pkg | ) |
Check the integrity (with md5) of a package from the sync cache.
pkg | package pointer |
References ALPM_ERR_OK, ALPM_ERR_PKG_INVALID, ALPM_ERR_WRONG_ARGS, ALPM_PKG_FROM_SYNCDB, ALPM_PKG_VALIDATION_MD5SUM, ASSERT, FREE, and RET_ERR.
alpm_list_t * alpm_pkg_compute_optionalfor | ( | alpm_pkg_t * | pkg | ) |
Computes the list of packages optionally requiring a given package.
The return value of this function is a newly allocated list of package names (char*), it should be freed by the caller.
pkg | a package |
References compute_requiredby().
alpm_list_t * alpm_pkg_compute_requiredby | ( | alpm_pkg_t * | pkg | ) |
Computes the list of packages requiring a given package.
The return value of this function is a newly allocated list of package names (char*), it should be freed by the caller.
pkg | a package |
References compute_requiredby().
off_t alpm_pkg_download_size | ( | alpm_pkg_t * | newpkg | ) |
Returns the size of the files that will be downloaded to install a package.
newpkg | the new package to upgrade to |
References compute_download_size(), and INFRQ_DSIZE.
alpm_pkg_t * alpm_pkg_find | ( | alpm_list_t * | haystack, |
const char * | needle ) |
Find a package in a list by name.
haystack | a list of alpm_pkg_t |
needle | the package name |
References alpm_list_t::data, and alpm_list_t::next.
Referenced by alpm_add_pkg(), alpm_checkdeps(), alpm_find_group_pkgs(), alpm_remove_pkg(), alpm_sync_sysupgrade(), check_replacers(), remove_notify_needed_optdepends(), remove_prepare_cascade(), remove_prepare_keep_needed(), and resolvedep().
int alpm_pkg_free | ( | alpm_pkg_t * | pkg | ) |
Free a package.
Only packages loaded with alpm_pkg_load can be freed. Packages from databases will be freed by libalpm when they are unregistered.
pkg | package pointer to free |
References ALPM_PKG_FROM_FILE, and ASSERT.
const char * alpm_pkg_get_arch | ( | alpm_pkg_t * | pkg | ) |
Returns the architecture for which the package was built.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by check_arch().
alpm_list_t * alpm_pkg_get_backup | ( | alpm_pkg_t * | pkg | ) |
Returns the list of files backed up when installing pkg.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_base | ( | alpm_pkg_t * | pkg | ) |
Returns the package base name.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_base64_sig | ( | alpm_pkg_t * | pkg | ) |
Returns the base64 encoded package signature.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_time_t alpm_pkg_get_builddate | ( | alpm_pkg_t * | pkg | ) |
Returns the build timestamp of the package.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_checkdepends | ( | alpm_pkg_t * | pkg | ) |
Returns a list of package check dependencies.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_conflicts | ( | alpm_pkg_t * | pkg | ) |
Returns the list of packages conflicting with pkg.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by check_conflict().
alpm_db_t * alpm_pkg_get_db | ( | alpm_pkg_t * | pkg | ) |
Returns the database containing pkg.
Returns a pointer to the alpm_db_t structure the package is originating from, or NULL if the package was loaded from a file.
pkg | a pointer to package |
References ALPM_ERR_OK, ALPM_PKG_FROM_FILE, and ASSERT.
Referenced by _cache_changelog_open(), _cache_mtree_open(), check_keyring(), check_literal(), check_validity(), download_files(), and find_dl_candidates().
alpm_list_t * alpm_pkg_get_depends | ( | alpm_pkg_t * | pkg | ) |
Returns the list of package dependencies as alpm_depend_t.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by alpm_checkdeps(), and find_requiredby().
const char * alpm_pkg_get_desc | ( | alpm_pkg_t * | pkg | ) |
Returns the package description.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_filename | ( | alpm_pkg_t * | pkg | ) |
Gets the name of the file from which the package was loaded.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_filelist_t * alpm_pkg_get_files | ( | alpm_pkg_t * | pkg | ) |
Returns the list of files installed by pkg.
The filenames are relative to the install root, and do not include leading slashes.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by alpm_db_find_file_owners(), calculate_installed_size(), calculate_removed_size(), dir_belongsto_pkgs(), remove_package_files(), should_skip_file(), and unlink_file().
alpm_list_t * alpm_pkg_get_groups | ( | alpm_pkg_t * | pkg | ) |
Returns the list of package groups.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by alpm_pkg_should_ignore(), and load_grpcache().
alpm_handle_t * alpm_pkg_get_handle | ( | alpm_pkg_t * | pkg | ) |
Gets the handle of a package.
pkg | a pointer to package |
References ASSERT.
alpm_time_t alpm_pkg_get_installdate | ( | alpm_pkg_t * | pkg | ) |
Returns the install timestamp of the package.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
off_t alpm_pkg_get_isize | ( | alpm_pkg_t * | pkg | ) |
Returns the installed size of the package.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_licenses | ( | alpm_pkg_t * | pkg | ) |
Returns the list of package licenses.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_makedepends | ( | alpm_pkg_t * | pkg | ) |
Returns a list of package make dependencies.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_md5sum | ( | alpm_pkg_t * | pkg | ) |
Returns the package's MD5 checksum as a string.
The returned string is a sequence of 32 lowercase hexadecimal digits.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_name | ( | alpm_pkg_t * | pkg | ) |
Returns the package name.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_optdepends | ( | alpm_pkg_t * | pkg | ) |
Returns the list of package optional dependencies.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by find_requiredby(), and remove_notify_needed_optdepends().
alpm_pkgfrom_t alpm_pkg_get_origin | ( | alpm_pkg_t * | pkg | ) |
Returns the origin of the package.
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_packager | ( | alpm_pkg_t * | pkg | ) |
Returns the packager's name.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_provides | ( | alpm_pkg_t * | pkg | ) |
Returns the list of packages provided by pkg.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by resolvedep().
alpm_pkgreason_t alpm_pkg_get_reason | ( | alpm_pkg_t * | pkg | ) |
Returns the package installation reason.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by alpm_pkg_set_reason(), check_replacers(), and commit_single_pkg().
alpm_list_t * alpm_pkg_get_replaces | ( | alpm_pkg_t * | pkg | ) |
Returns the list of packages to be replaced by pkg.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
Referenced by check_replacers().
const char * alpm_pkg_get_sha256sum | ( | alpm_pkg_t * | pkg | ) |
Returns the package's SHA256 checksum as a string.
The returned string is a sequence of 64 lowercase hexadecimal digits.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_get_sig | ( | alpm_pkg_t * | pkg, |
unsigned char ** | sig, | ||
size_t * | sig_len ) |
Extracts package signature either from embedded package signature or if it is absent then reads data from detached signature file.
pkg | a pointer to package. |
sig | output parameter for signature data. Callee function allocates a buffer needed for the signature data. Caller is responsible for freeing this buffer. |
sig_len | output parameter for the signature data length. |
References alpm_decode_signature(), ALPM_ERR_OK, ALPM_ERR_PKG_NOT_FOUND, ALPM_ERR_SIG_INVALID, ALPM_ERR_SIG_MISSING, ALPM_LOG_DEBUG, ASSERT, FREE, GOTO_ERR, and RET_ERR.
Referenced by check_keyring().
off_t alpm_pkg_get_size | ( | alpm_pkg_t * | pkg | ) |
Returns the size of the package.
This is only available for sync database packages and package files, not those loaded from the local database.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_url | ( | alpm_pkg_t * | pkg | ) |
Returns the package URL.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_get_validation | ( | alpm_pkg_t * | pkg | ) |
Returns the method used to validate a package during install.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
const char * alpm_pkg_get_version | ( | alpm_pkg_t * | pkg | ) |
Returns the package version as a string.
This includes all available epoch, version, and pkgrel components. Use alpm_pkg_vercmp() to compare version strings if necessary.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
alpm_list_t * alpm_pkg_get_xdata | ( | alpm_pkg_t * | pkg | ) |
Gets the extended data field of a package.
pkg | a pointer to package |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_has_scriptlet | ( | alpm_pkg_t * | pkg | ) |
Returns whether the package has an install scriptlet.
References ALPM_ERR_OK, and ASSERT.
Referenced by commit_single_pkg().
int alpm_pkg_load | ( | alpm_handle_t * | handle, |
const char * | filename, | ||
int | full, | ||
int | level, | ||
alpm_pkg_t ** | pkg ) |
Create a package from a file.
If full is false, the archive is read only until all necessary metadata is found. If it is true, the entire archive is read, which serves as a verification of integrity and the filelist can be created. The allocated structure should be freed using alpm_pkg_free().
handle | the context handle |
filename | location of the package tarball |
full | whether to stop the load after metadata is read or continue through the full archive |
level | what level of package signature checking to perform on the package; note that this must be a '.sig' file type verification |
pkg | address of the package pointer |
References _, ALPM_ERR_WRONG_ARGS, alpm_extract_keyid(), ALPM_LOG_ERROR, ALPM_SIG_PACKAGE, ASSERT, CHECK_HANDLE, alpm_list_t::data, FREELIST, level, alpm_list_t::next, read_sigfile(), and RET_ERR.
int alpm_pkg_mtree_close | ( | const alpm_pkg_t * | pkg, |
struct archive * | archive ) |
Close a package mtree file.
pkg | the local package to close the mtree of |
archive | the archive to close |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_mtree_next | ( | const alpm_pkg_t * | pkg, |
struct archive * | archive, | ||
struct archive_entry ** | entry ) |
Read next entry from a package mtree file.
pkg | the package that the mtree file is being read from |
archive | the archive structure reading from the mtree file |
entry | an archive_entry to store the entry header information |
References ALPM_ERR_OK, and ASSERT.
struct archive * alpm_pkg_mtree_open | ( | alpm_pkg_t * | pkg | ) |
Open a package mtree file for reading.
pkg | the local package to read the mtree of |
References ALPM_ERR_OK, and ASSERT.
int alpm_pkg_set_reason | ( | alpm_pkg_t * | pkg, |
alpm_pkgreason_t | reason ) |
Set install reason for a package in the local database.
The provided package object must be from the local database or this method will fail. The write to the local database is performed immediately.
pkg | the package to update |
reason | the new install reason |
References ALPM_ERR_DB_WRITE, ALPM_ERR_WRONG_ARGS, ALPM_LOG_DEBUG, ALPM_PKG_FROM_LOCALDB, alpm_pkg_get_reason(), ASSERT, INFRQ_DESC, and RET_ERR.
int alpm_pkg_should_ignore | ( | alpm_handle_t * | handle, |
alpm_pkg_t * | pkg ) |
Test if a package should be ignored.
Checks if the package is ignored via IgnorePkg, or if the package is in a group ignored via IgnoreGroup.
handle | the context handle |
pkg | the package to test |
References alpm_list_find(), alpm_pkg_get_groups(), alpm_list_t::data, and alpm_list_t::next.
Referenced by alpm_find_group_pkgs(), check_literal(), check_replacers(), and resolvedep().
int alpm_pkg_vercmp | ( | const char * | a, |
const char * | b ) |
Compare two version strings and determine which one is 'newer'.
Returns a value comparable to the way strcmp works. Returns 1 if a is newer than b, 0 if a and b are the same version, or -1 if b is newer than a.
Different epoch values for version strings will override any further comparison. If no epoch is provided, 0 is assumed.
Keep in mind that the pkgrel is only compared if it is available on both versions handed to this function. For example, comparing 1.5-1 and 1.5 will yield 0; comparing 1.5-1 and 1.5-2 will yield -1 as expected. This is mainly for supporting versioned dependencies that do not include the pkgrel.
References parseEVR(), and rpmvercmp().
Referenced by dep_vercmp().