From 6195491596b42ff29e9afcfa78b1687a1de9b304 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=2E=20David=20Ib=C3=A1=C3=B1ez?= Date: Wed, 18 Jul 2012 12:07:17 +0200 Subject: [PATCH] Add/update copyright header of each file And update my email address. --- README.rst | 2 +- include/pygit2/commit.h | 27 +++++++++++++++++++++++++++ include/pygit2/config.h | 27 +++++++++++++++++++++++++++ include/pygit2/diff.h | 27 +++++++++++++++++++++++++++ include/pygit2/error.h | 27 +++++++++++++++++++++++++++ include/pygit2/index.h | 27 +++++++++++++++++++++++++++ include/pygit2/object.h | 27 +++++++++++++++++++++++++++ include/pygit2/oid.h | 27 +++++++++++++++++++++++++++ include/pygit2/reference.h | 27 +++++++++++++++++++++++++++ include/pygit2/repository.h | 27 +++++++++++++++++++++++++++ include/pygit2/signature.h | 27 +++++++++++++++++++++++++++ include/pygit2/tag.h | 27 +++++++++++++++++++++++++++ include/pygit2/tree.h | 27 +++++++++++++++++++++++++++ include/pygit2/types.h | 27 +++++++++++++++++++++++++++ include/pygit2/utils.h | 27 +++++++++++++++++++++++++++ include/pygit2/walker.h | 27 +++++++++++++++++++++++++++ pygit2/__init__.py | 2 +- pygit2/utils.py | 2 +- setup.py | 3 +-- src/pygit2.c | 3 +-- src/pygit2/blob.c | 27 +++++++++++++++++++++++++++ src/pygit2/commit.c | 27 +++++++++++++++++++++++++++ src/pygit2/config.c | 27 +++++++++++++++++++++++++++ src/pygit2/diff.c | 27 +++++++++++++++++++++++++++ src/pygit2/error.c | 27 +++++++++++++++++++++++++++ src/pygit2/index.c | 27 +++++++++++++++++++++++++++ src/pygit2/object.c | 27 +++++++++++++++++++++++++++ src/pygit2/oid.c | 27 +++++++++++++++++++++++++++ src/pygit2/reference.c | 27 +++++++++++++++++++++++++++ src/pygit2/repository.c | 27 +++++++++++++++++++++++++++ src/pygit2/signature.c | 27 +++++++++++++++++++++++++++ src/pygit2/tag.c | 27 +++++++++++++++++++++++++++ src/pygit2/tree.c | 27 +++++++++++++++++++++++++++ src/pygit2/utils.c | 27 +++++++++++++++++++++++++++ src/pygit2/walker.c | 27 +++++++++++++++++++++++++++ test/__init__.py | 2 +- test/test_blob.py | 2 +- test/test_commit.py | 2 +- test/test_config.py | 2 +- test/test_diff.py | 2 +- test/test_index.py | 4 ++-- test/test_refs.py | 2 +- test/test_repository.py | 2 +- test/test_revwalk.py | 4 ++-- test/test_signature.py | 2 +- test/test_status.py | 2 +- test/test_tag.py | 2 +- test/test_tree.py | 2 +- test/test_treebuilder.py | 2 +- test/utils.py | 2 +- 50 files changed, 832 insertions(+), 24 deletions(-) diff --git a/README.rst b/README.rst index f8b7b4c52..a958465a0 100644 --- a/README.rst +++ b/README.rst @@ -330,7 +330,7 @@ AUTHORS ============== * David Borowitz -* J David Ibáñez +* J David Ibáñez LICENSE diff --git a/include/pygit2/commit.h b/include/pygit2/commit.h index 7930122c3..b9b907034 100644 --- a/include/pygit2/commit.h +++ b/include/pygit2/commit.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_commit_h #define INCLUDE_pygit2_commit_h diff --git a/include/pygit2/config.h b/include/pygit2/config.h index bf3e59877..b07849e2b 100644 --- a/include/pygit2/config.h +++ b/include/pygit2/config.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_config_h #define INCLUDE_pygit2_config_h diff --git a/include/pygit2/diff.h b/include/pygit2/diff.h index 1f1b793d1..7f1d0be4d 100644 --- a/include/pygit2/diff.h +++ b/include/pygit2/diff.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_diff_h #define INCLUDE_pygit2_diff_h diff --git a/include/pygit2/error.h b/include/pygit2/error.h index 587eb8978..38df75eae 100644 --- a/include/pygit2/error.h +++ b/include/pygit2/error.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_error_h #define INCLUDE_pygit2_error_h diff --git a/include/pygit2/index.h b/include/pygit2/index.h index 6f30d4f94..2082cc777 100644 --- a/include/pygit2/index.h +++ b/include/pygit2/index.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_index_h #define INCLUDE_pygit2_index_h diff --git a/include/pygit2/object.h b/include/pygit2/object.h index aeba9d354..5255996ba 100644 --- a/include/pygit2/object.h +++ b/include/pygit2/object.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_object_h #define INCLUDE_pygit2_object_h diff --git a/include/pygit2/oid.h b/include/pygit2/oid.h index 9d6845946..66def6974 100644 --- a/include/pygit2/oid.h +++ b/include/pygit2/oid.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_oid_h #define INCLUDE_pygit2_oid_h diff --git a/include/pygit2/reference.h b/include/pygit2/reference.h index a0d692593..40e7e53cc 100644 --- a/include/pygit2/reference.h +++ b/include/pygit2/reference.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_reference_h #define INCLUDE_pygit2_reference_h diff --git a/include/pygit2/repository.h b/include/pygit2/repository.h index 8ea07207b..10895ab23 100644 --- a/include/pygit2/repository.h +++ b/include/pygit2/repository.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_repository_h #define INCLUDE_pygit2_repository_h diff --git a/include/pygit2/signature.h b/include/pygit2/signature.h index 67bf003ab..10fbe7e9b 100644 --- a/include/pygit2/signature.h +++ b/include/pygit2/signature.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_signature_h #define INCLUDE_pygit2_signature_h diff --git a/include/pygit2/tag.h b/include/pygit2/tag.h index 8c13903a6..8caa6eeb5 100644 --- a/include/pygit2/tag.h +++ b/include/pygit2/tag.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_tag_h #define INCLUDE_pygit2_tag_h diff --git a/include/pygit2/tree.h b/include/pygit2/tree.h index d4af1956b..e4b086faf 100644 --- a/include/pygit2/tree.h +++ b/include/pygit2/tree.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_tree_h #define INCLUDE_pygit2_tree_h diff --git a/include/pygit2/types.h b/include/pygit2/types.h index 10cab836a..3c42ef68a 100644 --- a/include/pygit2/types.h +++ b/include/pygit2/types.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_objects_h #define INCLUDE_pygit2_objects_h diff --git a/include/pygit2/utils.h b/include/pygit2/utils.h index ee6e7b02f..b7fd1b93f 100644 --- a/include/pygit2/utils.h +++ b/include/pygit2/utils.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_utils_h #define INCLUDE_pygit2_utils_h diff --git a/include/pygit2/walker.h b/include/pygit2/walker.h index 0c6837367..82024c711 100644 --- a/include/pygit2/walker.h +++ b/include/pygit2/walker.h @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #ifndef INCLUDE_pygit2_walker_h #define INCLUDE_pygit2_walker_h diff --git a/pygit2/__init__.py b/pygit2/__init__.py index cd219c836..151fcafcf 100644 --- a/pygit2/__init__.py +++ b/pygit2/__init__.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012 Nico von Geyso +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/pygit2/utils.py b/pygit2/utils.py index 8ebf533cd..d1909b5f4 100644 --- a/pygit2/utils.py +++ b/pygit2/utils.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012 Nico von Geyso +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/setup.py b/setup.py index 6eaee92dc..7c2c32a6f 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,7 @@ # -*- coding: UTF-8 -*- # coding: UTF-8 # -# Copyright 2010 Google, Inc. -# Copyright 2011 Itaapy +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/src/pygit2.c b/src/pygit2.c index 8ecc0d2f8..e4eea03a8 100644 --- a/src/pygit2.c +++ b/src/pygit2.c @@ -1,6 +1,5 @@ /* - * Copyright 2010 Google, Inc. - * Copyright 2011 Itaapy + * Copyright 2010-2012 The pygit2 contributors * * This file is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License, version 2, diff --git a/src/pygit2/blob.c b/src/pygit2/blob.c index 2a9d123b0..c69c103f3 100644 --- a/src/pygit2/blob.c +++ b/src/pygit2/blob.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/commit.c b/src/pygit2/commit.c index 15d9ae650..6abc92a3e 100644 --- a/src/pygit2/commit.c +++ b/src/pygit2/commit.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/config.c b/src/pygit2/config.c index 5226010ae..d850ba8bc 100644 --- a/src/pygit2/config.c +++ b/src/pygit2/config.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/diff.c b/src/pygit2/diff.c index 777ba766d..1c0956e24 100644 --- a/src/pygit2/diff.c +++ b/src/pygit2/diff.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/error.c b/src/pygit2/error.c index c8e0af5d0..11129a3a7 100644 --- a/src/pygit2/error.c +++ b/src/pygit2/error.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #include PyObject *GitError; diff --git a/src/pygit2/index.c b/src/pygit2/index.c index 8b600d74f..7dec03090 100644 --- a/src/pygit2/index.c +++ b/src/pygit2/index.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/object.c b/src/pygit2/object.c index cf48483ec..12a085580 100644 --- a/src/pygit2/object.c +++ b/src/pygit2/object.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/oid.c b/src/pygit2/oid.c index 6ac86aab0..e5641da8d 100644 --- a/src/pygit2/oid.c +++ b/src/pygit2/oid.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/reference.c b/src/pygit2/reference.c index 60da959ce..75c937e9d 100644 --- a/src/pygit2/reference.c +++ b/src/pygit2/reference.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/repository.c b/src/pygit2/repository.c index 4375964d4..6bac3b54a 100644 --- a/src/pygit2/repository.c +++ b/src/pygit2/repository.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/signature.c b/src/pygit2/signature.c index 666dd3ba1..d2ea1ce83 100644 --- a/src/pygit2/signature.c +++ b/src/pygit2/signature.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/tag.c b/src/pygit2/tag.c index fb739db58..c34dbc004 100644 --- a/src/pygit2/tag.c +++ b/src/pygit2/tag.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/tree.c b/src/pygit2/tree.c index 08f841b8a..827b1c009 100644 --- a/src/pygit2/tree.c +++ b/src/pygit2/tree.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/utils.c b/src/pygit2/utils.c index d4dd39977..9aa46ef9c 100644 --- a/src/pygit2/utils.c +++ b/src/pygit2/utils.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/src/pygit2/walker.c b/src/pygit2/walker.c index 6a0bb2bfd..878b506ea 100644 --- a/src/pygit2/walker.c +++ b/src/pygit2/walker.c @@ -1,3 +1,30 @@ +/* + * Copyright 2010-2012 The pygit2 contributors + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License, version 2, + * as published by the Free Software Foundation. + * + * In addition to the permissions in the GNU General Public License, + * the authors give you unlimited permission to link the compiled + * version of this file into combinations with other programs, + * and to distribute those combinations without any restriction + * coming from the use of this file. (The General Public License + * restrictions do apply in other respects; for example, they cover + * modification of the file, and distribution when not linked into + * a combined executable.) + * + * This file 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 for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; see the file COPYING. If not, write to + * the Free Software Foundation, 51 Franklin Street, Fifth Floor, + * Boston, MA 02110-1301, USA. + */ + #define PY_SSIZE_T_CLEAN #include #include diff --git a/test/__init__.py b/test/__init__.py index 2cf6bb991..eb9312750 100644 --- a/test/__init__.py +++ b/test/__init__.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_blob.py b/test/test_blob.py index 86608cca6..88e107046 100644 --- a/test/test_blob.py +++ b/test/test_blob.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_commit.py b/test/test_commit.py index 526d7d1a8..8d6f2d7fa 100644 --- a/test/test_commit.py +++ b/test/test_commit.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_config.py b/test/test_config.py index df05448be..257846974 100644 --- a/test/test_config.py +++ b/test/test_config.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2012 elego +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_diff.py b/test/test_diff.py index d18d8f441..b6a33477c 100644 --- a/test/test_diff.py +++ b/test/test_diff.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2012 Nico von Geyso +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_index.py b/test/test_index.py index 39fb01538..6524efdfb 100644 --- a/test/test_index.py +++ b/test/test_index.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2011 Itaapy +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, @@ -36,7 +36,7 @@ from . import utils -__author__ = 'jdavid@itaapy.com (J. David Ibáñez)' +__author__ = 'jdavid.ibp@gmail.com (J. David Ibáñez)' class IndexBareTest(utils.BareRepoTestCase): diff --git a/test/test_refs.py b/test/test_refs.py index 64b1e7744..59e29b253 100644 --- a/test/test_refs.py +++ b/test/test_refs.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2011 Itaapy +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_repository.py b/test/test_repository.py index 3ca7eedd0..8f056cca8 100644 --- a/test/test_repository.py +++ b/test/test_repository.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_revwalk.py b/test/test_revwalk.py index 8add64a21..65fe25452 100644 --- a/test/test_revwalk.py +++ b/test/test_revwalk.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2011 Itaapy +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, @@ -35,7 +35,7 @@ from . import utils -__author__ = 'jdavid@itaapy.com (J. David Ibáñez)' +__author__ = 'jdavid.ibp@gmail.com (J. David Ibáñez)' # In the order given by git log diff --git a/test/test_signature.py b/test/test_signature.py index fb9d89185..2ad73486e 100644 --- a/test/test_signature.py +++ b/test/test_signature.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2011 J. David Ibáñez +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_status.py b/test/test_status.py index 39d646259..3eb6b5688 100644 --- a/test/test_status.py +++ b/test/test_status.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2011 Julien Miotte +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_tag.py b/test/test_tag.py index f60a43538..caa28150e 100644 --- a/test/test_tag.py +++ b/test/test_tag.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_tree.py b/test/test_tree.py index c9f41ccd2..f45928aeb 100644 --- a/test/test_tree.py +++ b/test/test_tree.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/test_treebuilder.py b/test/test_treebuilder.py index 6d5418f85..9dba68a7d 100644 --- a/test/test_treebuilder.py +++ b/test/test_treebuilder.py @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # -# Copyright 2012 Carlos Martín Nieto +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2, diff --git a/test/utils.py b/test/utils.py index 8219bebd5..356a27556 100644 --- a/test/utils.py +++ b/test/utils.py @@ -1,6 +1,6 @@ # -*- coding: UTF-8 -*- # -# Copyright 2010 Google, Inc. +# Copyright 2010-2012 The pygit2 contributors # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License, version 2,