aboutsummaryrefslogtreecommitdiff
path: root/ipsbuild.py
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunk@stsci.edu>2013-04-22 11:05:20 -0400
committerJoseph Hunkeler <jhunk@stsci.edu>2013-04-22 11:05:20 -0400
commitfddf6d1688f90be761536b1a86f8d6881d6ea816 (patch)
treea10c7404b0d2c0c6a3c5f029cf40211d269370f3 /ipsbuild.py
parentbe635e65fa948cf2fe7aca341b3dc6c2479e0d15 (diff)
downloadipsutils-fddf6d1688f90be761536b1a86f8d6881d6ea816.tar.gz
Add GNU GPLv3 licensing
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