Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
don't artificially add the current year to the copyright notices
[simgrid.git] / tools / internal / update_copyright_header
index 36c11af..238f200 100755 (executable)
@@ -27,8 +27,6 @@ fi
 
 printf 'Using template: %s\n' "$template"
 
-now=$(date +%Y)
-
 get_dates() {
     local file=$1
     local date
@@ -50,7 +48,6 @@ get_dates() {
         esac
     done
     git log --format=%ad "$file" | cut -d\  -f5 | uniq
-    echo $now
 }
 
 format_dates() {
@@ -92,42 +89,46 @@ for file; do
         continue
     fi
 
-    if head -n 1 "$file" | grep -q '^#!'; then
-        script=1
-    else
-        script=0
-    fi
+    if grep -q "Copyright.*SimGrid" $file ; then 
+        if head -n 1 "$file" | grep -q '^#!'; then
+            script=1
+        else
+            script=0
+        fi
 
-    ### 1. create new template
-    dates=$(get_dates "$file" | sort -u | format_dates)
-    sed "s/(c) [[:digit:], -]*\./(c) $dates./" "$template" > "$tmp_copy"
-    printf '\n' >> "$tmp_copy"
+        ### 1. create new template
+        dates=$(get_dates "$file" | sort -u | format_dates)
+        sed "s/(c) [[:digit:], -]*\./(c) $dates./" "$template" > "$tmp_copy"
+        printf '\n' >> "$tmp_copy"
 
-    # fix comments for scripts
-    if [ $script = 1 ]; then
-        sed -i 's!^..!#!;s! *\*/!!' "$tmp_copy"
-    fi
+        # fix comments for scripts
+        if [ $script = 1 ]; then
+            sed -i 's!^..!#!;s! *\*/!!' "$tmp_copy"
+        fi
 
-    ### 2. copy file body
-    if grep -q 'Copyright.*SimGrid' "$file"; then
-        sed '/Copyright.*SimGrid/,$d' "$file" > "$tmp_head"
-        sed -i '${\!^/\* *$!d}' "$tmp_head"
-        sed '1,/the terms of the license/d' "$file" > "$tmp_foot"
-    elif [ $script = 1 ]; then
-        head -n 1 "$file" > "$tmp_head"
-        tail -n +2  "$file" > "$tmp_foot"
-        printf '\n' >> "$tmp_head"
-    else
-        :> "$tmp_head"
-        cp "$file" "$tmp_foot"
-    fi
-    sed -i '1{\!^ *\*/!d};/[^[:space:]]/,$!d' "$tmp_foot"
+        ### 2. copy file body
+        if grep -q 'Copyright.*SimGrid' "$file"; then
+            sed '/Copyright.*SimGrid/,$d' "$file" > "$tmp_head"
+            sed -i '${\!^/\* *$!d}' "$tmp_head"
+            sed '1,/the terms of the license/d' "$file" > "$tmp_foot"
+        elif [ $script = 1 ]; then
+            head -n 1 "$file" > "$tmp_head"
+            tail -n +2  "$file" > "$tmp_foot"
+            printf '\n' >> "$tmp_head"
+        else
+            :> "$tmp_head"
+            cp "$file" "$tmp_foot"
+        fi
+        sed -i '1{\!^ *\*/!d};/[^[:space:]]/,$!d' "$tmp_foot"
 
-    ### 3. concatenate new template and file body into $file
-#    cat "$tmp_head"
-#    cat "$tmp_copy"
-#    cat "$tmp_foot"
-    cat "$tmp_head" "$tmp_copy" "$tmp_foot" > $file
+        ### 3. concatenate new template and file body into $file
+#        cat "$tmp_head"
+#        cat "$tmp_copy"
+#        cat "$tmp_foot"
+        cat "$tmp_head" "$tmp_copy" "$tmp_foot" > $file
+    else
+        echo "Pass: there is no SimGrid Copyright header."
+    fi ; # 
 done
 
 cat <<EOF