Ran update-copyright.py.
authorW. Trevor King <wking@tremily.us>
Sat, 20 Oct 2012 01:56:02 +0000 (21:56 -0400)
committerAndy Grover <agrover@redhat.com>
Fri, 14 Dec 2012 17:33:02 +0000 (09:33 -0800)
Signed-off-by: W. Trevor King <wking@tremily.us>
14 files changed:
AUTHORS [new file with mode: 0644]
kmod/__init__.py
kmod/_libkmod_h.pxd
kmod/_util.pxd
kmod/_util.pyx
kmod/error.py
kmod/kmod.pxd
kmod/kmod.pyx
kmod/list.pxd
kmod/list.pyx
kmod/module.pxd
kmod/module.pyx
kmod/version.py
setup.py

diff --git a/AUTHORS b/AUTHORS
new file mode 100644 (file)
index 0000000..3aa035b
--- /dev/null
+++ b/AUTHORS
@@ -0,0 +1,3 @@
+python-kmod was written by:
+Red Hat, Inc.
+W. Trevor King <wking@tremily.us>
index 5d3f12914ed396057104c8d5b22b160dbb68e050..20a73ef99a104367f26d9e8ecc26ee3562698583 100644 (file)
@@ -1,15 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
 #
-# You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
-# Author: Andy Grover <agrover redhat com>
+# You should have received a copy of the GNU Lesser General Public License
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 "Libkmod -- Python interface to kmod API."
 
index a616a265b83b7fdb3515b7e26ac3805975aea4f3..547cf70fc430bf0c9eb5fc80972420f1b8395e06 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport libc.stdint as _stdint
 
index 5193f6e4de77753a9a61678ad6dc664d47653097..80cbb283d7bb672b5e8a278ca2e4423c8d3a7cba 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport _libkmod_h
 
index 097efaf8213f99eb67a8ce8a3f45b738560d6dc2..39eec3aca555c6258da3f303869e2c22efb88766 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 import sys as _sys
 
index d1848b83aa45df99090005af59a5d89e723514a6..123f4ce35f0f6f44d2e60b403b6acff06b6c398f 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 class KmodError (Exception):
     pass
index 8b42b63edac11ed5901f120cb6706889728258b2..7805d71a5ac55a222be15037c94df24666b02633 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport _libkmod_h
 
index f2cc8d3368587dcbb835060e547b3fc4f09930db..669e4686903d30b6640019b6a215c66485309247 100644 (file)
@@ -1,13 +1,19 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 Red Hat, Inc.
+#                    W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 "Define the Kmod class"
 
index b51a2fa66eb2be51dd3efac85d3279dac6ef69fb..8e5b388842ce314e31cf8dd69fe77ecae782be17 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport _libkmod_h
 
index 9d9c959d5c59337f15640599af7419f6df815c6e..ef0e0d49f2ea2c9c3b49b1111eb6eff630cd5491 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport _libkmod_h
 
index 4e24f3531f4561eb23bb0d03c740fc5e93f430bf..c7d7da4cf85d573c2532ed7ce313339e31a4895b 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 cimport _libkmod_h
 cimport list as _list
index ed51bfadc9aa62f17c23c175f5b728d819771fa0..eadfbbf9b83ef837f7cddd9bc0ca61229f52c546 100644 (file)
@@ -1,13 +1,18 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 import collections as _collections
 
index 4b74d6c97764dbb4d95a15916eef4a0e83958c20..6c68555a57413e149ce9f5f7151671ca463ef5b4 100644 (file)
@@ -1,12 +1,17 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 __version__ = '0.1'
index bbef37a4b025d1fe09ba96ee6d5645fddfe184f0..56fe5f81cee55f854830f5790dfcb4c256a8c8be 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,13 +1,19 @@
-# Copyright (C) 2012 Red Hat, Inc. All rights reserved.
-#               2012 W. Trevor King
+# Copyright (C) 2012 Red Hat, Inc.
+#                    W. Trevor King <wking@tremily.us>
 #
-# This copyrighted material is made available to anyone wishing to use,
-# modify, copy, or redistribute it subject to the terms and conditions
-# of the GNU Lesser General Public License v.2.1.
+# This file is part of python-kmod.
+#
+# python-kmod is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Lesser General Public License version 2.1 as published
+# by the Free Software Foundation.
+#
+# python-kmod 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 Lesser General Public License for more
+# details.
 #
 # You should have received a copy of the GNU Lesser General Public License
-# along with this program; if not, write to the Free Software Foundation,
-# Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+# along with python-kmod.  If not, see <http://www.gnu.org/licenses/>.
 
 from distutils.core import setup
 from distutils.extension import Extension as _Extension