[Forensics-changes] [yara] 390/415: Update copyright notices, AUTHORS, and CONTRIBUTORS files

Hilko Bengen bengen at moszumanska.debian.org
Thu Apr 3 05:43:27 UTC 2014


This is an automated email from the git hooks/post-receive script.

bengen pushed a commit to branch debian
in repository yara.

commit 1a9708c36f52d47480267e01bceab1f6818dea09
Author: Victor M. Alvarez <plusvic at gmail.com>
Date:   Wed Feb 5 13:56:57 2014 +0100

    Update copyright notices, AUTHORS, and CONTRIBUTORS files
---
 AUTHORS                   | 15 +++++++++++++--
 CONTRIBUTORS              | 33 +++++++++++++++++++++++++++++++++
 libyara/ahocorasick.c     |  2 +-
 libyara/ahocorasick.h     |  2 +-
 libyara/arena.c           |  2 +-
 libyara/arena.h           |  2 +-
 libyara/atoms.c           |  2 +-
 libyara/atoms.h           |  2 +-
 libyara/compiler.c        |  2 +-
 libyara/compiler.h        |  2 +-
 libyara/elf.h             |  2 +-
 libyara/exec.c            |  2 +-
 libyara/exec.h            |  2 +-
 libyara/exefiles.c        |  2 +-
 libyara/exefiles.h        |  2 +-
 libyara/filemap.c         |  2 +-
 libyara/filemap.h         |  2 +-
 libyara/grammar.y         |  2 +-
 libyara/hash.c            |  2 +-
 libyara/hash.h            |  2 +-
 libyara/hex_grammar.y     |  2 +-
 libyara/hex_lexer.l       |  2 +-
 libyara/lexer.l           |  2 +-
 libyara/libyara.c         |  2 +-
 libyara/mem.c             |  2 +-
 libyara/mem.h             |  2 +-
 libyara/parser.c          |  2 +-
 libyara/parser.h          |  2 +-
 libyara/pe.h              |  2 +-
 libyara/proc.c            |  3 +--
 libyara/proc.h            |  3 +--
 libyara/re.c              |  6 +++---
 libyara/re.h              |  2 +-
 libyara/re_grammar.y      |  2 +-
 libyara/re_lexer.h        |  2 +-
 libyara/re_lexer.l        |  2 +-
 libyara/rules.c           |  4 ++--
 libyara/sizedstr.h        |  2 +-
 libyara/utils.c           |  2 +-
 libyara/utils.h           |  2 +-
 libyara/yara.h            |  2 +-
 threading.c               |  2 +-
 threading.h               |  2 +-
 yara-python/setup.py      | 18 +++++++++++++++++-
 yara-python/setupwin32.py | 18 +++++++++++++++++-
 yara-python/setupwin64.py | 20 ++++++++++++++++++--
 yara-python/tests.py      | 16 ++++++++++++++++
 yara-python/yara-python.c |  3 +--
 yara.c                    |  2 +-
 yara.man                  |  2 +-
 yarac.c                   |  2 +-
 51 files changed, 162 insertions(+), 57 deletions(-)

diff --git a/AUTHORS b/AUTHORS
index b40dfb0..eefb178 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,3 +1,14 @@
+# This is the official list of YARA authors for copyright purposes.
+# This file is distinct from the CONTRIBUTORS files.
+# See the latter for an explanation.
 
-Victor M. Alvarez <victor.alvarez at virustotal.com>
-Mike Wiacek <mjwiacek at google.com>
\ No newline at end of file
+# Names should be added to this file as
+# Name or Organization <email address>
+# The email address is not required for organizations.
+
+# Please keep the list sorted.
+
+Google Inc.
+Joachim Metz <joachim.metz at gmail.com>
+Stefan Buehlmann <stefan.buehlmann at joebox.org>
+Victor M. Alvarez <plusvic at gmail.com>;<vmalvarez at virustotal.com>
diff --git a/CONTRIBUTORS b/CONTRIBUTORS
new file mode 100644
index 0000000..d958137
--- /dev/null
+++ b/CONTRIBUTORS
@@ -0,0 +1,33 @@
+# This is the official list of people who can contribute
+# (and typically have contributed) code to the YARA repository.
+# The AUTHORS file lists the copyright holders; this file
+# lists people.  For example, Google employees are listed here
+# but not in AUTHORS, because Google holds the copyright.
+#
+# The submission process automatically checks to make sure
+# that people submitting code are listed in this file (by email address).
+#
+# Names should be added to this file only after verifying that
+# the individual or the individual's organization has agreed to
+# the appropriate Contributor License Agreement, found here:
+#
+#     http://code.google.com/legal/individual-cla-v1.0.html
+#     http://code.google.com/legal/corporate-cla-v1.0.html
+#
+# The agreement for individuals can be filled out on the web.
+#
+# When adding J Random Contributor's name to this file,
+# either J's name or J's organization's name should be
+# added to the AUTHORS file, depending on whether the
+# individual or corporate CLA was used.
+
+# Names should be added to this file like so:
+#     Name <email address>
+
+# Please keep the list sorted.
+
+Joachim Metz <joachim.metz at gmail.com>
+Mike Wiacek <mjwiacek at google.com>
+Shane Huntley <shuntley at google.com>
+Stefan Buehlmann <stefan.buehlmann at joebox.org>
+Victor M. Alvarez <plusvic at gmail.com>;<vmalvarez at virustotal.com>
diff --git a/libyara/ahocorasick.c b/libyara/ahocorasick.c
index 4731366..19df98a 100644
--- a/libyara/ahocorasick.c
+++ b/libyara/ahocorasick.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/ahocorasick.h b/libyara/ahocorasick.h
index 3d029f7..68eb714 100644
--- a/libyara/ahocorasick.h
+++ b/libyara/ahocorasick.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/arena.c b/libyara/arena.c
index 2f6681a..a57f8bf 100644
--- a/libyara/arena.c
+++ b/libyara/arena.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/arena.h b/libyara/arena.h
index 4683ee1..bde1b8e 100644
--- a/libyara/arena.h
+++ b/libyara/arena.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/atoms.c b/libyara/atoms.c
index 171a903..f78b580 100644
--- a/libyara/atoms.c
+++ b/libyara/atoms.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/atoms.h b/libyara/atoms.h
index c30d9f6..2ac1075 100644
--- a/libyara/atoms.h
+++ b/libyara/atoms.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/compiler.c b/libyara/compiler.c
index 63f423c..260c42a 100644
--- a/libyara/compiler.c
+++ b/libyara/compiler.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/compiler.h b/libyara/compiler.h
index c02d86b..1e40189 100644
--- a/libyara/compiler.h
+++ b/libyara/compiler.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/elf.h b/libyara/elf.h
index 1885130..f1ba2a0 100644
--- a/libyara/elf.h
+++ b/libyara/elf.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/exec.c b/libyara/exec.c
index 0faae86..57e0852 100644
--- a/libyara/exec.c
+++ b/libyara/exec.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/exec.h b/libyara/exec.h
index 3e3f973..4af6ff8 100644
--- a/libyara/exec.h
+++ b/libyara/exec.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/exefiles.c b/libyara/exefiles.c
index 8e1ed8f..d279b7b 100644
--- a/libyara/exefiles.c
+++ b/libyara/exefiles.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/exefiles.h b/libyara/exefiles.h
index fc54020..83f4328 100644
--- a/libyara/exefiles.h
+++ b/libyara/exefiles.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/filemap.c b/libyara/filemap.c
index b7688ce..e3cf5ed 100755
--- a/libyara/filemap.c
+++ b/libyara/filemap.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/filemap.h b/libyara/filemap.h
index bd727b0..40bf170 100755
--- a/libyara/filemap.h
+++ b/libyara/filemap.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/grammar.y b/libyara/grammar.y
index 0aa732a..724e5a8 100644
--- a/libyara/grammar.y
+++ b/libyara/grammar.y
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/hash.c b/libyara/hash.c
index 4b2006d..0b47c3f 100644
--- a/libyara/hash.c
+++ b/libyara/hash.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/hash.h b/libyara/hash.h
index 5edcce5..309b320 100644
--- a/libyara/hash.h
+++ b/libyara/hash.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/hex_grammar.y b/libyara/hex_grammar.y
index 636379c..b30a07e 100644
--- a/libyara/hex_grammar.y
+++ b/libyara/hex_grammar.y
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/hex_lexer.l b/libyara/hex_lexer.l
index ea963e1..32f2ed1 100644
--- a/libyara/hex_lexer.l
+++ b/libyara/hex_lexer.l
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/lexer.l b/libyara/lexer.l
index 2d579ea..8fead07 100644
--- a/libyara/lexer.l
+++ b/libyara/lexer.l
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/libyara.c b/libyara/libyara.c
index 648a0fc..011a323 100644
--- a/libyara/libyara.c
+++ b/libyara/libyara.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/mem.c b/libyara/mem.c
index bc9b6d6..c902f8a 100644
--- a/libyara/mem.c
+++ b/libyara/mem.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/mem.h b/libyara/mem.h
index 9705d3a..8d3cd2b 100644
--- a/libyara/mem.h
+++ b/libyara/mem.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/parser.c b/libyara/parser.c
index f989db3..595ab4b 100644
--- a/libyara/parser.c
+++ b/libyara/parser.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/parser.h b/libyara/parser.h
index e9adb7c..d899e2f 100644
--- a/libyara/parser.h
+++ b/libyara/parser.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/pe.h b/libyara/pe.h
index 5384173..9dd91c8 100644
--- a/libyara/pe.h
+++ b/libyara/pe.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/proc.c b/libyara/proc.c
index 124dd5a..7c84bd2 100644
--- a/libyara/proc.c
+++ b/libyara/proc.c
@@ -1,6 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com] &
-                    Stefan Buehlmann [stefan.buehlmann at joebox.org].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/proc.h b/libyara/proc.h
index e66dd0e..99b3ea6 100644
--- a/libyara/proc.h
+++ b/libyara/proc.h
@@ -1,6 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com] &
-                    Stefan Buehlmann [stefan.buehlmann at joebox.org].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/re.c b/libyara/re.c
index b80d2f9..863a1c2 100644
--- a/libyara/re.c
+++ b/libyara/re.c
@@ -1,5 +1,5 @@
-    /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+/*
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
@@ -291,7 +291,7 @@ SIZED_STRING* yr_re_extract_literal(
   }
 
   string = yr_malloc(sizeof(SIZED_STRING) + length);
- 
+
   if (string == NULL)
     return NULL;
 
diff --git a/libyara/re.h b/libyara/re.h
index ffc3fd4..6563d72 100644
--- a/libyara/re.h
+++ b/libyara/re.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/re_grammar.y b/libyara/re_grammar.y
index 5d8c59a..599cfa2 100644
--- a/libyara/re_grammar.y
+++ b/libyara/re_grammar.y
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/re_lexer.h b/libyara/re_lexer.h
index fdfd942..d3e6d7c 100644
--- a/libyara/re_lexer.h
+++ b/libyara/re_lexer.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/re_lexer.l b/libyara/re_lexer.l
index 6b063a0..02a98f1 100644
--- a/libyara/re_lexer.l
+++ b/libyara/re_lexer.l
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/rules.c b/libyara/rules.c
index b75193f..d240053 100644
--- a/libyara/rules.c
+++ b/libyara/rules.c
@@ -1,5 +1,5 @@
- /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+/*
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/sizedstr.h b/libyara/sizedstr.h
index 5265d75..247e7b7 100644
--- a/libyara/sizedstr.h
+++ b/libyara/sizedstr.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/utils.c b/libyara/utils.c
index 7f075ca..12bf535 100644
--- a/libyara/utils.c
+++ b/libyara/utils.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/utils.h b/libyara/utils.h
index 9fff3c1..a4c3d7d 100644
--- a/libyara/utils.h
+++ b/libyara/utils.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/libyara/yara.h b/libyara/yara.h
index 854e576..4bea20a 100644
--- a/libyara/yara.h
+++ b/libyara/yara.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/threading.c b/threading.c
index 8af9803..0b08578 100644
--- a/threading.c
+++ b/threading.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/threading.h b/threading.h
index 11383a6..a2f5041 100644
--- a/threading.h
+++ b/threading.h
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/yara-python/setup.py b/yara-python/setup.py
index 4978711..899aa4c 100644
--- a/yara-python/setup.py
+++ b/yara-python/setup.py
@@ -1,9 +1,25 @@
+#
+# Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 from distutils.core import setup, Extension
 
 setup(name='yara-python',
       version='2.0',
       author='Victor M. Alvarez',
-      author_email='vmalvarez at virustotal.com',
+      author_email='plusvic at gmail.com;vmalvarez at virustotal.com',
       ext_modules=[Extension(
         name='yara',
         sources=['yara-python.c'],
diff --git a/yara-python/setupwin32.py b/yara-python/setupwin32.py
index 06a8190..f4a5553 100644
--- a/yara-python/setupwin32.py
+++ b/yara-python/setupwin32.py
@@ -1,9 +1,25 @@
+#
+# Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 from distutils.core import setup, Extension
 
 setup(name='yara-python',
       version='2.0',
       author='Victor M. Alvarez',
-      author_email='vmalvarez at virustotal.com',
+      author_email='plusvic at gmail.com;vmalvarez at virustotal.com',
       ext_modules=[Extension(
         name='yara',
         sources=['yara-python.c'],
diff --git a/yara-python/setupwin64.py b/yara-python/setupwin64.py
index 272de4b..6393c04 100644
--- a/yara-python/setupwin64.py
+++ b/yara-python/setupwin64.py
@@ -1,14 +1,30 @@
+#
+# Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 from distutils.core import setup, Extension
 
 setup(name='yara-python',
       version='2.0',
       author='Victor M. Alvarez',
-      author_email='vmalvarez at virustotal.com',
+      author_email='plusvic at gmail.com;vmalvarez at virustotal.com',
       ext_modules=[Extension(
         name='yara',
         sources=['yara-python.c'],
         include_dirs=['../windows/include', '../libyara'],
-	   define_macros=[('WIN32', None)],
+        define_macros=[('WIN32', None)],
         extra_objects=[
           '../windows/libyara/Release/libyara64.lib']
         )])
diff --git a/yara-python/tests.py b/yara-python/tests.py
index f70b47a..05a9378 100644
--- a/yara-python/tests.py
+++ b/yara-python/tests.py
@@ -1,3 +1,19 @@
+#
+# Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#    http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
 import tempfile
 import binascii
 import os
diff --git a/yara-python/yara-python.c b/yara-python/yara-python.c
index bf435e8..d626cfb 100644
--- a/yara-python/yara-python.c
+++ b/yara-python/yara-python.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
@@ -13,7 +13,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 See the License for the specific language governing permissions and
 limitations under the License.
 */
-
 /* headers */
 
 #include <Python.h>
diff --git a/yara.c b/yara.c
index 62842d6..e2e08a3 100644
--- a/yara.c
+++ b/yara.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2013. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2007-2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.
diff --git a/yara.man b/yara.man
index 5bbbc72..30e27a6 100644
--- a/yara.man
+++ b/yara.man
@@ -112,4 +112,4 @@ and
 .RE
 
 .SH AUTHOR
-Victor M. Alvarez (victor.alvarez at virustotal.com)
+Victor M. Alvarez <plusvic at gmail.com>;<vmalvarez at virustotal.com>
diff --git a/yarac.c b/yarac.c
index 845d8b0..ed295d7 100644
--- a/yarac.c
+++ b/yarac.c
@@ -1,5 +1,5 @@
 /*
-Copyright (c) 2007. Victor M. Alvarez [plusvic at gmail.com].
+Copyright (c) 2013. The YARA Authors. All Rights Reserved.
 
 Licensed under the Apache License, Version 2.0 (the "License");
 you may not use this file except in compliance with the License.

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/forensics/yara.git



More information about the forensics-changes mailing list