changeset 617:266f32919d0a

Misc: update copyright headers, closes #686
author David Demelier <markand@malikania.fr>
date Mon, 21 Aug 2017 11:49:11 +0200
parents 47f003c55e1e
children 1ae8106369e5
files CMakeLists.txt cmake/CodeDefineModule.cmake modules/converter/converter.cpp modules/converter/converter.h modules/executable/executable.cpp modules/executable/executable.hpp modules/executable/test/main.cpp modules/join/join.hpp modules/join/test/main.cpp modules/js/CMakeLists.txt modules/js/duktape.hpp modules/js/duktape/CMakeLists.txt modules/js/test/main.cpp port/C/asprintf.c port/C/asprintf.h port/C/err.c port/C/err.h port/C/extern/strlcat.c port/C/extern/strlcpy.c port/C/setprogname.c port/C/setprogname.h port/C/strdup.c port/C/strdup.h port/C/strndup.c port/C/strndup.h port/C/strsep.c port/C/strsep.h
diffstat 27 files changed, 33 insertions(+), 33 deletions(-) [+]
line wrap: on
line diff
--- a/CMakeLists.txt	Mon Aug 21 11:40:55 2017 +0200
+++ b/CMakeLists.txt	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/cmake/CodeDefineModule.cmake	Mon Aug 21 11:40:55 2017 +0200
+++ b/cmake/CodeDefineModule.cmake	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/modules/converter/converter.cpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/converter/converter.cpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * Converter.cpp -- iconv based converter
  *
- * Copyright (c) 2013-2015 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/converter/converter.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/converter/converter.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * converter.h -- iconv based converter
  *
- * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/executable/executable.cpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/executable/executable.cpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * executable.cpp -- get executable path
  *
- * Copyright (c) 2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/executable/executable.hpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/executable/executable.hpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * executable.hpp -- get executable path
  *
- * Copyright (c) 2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/executable/test/main.cpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/executable/test/main.cpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
- * test-executable.cpp -- test executable_path function
+ * main.cpp -- test executable_path function
  *
- * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/join/join.hpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/join/join.hpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * join.hpp -- join lists into a string
  *
- * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -55,4 +55,4 @@
 inline std::string join(std::initializer_list<T> list, DelimType delim = ':')
 {
     return join(list.begin(), list.end(), delim);
-}
\ No newline at end of file
+}
--- a/modules/join/test/main.cpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/join/test/main.cpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
- * test-join.cpp -- test join function
+ * main.cpp -- test join function
  *
- * Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/js/CMakeLists.txt	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/js/CMakeLists.txt	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- code building for common code
 #
-# Copyright (c) 2013-2016 David Demelier <markand@malikania.fr>
+# Copyright (c) 2013-2017 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/modules/js/duktape.hpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/js/duktape.hpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * duktape.hpp -- Duktape extras
  *
- * Copyright (c) 2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/modules/js/duktape/CMakeLists.txt	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/js/duktape/CMakeLists.txt	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 #
 # CMakeLists.txt -- CMake build system for duktape
 #
-# Copyright (c) 2016 David Demelier <markand@malikania.fr>
+# Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
 #
 # Permission to use, copy, modify, and/or distribute this software for any
 # purpose with or without fee is hereby granted, provided that the above
--- a/modules/js/test/main.cpp	Mon Aug 21 11:40:55 2017 +0200
+++ b/modules/js/test/main.cpp	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * main.cpp -- test Duktape extras
  *
- * Copyright (c) 2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2016-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/asprintf.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/asprintf.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * asprintf.c -- basic port of asprintf / vsprintf functions
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/asprintf.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/asprintf.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * asprintf.h -- basic port of asprintf / vsprintf functions
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/err.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/err.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * err.c -- formtted error messages (portable version)
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/err.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/err.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * err.h -- formtted error messages (portable version)
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/extern/strlcat.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/extern/strlcat.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
- * Copyright (c) 2012 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2012-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/extern/strlcpy.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/extern/strlcpy.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,6 +1,6 @@
 /*
  * Copyright (c) 1998 Todd C. Miller <Todd.Miller@courtesan.com>
- * Copyright (c) 2012 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2012-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/setprogname.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/setprogname.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * setprogname.c -- get or set the program name
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/setprogname.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/setprogname.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * setprogname.h -- get or set the program name
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/strdup.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strdup.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strdup.c -- duplicate a string
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/strdup.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strdup.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strdup.h -- duplicate a string
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -30,4 +30,4 @@
 }
 #endif
 
-#endif /* !STRDUP_H */
\ No newline at end of file
+#endif /* !STRDUP_H */
--- a/port/C/strndup.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strndup.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strndup.c -- duplicate a string
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/strndup.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strndup.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strndup.h -- duplicate a string
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -30,4 +30,4 @@
 }
 #endif
 
-#endif /* !STRNDUP_H */
\ No newline at end of file
+#endif /* !STRNDUP_H */
--- a/port/C/strsep.c	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strsep.c	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strsep.c -- separate a string by delimiters
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
--- a/port/C/strsep.h	Mon Aug 21 11:40:55 2017 +0200
+++ b/port/C/strsep.h	Mon Aug 21 11:49:11 2017 +0200
@@ -1,7 +1,7 @@
 /*
  * strsep.h -- separate a string by delimiters
  *
- * Copyright (c) 2011-2016 David Demelier <markand@malikania.fr>
+ * Copyright (c) 2011-2017 David Demelier <markand@malikania.fr>
  *
  * Permission to use, copy, modify, and/or distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -30,4 +30,4 @@
 }
 #endif
 
-#endif /* !STRSEP_H */
\ No newline at end of file
+#endif /* !STRSEP_H */