]> git.ipfire.org Git - pakfire.git/commitdiff
libpakfire: Drop pakfire_pool_whatprovides
authorMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Jan 2018 18:44:48 +0000 (19:44 +0100)
committerMichael Tremer <michael.tremer@ipfire.org>
Thu, 18 Jan 2018 18:44:48 +0000 (19:44 +0100)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
src/libpakfire/include/pakfire/pool.h
src/libpakfire/libpakfire.sym
src/libpakfire/pool.c

index 3759442dd7cb1b9062457f3fe82d1d57c9e03d4d..3e6a22a1e96d711351ca32b03279b49f23c00db6 100644 (file)
@@ -32,7 +32,6 @@ const char* pakfire_pool_get_cache_path(PakfirePool pool);
 void pakfire_pool_set_cache_path(PakfirePool pool, const char* path);
 PakfireCache pakfire_pool_get_cache(PakfirePool pool);
 
-PakfirePackageList pakfire_pool_whatprovides(PakfirePool pool, const char* provides, int flags);
 PakfirePackageList pakfire_pool_search(PakfirePool pool, const char* what, int flags);
 
 #ifdef PAKFIRE_PRIVATE
index 997824a4a8547562c680f01e3eca5107c85f38e2..2aae07235927a7b1e8156364cd4b39bb37eac0b7 100644 (file)
@@ -209,7 +209,6 @@ global:
        pakfire_pool_search;
        pakfire_pool_set_cache_path;
        pakfire_pool_unref;
-       pakfire_pool_whatprovides;
 
        # problem
        pakfire_problem_append;
index da91c706d993675cfa30098d24f9e01cfa82e13c..7cdf7a1bfab880750116a4cbcfa02dc4e040bce0 100644 (file)
@@ -104,10 +104,6 @@ PAKFIRE_EXPORT PakfireCache pakfire_pool_get_cache(PakfirePool pool) {
        return NULL;
 }
 
-PakfirePackageList pakfire_pool_whatprovides(PakfirePool pool, const char* provides, int flags) {
-       return pakfire_whatprovides(pool->pakfire, provides, flags);
-}
-
 PakfirePackageList pakfire_pool_search(PakfirePool pool, const char* what, int flags) {
        return pakfire_search(pool->pakfire, what, flags);
 }