summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSourav Kumar Pramanik <pramanik.souravkumar@gmail.com>2023-09-04 18:08:18 +0530
committerKhem Raj <raj.khem@gmail.com>2023-09-07 08:22:43 -0700
commit3da59b8a8a5f8c1d15cdecdb77e238f8206ee880 (patch)
tree3eddc585e18113e4c3308a085078cbda181d4ac2
parentc902a85099596136e850636192458d1cdac6c9a4 (diff)
downloadmeta-openembedded-3da59b8a8a5f8c1d15cdecdb77e238f8206ee880.tar.gz
meta-oe-components: Avoid usage of nobranch=1
The usage of nobranch=1 in SRC_URI allows using unprotected branches. This change updates the real branch name in place of nobranch=1 for these components. Signed-off-by: Sourav Kumar Pramanik <pramanik.souravkumar@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb2
-rw-r--r--meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.2.4.bb2
-rw-r--r--meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.1.bb2
-rw-r--r--meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.14.1.bb2
-rw-r--r--meta-multimedia/recipes-support/xdg-desktop-portal-wlr/xdg-desktop-portal-wlr_0.7.0.bb2
-rw-r--r--meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb2
-rw-r--r--meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.20.bb2
-rw-r--r--meta-oe/recipes-extended/flatpak/flatpak_1.15.4.bb2
-rw-r--r--meta-oe/recipes-extended/minio/minio_git.bb2
-rw-r--r--meta-oe/recipes-graphics/lvgl/lv-lib-png_8.0.2.bb2
-rw-r--r--meta-oe/recipes-navigation/geoclue/geoclue_2.7.0.bb2
-rw-r--r--meta-oe/recipes-support/glog/glog_0.6.0.bb2
-rw-r--r--meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb2
-rw-r--r--meta-oe/recipes-support/tio/tio_2.6.bb2
14 files changed, 14 insertions, 14 deletions
diff --git a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb
index 343135bfa8..58e72efb73 100644
--- a/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb
+++ b/meta-gnome/recipes-gnome/gnome-chess/gnome-chess_43.2.bb
@@ -22,7 +22,7 @@ DEPENDS = " \
22 22
23RRECOMMENDS:${PN} = "gnuchess" 23RRECOMMENDS:${PN} = "gnuchess"
24 24
25SRC_URI = "git://github.com/GNOME/gnome-chess.git;protocol=https;nobranch=1" 25SRC_URI = "git://github.com/GNOME/gnome-chess.git;protocol=https;branch=master"
26 26
27inherit meson pkgconfig gobject-introspection gtk-icon-cache vala features_check mime-xdg gsettings 27inherit meson pkgconfig gobject-introspection gtk-icon-cache vala features_check mime-xdg gsettings
28 28
diff --git a/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.2.4.bb b/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.2.4.bb
index 71c5244f16..6f9156ded3 100644
--- a/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.2.4.bb
+++ b/meta-gnome/recipes-support/webp-pixbuf-loader/webp-pixbuf-loader_0.2.4.bb
@@ -12,7 +12,7 @@ inherit meson pkgconfig
12 12
13EXTRA_OEMESON = "-Dupdate_cache=true" 13EXTRA_OEMESON = "-Dupdate_cache=true"
14 14
15SRC_URI = "git://github.com/aruiz/webp-pixbuf-loader.git;protocol=https;nobranch=1" 15SRC_URI = "git://github.com/aruiz/webp-pixbuf-loader.git;protocol=https;branch=mainline"
16 16
17S = "${WORKDIR}/git" 17S = "${WORKDIR}/git"
18SRCREV = "a35014104a226265e44fe30fcdb4df9305af3466" 18SRCREV = "a35014104a226265e44fe30fcdb4df9305af3466"
diff --git a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.1.bb b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.1.bb
index d6bc0e9c8b..a8e8c83de8 100644
--- a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.1.bb
+++ b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gnome_44.1.bb
@@ -21,7 +21,7 @@ inherit meson pkgconfig gsettings features_check
21 21
22REQUIRED_DISTRO_FEATURES = "polkit" 22REQUIRED_DISTRO_FEATURES = "polkit"
23 23
24SRC_URI = "git://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git;protocol=https;nobranch=1" 24SRC_URI = "git://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome.git;protocol=https;branch=main"
25 25
26S = "${WORKDIR}/git" 26S = "${WORKDIR}/git"
27SRCREV = "89203bf3522556965fc225782d1a635afdac611e" 27SRCREV = "89203bf3522556965fc225782d1a635afdac611e"
diff --git a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.14.1.bb b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.14.1.bb
index 1e0a906184..b291991d37 100644
--- a/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.14.1.bb
+++ b/meta-gnome/recipes-support/xdg-desktop-portal/xdg-desktop-portal-gtk_1.14.1.bb
@@ -18,7 +18,7 @@ inherit gettext autotools pkgconfig gsettings features_check
18 18
19REQUIRED_DISTRO_FEATURES = "polkit" 19REQUIRED_DISTRO_FEATURES = "polkit"
20 20
21SRC_URI = "git://github.com/flatpak/xdg-desktop-portal-gtk.git;protocol=https;nobranch=1" 21SRC_URI = "git://github.com/flatpak/xdg-desktop-portal-gtk.git;protocol=https;branch=main"
22 22
23S = "${WORKDIR}/git" 23S = "${WORKDIR}/git"
24SRCREV = "952005f6a7850a247d286f14838202f506b402b7" 24SRCREV = "952005f6a7850a247d286f14838202f506b402b7"
diff --git a/meta-multimedia/recipes-support/xdg-desktop-portal-wlr/xdg-desktop-portal-wlr_0.7.0.bb b/meta-multimedia/recipes-support/xdg-desktop-portal-wlr/xdg-desktop-portal-wlr_0.7.0.bb
index b845c5f792..8ffe652b22 100644
--- a/meta-multimedia/recipes-support/xdg-desktop-portal-wlr/xdg-desktop-portal-wlr_0.7.0.bb
+++ b/meta-multimedia/recipes-support/xdg-desktop-portal-wlr/xdg-desktop-portal-wlr_0.7.0.bb
@@ -16,7 +16,7 @@ DEPENDS = " \
16inherit meson pkgconfig features_check 16inherit meson pkgconfig features_check
17REQUIRED_DISTRO_FEATURES = "opengl wayland" 17REQUIRED_DISTRO_FEATURES = "opengl wayland"
18 18
19SRC_URI = "git://github.com/emersion/xdg-desktop-portal-wlr.git;protocol=https;nobranch=1 \ 19SRC_URI = "git://github.com/emersion/xdg-desktop-portal-wlr.git;protocol=https;branch=master \
20 file://0001-screencast-Fix-build-with-older-mesa.patch" 20 file://0001-screencast-Fix-build-with-older-mesa.patch"
21 21
22S = "${WORKDIR}/git" 22S = "${WORKDIR}/git"
diff --git a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
index caf55ed6d8..fbad5e1368 100644
--- a/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
+++ b/meta-oe/dynamic-layers/selinux/recipes-devtool/android-tools/android-tools_29.0.6.r14.bb
@@ -12,7 +12,7 @@ DEPENDS = "libbsd libpcre zlib libcap libusb squashfs-tools p7zip libselinux goo
12SRCREV_core = "abfd66fafcbb691d7860df059f1df1c9b1ef29da" 12SRCREV_core = "abfd66fafcbb691d7860df059f1df1c9b1ef29da"
13 13
14SRC_URI = " \ 14SRC_URI = " \
15 git://salsa.debian.org/android-tools-team/android-platform-tools;name=core;protocol=https;nobranch=1 \ 15 git://salsa.debian.org/android-tools-team/android-platform-tools;name=core;protocol=https;branch=master \
16" 16"
17 17
18# Patches copied from android-platform-tools/debian/patches 18# Patches copied from android-platform-tools/debian/patches
diff --git a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.20.bb b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.20.bb
index 0614416690..1121e9a4c9 100644
--- a/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.20.bb
+++ b/meta-oe/recipes-core/uutils-coreutils/uutils-coreutils_0.0.20.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=41f7469eaacac62c67d5664fff2c062d"
5 5
6inherit cargo cargo-update-recipe-crates 6inherit cargo cargo-update-recipe-crates
7 7
8SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;nobranch=1" 8SRC_URI += "git://github.com/uutils/coreutils.git;protocol=https;branch=main"
9 9
10# musl not supported because the libc crate does not support functions like "endutxent" at the moment, 10# musl not supported because the libc crate does not support functions like "endutxent" at the moment,
11# so src/uucore/src/lib/features.rs disables utmpx when targetting musl. 11# so src/uucore/src/lib/features.rs disables utmpx when targetting musl.
diff --git a/meta-oe/recipes-extended/flatpak/flatpak_1.15.4.bb b/meta-oe/recipes-extended/flatpak/flatpak_1.15.4.bb
index f5a726a83d..ca0f0e82c0 100644
--- a/meta-oe/recipes-extended/flatpak/flatpak_1.15.4.bb
+++ b/meta-oe/recipes-extended/flatpak/flatpak_1.15.4.bb
@@ -4,7 +4,7 @@ LICENSE = "LGPL-2.1-only"
4LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c" 4LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
5 5
6SRC_URI = " \ 6SRC_URI = " \
7 gitsm://github.com/flatpak/flatpak;protocol=https;nobranch=1 \ 7 gitsm://github.com/flatpak/flatpak;protocol=https;branch=main \
8 file://0001-flatpak-pc-add-pc_sysrootdir.patch \ 8 file://0001-flatpak-pc-add-pc_sysrootdir.patch \
9" 9"
10 10
diff --git a/meta-oe/recipes-extended/minio/minio_git.bb b/meta-oe/recipes-extended/minio/minio_git.bb
index 049f35ca04..f278a728fd 100644
--- a/meta-oe/recipes-extended/minio/minio_git.bb
+++ b/meta-oe/recipes-extended/minio/minio_git.bb
@@ -6,7 +6,7 @@ DESCRIPTION = "MinIO Client (mc) provides a modern alternative to \
6 cloud storage service (AWS Signature v2 and v4). \ 6 cloud storage service (AWS Signature v2 and v4). \
7" 7"
8 8
9SRC_URI = "git://github.com/minio/mc;nobranch=1;name=mc;protocol=https \ 9SRC_URI = "git://github.com/minio/mc;branch=master;name=mc;protocol=https \
10 file://modules.txt \ 10 file://modules.txt \
11 " 11 "
12 12
diff --git a/meta-oe/recipes-graphics/lvgl/lv-lib-png_8.0.2.bb b/meta-oe/recipes-graphics/lvgl/lv-lib-png_8.0.2.bb
index 22b4826403..0049bbe237 100644
--- a/meta-oe/recipes-graphics/lvgl/lv-lib-png_8.0.2.bb
+++ b/meta-oe/recipes-graphics/lvgl/lv-lib-png_8.0.2.bb
@@ -8,7 +8,7 @@ DESCRIPTION = "Allow the use of PNG images in LVGL. This implementation uses lod
8LICENSE = "MIT" 8LICENSE = "MIT"
9LIC_FILES_CHKSUM = "file://LICENSE;md5=d6fc0df890c5270ef045981b516bb8f2" 9LIC_FILES_CHKSUM = "file://LICENSE;md5=d6fc0df890c5270ef045981b516bb8f2"
10 10
11SRC_URI = "git://github.com/lvgl/lv_lib_png;;protocol=https;nobranch=1" 11SRC_URI = "git://github.com/lvgl/lv_lib_png;;protocol=https;branch=master"
12SRCREV = "bf1531afe07c9f861107559e29ab8a2d83e4715a" 12SRCREV = "bf1531afe07c9f861107559e29ab8a2d83e4715a"
13 13
14S = "${WORKDIR}/git" 14S = "${WORKDIR}/git"
diff --git a/meta-oe/recipes-navigation/geoclue/geoclue_2.7.0.bb b/meta-oe/recipes-navigation/geoclue/geoclue_2.7.0.bb
index 6784b099aa..822e3043eb 100644
--- a/meta-oe/recipes-navigation/geoclue/geoclue_2.7.0.bb
+++ b/meta-oe/recipes-navigation/geoclue/geoclue_2.7.0.bb
@@ -13,7 +13,7 @@ DEPENDS = "glib-2.0 dbus json-glib libsoup-3.0 intltool-native"
13inherit meson pkgconfig gtk-doc gobject-introspection vala useradd 13inherit meson pkgconfig gtk-doc gobject-introspection vala useradd
14 14
15SRCREV = "bbfb6289dedb88cb8155d9f6868787d5432e1f90" 15SRCREV = "bbfb6289dedb88cb8155d9f6868787d5432e1f90"
16SRC_URI = "git://gitlab.freedesktop.org/geoclue/geoclue.git;protocol=https;nobranch=1 \ 16SRC_URI = "git://gitlab.freedesktop.org/geoclue/geoclue.git;protocol=https;branch=master \
17 file://0001-libgeoclue-don-t-try-to-use-g-ir-scanner-when-intros.patch \ 17 file://0001-libgeoclue-don-t-try-to-use-g-ir-scanner-when-intros.patch \
18" 18"
19 19
diff --git a/meta-oe/recipes-support/glog/glog_0.6.0.bb b/meta-oe/recipes-support/glog/glog_0.6.0.bb
index 1c8867f049..c09ce73f98 100644
--- a/meta-oe/recipes-support/glog/glog_0.6.0.bb
+++ b/meta-oe/recipes-support/glog/glog_0.6.0.bb
@@ -7,7 +7,7 @@ LICENSE = "BSD-3-Clause"
7LIC_FILES_CHKSUM = "file://COPYING;md5=dc9db360e0bbd4e46672f3fd91dd6c4b" 7LIC_FILES_CHKSUM = "file://COPYING;md5=dc9db360e0bbd4e46672f3fd91dd6c4b"
8 8
9SRC_URI = " \ 9SRC_URI = " \
10 git://github.com/google/glog.git;nobranch=1;protocol=https \ 10 git://github.com/google/glog.git;branch=master;protocol=https \
11 file://libexecinfo.patch \ 11 file://libexecinfo.patch \
12 file://0001-Change-SleepForMilliseconds-parameter-from-unsigned-.patch \ 12 file://0001-Change-SleepForMilliseconds-parameter-from-unsigned-.patch \
13" 13"
diff --git a/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb b/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb
index b81050b25a..2f6b1f247f 100644
--- a/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb
+++ b/meta-oe/recipes-support/libmxml/libmxml_3.3.1.bb
@@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
4HOMEPAGE = "https://www.msweet.org/mxml/" 4HOMEPAGE = "https://www.msweet.org/mxml/"
5BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues" 5BUGTRACKER = "https://github.com/michaelrsweet/mxml/issues"
6 6
7SRC_URI = "git://github.com/michaelrsweet/mxml.git;nobranch=1;protocol=https" 7SRC_URI = "git://github.com/michaelrsweet/mxml.git;branch=master;protocol=https"
8SRCREV = "fd47c7d115191c8a6bce2c781ffee41e179530f2" 8SRCREV = "fd47c7d115191c8a6bce2c781ffee41e179530f2"
9S = "${WORKDIR}/git" 9S = "${WORKDIR}/git"
10 10
diff --git a/meta-oe/recipes-support/tio/tio_2.6.bb b/meta-oe/recipes-support/tio/tio_2.6.bb
index 1a83a2e420..faef290737 100644
--- a/meta-oe/recipes-support/tio/tio_2.6.bb
+++ b/meta-oe/recipes-support/tio/tio_2.6.bb
@@ -6,7 +6,7 @@ DESCRIPTION = "tio is a simple serial device tool which features a \
6LICENSE = "GPL-2.0-or-later" 6LICENSE = "GPL-2.0-or-later"
7LIC_FILES_CHKSUM = "file://LICENSE;md5=0e1a95b7892d3015ecd6d0016f601f2c" 7LIC_FILES_CHKSUM = "file://LICENSE;md5=0e1a95b7892d3015ecd6d0016f601f2c"
8 8
9SRC_URI = "git://github.com/tio/tio;protocol=https;nobranch=1" 9SRC_URI = "git://github.com/tio/tio;protocol=https;branch=master"
10SRCREV = "88ef473362c5a1ff0dcd389fd5b1d4d6bf202472" 10SRCREV = "88ef473362c5a1ff0dcd389fd5b1d4d6bf202472"
11 11
12S = "${WORKDIR}/git" 12S = "${WORKDIR}/git"