Add copyright information to scripts.
--- a/debian/changelog Wed Feb 14 21:01:00 2007 +0100
+++ b/debian/changelog Wed Feb 21 13:51:40 2007 +0100
@@ -1,3 +1,9 @@ grml-mercurial-utils (0.14) unstable; ur
+grml-mercurial-utils (0.15) unstable; urgency=low
+
+ * Add copyright information to scripts.
+
+ -- Michael Prokop <mika@grml.org> Wed, 21 Feb 2007 13:51:26 +0100
+
grml-mercurial-utils (0.14) unstable; urgency=low
* changed dependency from python2.4 to python
--- a/hg-cleantree Wed Feb 14 21:01:00 2007 +0100
+++ b/hg-cleantree Wed Feb 21 13:51:40 2007 +0100
@@ -1,4 +1,11 @@
#!/usr/bin/python
+# Filename: hg-cleantree
+# Purpose: clean up a hole repository tree
+# Authors: grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
+# Bug-Reports: see http://grml.org/bugs/
+# License: This file is licensed under the GPL v2.
+# Latest change: Mit Feb 21 13:48:58 CET 2007 [mika]
+################################################################################
import os
--- a/hg-mirror Wed Feb 14 21:01:00 2007 +0100
+++ b/hg-mirror Wed Feb 21 13:51:40 2007 +0100
@@ -1,4 +1,11 @@
#!/usr/bin/python
+# Filename: hg-mirror
+# Purpose: create a full mirror over hgwebdir
+# Authors: grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
+# Bug-Reports: see http://grml.org/bugs/
+# License: This file is licensed under the GPL v2.
+# Latest change: Mit Feb 21 13:50:04 CET 2007 [mika]
+################################################################################
import os
import sys
--- a/hgmergevim Wed Feb 14 21:01:00 2007 +0100
+++ b/hgmergevim Wed Feb 21 13:51:40 2007 +0100
@@ -1,4 +1,11 @@
#!/bin/sh
+# Filename: hgmergevim
+# Purpose: mercurial merge script for vim
+# Authors: grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
+# Bug-Reports: see http://grml.org/bugs/
+# License: This file is licensed under the GPL v2.
+# Latest change: Mit Feb 21 13:49:35 CET 2007 [mika]
+################################################################################
set -e # bail out quickly on failure
--- a/hgr Wed Feb 14 21:01:00 2007 +0100
+++ b/hgr Wed Feb 21 13:51:40 2007 +0100
@@ -1,4 +1,11 @@
#!/usr/bin/python
+# Filename: hgr
+# Purpose: recursiv version of hg
+# Authors: grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
+# Bug-Reports: see http://grml.org/bugs/
+# License: This file is licensed under the GPL v2.
+# Latest change: Mit Feb 21 13:50:31 CET 2007 [mika]
+################################################################################
import os
import sys
--- a/hgr_bench Wed Feb 14 21:01:00 2007 +0100
+++ b/hgr_bench Wed Feb 21 13:51:40 2007 +0100
@@ -1,4 +1,11 @@
#!/usr/bin/python
+# Filename: hgr_bench
+# Purpose: small benchmark utility for hgr
+# Authors: grml-team (grml.org), (c) Michael Gebetsroither <gebi@grml.org>
+# Bug-Reports: see http://grml.org/bugs/
+# License: This file is licensed under the GPL v2.
+# Latest change: Mit Feb 21 13:50:56 CET 2007 [mika]
+################################################################################
import os
import sys
@@ -14,3 +21,5 @@ times = map(bench, range(1, 10))
times = map(bench, range(1, 10))
sys.stderr.write('min times: ' + str(times) + '\n')
sys.stderr.write('min time: ' + str(min(times)) + '\n')
+
+## END OF FILE #################################################################