RE: [meta-lts-mixins][scarthgap/go][PATCH 1/4] go-helloworld: use bbappend for mixin modifications
"Marko, Peter" <[email protected]>
| Newsgroups | org.yoctoproject.lists.yocto-patches |
|---|---|
| Message-ID | <AS8PR10MB50737266652867E0FF0E413AFD192@AS8PR10MB5073.EURPRD10.PROD.OUTLOOK.COM> |
This series is now merged. -----Original Message----- From: Marko, Peter (FT D EU SK BFS1) <[email protected]> Sent: Sunday, June 7, 2026 9:30 PM To: [email protected] Cc: Marko, Peter (FT D EU SK BFS1) <[email protected]>; [email protected] Subject: [meta-lts-mixins][scarthgap/go][PATCH 1/4] go-helloworld: use bbappend for mixin modifications From: Peter Marko <[email protected]> This makes cherry-pick possible without conflicts. Signed-off-by: Peter Marko <[email protected]> --- recipes-extended/go-examples/go-helloworld_0.1.bb | 3 --- recipes-extended/go-examples/go-helloworld_0.1.bbappend | 2 ++ 2 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 recipes-extended/go-examples/go-helloworld_0.1.bbappend diff --git a/recipes-extended/go-examples/go-helloworld_0.1.bb b/recipes-extended/go-examples/go-helloworld_0.1.bb index c8401c9..77a13b3 100644 --- a/recipes-extended/go-examples/go-helloworld_0.1.bb +++ b/recipes-extended/go-examples/go-helloworld_0.1.bb @@ -9,9 +9,6 @@ SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https;destsu SRCREV = "7f05d217867b2af52b0a28c6d1c91df97e1b5b39" UPSTREAM_CHECK_COMMITS = "1" -# drop the 'destsuffix' so we make the oe-core backports easier without conflits -SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https" - GO_IMPORT = "golang.org/x/example" GO_INSTALL = "${GO_IMPORT}/hello" diff --git a/recipes-extended/go-examples/go-helloworld_0.1.bbappend b/recipes-extended/go-examples/go-helloworld_0.1.bbappend new file mode 100644 index 0000000..b2c0661 --- /dev/null +++ b/recipes-extended/go-examples/go-helloworld_0.1.bbappend @@ -0,0 +1,2 @@ +# drop the 'destsuffix' so we make the oe-core backports easier without conflits +SRC_URI = "git://go.googlesource.com/example;branch=master;protocol=https"