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:
authorSebastian Dröge <sebastian@centricular.com>2018-11-26 13:52:09 +0300
committerSebastian Dröge <sebastian@centricular.com>2018-11-26 18:25:27 +0300
commit6e8cba28c1a59170741bf6dd399b9f4a379d91b0 (patch)
tree7893f391290addbc8e093c92af49011a93fea81a
parent9132288e2e26ed847a569d6682ce2f991e8d4133 (diff)
Change all links/mentions from gst-plugin-rs to gst-plugins-rs
-rw-r--r--README.md10
-rw-r--r--gst-plugin-audiofx/Cargo.toml2
-rw-r--r--gst-plugin-audiofx/src/lib.rs2
-rw-r--r--gst-plugin-file/Cargo.toml2
-rw-r--r--gst-plugin-file/src/lib.rs2
-rw-r--r--gst-plugin-flv/Cargo.toml2
-rw-r--r--gst-plugin-flv/src/lib.rs2
-rw-r--r--gst-plugin-http/Cargo.toml2
-rw-r--r--gst-plugin-http/src/lib.rs2
-rw-r--r--gst-plugin-simple/Cargo.toml2
-rw-r--r--gst-plugin-togglerecord/src/lib.rs2
-rw-r--r--gst-plugin-tutorial/Cargo.toml2
-rw-r--r--gst-plugin-tutorial/src/lib.rs2
-rw-r--r--gst-plugin/CHANGELOG.md18
-rw-r--r--gst-plugin/Cargo.toml2
-rw-r--r--gst-plugin/README.md10
16 files changed, 32 insertions, 32 deletions
diff --git a/README.md b/README.md
index 0dce3b3d7..1057b171a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
-# NOTE: The canonical repository for gst-plugin-rs has moved to [freedesktop.org GitLab](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs)!
+# NOTE: The canonical repository for gst-plugins-rs has moved to [freedesktop.org GitLab](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs)!
-# gst-plugin-rs [![crates.io](https://img.shields.io/crates/v/gst-plugin.svg)](https://crates.io/crates/gst-plugin) [![pipeline status](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/badges/master/pipeline.svg)](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/commits/master)
+# gst-plugins-rs [![crates.io](https://img.shields.io/crates/v/gst-plugin.svg)](https://crates.io/crates/gst-plugin) [![pipeline status](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/badges/master/pipeline.svg)](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/commits/master)
Infrastructure for writing [GStreamer](https://gstreamer.freedesktop.org/)
plugins and elements in the [Rust programming
@@ -14,7 +14,7 @@ API builds upon the [application-side GStreamer bindings](https://gitlab.freedes
Check the README.md of that repository also for details about how to set-up
your development environment.
-Various example plugins can be found in the [GIT repository](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/). A blog post series about writing GStreamer plugins/elements can be found [here](https://coaxion.net/blog/2018/01/how-to-write-gstreamer-elements-in-rust-part-1-a-video-filter-for-converting-rgb-to-grayscale/)[2](https://coaxion.net/blog/2018/02/how-to-write-gstreamer-elements-in-rust-part-2-a-raw-audio-sine-wave-source/).
+Various example plugins can be found in the [GIT repository](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/). A blog post series about writing GStreamer plugins/elements can be found [here](https://coaxion.net/blog/2018/01/how-to-write-gstreamer-elements-in-rust-part-1-a-video-filter-for-converting-rgb-to-grayscale/)[2](https://coaxion.net/blog/2018/02/how-to-write-gstreamer-elements-in-rust-part-2-a-raw-audio-sine-wave-source/).
For background and motivation, see the [announcement
blogpost](https://coaxion.net/blog/2016/05/writing-gstreamer-plugins-and-elements-in-rust/)
@@ -27,7 +27,7 @@ blogposts were written.
## LICENSE
-gst-plugin-rs and all crates contained in here that are not listed below are
+gst-plugins-rs and all crates contained in here that are not listed below are
licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
@@ -50,5 +50,5 @@ https://www.gnu.org/licenses/lgpl-2.1.html
Any kinds of contributions are welcome as a pull request.
Unless you explicitly state otherwise, any contribution intentionally submitted
-for inclusion in gst-plugin-rs by you, as defined in the Apache-2.0 license, shall be
+for inclusion in gst-plugins-rs by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.
diff --git a/gst-plugin-audiofx/Cargo.toml b/gst-plugin-audiofx/Cargo.toml
index 3f38f89e6..85d81e63a 100644
--- a/gst-plugin-audiofx/Cargo.toml
+++ b/gst-plugin-audiofx/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-audiofx"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-audiofx/src/lib.rs b/gst-plugin-audiofx/src/lib.rs
index 809a46de4..e6b27ed1d 100644
--- a/gst-plugin-audiofx/src/lib.rs
+++ b/gst-plugin-audiofx/src/lib.rs
@@ -34,6 +34,6 @@ plugin_define!(
b"MIT/X11\0",
b"rsaudiofx\0",
b"rsaudiofx\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2016-12-08\0"
);
diff --git a/gst-plugin-file/Cargo.toml b/gst-plugin-file/Cargo.toml
index b71e5dff6..e233f4bd1 100644
--- a/gst-plugin-file/Cargo.toml
+++ b/gst-plugin-file/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-file"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-file/src/lib.rs b/gst-plugin-file/src/lib.rs
index cba80edca..fa0ada728 100644
--- a/gst-plugin-file/src/lib.rs
+++ b/gst-plugin-file/src/lib.rs
@@ -65,6 +65,6 @@ plugin_define!(
b"MIT/X11\0",
b"rsfile\0",
b"rsfile\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2016-12-08\0"
);
diff --git a/gst-plugin-flv/Cargo.toml b/gst-plugin-flv/Cargo.toml
index 2032e24ae..84fdf11e4 100644
--- a/gst-plugin-flv/Cargo.toml
+++ b/gst-plugin-flv/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-flv"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-flv/src/lib.rs b/gst-plugin-flv/src/lib.rs
index 02461c43a..de1d25a97 100644
--- a/gst-plugin-flv/src/lib.rs
+++ b/gst-plugin-flv/src/lib.rs
@@ -52,6 +52,6 @@ plugin_define!(
b"MIT/X11\0",
b"rsflv\0",
b"rsflv\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2016-12-08\0"
);
diff --git a/gst-plugin-http/Cargo.toml b/gst-plugin-http/Cargo.toml
index b512c738c..9ac2bdeb1 100644
--- a/gst-plugin-http/Cargo.toml
+++ b/gst-plugin-http/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-http"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-http/src/lib.rs b/gst-plugin-http/src/lib.rs
index 1cf292abb..c2d9334b2 100644
--- a/gst-plugin-http/src/lib.rs
+++ b/gst-plugin-http/src/lib.rs
@@ -49,6 +49,6 @@ plugin_define!(
b"MIT/X11\0",
b"rshttp\0",
b"rshttp\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2016-12-08\0"
);
diff --git a/gst-plugin-simple/Cargo.toml b/gst-plugin-simple/Cargo.toml
index 1b507925b..4bcfaa518 100644
--- a/gst-plugin-simple/Cargo.toml
+++ b/gst-plugin-simple/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-simple"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-togglerecord/src/lib.rs b/gst-plugin-togglerecord/src/lib.rs
index c78f9d726..4cb55baa2 100644
--- a/gst-plugin-togglerecord/src/lib.rs
+++ b/gst-plugin-togglerecord/src/lib.rs
@@ -40,6 +40,6 @@ plugin_define!(
b"LGPL\0",
b"togglerecord\0",
b"togglerecord\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2017-12-04\0"
);
diff --git a/gst-plugin-tutorial/Cargo.toml b/gst-plugin-tutorial/Cargo.toml
index 0fa33eebf..ba83fa1b0 100644
--- a/gst-plugin-tutorial/Cargo.toml
+++ b/gst-plugin-tutorial/Cargo.toml
@@ -2,7 +2,7 @@
name = "gst-plugin-tutorial"
version = "0.3.0"
authors = ["Sebastian Dröge <sebastian@centricular.com>"]
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs"
license = "MIT/Apache-2.0"
[dependencies]
diff --git a/gst-plugin-tutorial/src/lib.rs b/gst-plugin-tutorial/src/lib.rs
index e2a8cbabf..d0ac767a5 100644
--- a/gst-plugin-tutorial/src/lib.rs
+++ b/gst-plugin-tutorial/src/lib.rs
@@ -43,6 +43,6 @@ plugin_define!(
b"MIT/X11\0",
b"rstutorial\0",
b"rstutorial\0",
- b"https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs\0",
+ b"https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs\0",
b"2017-12-30\0"
);
diff --git a/gst-plugin/CHANGELOG.md b/gst-plugin/CHANGELOG.md
index ac09cc59d..339599156 100644
--- a/gst-plugin/CHANGELOG.md
+++ b/gst-plugin/CHANGELOG.md
@@ -62,12 +62,12 @@ specifically the [variant used by Rust](http://doc.crates.io/manifest.html#the-v
## [0.1.0] - 2017-12-22
- Initial release of the `gst-plugin` crate.
-[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.3.1...HEAD
-[0.3.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.3.0...0.3.1
-[0.3.0]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.2.1...0.3.0
-[0.2.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.2.0...0.2.1
-[0.2.0]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.1.4...0.2.0
-[0.1.4]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.1.3...0.1.4
-[0.1.3]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.1.2...0.1.3
-[0.1.2]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.1.1...0.1.2
-[0.1.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/compare/0.1.0...0.1.1
+[Unreleased]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.3.1...HEAD
+[0.3.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.3.0...0.3.1
+[0.3.0]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.2.1...0.3.0
+[0.2.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.2.0...0.2.1
+[0.2.0]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.1.4...0.2.0
+[0.1.4]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.1.3...0.1.4
+[0.1.3]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.1.2...0.1.3
+[0.1.2]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.1.1...0.1.2
+[0.1.1]: https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/compare/0.1.0...0.1.1
diff --git a/gst-plugin/Cargo.toml b/gst-plugin/Cargo.toml
index 61fe605ab..824eeae4e 100644
--- a/gst-plugin/Cargo.toml
+++ b/gst-plugin/Cargo.toml
@@ -5,7 +5,7 @@ authors = ["Sebastian Dröge <sebastian@centricular.com>"]
categories = ["multimedia", "api-bindings"]
description = "Infrastructure for writing GStreamer plugins in Rust"
documentation = "https://slomo.pages.freedesktop.org/rustdocs/gst-plugin/gst_plugin"
-repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/tree/master/gst-plugin"
+repository = "https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/tree/master/gst-plugin"
license = "MIT/Apache-2.0"
readme = "README.md"
homepage = "https://gstreamer.freedesktop.org"
diff --git a/gst-plugin/README.md b/gst-plugin/README.md
index 0dce3b3d7..1057b171a 100644
--- a/gst-plugin/README.md
+++ b/gst-plugin/README.md
@@ -1,6 +1,6 @@
-# NOTE: The canonical repository for gst-plugin-rs has moved to [freedesktop.org GitLab](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs)!
+# NOTE: The canonical repository for gst-plugins-rs has moved to [freedesktop.org GitLab](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs)!
-# gst-plugin-rs [![crates.io](https://img.shields.io/crates/v/gst-plugin.svg)](https://crates.io/crates/gst-plugin) [![pipeline status](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/badges/master/pipeline.svg)](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/commits/master)
+# gst-plugins-rs [![crates.io](https://img.shields.io/crates/v/gst-plugin.svg)](https://crates.io/crates/gst-plugin) [![pipeline status](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/badges/master/pipeline.svg)](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/commits/master)
Infrastructure for writing [GStreamer](https://gstreamer.freedesktop.org/)
plugins and elements in the [Rust programming
@@ -14,7 +14,7 @@ API builds upon the [application-side GStreamer bindings](https://gitlab.freedes
Check the README.md of that repository also for details about how to set-up
your development environment.
-Various example plugins can be found in the [GIT repository](https://gitlab.freedesktop.org/gstreamer/gst-plugin-rs/). A blog post series about writing GStreamer plugins/elements can be found [here](https://coaxion.net/blog/2018/01/how-to-write-gstreamer-elements-in-rust-part-1-a-video-filter-for-converting-rgb-to-grayscale/)[2](https://coaxion.net/blog/2018/02/how-to-write-gstreamer-elements-in-rust-part-2-a-raw-audio-sine-wave-source/).
+Various example plugins can be found in the [GIT repository](https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/). A blog post series about writing GStreamer plugins/elements can be found [here](https://coaxion.net/blog/2018/01/how-to-write-gstreamer-elements-in-rust-part-1-a-video-filter-for-converting-rgb-to-grayscale/)[2](https://coaxion.net/blog/2018/02/how-to-write-gstreamer-elements-in-rust-part-2-a-raw-audio-sine-wave-source/).
For background and motivation, see the [announcement
blogpost](https://coaxion.net/blog/2016/05/writing-gstreamer-plugins-and-elements-in-rust/)
@@ -27,7 +27,7 @@ blogposts were written.
## LICENSE
-gst-plugin-rs and all crates contained in here that are not listed below are
+gst-plugins-rs and all crates contained in here that are not listed below are
licensed under either of
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or
@@ -50,5 +50,5 @@ https://www.gnu.org/licenses/lgpl-2.1.html
Any kinds of contributions are welcome as a pull request.
Unless you explicitly state otherwise, any contribution intentionally submitted
-for inclusion in gst-plugin-rs by you, as defined in the Apache-2.0 license, shall be
+for inclusion in gst-plugins-rs by you, as defined in the Apache-2.0 license, shall be
dual licensed as above, without any additional terms or conditions.