From: W. Trevor King Date: Sat, 20 Oct 2012 01:56:02 +0000 (-0400) Subject: Ran update-copyright.py. X-Git-Tag: v0.9.1~9 X-Git-Url: http://git.tremily.us/?p=python-kmod.git;a=commitdiff_plain;h=1bb9b21192a303d954fce0d2dc36acde081c77c9 Ran update-copyright.py. Signed-off-by: W. Trevor King --- diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..3aa035b --- /dev/null +++ b/AUTHORS @@ -0,0 +1,3 @@ +python-kmod was written by: +Red Hat, Inc. +W. Trevor King diff --git a/kmod/__init__.py b/kmod/__init__.py index 5d3f129..20a73ef 100644 --- a/kmod/__init__.py +++ b/kmod/__init__.py @@ -1,15 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 +# You should have received a copy of the GNU Lesser General Public License +# along with python-kmod. If not, see . "Libkmod -- Python interface to kmod API." diff --git a/kmod/_libkmod_h.pxd b/kmod/_libkmod_h.pxd index a616a26..547cf70 100644 --- a/kmod/_libkmod_h.pxd +++ b/kmod/_libkmod_h.pxd @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport libc.stdint as _stdint diff --git a/kmod/_util.pxd b/kmod/_util.pxd index 5193f6e..80cbb28 100644 --- a/kmod/_util.pxd +++ b/kmod/_util.pxd @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport _libkmod_h diff --git a/kmod/_util.pyx b/kmod/_util.pyx index 097efaf..39eec3a 100644 --- a/kmod/_util.pyx +++ b/kmod/_util.pyx @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . import sys as _sys diff --git a/kmod/error.py b/kmod/error.py index d1848b8..123f4ce 100644 --- a/kmod/error.py +++ b/kmod/error.py @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . class KmodError (Exception): pass diff --git a/kmod/kmod.pxd b/kmod/kmod.pxd index 8b42b63..7805d71 100644 --- a/kmod/kmod.pxd +++ b/kmod/kmod.pxd @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport _libkmod_h diff --git a/kmod/kmod.pyx b/kmod/kmod.pyx index f2cc8d3..669e468 100644 --- a/kmod/kmod.pyx +++ b/kmod/kmod.pyx @@ -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 # -# 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 . "Define the Kmod class" diff --git a/kmod/list.pxd b/kmod/list.pxd index b51a2fa..8e5b388 100644 --- a/kmod/list.pxd +++ b/kmod/list.pxd @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport _libkmod_h diff --git a/kmod/list.pyx b/kmod/list.pyx index 9d9c959..ef0e0d4 100644 --- a/kmod/list.pyx +++ b/kmod/list.pyx @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport _libkmod_h diff --git a/kmod/module.pxd b/kmod/module.pxd index 4e24f35..c7d7da4 100644 --- a/kmod/module.pxd +++ b/kmod/module.pxd @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . cimport _libkmod_h cimport list as _list diff --git a/kmod/module.pyx b/kmod/module.pyx index ed51bfa..eadfbbf 100644 --- a/kmod/module.pyx +++ b/kmod/module.pyx @@ -1,13 +1,18 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . import collections as _collections diff --git a/kmod/version.py b/kmod/version.py index 4b74d6c..6c68555 100644 --- a/kmod/version.py +++ b/kmod/version.py @@ -1,12 +1,17 @@ -# Copyright (C) 2012 Red Hat, Inc. All rights reserved. -# 2012 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# 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 . __version__ = '0.1' diff --git a/setup.py b/setup.py index bbef37a..56fe5f8 100644 --- 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 # -# 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 . from distutils.core import setup from distutils.extension import Extension as _Extension