2005-03-14 20:51:43 -05:00
|
|
|
/*
|
|
|
|
* package.h
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2007-12-10 23:55:22 -05:00
|
|
|
* Copyright (c) 2002-2007 by Judd Vinet <jvinet@zeroflux.org>
|
2006-10-15 15:31:03 -04:00
|
|
|
* Copyright (c) 2005 by Aurelien Foret <orelien@chez.com>
|
|
|
|
* Copyright (c) 2006 by David Kimpe <dnaku@frugalware.org>
|
|
|
|
* Copyright (c) 2005, 2006 by Christian Hamar <krics@linuxforum.hu>
|
|
|
|
* Copyright (c) 2005, 2006 by Miklos Vajna <vmiklos@frugalware.org>
|
2007-11-16 21:18:45 -05:00
|
|
|
*
|
2005-03-14 20:51:43 -05: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 23:55:22 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2005-03-14 20:51:43 -05:00
|
|
|
*/
|
|
|
|
#ifndef _ALPM_PACKAGE_H
|
|
|
|
#define _ALPM_PACKAGE_H
|
|
|
|
|
2006-10-15 15:31:03 -04:00
|
|
|
#include <time.h>
|
2006-11-20 04:10:23 -05:00
|
|
|
|
|
|
|
#include "alpm.h"
|
2007-01-23 22:02:53 -05:00
|
|
|
#include "db.h"
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-01-23 22:02:53 -05:00
|
|
|
typedef enum _pmpkgfrom_t {
|
2005-03-16 17:57:12 -05:00
|
|
|
PKG_FROM_CACHE = 1,
|
|
|
|
PKG_FROM_FILE
|
2007-01-23 22:02:53 -05:00
|
|
|
} pmpkgfrom_t;
|
2005-03-16 17:57:12 -05:00
|
|
|
|
2006-11-20 04:10:23 -05:00
|
|
|
struct __pmpkg_t {
|
2008-01-11 01:01:58 -05:00
|
|
|
char *filename;
|
|
|
|
char *name;
|
|
|
|
char *version;
|
|
|
|
char *desc;
|
|
|
|
char *url;
|
2007-09-19 01:21:56 -04:00
|
|
|
time_t builddate;
|
|
|
|
time_t installdate;
|
2008-01-11 01:01:58 -05:00
|
|
|
char *packager;
|
|
|
|
char *md5sum;
|
|
|
|
char *arch;
|
2005-03-14 20:51:43 -05:00
|
|
|
unsigned long size;
|
2006-11-22 04:03:41 -05:00
|
|
|
unsigned long isize;
|
2007-01-23 22:02:53 -05:00
|
|
|
unsigned short scriptlet;
|
|
|
|
unsigned short force;
|
|
|
|
pmpkgreason_t reason;
|
2007-03-03 03:13:59 -05:00
|
|
|
alpm_list_t *licenses;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *replaces;
|
|
|
|
alpm_list_t *groups;
|
|
|
|
alpm_list_t *files;
|
|
|
|
alpm_list_t *backup;
|
|
|
|
alpm_list_t *depends;
|
2007-09-26 00:02:30 -04:00
|
|
|
alpm_list_t *optdepends;
|
2007-01-19 04:28:44 -05:00
|
|
|
alpm_list_t *conflicts;
|
|
|
|
alpm_list_t *provides;
|
2007-10-19 13:17:51 -04:00
|
|
|
alpm_list_t *deltas;
|
2005-03-14 20:51:43 -05:00
|
|
|
/* internal */
|
2007-02-06 15:57:17 -05:00
|
|
|
pmpkgfrom_t origin;
|
2007-08-14 10:14:35 -04:00
|
|
|
/* Replaced 'void *data' with this union as follows:
|
2007-02-10 18:50:31 -05:00
|
|
|
origin == PKG_FROM_CACHE, use pkg->origin_data.db
|
2007-08-14 10:14:35 -04:00
|
|
|
origin == PKG_FROM_FILE, use pkg->origin_data.file
|
|
|
|
*/
|
2007-02-10 18:50:31 -05:00
|
|
|
union {
|
|
|
|
pmdb_t *db;
|
2007-08-14 10:14:35 -04:00
|
|
|
char *file;
|
2007-02-10 18:50:31 -05:00
|
|
|
} origin_data;
|
2007-01-23 22:02:53 -05:00
|
|
|
pmdbinfrq_t infolevel;
|
2008-02-16 11:47:22 -05:00
|
|
|
unsigned long download_size;
|
|
|
|
alpm_list_t *delta_path;
|
2006-11-20 04:10:23 -05:00
|
|
|
};
|
2005-03-14 20:51:43 -05:00
|
|
|
|
2007-07-12 15:20:43 -04:00
|
|
|
int _alpm_versioncmp(const char *a, const char *b);
|
2008-05-13 20:03:54 -04:00
|
|
|
pmpkg_t* _alpm_pkg_new(void);
|
2006-02-17 17:35:26 -05:00
|
|
|
pmpkg_t *_alpm_pkg_dup(pmpkg_t *pkg);
|
2007-04-26 21:08:34 -04:00
|
|
|
void _alpm_pkg_free(pmpkg_t *pkg);
|
2006-03-08 13:07:58 -05:00
|
|
|
int _alpm_pkg_cmp(const void *p1, const void *p2);
|
2008-01-11 09:43:10 -05:00
|
|
|
int _alpm_pkg_compare_versions(pmpkg_t *local_pkg, pmpkg_t *pkg);
|
2008-05-01 17:58:33 -04:00
|
|
|
pmpkg_t *_alpm_pkg_find(alpm_list_t *haystack, const char *needle);
|
2007-11-09 20:13:29 -05:00
|
|
|
int _alpm_pkg_should_ignore(pmpkg_t *pkg);
|
2006-11-20 04:10:23 -05:00
|
|
|
|
2005-03-14 20:51:43 -05:00
|
|
|
#endif /* _ALPM_PACKAGE_H */
|
|
|
|
|
|
|
|
/* vim: set ts=2 sw=2 noet: */
|