aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2013-05-22 13:38:09 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2013-05-22 13:38:09 -0400
commit76f189d63bf620461188c1efc800c8119c30292b (patch)
tree748d118bd38b3f60a28b50f71cfe26a06113ee30
parentd0a0eaa7a346f43c110b64f49b54b95177c16020 (diff)
downloadipsutils-76f189d63bf620461188c1efc800c8119c30292b.tar.gz
Transmogrification implemented
-rw-r--r--ipsutils/config.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/ipsutils/config.py b/ipsutils/config.py
index 1b9963f..42a354d 100644
--- a/ipsutils/config.py
+++ b/ipsutils/config.py
@@ -38,6 +38,7 @@ class Config(object):
'build': [],
'prep': [],
'install': [],
+ 'transforms': [],
'files': []
}
@@ -54,7 +55,7 @@ class Config(object):
key_dict[key] = parts[1]
found_data = False
- code_section = ['%build', '%prep', '%install']
+ code_section = ['%build', '%prep', '%install', '%transforms']
for section in code_section:
for line in file(ipsfile).readlines():