2012-11-02 19:34:25 +05:30
|
|
|
/*-
|
2020-04-29 17:42:10 +05:30
|
|
|
* Copyright (c) 2009-2014 Juan Romero Pardines.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2012-11-02 19:34:25 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _XBPS_QUERY_DEFS_H_
|
|
|
|
#define _XBPS_QUERY_DEFS_H_
|
|
|
|
|
2013-06-20 16:01:02 +05:30
|
|
|
#include <xbps.h>
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-06-14 13:03:27 +05:30
|
|
|
#include "../xbps-install/defs.h"
|
|
|
|
|
2012-11-02 19:34:25 +05:30
|
|
|
/* from show-deps.c */
|
2014-08-19 16:44:37 +05:30
|
|
|
int show_pkg_deps(struct xbps_handle *, const char *, bool, bool);
|
|
|
|
int show_pkg_revdeps(struct xbps_handle *, const char *, bool);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
/* from show-info-files.c */
|
2013-06-20 13:56:12 +05:30
|
|
|
void show_pkg_info(xbps_dictionary_t);
|
|
|
|
void show_pkg_info_one(xbps_dictionary_t, const char *);
|
2012-11-02 19:34:25 +05:30
|
|
|
int show_pkg_info_from_metadir(struct xbps_handle *, const char *,
|
|
|
|
const char *);
|
2013-06-20 13:56:12 +05:30
|
|
|
int show_pkg_files(xbps_dictionary_t);
|
2012-11-02 19:34:25 +05:30
|
|
|
int show_pkg_files_from_metadir(struct xbps_handle *, const char *);
|
|
|
|
int repo_show_pkg_files(struct xbps_handle *, const char *);
|
2021-12-19 20:37:25 +05:30
|
|
|
int cat_file(struct xbps_handle *, const char *, const char *);
|
2014-11-17 20:15:46 +05:30
|
|
|
int repo_cat_file(struct xbps_handle *, const char *, const char *);
|
2012-11-02 19:34:25 +05:30
|
|
|
int repo_show_pkg_info(struct xbps_handle *, const char *, const char *);
|
2013-06-20 13:56:12 +05:30
|
|
|
int repo_show_pkg_namedesc(struct xbps_handle *, xbps_object_t, void *,
|
2012-11-02 19:34:25 +05:30
|
|
|
bool *);
|
|
|
|
|
|
|
|
/* from ownedby.c */
|
2014-05-26 21:00:44 +05:30
|
|
|
int ownedby(struct xbps_handle *, const char *, bool, bool);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
/* From list.c */
|
2013-06-20 13:56:12 +05:30
|
|
|
unsigned int find_longest_pkgver(struct xbps_handle *, xbps_object_t);
|
2012-11-02 19:34:25 +05:30
|
|
|
|
2013-07-27 13:17:16 +05:30
|
|
|
int list_pkgs_in_dict(struct xbps_handle *, xbps_object_t, const char *, void *, bool *);
|
|
|
|
int list_manual_pkgs(struct xbps_handle *, xbps_object_t, const char *, void *, bool *);
|
2013-08-12 18:16:54 +05:30
|
|
|
int list_hold_pkgs(struct xbps_handle *, xbps_object_t, const char *, void *, bool *);
|
2016-09-21 17:41:04 +05:30
|
|
|
int list_repolock_pkgs(struct xbps_handle *, xbps_object_t, const char *, void *, bool *);
|
2012-11-02 19:34:25 +05:30
|
|
|
int list_orphans(struct xbps_handle *);
|
|
|
|
int list_pkgs_pkgdb(struct xbps_handle *);
|
|
|
|
|
|
|
|
int repo_list(struct xbps_handle *);
|
|
|
|
|
|
|
|
/* from search.c */
|
2014-09-11 04:45:51 +05:30
|
|
|
int search(struct xbps_handle *, bool, const char *, const char *, bool);
|
|
|
|
|
2012-11-02 19:34:25 +05:30
|
|
|
|
|
|
|
#endif /* !_XBPS_QUERY_DEFS_H_ */
|