Cleanups:

- begin switching to new copyright message
 - add modelines to more files
This commit is contained in:
Laurence Withers 2006-07-25 18:50:00 +01:00
commit 2eb3f126e3
10 changed files with 49 additions and 17 deletions

View file

@ -1,8 +1,9 @@
#!/bin/bash
# @P@/scripts/functions.sh
#
# (c)@YEAR@, @AUTHOR@. Released under the GNU GPL. See file
# COPYING for more information / terms of license.
# (c)2006, @AUTHOR@, <@EMAIL@>.
# Released under the GNU GPLv2. See file COPYING or
# http://www.gnu.org/copyleft/gpl.html for details.
#
# Common functions
@ -62,3 +63,6 @@ do_cmd_redir() {
return 1
fi
}
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
# vim: expandtab:ts=4:sw=4

View file

@ -1,8 +1,9 @@
#!/bin/bash
# @P@/scripts/module-create.sh
#
# (c)@YEAR@, @AUTHOR@. Released under the GNU GPL. See file
# COPYING for more information / terms of license.
# (c)2006, @AUTHOR@, <@EMAIL@>.
# Released under the GNU GPLv2. See file COPYING or
# http://www.gnu.org/copyleft/gpl.html for details.
#
# Creates a new source module.
@ -44,3 +45,6 @@ fi
source ${TEMPLATE}/instantiate
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
# vim: expandtab:ts=4:sw=4

View file

@ -1,8 +1,9 @@
#!/bin/bash
# @P@/scripts/module-rename.sh
#
# (c)@YEAR@, @AUTHOR@. Released under the GNU GPL. See file
# COPYING for more information / terms of license.
# (c)2006, @AUTHOR@, <@EMAIL@>.
# Released under the GNU GPLv2. See file COPYING or
# http://www.gnu.org/copyleft/gpl.html for details.
#
# Renames a source module (e.g. "src/oldlib" -> "src/newlib") by running
@ -44,3 +45,6 @@ echo "Moving ${OLD} -> ${NEW}"
do_cmd mv ${OLD} ${NEW} || exit 1
do_cmd find ${NEW} -type f -exec sed -e "s,${OLD},${NEW},g" -i {} \; || exit 1
print_success "Done"
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
# vim: expandtab:ts=4:sw=4

View file

@ -1,8 +1,9 @@
#!/bin/bash
# @P@/scripts/release.sh
#
# (c)@YEAR@, @AUTHOR@. Released under the GNU GPL. See file
# COPYING for more information / terms of license.
# (c)2006, @AUTHOR@, <@EMAIL@>.
# Released under the GNU GPLv2. See file COPYING or
# http://www.gnu.org/copyleft/gpl.html for details.
#
# Prepares package for release. Expects the version number on the
@ -74,3 +75,6 @@ gpg -a -b "${PKGNAME}-doc.tar.bz2"
# clean up
rm -rf "${PKGNAME}" "${PKGNAME}-doc"
# kate: replace-trailing-space-save true; space-indent true; tab-width 4;
# vim: expandtab:ts=4:sw=4