aboutsummaryrefslogtreecommitdiffstats
path: root/framework/src/ant/apache-ant-1.9.6/src/etc/yearcheck.sh
blob: 1a510ffde3d2f8af9498533f8a1ccb98ec9dbda0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
#!/bin/sh

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements.  See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License.  You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

#
# Simple shell script that checks whether changed files contain a copyright
# statement for a given year.
#
# Rename (or symlink) this script to the year you want to check, i.e. name it
# 2002 if you want to check for copyright statements that do not contain
# the year 2002.
#
# Use this script instead of your usual cvs update command.
#
# Usage YEAR [precommit]
#
# If the optional all argument has been omitted, the proposal directory will
# be skipped.
#

if [ -n "$TMP" ]; then
  TEMP_DIR="$TMP"
else
  if [ -n "$TEMP" ]; then
    TEMP_DIR="$TEMP"
  else
    TEMP_DIR=/tmp
  fi
fi

YEAR=`basename $0`

if [ $YEAR = yearcheck.sh ]; then
    YEAR=`date -R | cut -d ' ' -f 4`
fi

precommit_call=false
for arg in "$@" ; do
  if [ "$arg" = "precommit" ] ; then
    precommit_call=true
  fi
done

if [ -d ".svn" ]; then
  SCM_COMMAND=svn
  if $precommit_call ; then
    SCM_ARGS=status
    CUT_ARGS="-c 8-"
  else
    SCM_ARGS=up
    CUT_ARGS="-c 4-"
  fi
else
  SCM_COMMAND=cvs
  SCM_ARGS="-z3 update -dP"
  CUT_ARGS="-d ' ' -f 2"
fi

"$SCM_COMMAND" $SCM_ARGS > "$TEMP_DIR"/update-prefilter

# filter out boring lines
if [ "$SCM_COMMAND" = "svn" ]; then
  < "$TEMP_DIR"/update-prefilter fgrep -v 'At revision' | fgrep -v 'Updated to revision' | egrep -v '^\?' > "$TEMP_DIR"/update
else
  cp "$TEMP_DIR"/update-prefilter "$TEMP_DIR"/update
fi

cut $CUT_ARGS < "$TEMP_DIR"/update > "$TEMP_DIR"/changed-files

echo "Changed:"
echo "========"
cat "$TEMP_DIR"/changed-files
echo

xargs fgrep -L Copyright < "$TEMP_DIR"/changed-files > "$TEMP_DIR"/no-copyright

echo "No Copyright line"
echo "================="
cat "$TEMP_DIR"/no-copyright
echo

xargs egrep -L "Copyright.*$YEAR" < "$TEMP_DIR"/changed-files | cut -f 1 -d : > "$TEMP_DIR"/no-$YEAR

echo "No Copyright line for year $YEAR"
echo "================================"
cat "$TEMP_DIR"/no-$YEAR

rm "$TEMP_DIR"/no-$YEAR "$TEMP_DIR"/no-copyright "$TEMP_DIR"/changed-files "$TEMP_DIR"/update "$TEMP_DIR"/update-prefilter