Support for installing pkgs from multiple repositories.

--HG--
extra : convert_revision : fc8a430e71d202aa9e7560b921669f62f1947ae1
This commit is contained in:
Juan RP 2008-12-26 04:36:51 +01:00
parent f8d7e7f66f
commit 91f7df59cd
6 changed files with 260 additions and 152 deletions

View file

@ -158,11 +158,12 @@ int xbps_cmpver_packages(const char *, const char *);
int xbps_cmpver_versions(const char *, const char *);
const char * xbps_get_pkg_version(const char *);
char * xbps_get_pkg_name(const char *);
int xbps_install_pkg_deps(prop_dictionary_t, prop_dictionary_t);
int xbps_install_binary_pkg(prop_dictionary_t, const char *,
const char *);
int xbps_install_pkg_deps(prop_array_t, prop_dictionary_t);
int xbps_install_binary_pkg(const char *, const char *);
bool xbps_install_binary_pkg_from_repolist(prop_object_t, void *, bool *);
int xbps_unpack_binary_pkg(prop_dictionary_t, int (*cb)(struct archive *));
int xbps_unpack_binary_pkg(prop_dictionary_t, prop_dictionary_t,
int (*cb)(struct archive *));
int xbps_unpack_archive_cb(struct archive *);
bool xbps_pkg_has_rundeps(prop_dictionary_t);
#endif /* !_XBPS_PLIST_H_ */