summaryrefslogtreecommitdiff
path: root/xnt
diff options
context:
space:
mode:
authorkennyballou <kballou@onyx.boisestate.edu>2013-03-10 22:54:07 -0600
committerkennyballou <kballou@onyx.boisestate.edu>2013-03-10 22:54:07 -0600
commitc0f3247a38701f49f341c8e97d53f1c9dcab8c30 (patch)
tree33f63444e7023eaf058eedcf22d0386de59aeb6b /xnt
parent0131c66d0ab71ee00f7c6d6a0c25e6a74e03d93a (diff)
downloadxnt-c0f3247a38701f49f341c8e97d53f1c9dcab8c30.tar.gz
xnt-c0f3247a38701f49f341c8e97d53f1c9dcab8c30.tar.xz
Wait, It's already 2013?!
Diffstat (limited to 'xnt')
-rw-r--r--xnt/__init__.py2
-rw-r--r--xnt/build/__init__.py2
-rw-r--r--xnt/build/cc.py2
-rw-r--r--xnt/build/make.py2
-rw-r--r--xnt/build/tex.py2
-rw-r--r--xnt/status_codes.py2
-rw-r--r--xnt/tasks.py2
-rw-r--r--xnt/tests/__init__.py2
-rw-r--r--xnt/tests/compilercollectiontests.py2
-rw-r--r--xnt/tests/taskcompressiontests.py2
-rw-r--r--xnt/tests/taskcopytests.py2
-rw-r--r--xnt/tests/taskmisctests.py2
-rw-r--r--xnt/tests/taskmkdirtests.py2
-rw-r--r--xnt/tests/taskmovetests.py2
-rw-r--r--xnt/tests/taskremovetests.py2
-rw-r--r--xnt/tests/xenantargparsertests.py2
-rw-r--r--xnt/vcs/__init__.py2
-rw-r--r--xnt/vcs/cvs.py2
-rw-r--r--xnt/vcs/git.py2
-rw-r--r--xnt/vcs/hg.py2
-rw-r--r--xnt/version.py2
-rw-r--r--xnt/xenant.py2
22 files changed, 22 insertions, 22 deletions
diff --git a/xnt/__init__.py b/xnt/__init__.py
index 496da56..71c7358 100644
--- a/xnt/__init__.py
+++ b/xnt/__init__.py
@@ -6,7 +6,7 @@ target decorator, and imports task methods from tasks module
"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/build/__init__.py b/xnt/build/__init__.py
index 105d02f..11abb90 100644
--- a/xnt/build/__init__.py
+++ b/xnt/build/__init__.py
@@ -2,7 +2,7 @@
"""Build Module"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/build/cc.py b/xnt/build/cc.py
index d1a78ac..7dedeb5 100644
--- a/xnt/build/cc.py
+++ b/xnt/build/cc.py
@@ -5,7 +5,7 @@ Definition of commonly used compilers
"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/build/make.py b/xnt/build/make.py
index 80bda63..0a94f2b 100644
--- a/xnt/build/make.py
+++ b/xnt/build/make.py
@@ -2,7 +2,7 @@
"""Wrapping methods around build tools"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/build/tex.py b/xnt/build/tex.py
index 0ba17cb..1cd20e3 100644
--- a/xnt/build/tex.py
+++ b/xnt/build/tex.py
@@ -2,7 +2,7 @@
"""LaTeX Build Module"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/status_codes.py b/xnt/status_codes.py
index 2aef2a8..e367340 100644
--- a/xnt/status_codes.py
+++ b/xnt/status_codes.py
@@ -5,7 +5,7 @@ Thess are the codes returned by Xenant for success and failure conditions
"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tasks.py b/xnt/tasks.py
index 1981e9b..ab93f97 100644
--- a/xnt/tasks.py
+++ b/xnt/tasks.py
@@ -6,7 +6,7 @@ define
"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/__init__.py b/xnt/tests/__init__.py
index b2f6702..095f46c 100644
--- a/xnt/tests/__init__.py
+++ b/xnt/tests/__init__.py
@@ -2,7 +2,7 @@
"""Tests Module"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/compilercollectiontests.py b/xnt/tests/compilercollectiontests.py
index 61f8bf3..76891a9 100644
--- a/xnt/tests/compilercollectiontests.py
+++ b/xnt/tests/compilercollectiontests.py
@@ -2,7 +2,7 @@
"""Test Common Compiler Collection"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskcompressiontests.py b/xnt/tests/taskcompressiontests.py
index f722390..3640287 100644
--- a/xnt/tests/taskcompressiontests.py
+++ b/xnt/tests/taskcompressiontests.py
@@ -2,7 +2,7 @@
"""Test `xnt.tasks.zip`"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskcopytests.py b/xnt/tests/taskcopytests.py
index 892f4ff..8955f1e 100644
--- a/xnt/tests/taskcopytests.py
+++ b/xnt/tests/taskcopytests.py
@@ -2,7 +2,7 @@
"""Test xnt.tasks.cp"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskmisctests.py b/xnt/tests/taskmisctests.py
index 54cd8e5..f9d9adf 100644
--- a/xnt/tests/taskmisctests.py
+++ b/xnt/tests/taskmisctests.py
@@ -2,7 +2,7 @@
"""Misc Tasks Tests"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskmkdirtests.py b/xnt/tests/taskmkdirtests.py
index e210885..fdfdddc 100644
--- a/xnt/tests/taskmkdirtests.py
+++ b/xnt/tests/taskmkdirtests.py
@@ -2,7 +2,7 @@
"""Test `xnt.tasks.mkdir`"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskmovetests.py b/xnt/tests/taskmovetests.py
index 80ddc65..3aed96c 100644
--- a/xnt/tests/taskmovetests.py
+++ b/xnt/tests/taskmovetests.py
@@ -2,7 +2,7 @@
"""Test `xnt.tasks.mv`"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/taskremovetests.py b/xnt/tests/taskremovetests.py
index d42407f..cb0582b 100644
--- a/xnt/tests/taskremovetests.py
+++ b/xnt/tests/taskremovetests.py
@@ -2,7 +2,7 @@
"""Test `xnt.tasks.rm`"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/tests/xenantargparsertests.py b/xnt/tests/xenantargparsertests.py
index 04c8d1c..33ca3b4 100644
--- a/xnt/tests/xenantargparsertests.py
+++ b/xnt/tests/xenantargparsertests.py
@@ -2,7 +2,7 @@
"""Xenant Arg Parser Tests"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/vcs/__init__.py b/xnt/vcs/__init__.py
index 2e1aa99..88c881e 100644
--- a/xnt/vcs/__init__.py
+++ b/xnt/vcs/__init__.py
@@ -2,7 +2,7 @@
"""Version Controll Module"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/vcs/cvs.py b/xnt/vcs/cvs.py
index 8b479f3..639de99 100644
--- a/xnt/vcs/cvs.py
+++ b/xnt/vcs/cvs.py
@@ -2,7 +2,7 @@
"""CVS Version Control Wrapper"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/vcs/git.py b/xnt/vcs/git.py
index 74d3724..7c4857d 100644
--- a/xnt/vcs/git.py
+++ b/xnt/vcs/git.py
@@ -2,7 +2,7 @@
"""Git Version Control Module"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/vcs/hg.py b/xnt/vcs/hg.py
index b0c9f7e..b109fad 100644
--- a/xnt/vcs/hg.py
+++ b/xnt/vcs/hg.py
@@ -2,7 +2,7 @@
"""Mercurial Version Control Module/Wrapper"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/version.py b/xnt/version.py
index 77cf994..79aeac8 100644
--- a/xnt/version.py
+++ b/xnt/version.py
@@ -2,7 +2,7 @@
"""Version information definition"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
diff --git a/xnt/xenant.py b/xnt/xenant.py
index 7366ead..f084e83 100644
--- a/xnt/xenant.py
+++ b/xnt/xenant.py
@@ -2,7 +2,7 @@
"""Xnt Runner Script"""
# Xnt -- A Wrapper Build Tool
-# Copyright (C) 2012 Kenny Ballou
+# Copyright (C) 2013 Kenny Ballou
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by