aboutsummaryrefslogtreecommitdiff
path: root/ipsbuild.py
blob: af53bdb072ce3caf14d41b2243bb5848278bd587 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Solaris 11 IPS
# Automate package creation

from pprint import pprint
from collections import deque
import subprocess
import shlex
import ConfigParser
import argparse
import string

class IPS_Config(object):
    def __init__(self, ipsfile):

        key_dict = {
                'name': '',
                'version': '',
                'release': '',
                'maintainer': '',
                'upstream_url': '',
                'description': '',
                'arch': '',
                'license': ''
                }

        script_dict = {
                  'build': [],
                  'prep': [],
                  'install': [],
                  'files': []
                  }

        for key in key_dict:
            for line in file(ipsfile).readlines():
                parts = shlex.split(line)
                if key + ":" in parts:
                    key_dict[key] = parts[1]

        found_data = False
        code_section = ['%build', '%prep', '%install', '%files']
        for section in code_section:
            for line in file(ipsfile).readlines():
                parts = shlex.split(line)
                if '%end' in parts:
                    found_data = False
                if section in parts:
                    found_data = True
                    continue
                if found_data:
                    script_dict[section.strip('%')].append(parts)

        self.key_dict = key_dict
        self.script_dict = script_dict

class IPS_Task(object):
    def __init__(self, task):
        if type(task) is not type(list):
            TypeError("task must be a list")

class IPS_Build(IPS_Config):
    def __init__(self, ipsfile):
        super(IPS_Build, self).__init__(ipsfile)
        self.task_queue = deque()
        for key in self.script_dict:
            for i in self.script_dict[key]:
                self.task_queue.append(IPS_Task(i))
        


testfile = "test.ips"
build = IPS_Build(testfile)
print build.task_queue