aboutsummaryrefslogtreecommitdiff
path: root/ipsbuild.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipsbuild.py')
-rw-r--r--ipsbuild.py20
1 files changed, 15 insertions, 5 deletions
diff --git a/ipsbuild.py b/ipsbuild.py
index 8f3088a..406fe77 100644
--- a/ipsbuild.py
+++ b/ipsbuild.py
@@ -1,14 +1,24 @@
#!/usr/bin/env python
+# This file is part of ipsutils.
+
+# ipsutils is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# ipsutils is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with ipsutils. If not, see <http://www.gnu.org/licenses/>.
-# Solaris 11 IPS
-# Automate package creation
from pprint import pprint
import ips
testfile = "test.ips"
build = ips.build.Build(testfile)
-#build.show_summary()
-#build.source_unpack()
+build.show_summary()
build.controller.do_tasks()
-print("I made it to the end") \ No newline at end of file