2005-03-15 01:51:43 +00:00
|
|
|
/*
|
|
|
|
* deps.h
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2013-01-02 14:19:59 +10:00
|
|
|
* Copyright (c) 2006-2013 Pacman Development Team <pacman-dev@archlinux.org>
|
2009-07-01 02:08:33 -05:00
|
|
|
* Copyright (c) 2002-2006 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 19:31:03 +00:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 20:18:45 -06:00
|
|
|
*
|
2005-03-15 01:51:43 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2007-12-10 22:55:22 -06:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-15 01:51:43 +00:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_DEPS_H
|
|
|
|
#define _ALPM_DEPS_H
|
|
|
|
|
|
|
|
#include "db.h"
|
|
|
|
#include "sync.h"
|
2006-11-22 09:03:41 +00:00
|
|
|
#include "package.h"
|
2006-11-20 09:10:23 +00:00
|
|
|
#include "alpm.h"
|
2005-03-15 01:51:43 +00:00
|
|
|
|
2011-06-28 14:29:55 +10:00
|
|
|
void _alpm_dep_free(alpm_depend_t *dep);
|
|
|
|
alpm_depend_t *_alpm_dep_dup(const alpm_depend_t *dep);
|
2011-06-28 14:32:09 +10:00
|
|
|
void _alpm_depmiss_free(alpm_depmissing_t *miss);
|
2011-06-28 14:04:00 +10:00
|
|
|
alpm_list_t *_alpm_sortbydeps(alpm_handle_t *handle, alpm_list_t *targets, int reverse);
|
2011-08-19 11:06:55 -05:00
|
|
|
int _alpm_recursedeps(alpm_db_t *db, alpm_list_t *targs, int include_explicit);
|
2011-06-28 23:26:39 +10:00
|
|
|
int _alpm_resolvedeps(alpm_handle_t *handle, alpm_list_t *localpkgs, alpm_pkg_t *pkg,
|
2009-03-09 09:56:13 +13:00
|
|
|
alpm_list_t *preferred, alpm_list_t **packages, alpm_list_t *remove,
|
|
|
|
alpm_list_t **data);
|
2011-06-28 14:29:55 +10:00
|
|
|
alpm_depend_t *_alpm_splitdep(const char *depstring);
|
2011-08-18 00:11:19 -05:00
|
|
|
int _alpm_depcmp_literal(alpm_pkg_t *pkg, alpm_depend_t *dep);
|
2011-06-28 14:29:55 +10:00
|
|
|
int _alpm_depcmp(alpm_pkg_t *pkg, alpm_depend_t *dep);
|
2005-03-15 01:51:43 +00:00
|
|
|
|
|
|
|
#endif /* _ALPM_DEPS_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|