diff options
| author | John Snow <jsnow@redhat.com> | 2022-03-25 16:04:35 -0400 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2022-04-21 11:01:00 -0400 |
| commit | 380fc8f32ed98d6655bc2c901300ebdf973ad488 (patch) | |
| tree | 1a152f0405301fd107737d9af0419bd32b9bd3cf /python | |
| parent | 68e2e3dd66f25ed4653cb124620832ca7b9406e5 (diff) | |
| download | focaccia-qemu-380fc8f32ed98d6655bc2c901300ebdf973ad488.tar.gz focaccia-qemu-380fc8f32ed98d6655bc2c901300ebdf973ad488.zip | |
python/aqmp: add explicit GPLv2 license to legacy.py
The legacy.py module is heavily based on the QMP module by Luiz Capitulino (et al) which is licensed as explicit GPLv2-only. The async QMP package is currently licensed similarly, but I intend to relicense the async package to the more flexible LGPLv2+. In preparation for that change, make the license on legacy.py explicit. Signed-off-by: John Snow <jsnow@redhat.com> Message-id: 20220325200438.2556381-2-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python')
| -rw-r--r-- | python/qemu/aqmp/legacy.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/python/qemu/aqmp/legacy.py b/python/qemu/aqmp/legacy.py index 46026e9fdc..f86cb29804 100644 --- a/python/qemu/aqmp/legacy.py +++ b/python/qemu/aqmp/legacy.py @@ -4,6 +4,17 @@ Sync QMP Wrapper This class pretends to be qemu.qmp.QEMUMonitorProtocol. """ +# +# Copyright (C) 2009-2022 Red Hat Inc. +# +# Authors: +# Luiz Capitulino <lcapitulino@redhat.com> +# John Snow <jsnow@redhat.com> +# +# This work is licensed under the terms of the GNU GPL, version 2. See +# the COPYING file in the top-level directory. +# + import asyncio from typing import ( Any, |