summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Moss <drkjam@gmail.com>2017-01-11 23:30:55 +0000
committerDavid Moss <drkjam@gmail.com>2017-01-11 23:30:55 +0000
commit0f09cae2ac2cc5de7ed7371b3b163a312e0d1c72 (patch)
treefd071f015cd94bff76862e319ba12beadfca7a85
parent81ad1f32afa8af138ae5a4825361245e3c8fa21d (diff)
downloadnetaddr-0f09cae2ac2cc5de7ed7371b3b163a312e0d1c72.tar.gz
- changed copyright to first year of project publication (avoid yearly updates going forward)
-rw-r--r--COPYRIGHT2
-rw-r--r--LICENSE2
-rw-r--r--Makefile2
-rw-r--r--docs/source/conf.py2
-rw-r--r--netaddr/__init__.py2
-rw-r--r--netaddr/compat.py2
-rw-r--r--netaddr/contrib/__init__.py5
-rw-r--r--netaddr/contrib/subnet_splitter.py5
-rw-r--r--netaddr/core.py2
-rw-r--r--netaddr/eui/__init__.py2
-rwxr-xr-xnetaddr/eui/ieee.py2
-rw-r--r--netaddr/fbsocket.py2
-rw-r--r--netaddr/ip/__init__.py2
-rw-r--r--netaddr/ip/glob.py2
-rwxr-xr-xnetaddr/ip/iana.py2
-rw-r--r--netaddr/ip/nmap.py2
-rw-r--r--netaddr/ip/rfc1924.py2
-rw-r--r--netaddr/ip/sets.py2
-rw-r--r--netaddr/strategy/__init__.py2
-rw-r--r--netaddr/strategy/eui48.py2
-rw-r--r--netaddr/strategy/eui64.py2
-rw-r--r--netaddr/strategy/ipv4.py2
-rw-r--r--netaddr/strategy/ipv6.py2
-rwxr-xr-xnetaddr/tools/netaddr2
-rw-r--r--setup.py2
-rwxr-xr-xtutorials/run_doctests.py2
26 files changed, 34 insertions, 24 deletions
diff --git a/COPYRIGHT b/COPYRIGHT
index 7f74a04..2aeb473 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -4,7 +4,7 @@ Here are the copyright notices applicable to the netaddr library.
netaddr
-------
-Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+Copyright (c) 2008 by David P. D. Moss. All rights reserved.
Released under the BSD license. See the LICENSE file for details.
diff --git a/LICENSE b/LICENSE
index 7a37b9a..995457a 100644
--- a/LICENSE
+++ b/LICENSE
@@ -6,7 +6,7 @@ netaddr
COPYRIGHT AND LICENSE
-Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+Copyright (c) 2008 by David P. D. Moss. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
diff --git a/Makefile b/Makefile
index 31fd996..2fee338 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/docs/source/conf.py b/docs/source/conf.py
index 1bf42b2..6c8a22e 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -41,7 +41,7 @@ master_doc = 'index'
# General information about the project.
project = u'netaddr'
-copyright = u'2008-2016, David P. D. Moss. All rights reserved'
+copyright = u'Copyright (c) 2008 by David P. D. Moss. All rights reserved.'
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
diff --git a/netaddr/__init__.py b/netaddr/__init__.py
index 658d0e1..61e88ac 100644
--- a/netaddr/__init__.py
+++ b/netaddr/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/compat.py b/netaddr/compat.py
index 10ead63..ff54803 100644
--- a/netaddr/compat.py
+++ b/netaddr/compat.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/contrib/__init__.py b/netaddr/contrib/__init__.py
index c5d098b..7449cd6 100644
--- a/netaddr/contrib/__init__.py
+++ b/netaddr/contrib/__init__.py
@@ -1,3 +1,8 @@
+#-----------------------------------------------------------------------------
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
+#
+# Released under the BSD license. See the LICENSE file for details.
+#-----------------------------------------------------------------------------
"""
The netaddr.contrib namespace for non-core code contributed by users.
diff --git a/netaddr/contrib/subnet_splitter.py b/netaddr/contrib/subnet_splitter.py
index 2e39d41..875b113 100644
--- a/netaddr/contrib/subnet_splitter.py
+++ b/netaddr/contrib/subnet_splitter.py
@@ -1,3 +1,8 @@
+#-----------------------------------------------------------------------------
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
+#
+# Released under the BSD license. See the LICENSE file for details.
+#-----------------------------------------------------------------------------
from netaddr.ip import IPNetwork, cidr_exclude, cidr_merge
diff --git a/netaddr/core.py b/netaddr/core.py
index 2cd4cf5..52f8930 100644
--- a/netaddr/core.py
+++ b/netaddr/core.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/eui/__init__.py b/netaddr/eui/__init__.py
index 96ad14a..d8f2456 100644
--- a/netaddr/eui/__init__.py
+++ b/netaddr/eui/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/eui/ieee.py b/netaddr/eui/ieee.py
index 8ce7084..11ccd9f 100755
--- a/netaddr/eui/ieee.py
+++ b/netaddr/eui/ieee.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/fbsocket.py b/netaddr/fbsocket.py
index c935366..05578b7 100644
--- a/netaddr/fbsocket.py
+++ b/netaddr/fbsocket.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/__init__.py b/netaddr/ip/__init__.py
index 8c52948..489badf 100644
--- a/netaddr/ip/__init__.py
+++ b/netaddr/ip/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/glob.py b/netaddr/ip/glob.py
index 2c6147f..e94fcbc 100644
--- a/netaddr/ip/glob.py
+++ b/netaddr/ip/glob.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/iana.py b/netaddr/ip/iana.py
index b7dc6ae..f8945e6 100755
--- a/netaddr/ip/iana.py
+++ b/netaddr/ip/iana.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/nmap.py b/netaddr/ip/nmap.py
index b20182c..4aa6775 100644
--- a/netaddr/ip/nmap.py
+++ b/netaddr/ip/nmap.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/rfc1924.py b/netaddr/ip/rfc1924.py
index 36f937b..c4f0f9c 100644
--- a/netaddr/ip/rfc1924.py
+++ b/netaddr/ip/rfc1924.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/ip/sets.py b/netaddr/ip/sets.py
index a2ab2b5..9c0d700 100644
--- a/netaddr/ip/sets.py
+++ b/netaddr/ip/sets.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/__init__.py b/netaddr/strategy/__init__.py
index caba19e..635ad3d 100644
--- a/netaddr/strategy/__init__.py
+++ b/netaddr/strategy/__init__.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/eui48.py b/netaddr/strategy/eui48.py
index 2ff068d..b3411fe 100644
--- a/netaddr/strategy/eui48.py
+++ b/netaddr/strategy/eui48.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/eui64.py b/netaddr/strategy/eui64.py
index 9d4c513..03de537 100644
--- a/netaddr/strategy/eui64.py
+++ b/netaddr/strategy/eui64.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/ipv4.py b/netaddr/strategy/ipv4.py
index b7f4d3d..fa5e266 100644
--- a/netaddr/strategy/ipv4.py
+++ b/netaddr/strategy/ipv4.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/strategy/ipv6.py b/netaddr/strategy/ipv6.py
index 26fb42a..eae6678 100644
--- a/netaddr/strategy/ipv6.py
+++ b/netaddr/strategy/ipv6.py
@@ -1,5 +1,5 @@
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/netaddr/tools/netaddr b/netaddr/tools/netaddr
index 4e21489..b7c2642 100755
--- a/netaddr/tools/netaddr
+++ b/netaddr/tools/netaddr
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------
diff --git a/setup.py b/setup.py
index 1de1991..6969f11 100644
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
"""
diff --git a/tutorials/run_doctests.py b/tutorials/run_doctests.py
index e04d85f..a8f2bcc 100755
--- a/tutorials/run_doctests.py
+++ b/tutorials/run_doctests.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
#-----------------------------------------------------------------------------
-# Copyright (c) 2008-2016, David P. D. Moss. All rights reserved.
+# Copyright (c) 2008 by David P. D. Moss. All rights reserved.
#
# Released under the BSD license. See the LICENSE file for details.
#-----------------------------------------------------------------------------