]> git.pld-linux.org Git - packages/yum-utils.git/blob - yum-plugin-pld-kernel.py
- fix deps
[packages/yum-utils.git] / yum-plugin-pld-kernel.py
1 # -*- coding: utf-8 -*-
2 # vim: set fileencoding=utf-8
3 #
4 # Yum Kernel Module Support for PLD Linux
5 # Plugin for handling setting kernel packages as installonlypkgs in transaction
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 2 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 Library 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, write to the Free Software
19 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #
21 # by Elan Ruusamäe <glen@pld-linux.org>
22
23 from yum.plugins import PluginYumExit
24 from yum.misc import unique
25 from yum.packages import YumInstalledPackage
26 from yum.plugins import TYPE_CORE
27 from yum.constants import TS_INSTALL
28
29 requires_api_version = '2.1'
30 plugin_type = (TYPE_CORE,)
31
32 knames = ['kernel', 'kernel-smp', 'kernel-grsecurity', 'kernel-grsecurity-smp', 'kernel-desktop', 'kernel-laptop', 'kernel-vanilla']
33 ksubpkgs = ['drm', 'pcmcia', 'sound-oss', 'sound-alsa']
34
35 def preresolve_hook(conduit):
36     ts = conduit.getTsInfo()
37
38     for te in ts.getMembers():
39         if te.ts_state != 'u':
40             continue
41
42         pkgname = te.name
43         if pkgname in knames:
44             conduit.info(2, 'Marking package %s for installation' % pkgname)
45             te.ts_state = 'i'
46             te.output_state = TS_INSTALL
47             continue
48
49         for kname in knames:
50             if pkgname.startswith(kname + '-'):
51                 r = pkgname[len(kname) + 1:]
52                 if r in ksubpkgs:
53                     conduit.info(2, 'Marking package %s for installation' % pkgname)
54                     te.ts_state = 'i'
55                     te.output_state = TS_INSTALL
56
57 # vim:ts=4:sw=4:expandtab
This page took 0.53279 seconds and 3 git commands to generate.