Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
adds license header information and copyright notices to scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
RichardWarburton committed Jun 11, 2012
1 parent 704e62d commit ec8840d
Show file tree
Hide file tree
Showing 5 changed files with 90 additions and 3 deletions.
24 changes: 22 additions & 2 deletions bin/check_serialuids.sh
@@ -1,5 +1,27 @@
#!/bin/sh

#
# Copyright (c) 2012, John Oliver <johno@insightfullogic.com>, Richard Warburton <richard.warburton@gmail.com> All rights reserved.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code 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
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

patch_dir=$1
generated_uid_file=$2

Expand All @@ -12,7 +34,5 @@ do
if [ $count -lt 1 ]
then
echo $line $count
# else
# echo $file
fi
done
22 changes: 22 additions & 0 deletions bin/generate_serialuids.sh
@@ -1,5 +1,27 @@
#!/bin/sh

#
# Copyright (c) 2012, John Oliver <johno@insightfullogic.com>, Richard Warburton <richard.warburton@gmail.com> All rights reserved.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code 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
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

internal_lines=$(java -version 2>&1 | grep "internal" | wc -l)

if [ $internal_lines -ge 1 ]
Expand Down
3 changes: 2 additions & 1 deletion bin/ojdkdiffsplit.pl
@@ -1,10 +1,11 @@
#!/usr/bin/perl -w

# Modified By John Oliver to remove directory from names produced

#
# diffsplit - split up unified diffs
#
# Copyright (C) 2001-2002 Transmeta Corporation
# Copyright (C) 2012 John Oliver <johno@insightfullogic.com>
#
# written by Daniel Quinlan <quinlan@transmeta.com>
#
Expand Down
22 changes: 22 additions & 0 deletions bin/sortPatches.sh
@@ -1,5 +1,27 @@
#!/bin/bash

#
# Copyright (c) 2012, John Oliver <johno@insightfullogic.com>, Martijn Verburg <martijnverburg@gmail.com> All rights reserved.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code 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
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

cd ..

if [ $# -ne 3 ]
Expand Down
22 changes: 22 additions & 0 deletions bin/stats.sh
@@ -1,5 +1,27 @@
#!/bin/sh

#
# Copyright (c) 2012, Richard Warburton <richard.warburton@gmail.com>, Graham Allan <grundlefleck@gmail.com> All rights reserved.
#
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License version 2 only, as
# published by the Free Software Foundation. Oracle designates this
# particular file as subject to the "Classpath" exception as provided
# by Oracle in the LICENSE file that accompanied this code.
#
# This code 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
# version 2 for more details (a copy is included in the LICENSE file that
# accompanied this code).
#
# You should have received a copy of the GNU General Public License version
# 2 along with this work; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
#

set -eu

count () {
Expand Down

0 comments on commit ec8840d

Please sign in to comment.