You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2022/04/26 04:47:54 UTC

[buildstream-plugins] 01/01: plugins: Adding comments about original provenance to all plugins

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch tristan/comment-plugin-origins
in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git

commit 1ce8f5fa700c67c01005fa0aa33a85b7972b46bb
Author: Tristan van Berkom <tr...@codethink.co.uk>
AuthorDate: Tue Apr 26 13:47:16 2022 +0900

    plugins: Adding comments about original provenance to all plugins
---
 src/buildstream_plugins/elements/autotools.py  | 6 ++++++
 src/buildstream_plugins/elements/cmake.py      | 5 +++++
 src/buildstream_plugins/elements/make.py       | 5 +++++
 src/buildstream_plugins/elements/meson.py      | 5 +++++
 src/buildstream_plugins/elements/pip.py        | 5 +++++
 src/buildstream_plugins/elements/setuptools.py | 5 +++++
 src/buildstream_plugins/sources/bzr.py         | 5 +++++
 src/buildstream_plugins/sources/cargo.py       | 5 +++++
 src/buildstream_plugins/sources/docker.py      | 5 +++++
 src/buildstream_plugins/sources/git.py         | 5 +++++
 src/buildstream_plugins/sources/patch.py       | 5 +++++
 src/buildstream_plugins/sources/pip.py         | 5 +++++
 12 files changed, 61 insertions(+)

diff --git a/src/buildstream_plugins/elements/autotools.py b/src/buildstream_plugins/elements/autotools.py
index 7f9e6d0..5d29870 100644
--- a/src/buildstream_plugins/elements/autotools.py
+++ b/src/buildstream_plugins/elements/autotools.py
@@ -16,6 +16,12 @@
 #  Authors:
 #        Tristan Van Berkom <tr...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://github.com/apache/buildstream/
+# repository and was copied from 1a3c707a6c46573ab159de64ac9cd92e7f6027e6
+#
+
+
 """
 autotools - Autotools build element
 ===================================
diff --git a/src/buildstream_plugins/elements/cmake.py b/src/buildstream_plugins/elements/cmake.py
index ccecaa5..862732e 100644
--- a/src/buildstream_plugins/elements/cmake.py
+++ b/src/buildstream_plugins/elements/cmake.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Tristan Van Berkom <tr...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 cmake - CMake build element
 ===========================
diff --git a/src/buildstream_plugins/elements/make.py b/src/buildstream_plugins/elements/make.py
index 4a94132..f4643af 100644
--- a/src/buildstream_plugins/elements/make.py
+++ b/src/buildstream_plugins/elements/make.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Ed Baunton <eb...@bloomberg.net>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 make - Make build element
 =========================
diff --git a/src/buildstream_plugins/elements/meson.py b/src/buildstream_plugins/elements/meson.py
index e9d1d8d..fe80682 100644
--- a/src/buildstream_plugins/elements/meson.py
+++ b/src/buildstream_plugins/elements/meson.py
@@ -13,6 +13,11 @@
 #  See the License for the specific language governing permissions and
 #  limitations under the License.
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 meson - Meson build element
 ===========================
diff --git a/src/buildstream_plugins/elements/pip.py b/src/buildstream_plugins/elements/pip.py
index 072681a..a308959 100644
--- a/src/buildstream_plugins/elements/pip.py
+++ b/src/buildstream_plugins/elements/pip.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Mathieu Bridon <bo...@daitauha.fr>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 pip - Pip build element
 =======================
diff --git a/src/buildstream_plugins/elements/setuptools.py b/src/buildstream_plugins/elements/setuptools.py
index e0de141..d16e7d3 100644
--- a/src/buildstream_plugins/elements/setuptools.py
+++ b/src/buildstream_plugins/elements/setuptools.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Tristan Van Berkom <tr...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository (previously named 'distutils') and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 setuptools - Python setuptools element
 ======================================
diff --git a/src/buildstream_plugins/sources/bzr.py b/src/buildstream_plugins/sources/bzr.py
index b7de232..e9cec09 100644
--- a/src/buildstream_plugins/sources/bzr.py
+++ b/src/buildstream_plugins/sources/bzr.py
@@ -15,6 +15,11 @@
 #  Authors:
 #        Jonathan Maw <jo...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://github.com/apache/buildstream/
+# repository and was copied from 1a3c707a6c46573ab159de64ac9cd92e7f6027e6
+#
+
 """
 bzr - stage files from a bazaar repository
 ==========================================
diff --git a/src/buildstream_plugins/sources/cargo.py b/src/buildstream_plugins/sources/cargo.py
index 705f2a1..74b06ef 100644
--- a/src/buildstream_plugins/sources/cargo.py
+++ b/src/buildstream_plugins/sources/cargo.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Tristan Van Berkom <tr...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-experimental/
+# repository and was copied from a60426126e5bec2d630fcd889a9f5af13af00ea6
+#
+
 """
 cargo - Automatically stage crate dependencies
 ==============================================
diff --git a/src/buildstream_plugins/sources/docker.py b/src/buildstream_plugins/sources/docker.py
index eeaa1cf..7e0146e 100644
--- a/src/buildstream_plugins/sources/docker.py
+++ b/src/buildstream_plugins/sources/docker.py
@@ -18,6 +18,11 @@
 #        Sam Thursfield <sa...@codethink.co.uk>
 #        Chandan Singh <cs...@bloomberg.net>
 
+#
+# This plugin was originally developped in the https://gitlab.com/BuildStream/bst-plugins-container/
+# repository and was copied from 192aa75a62161b655b051d5b69f17d9233cf4dfe
+#
+
 """
 docker - stage files from Docker images
 =======================================
diff --git a/src/buildstream_plugins/sources/git.py b/src/buildstream_plugins/sources/git.py
index decd2ec..fb8a8a0 100644
--- a/src/buildstream_plugins/sources/git.py
+++ b/src/buildstream_plugins/sources/git.py
@@ -19,6 +19,11 @@
 #        Chandan Singh <cs...@bloomberg.net>
 #        Tom Mewett <to...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://github.com/apache/buildstream/
+# repository and was copied from 1a3c707a6c46573ab159de64ac9cd92e7f6027e6
+#
+
 """
 git - stage files from a git repository
 =======================================
diff --git a/src/buildstream_plugins/sources/patch.py b/src/buildstream_plugins/sources/patch.py
index e664005..7c999a5 100644
--- a/src/buildstream_plugins/sources/patch.py
+++ b/src/buildstream_plugins/sources/patch.py
@@ -18,6 +18,11 @@
 #        Chandan Singh <cs...@bloomberg.net>
 #        Tiago Gomes <ti...@codethink.co.uk>
 
+#
+# This plugin was originally developped in the https://github.com/apache/buildstream/
+# repository and was copied from 1a3c707a6c46573ab159de64ac9cd92e7f6027e6
+#
+
 """
 patch - apply locally stored patches
 ====================================
diff --git a/src/buildstream_plugins/sources/pip.py b/src/buildstream_plugins/sources/pip.py
index 330872c..6589219 100644
--- a/src/buildstream_plugins/sources/pip.py
+++ b/src/buildstream_plugins/sources/pip.py
@@ -16,6 +16,11 @@
 #  Authors:
 #        Chandan Singh <cs...@bloomberg.net>
 
+#
+# This plugin was originally developped in the https://github.com/apache/buildstream/
+# repository and was copied from 1a3c707a6c46573ab159de64ac9cd92e7f6027e6
+#
+
 """
 pip - stage python packages using pip
 =====================================