diff options
author | Dan McGee <dan@archlinux.org> | 2011-09-02 22:07:06 -0500 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-02 22:07:06 -0500 |
commit | 7ea1ea88bbca64514d5aad64fe199191f0f2eea1 (patch) | |
tree | c4dfe60e65540a2606fb0d704e8b9b7a05ccb24a /lib/libalpm/package.h | |
parent | 7c956d5d4bdf89bfece1244baa56a92f83bd9161 (diff) | |
download | pacman-7ea1ea88bbca64514d5aad64fe199191f0f2eea1.tar.xz |
More package operations cleanup
Neither deltas nor filename attributes are ever present in the local
database, so we can remove all of the indirection for accessing these
attributes.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/package.h')
-rw-r--r-- | lib/libalpm/package.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index 4680375a..41dd84b9 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -42,7 +42,6 @@ * defined default_pkg_ops struct to work just fine for their needs. */ struct pkg_operations { - const char *(*get_filename) (alpm_pkg_t *); const char *(*get_desc) (alpm_pkg_t *); const char *(*get_url) (alpm_pkg_t *); time_t (*get_builddate) (alpm_pkg_t *); @@ -60,7 +59,6 @@ struct pkg_operations { alpm_list_t *(*get_conflicts) (alpm_pkg_t *); alpm_list_t *(*get_provides) (alpm_pkg_t *); alpm_list_t *(*get_replaces) (alpm_pkg_t *); - alpm_list_t *(*get_deltas) (alpm_pkg_t *); alpm_filelist_t *(*get_files) (alpm_pkg_t *); alpm_list_t *(*get_backup) (alpm_pkg_t *); @@ -69,11 +67,6 @@ struct pkg_operations { int (*changelog_close) (const alpm_pkg_t *, void *); int (*force_load) (alpm_pkg_t *); - - /* still to add: - * checkmd5sum() ? - * compute_requiredby() - */ }; /** The standard package operations struct. get fields directly from the |