From fddf6d1688f90be761536b1a86f8d6881d6ea816 Mon Sep 17 00:00:00 2001 From: Joseph Hunkeler Date: Mon, 22 Apr 2013 11:05:20 -0400 Subject: Add GNU GPLv3 licensing --- ipsbuild.py | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) (limited to 'ipsbuild.py') 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 . -# 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 -- cgit