]> git.ipfire.org Git - pakfire.git/blame - python/pakfire/api.py
Add support for --allow-{arch,vendor}change on updates.
[pakfire.git] / python / pakfire / api.py
CommitLineData
18edfe75 1#!/usr/bin/python
b792d887
MT
2###############################################################################
3# #
4# Pakfire - The IPFire package management system #
5# Copyright (C) 2011 Pakfire development team #
6# #
7# This program is free software: you can redistribute it and/or modify #
8# it under the terms of the GNU General Public License as published by #
9# the Free Software Foundation, either version 3 of the License, or #
10# (at your option) any later version. #
11# #
12# This program is distributed in the hope that it will be useful, #
13# but WITHOUT ANY WARRANTY; without even the implied warranty of #
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15# GNU General Public License for more details. #
16# #
17# You should have received a copy of the GNU General Public License #
18# along with this program. If not, see <http://www.gnu.org/licenses/>. #
19# #
20###############################################################################
18edfe75
MT
21
22import base
23
24from errors import *
25
26Pakfire = base.Pakfire
27
28def install(requires, **pakfire_args):
29 pakfire = Pakfire(**pakfire_args)
30
31 return pakfire.install(requires)
32
b25a3d84
MT
33def resolvdep(requires, **pakfire_args):
34 pakfire = Pakfire(**pakfire_args)
35
36 return pakfire.resolvdep(requires)
37
e0b99370
MT
38def localinstall(files, **pakfire_args):
39 pakfire = Pakfire(**pakfire_args)
40
41 return pakfire.localinstall(files)
42
a39fd08b
MT
43def remove(what, **pakfire_args):
44 pakfire = Pakfire(**pakfire_args)
45
46 return pakfire.remove(what)
18edfe75 47
05fb1da0 48def update(pkgs, check=False, excludes=None, allow_vendorchange=False, allow_archchange=False, **pakfire_args):
18edfe75
MT
49 pakfire = Pakfire(**pakfire_args)
50
05fb1da0
MT
51 return pakfire.update(pkgs, check=check, excludes=excludes,
52 allow_vendorchange=allow_vendorchange, allow_archchange=allow_archchange)
18edfe75
MT
53
54def info(patterns, **pakfire_args):
55 # Create pakfire instance.
56 pakfire = Pakfire(**pakfire_args)
57
58 return pakfire.info(patterns)
59
60def search(pattern, **pakfire_args):
61 # Create pakfire instance.
62 pakfire = Pakfire(**pakfire_args)
63
64 return pakfire.search(pattern)
65
66def groupinstall(group, **pakfire_args):
67 pakfire = Pakfire(**pakfire_args)
68
69 return pakfire.groupinstall(group)
70
71def grouplist(group, **pakfire_args):
72 pakfire = Pakfire(**pakfire_args)
73
74 return pakfire.grouplist(group)
75
c07a3ca7
MT
76def _build(pkg, resultdir, **kwargs):
77 pakfire = Pakfire(**kwargs)
78
79 return pakfire._build(pkg, resultdir, **kwargs)
80
18edfe75
MT
81def build(pkg, **kwargs):
82 return Pakfire.build(pkg, **kwargs)
83
84def shell(pkg, **kwargs):
85 return Pakfire.shell(pkg, **kwargs)
86
c07a3ca7
MT
87def dist(pkgs, resultdirs=None, **pakfire_args):
88 pakfire = Pakfire(**pakfire_args)
89
90 return pakfire.dist(pkgs, resultdirs=resultdirs)
18edfe75
MT
91
92def provides(patterns, **pakfire_args):
93 # Create pakfire instance.
94 pakfire = Pakfire(**pakfire_args)
95
96 return pakfire.provides(patterns)
97
98def requires(patterns, **pakfire_args):
99 # Create pakfire instance.
100 pakfire = Pakfire(**pakfire_args)
101
102 return pakfire.requires(requires)
103
8276111d 104def repo_create(path, input_paths, type="binary", **pakfire_args):
18edfe75
MT
105 pakfire = Pakfire(**pakfire_args)
106
8276111d 107 return pakfire.repo_create(path, input_paths, type=type)
18edfe75
MT
108
109def repo_list(**pakfire_args):
110 pakfire = Pakfire(**pakfire_args)
111
112 return pakfire.repo_list()
31267a64
MT
113
114def clean_all(**pakfire_args):
115 pakfire = Pakfire(**pakfire_args)
116
117 return pakfire.clean_all()
35d89fd7
MT
118
119def check(**pakfire_args):
120 pakfire = Pakfire(**pakfire_args)
121
122 return pakfire.check()