From 9858eeeb005bc0c35c9f496bbe6d7127b12416f1 Mon Sep 17 00:00:00 2001 From: Guillaume Desmottes Date: Thu, 30 Dec 2021 14:40:15 +0100 Subject: [PATCH] spotify: relicense to MPL-2.0 --- audio/spotify/Cargo.toml | 2 +- audio/spotify/src/lib.rs | 10 +++++----- audio/spotify/src/spotifyaudiosrc/imp.rs | 10 +++++----- audio/spotify/src/spotifyaudiosrc/mod.rs | 10 +++++----- 4 files changed, 16 insertions(+), 16 deletions(-) diff --git a/audio/spotify/Cargo.toml b/audio/spotify/Cargo.toml index c47675e4..e2d819a6 100644 --- a/audio/spotify/Cargo.toml +++ b/audio/spotify/Cargo.toml @@ -3,7 +3,7 @@ name = "gst-plugin-spotify" version = "0.8.0" authors = ["Guillaume Desmottes "] repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs" -license = "MIT/Apache-2.0" +license = "MPL-2.0" description = "Spotify GStreamer Plugin" edition = "2021" rust-version = "1.56" diff --git a/audio/spotify/src/lib.rs b/audio/spotify/src/lib.rs index fdd6dedb..42d678fd 100644 --- a/audio/spotify/src/lib.rs +++ b/audio/spotify/src/lib.rs @@ -1,10 +1,10 @@ // Copyright (C) 2021 Guillaume Desmottes // -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. +// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. +// If a copy of the MPL was not distributed with this file, You can obtain one at +// . +// +// SPDX-License-Identifier: MPL-2.0 use gst::glib; diff --git a/audio/spotify/src/spotifyaudiosrc/imp.rs b/audio/spotify/src/spotifyaudiosrc/imp.rs index f8991e54..ea0d2ea6 100644 --- a/audio/spotify/src/spotifyaudiosrc/imp.rs +++ b/audio/spotify/src/spotifyaudiosrc/imp.rs @@ -1,10 +1,10 @@ // Copyright (C) 2021 Guillaume Desmottes // -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. +// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. +// If a copy of the MPL was not distributed with this file, You can obtain one at +// . +// +// SPDX-License-Identifier: MPL-2.0 use std::sync::{mpsc, Arc, Mutex}; diff --git a/audio/spotify/src/spotifyaudiosrc/mod.rs b/audio/spotify/src/spotifyaudiosrc/mod.rs index 9ad5e351..b046619b 100644 --- a/audio/spotify/src/spotifyaudiosrc/mod.rs +++ b/audio/spotify/src/spotifyaudiosrc/mod.rs @@ -1,10 +1,10 @@ // Copyright (C) 2021 Guillaume Desmottes // -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. +// This Source Code Form is subject to the terms of the Mozilla Public License, v2.0. +// If a copy of the MPL was not distributed with this file, You can obtain one at +// . +// +// SPDX-License-Identifier: MPL-2.0 use gst::glib; use gst::prelude::*;