spotify: relicense to MPL-2.0

This commit is contained in:
Guillaume Desmottes 2021-12-30 14:40:15 +01:00 committed by Guillaume Desmottes
parent a43e21a414
commit 9858eeeb00
4 changed files with 16 additions and 16 deletions

View file

@ -3,7 +3,7 @@ name = "gst-plugin-spotify"
version = "0.8.0" version = "0.8.0"
authors = ["Guillaume Desmottes <guillaume@desmottes.be>"] authors = ["Guillaume Desmottes <guillaume@desmottes.be>"]
repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0" license = "MPL-2.0"
description = "Spotify GStreamer Plugin" description = "Spotify GStreamer Plugin"
edition = "2021" edition = "2021"
rust-version = "1.56" rust-version = "1.56"

View file

@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be> // Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
// //
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // If a copy of the MPL was not distributed with this file, You can obtain one at
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // <https://mozilla.org/MPL/2.0/>.
// option. This file may not be copied, modified, or distributed //
// except according to those terms. // SPDX-License-Identifier: MPL-2.0
use gst::glib; use gst::glib;

View file

@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be> // Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
// //
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // If a copy of the MPL was not distributed with this file, You can obtain one at
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // <https://mozilla.org/MPL/2.0/>.
// option. This file may not be copied, modified, or distributed //
// except according to those terms. // SPDX-License-Identifier: MPL-2.0
use std::sync::{mpsc, Arc, Mutex}; use std::sync::{mpsc, Arc, Mutex};

View file

@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be> // Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
// //
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or // This Source Code Form is subject to the terms of the Mozilla Public License, v2.0.
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license // If a copy of the MPL was not distributed with this file, You can obtain one at
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your // <https://mozilla.org/MPL/2.0/>.
// option. This file may not be copied, modified, or distributed //
// except according to those terms. // SPDX-License-Identifier: MPL-2.0
use gst::glib; use gst::glib;
use gst::prelude::*; use gst::prelude::*;