summaryrefslogtreecommitdiff
path: root/bindings
diff options
context:
space:
mode:
authorMichael Schroeder <mls@suse.de>2013-05-27 18:24:59 +0200
committerMichael Schroeder <mls@suse.de>2013-05-27 18:24:59 +0200
commitcde550e0c54bd21acd0a7cd755bd2c031b1f8061 (patch)
treee27f2e1c057b756675591f858a85342c38e30ca3 /bindings
parent65f64e0a6bf74498cc92f5dea1b4cef5fed23643 (diff)
downloadlibsolv-cde550e0c54bd21acd0a7cd755bd2c031b1f8061.tar.gz
libsolv-cde550e0c54bd21acd0a7cd755bd2c031b1f8061.tar.bz2
libsolv-cde550e0c54bd21acd0a7cd755bd2c031b1f8061.zip
define and document the pool flags
Diffstat (limited to 'bindings')
-rw-r--r--bindings/solv.i9
1 files changed, 9 insertions, 0 deletions
diff --git a/bindings/solv.i b/bindings/solv.i
index 0d89094..06cbfbf 100644
--- a/bindings/solv.i
+++ b/bindings/solv.i
@@ -1034,6 +1034,15 @@ typedef struct {
}
%extend Pool {
+ static const int POOL_FLAG_PROMOTEEPOCH = POOL_FLAG_PROMOTEEPOCH;
+ static const int POOL_FLAG_FORBIDSELFCONFLICTS = POOL_FLAG_FORBIDSELFCONFLICTS;
+ static const int POOL_FLAG_OBSOLETEUSESPROVIDES = POOL_FLAG_OBSOLETEUSESPROVIDES;
+ static const int POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES = POOL_FLAG_IMPLICITOBSOLETEUSESPROVIDES;
+ static const int POOL_FLAG_OBSOLETEUSESCOLORS = POOL_FLAG_OBSOLETEUSESCOLORS;
+ static const int POOL_FLAG_NOINSTALLEDOBSOLETES = POOL_FLAG_NOINSTALLEDOBSOLETES;
+ static const int POOL_FLAG_HAVEDISTEPOCH = POOL_FLAG_HAVEDISTEPOCH;
+ static const int POOL_FLAG_NOOBSOLETESMULTIVERSION = POOL_FLAG_NOOBSOLETESMULTIVERSION;
+
Pool() {
Pool *pool = pool_create();
return pool;