From e9b7881527e0cc617417545e016137b75c09dbc2 Mon Sep 17 00:00:00 2001 From: "W. Trevor King" Date: Sun, 25 Mar 2012 06:55:55 -0400 Subject: [PATCH] Run update-copyright.py. --- bin/get-info.py | 16 +++++++++++++++- bin/pinentry.py | 24 ++++++++++++------------ pyassuan/__init__.py | 16 +++++++++++++++- pyassuan/client.py | 16 +++++++++++++++- pyassuan/common.py | 16 +++++++++++++++- pyassuan/error.py | 16 +++++++++++++++- pyassuan/server.py | 16 +++++++++++++++- setup.py | 16 +++++++++++++++- 8 files changed, 117 insertions(+), 19 deletions(-) diff --git a/bin/get-info.py b/bin/get-info.py index 95c3209..a00b127 100755 --- a/bin/get-info.py +++ b/bin/get-info.py @@ -1,6 +1,20 @@ #!/usr/bin/env python3 # -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . """Simple pinentry program for getting server info. """ diff --git a/bin/pinentry.py b/bin/pinentry.py index 1840fa2..7ebe485 100755 --- a/bin/pinentry.py +++ b/bin/pinentry.py @@ -1,20 +1,20 @@ #!/usr/bin/env python3 # -# Copyright (C) 2011 W. Trevor King +# Copyright (C) 2012 W. Trevor King # -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Lesser General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. +# This file is part of pyassuan. # -# This program 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. +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. # -# You should have received a copy of the GNU Lesser General Public -# License along with this program. If not, see -# . +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . """Simple pinentry program for getting pins from a terminal. """ diff --git a/pyassuan/__init__.py b/pyassuan/__init__.py index 45a1149..22d2299 100644 --- a/pyassuan/__init__.py +++ b/pyassuan/__init__.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . """A Python implementation of the `Assuan protocol`_. diff --git a/pyassuan/client.py b/pyassuan/client.py index ccedff8..f9c60f5 100644 --- a/pyassuan/client.py +++ b/pyassuan/client.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . import logging as _logging import sys as _sys diff --git a/pyassuan/common.py b/pyassuan/common.py index 684078c..63e7ba3 100644 --- a/pyassuan/common.py +++ b/pyassuan/common.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . """Items common to both the client and server """ diff --git a/pyassuan/error.py b/pyassuan/error.py index 39fc634..915fa9d 100644 --- a/pyassuan/error.py +++ b/pyassuan/error.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . """Assuan errors as defined in `libgpg-error`_. diff --git a/pyassuan/server.py b/pyassuan/server.py index e7c36a9..a818b76 100644 --- a/pyassuan/server.py +++ b/pyassuan/server.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . import logging as _logging import re as _re diff --git a/setup.py b/setup.py index 4ed8d97..8915d8b 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,18 @@ -# Copyright +# Copyright (C) 2012 W. Trevor King +# +# This file is part of pyassuan. +# +# pyassuan is free software: you can redistribute it and/or modify it under the +# terms of the GNU General Public License as published by the Free Software +# Foundation, either version 3 of the License, or (at your option) any later +# version. +# +# pyassuan 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 General Public License for more details. +# +# You should have received a copy of the GNU General Public License along with +# pyassuan. If not, see . "Python module and tools for communicating in the Assuan protocol." -- 2.26.2