All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] gst-plugins: Use 'gitsm' fetcher for submodule support.
@ 2014-12-03 13:05 Jacob Stiffler
  2014-12-04 22:41 ` Denys Dmytriyenko
  0 siblings, 1 reply; 3+ messages in thread
From: Jacob Stiffler @ 2014-12-03 13:05 UTC (permalink / raw)
  To: meta-arago

Signed-off-by: Jacob Stiffler <j-stiffler@ti.com>
---
 .../gstreamer/gst-plugins-bad-mm-accel_0.10.23.bb  |    3 +--
 .../gstreamer/gst-plugins-base-mm-accel_0.10.36.bb |    3 +--
 .../gstreamer/gst-plugins-good-mm-accel_0.10.31.bb |    3 +--
 .../gstreamer/gstreamer-mm-accel_0.10.36.bb        |    3 +--
 4 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad-mm-accel_0.10.23.bb b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad-mm-accel_0.10.23.bb
index 6eb7bc1..e00e919 100644
--- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad-mm-accel_0.10.23.bb
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-bad-mm-accel_0.10.23.bb
@@ -26,14 +26,13 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 DEPENDS += "omap5-sgx-ddk-um-linux libdce libdrm wayland"
 
 SRCREV = "a9510bef52331fee9a23a5c955dbf76ac210056a"
-SRC_URI = "git://git.ti.com/glsdk/gst-plugins-bad0-10.git;protocol=git"
+SRC_URI = "gitsm://git.ti.com/glsdk/gst-plugins-bad0-10.git;protocol=git"
 
 S = "${WORKDIR}/git"
 
 EXTRA_OECONF += " --disable-pvr"
 
 do_configure_prepend() {
-	git submodule init && git submodule update
 	autopoint -f
 }
 
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base-mm-accel_0.10.36.bb b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base-mm-accel_0.10.36.bb
index 1de5e6c..33f82b0 100644
--- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base-mm-accel_0.10.36.bb
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-base-mm-accel_0.10.36.bb
@@ -23,13 +23,12 @@ RCONFLICTS_${PN}-meta += "gst-plugins-base-meta"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-SRC_URI = "git://git.ti.com/glsdk/gst-plugins-base0-10.git;protocol=git"
+SRC_URI = "gitsm://git.ti.com/glsdk/gst-plugins-base0-10.git;protocol=git"
 SRCREV = "3427e885daa749275e07339d3633b83c717aa419"
 
 S = "${WORKDIR}/git"
 
 do_configure_prepend() {
-	git submodule init && git submodule update
 	autopoint -f
 }
 
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good-mm-accel_0.10.31.bb b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good-mm-accel_0.10.31.bb
index 31456af..ad071ec 100644
--- a/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good-mm-accel_0.10.31.bb
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gst-plugins-good-mm-accel_0.10.31.bb
@@ -23,7 +23,7 @@ RCONFLICTS_${PN}-meta += "gst-plugins-good-meta"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-SRC_URI = "git://git.ti.com/glsdk/gst-plugins-good0-10.git;protocol=git"
+SRC_URI = "gitsm://git.ti.com/glsdk/gst-plugins-good0-10.git;protocol=git"
 SRCREV = "a44097d542f2bf219ac9dc3ef2372e58d769a8f9"
 
 # Fix compile errors with recent kernels
@@ -33,7 +33,6 @@ SRC_URI_append = " file://0001-v4l2-fix-build-with-recent-kernels-the-v4l2_buffe
 S = "${WORKDIR}/git"
 
 do_configure_prepend() {
-	git submodule init && git submodule update
 	autopoint -f
 }
 
diff --git a/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer-mm-accel_0.10.36.bb b/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer-mm-accel_0.10.36.bb
index d3db41e..8cfbd05 100644
--- a/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer-mm-accel_0.10.36.bb
+++ b/meta-arago-extras/recipes-multimedia/gstreamer/gstreamer-mm-accel_0.10.36.bb
@@ -21,13 +21,12 @@ RCONFLICTS_${PN}-dbg += "gstreamer-dbg"
 
 PACKAGE_ARCH = "${MACHINE_ARCH}"
 
-SRC_URI = "git://git.ti.com/glsdk/gstreamer0-10.git;protocol=git"
+SRC_URI = "gitsm://git.ti.com/glsdk/gstreamer0-10.git;protocol=git"
 SRCREV = "e505f4a2ceee3b0328eb2efddb9ec1281d3fd60a"
 
 S = "${WORKDIR}/git"
 
 do_configure_prepend() {
-	git submodule init && git submodule update
 	autopoint -f
 }
 
-- 
1.7.9.5



^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-12-05 11:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-03 13:05 [PATCH] gst-plugins: Use 'gitsm' fetcher for submodule support Jacob Stiffler
2014-12-04 22:41 ` Denys Dmytriyenko
2014-12-05 11:29   ` Stiffler, Jacob

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.