convert: add copyright and license headers to back-ends
authorMartin Geisler <mg@lazybytes.net>
Sun, 26 Apr 2009 01:47:44 +0200
changeset 8250 1b60efdb8bc5
parent 8249 2c7c973c2abd
child 8251 7fc30044b514
convert: add copyright and license headers to back-ends
hgext/convert/bzr.py
hgext/convert/common.py
hgext/convert/cvs.py
hgext/convert/darcs.py
hgext/convert/git.py
hgext/convert/gnuarch.py
hgext/convert/hg.py
hgext/convert/monotone.py
--- a/hgext/convert/bzr.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/bzr.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,10 @@
-# bzr support for the convert extension
+# bzr.py - bzr support for the convert extension
+#
+#  Copyright 2008, 2009 Marek Kubica <marek@xivilization.net> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
+
 # This module is for handling 'bzr', that was formerly known as Bazaar-NG;
 # it cannot access 'bar' repositories, but they were never used very much
 
--- a/hgext/convert/common.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/common.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,10 @@
-# common code for the convert extension
+# common.py - common code for the convert extension
+#
+#  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
+
 import base64, errno
 import os
 import cPickle as pickle
--- a/hgext/convert/cvs.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/cvs.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,9 @@
-# CVS conversion code inspired by hg-cvs-import and git-cvsimport
+# cvs.py: CVS conversion code inspired by hg-cvs-import and git-cvsimport
+#
+#  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 import os, locale, re, socket, errno
 from cStringIO import StringIO
--- a/hgext/convert/darcs.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/darcs.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,9 @@
-# darcs support for the convert extension
+# darcs.py - darcs support for the convert extension
+#
+#  Copyright 2007-2009 Matt Mackall <mpm@selenic.com> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 from common import NoRepo, checktool, commandline, commit, converter_source
 from mercurial.i18n import _
--- a/hgext/convert/git.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/git.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,9 @@
-# git support for the convert extension
+# git.py - git support for the convert extension
+#
+#  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 import os
 from mercurial import util
--- a/hgext/convert/gnuarch.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/gnuarch.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,10 @@
-# GNU Arch support for the convert extension
+# gnuarch.py - GNU Arch support for the convert extension
+#
+#  Copyright 2008, 2009 Aleix Conchillo Flaque <aleix@member.fsf.org>
+#  and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 from common import NoRepo, commandline, commit, converter_source
 from mercurial.i18n import _
--- a/hgext/convert/hg.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/hg.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,9 @@
-# hg backend for convert extension
+# hg.py - hg backend for convert extension
+#
+#  Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 # Notes for hg->hg conversion:
 #
--- a/hgext/convert/monotone.py	Sat Apr 18 13:29:48 2009 -0400
+++ b/hgext/convert/monotone.py	Sun Apr 26 01:47:44 2009 +0200
@@ -1,4 +1,10 @@
-# monotone support for the convert extension
+# monotone.py - monotone support for the convert extension
+#
+#  Copyright 2008, 2009 Mikkel Fahnoe Jorgensen <mikkel@dvide.com> and
+#  others
+#
+# This software may be used and distributed according to the terms of the
+# GNU General Public License version 2, incorporated herein by reference.
 
 import os, re
 from mercurial import util