diff mbox series

[meta-gnome] ibus.inc: fix after branch renaming

Message ID 20220730152545.294982-1-f_l_k@t-online.de
State Under Review
Headers show
Series [meta-gnome] ibus.inc: fix after branch renaming | expand

Commit Message

Markus Volk July 30, 2022, 3:25 p.m. UTC
this fixes:
ERROR: ibus-native-1.5.26-r0 do_fetch: Fetcher failure: Unable to find revision 6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3
in branch master even from upstream

Signed-off-by: Markus Volk <f_l_k@t-online.de>
---
 meta-gnome/recipes-support/ibus/ibus.inc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Khem Raj July 30, 2022, 5:25 p.m. UTC | #1
On Sat, Jul 30, 2022 at 11:26 AM Markus Volk <f_l_k@t-online.de> wrote:
>
> this fixes:
> ERROR: ibus-native-1.5.26-r0 do_fetch: Fetcher failure: Unable to find revision 6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3
> in branch master even from upstream
>

even when you do bitbake -ccleanall <recipe> && bitbake <recipe> ?

> Signed-off-by: Markus Volk <f_l_k@t-online.de>
> ---
>  meta-gnome/recipes-support/ibus/ibus.inc | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/meta-gnome/recipes-support/ibus/ibus.inc b/meta-gnome/recipes-support/ibus/ibus.inc
> index 37a490abe..b21a5e528 100644
> --- a/meta-gnome/recipes-support/ibus/ibus.inc
> +++ b/meta-gnome/recipes-support/ibus/ibus.inc
> @@ -10,7 +10,7 @@ PV = "1.5.26"
>  DEPENDS = "unicode-ucd"
>
>  SRC_URI = " \
> -    git://github.com/ibus/ibus.git;branch=master;protocol=https \
> +    git://github.com/ibus/ibus.git;nobranch=1;protocol=https \
>      file://0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch \
>  "
>  SRCREV = "6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3"
> --
> 2.34.1
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#98058): https://lists.openembedded.org/g/openembedded-devel/message/98058
> Mute This Topic: https://lists.openembedded.org/mt/92711747/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
Markus Volk July 30, 2022, 7:57 p.m. UTC | #2
On Sat, Jul 30 2022 at 01:25:23 PM -0400, Khem Raj <raj.khem@gmail.com> 
wrote:
> even when you do bitbake -ccleanall <recipe> && bitbake <recipe> ?

I'll test this tomorrow. But on the ibus github page there is no master 
branch anymore, so i doubt -c cleanall will help

<https://github.com/ibus/ibus>
Fabio Estevam July 30, 2022, 8:31 p.m. UTC | #3
On Sat, Jul 30, 2022 at 4:57 PM Markus Volk <f_l_k@t-online.de> wrote:

> I'll test this tomorrow. But on the ibus github page there is no master branch anymore, so i doubt -c cleanall will help
>
> https://github.com/ibus/ibus

Does the change below fix it?

--- a/meta-gnome/recipes-support/ibus/ibus.inc
+++ b/meta-gnome/recipes-support/ibus/ibus.inc
@@ -10,7 +10,7 @@ PV = "1.5.26"
 DEPENDS = "unicode-ucd"

 SRC_URI = " \
-    git://github.com/ibus/ibus.git;branch=master;protocol=https \
+    git://github.com/ibus/ibus.git;branch=main;protocol=https \
     file://0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch \
 "
 SRCREV = "6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3"
Markus Volk July 31, 2022, 11:24 a.m. UTC | #4
Am Sa, 30. Jul 2022 um 17:31:59 -0300 schrieb Fabio Estevam 
<festevam@gmail.com>:
> Does the change below fix it?

'bitbake -c cleanall' didn't solve the issue, 'branch=main did'. Is 
there a reason why this should be preferred over 'nobranch=1' ? The 
latter seems to be less maintenance.
diff mbox series

Patch

diff --git a/meta-gnome/recipes-support/ibus/ibus.inc b/meta-gnome/recipes-support/ibus/ibus.inc
index 37a490abe..b21a5e528 100644
--- a/meta-gnome/recipes-support/ibus/ibus.inc
+++ b/meta-gnome/recipes-support/ibus/ibus.inc
@@ -10,7 +10,7 @@  PV = "1.5.26"
 DEPENDS = "unicode-ucd"
 
 SRC_URI = " \
-    git://github.com/ibus/ibus.git;branch=master;protocol=https \
+    git://github.com/ibus/ibus.git;nobranch=1;protocol=https \
     file://0001-Do-not-try-to-start-dbus-we-do-not-have-dbus-lauch.patch \
 "
 SRCREV = "6a70ab0338206bd1c7d01a4e1874ea0ee5b3a9d3"