From 6625a3900da1bd15fa554b77f87d3f75b43bc7e0 Mon Sep 17 00:00:00 2001 From: jaseg Date: Sun, 26 Feb 2023 13:07:23 +0100 Subject: Update license header with dual-license information Closes #206 --- mpv.py | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/mpv.py b/mpv.py index f1e4fa3..97c73da 100644 --- a/mpv.py +++ b/mpv.py @@ -4,16 +4,18 @@ # Python MPV library module # Copyright (C) 2017-2022 Sebastian Götte # -# This program 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 2 of the License, or (at your option) any later -# version. +# python-mpv inherits the underlying libmpv's license, which can be either GPLv2 or later (default) or LGPLv2.1 or +# later. For details, see the mpv copyright page here: https://github.com/mpv-player/mpv/blob/master/Copyright # -# 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 General Public License for more details. +# You may copy, modify, and redistribute this file under the terms of the GNU General Public License version 2 (or, at +# your option, any later version), or the GNU Lesser General Public License as published by the Free Software +# Foundation; either version 2.1 of the License, or (at your option) any later version. # -# You should have received a copy of the GNU General Public License along with this program; if not, write to the Free -# Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. +# This library 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 and the GNU +# Lesser General Public License for more details. # +# You can find copies of the GPLv2 and LGPLv2.1 licenses in the project repository's LICENSE.GPL and LICENSE.LGPL files. from ctypes import * import ctypes.util -- cgit