[119712] trunk/base/src/port1.0/portlint.tcl

ryandesign at macports.org ryandesign at macports.org
Sat May 3 20:10:13 PDT 2014


Revision: 119712
          https://trac.macports.org/changeset/119712
Author:   ryandesign at macports.org
Date:     2014-05-03 20:10:13 -0700 (Sat, 03 May 2014)
Log Message:
-----------
portlint.tcl: add standard BSD license header and modeline; fix whitespace to conform

Modified Paths:
--------------
    trunk/base/src/port1.0/portlint.tcl

Modified: trunk/base/src/port1.0/portlint.tcl
===================================================================
--- trunk/base/src/port1.0/portlint.tcl	2014-05-04 03:10:10 UTC (rev 119711)
+++ trunk/base/src/port1.0/portlint.tcl	2014-05-04 03:10:13 UTC (rev 119712)
@@ -1,6 +1,33 @@
-# et:ts=4
-# portlint.tcl
+# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:filetype=tcl:et:sw=4:ts=4:sts=4
 # $Id$
+#
+# Copyright (c) 2007 - 2014 The MacPorts Project
+# All rights reserved.
+#
+# Redistribution and use in source and binary forms, with or without
+# modification, are permitted provided that the following conditions
+# are met:
+# 1. Redistributions of source code must retain the above copyright
+#    notice, this list of conditions and the following disclaimer.
+# 2. Redistributions in binary form must reproduce the above copyright
+#    notice, this list of conditions and the following disclaimer in the
+#    documentation and/or other materials provided with the distribution.
+# 3. Neither the name of The MacPorts Project nor the names of its contributors
+#    may be used to endorse or promote products derived from this software
+#    without specific prior written permission.
+# 
+# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
+# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+# POSSIBILITY OF SUCH DAMAGE.
+#
 
 package provide portlint 1.0
 package require portutil 1.0
@@ -460,20 +487,20 @@
 
     set all_depends {}
     if {[info exists depends_fetch]} {
-		lappend all_depends {*}$depends_fetch
-	}
+        lappend all_depends {*}$depends_fetch
+    }
     if {[info exists depends_extract]} {
-		lappend all_depends {*}$depends_extract
-	}
+        lappend all_depends {*}$depends_extract
+    }
     if {[info exists depends_lib]} {
-		lappend all_depends {*}$depends_lib
-	}
+        lappend all_depends {*}$depends_lib
+    }
     if {[info exists depends_build]} {
-		lappend all_depends {*}$depends_build
-	}
+        lappend all_depends {*}$depends_build
+    }
     if {[info exists depends_run]} {
-		lappend all_depends {*}$depends_run
-	}
+        lappend all_depends {*}$depends_run
+    }
     foreach depspec $all_depends {
         set dep [lindex [split $depspec :] end]
         if {[catch {set res [mport_lookup $dep]} error]} {
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140503/97930a00/attachment.html>


More information about the macports-changes mailing list