Skip to content

Commit

Permalink
scripts/tracetool: Update maintainer email address
Browse files Browse the repository at this point in the history
There is an effort in progress to generate a QEMU Python
package. As I'm not sure this old email is still valid,
update it to not produce package with broken maintainer
email.

Patch created mechanically by running:

 $ sed -i 's,\(__email__ *= "\)stefanha@linux.vnet.ibm.com",\1stefanha@redhat.com",' \
         $(git grep -l 'email.*stefanha@linux.vnet.ibm.com')

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-id: 20200511082816.696-1-philmd@redhat.com
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
  • Loading branch information
philmd authored and stefanhaRH committed Jun 24, 2020
1 parent d88d5a3 commit f892b49
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion scripts/tracetool.py
Expand Up @@ -10,7 +10,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


import sys
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/__init__.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


import re
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/backend/__init__.py
Expand Up @@ -50,7 +50,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


import os
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/backend/dtrace.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/backend/log.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/backend/simple.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/backend/ust.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/__init__.py
Expand Up @@ -32,7 +32,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


import os
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/c.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/d.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/h.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/stap.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/tcg_h.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out, Arguments
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/tcg_helper_c.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import Arguments, out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/tcg_helper_h.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/format/tcg_helper_wrapper_h.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import out
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/transform.py
Expand Up @@ -9,7 +9,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


def _transform_type(type_, trans):
Expand Down
2 changes: 1 addition & 1 deletion scripts/tracetool/vcpu.py
Expand Up @@ -10,7 +10,7 @@
__license__ = "GPL version 2 or (at your option) any later version"

__maintainer__ = "Stefan Hajnoczi"
__email__ = "stefanha@linux.vnet.ibm.com"
__email__ = "stefanha@redhat.com"


from tracetool import Arguments, try_import
Expand Down

0 comments on commit f892b49

Please sign in to comment.