Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuillaume Desmottes <guillaume@desmottes.be>2021-12-30 16:40:15 +0300
committerGuillaume Desmottes <guillaume.desmottes@onestream.live>2021-12-30 16:40:31 +0300
commit9858eeeb005bc0c35c9f496bbe6d7127b12416f1 (patch)
tree05c3e59c1a7927f1a4bc8543b8db39546127186f
parenta43e21a414a8268a1e4fddc587e11ee2eab318d0 (diff)
spotify: relicense to MPL-2.0
-rw-r--r--audio/spotify/Cargo.toml2
-rw-r--r--audio/spotify/src/lib.rs10
-rw-r--r--audio/spotify/src/spotifyaudiosrc/imp.rs10
-rw-r--r--audio/spotify/src/spotifyaudiosrc/mod.rs10
4 files changed, 16 insertions, 16 deletions
diff --git a/audio/spotify/Cargo.toml b/audio/spotify/Cargo.toml
index c47675e4b..e2d819a68 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 <guillaume@desmottes.be>"]
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 fdd6dedb3..42d678fdf 100644
--- a/audio/spotify/src/lib.rs
+++ b/audio/spotify/src/lib.rs
@@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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
+// <https://mozilla.org/MPL/2.0/>.
+//
+// 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 f8991e54e..ea0d2ea68 100644
--- a/audio/spotify/src/spotifyaudiosrc/imp.rs
+++ b/audio/spotify/src/spotifyaudiosrc/imp.rs
@@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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
+// <https://mozilla.org/MPL/2.0/>.
+//
+// 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 9ad5e3517..b046619b0 100644
--- a/audio/spotify/src/spotifyaudiosrc/mod.rs
+++ b/audio/spotify/src/spotifyaudiosrc/mod.rs
@@ -1,10 +1,10 @@
// Copyright (C) 2021 Guillaume Desmottes <guillaume@desmottes.be>
//
-// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
-// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
-// <LICENSE-MIT or http://opensource.org/licenses/MIT>, 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
+// <https://mozilla.org/MPL/2.0/>.
+//
+// SPDX-License-Identifier: MPL-2.0
use gst::glib;
use gst::prelude::*;