opkg: improve opkg_install error reporting and include a check to verify repository...
[project/opkg-lede.git] / libopkg / opkg_install.h
1 /* opkg_install.h - the opkg package management system
2
3 Carl D. Worth
4
5 Copyright (C) 2001 University of Southern California
6
7 This program is free software; you can redistribute it and/or
8 modify it under the terms of the GNU General Public License as
9 published by the Free Software Foundation; either version 2, or (at
10 your option) any later version.
11
12 This program is distributed in the hope that it will be useful, but
13 WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 General Public License for more details.
16 */
17
18 #ifndef OPKG_INSTALL_H
19 #define OPKG_INSTALL_H
20
21 #include "pkg.h"
22 #include "opkg_conf.h"
23 #include "opkg_error.h"
24
25 enum {
26 PKG_INSTALL_ERR_NONE,
27 PKG_INSTALL_ERR_NOT_TRUSTED,
28 PKG_INSTALL_ERR_DOWNLOAD,
29 PKG_INSTALL_ERR_CONFLICTS,
30 PKG_INSTALL_ERR_ALREADY_INSTALLED,
31 PKG_INSTALL_ERR_DEPENDENCIES,
32 PKG_INSTALL_ERR_NO_DOWNGRADE,
33 PKG_INSTALL_ERR_NO_SPACE,
34 PKG_INSTALL_ERR_SIGNATURE,
35 PKG_INSTALL_ERR_MD5,
36 PKG_INSTALL_ERR_INTERNAL,
37 PKG_INSTALL_ERR_UNKNOWN
38 };
39
40 opkg_error_t opkg_install_by_name(opkg_conf_t *conf, const char *pkg_name);
41 opkg_error_t opkg_install_multi_by_name(opkg_conf_t *conf, const char *pkg_name);
42 int opkg_install_from_file(opkg_conf_t *conf, const char *filename);
43 int opkg_install_pkg(opkg_conf_t *conf, pkg_t *pkg,int from_upgrading);
44 int satisfy_dependencies_for(opkg_conf_t *conf, pkg_t *pkg);
45
46 int opkg_satisfy_all_dependences(opkg_conf_t *conf);
47
48 int pkg_mark_dependencies_for_installation(opkg_conf_t *conf, pkg_t *pkg_name, pkg_vec_t *pkgs_needed);
49 int name_mark_dependencies_for_installation(opkg_conf_t *conf, const char *pkg_name, pkg_vec_t *pkgs_needed);
50
51 #endif