diff mbox series

[meta-oe,langdale] poco: fix branch

Message ID 20231216081406.3638074-1-martin.jansa@gmail.com
State New
Headers show
Series [meta-oe,langdale] poco: fix branch | expand

Commit Message

Martin Jansa Dec. 16, 2023, 8:14 a.m. UTC
From: Alexandre Belloni <alexandre.belloni@bootlin.com>

The current SRCREV is not on any branch anymore, switch to the 1.12.4
branch HEAD which is similar and the only change is irrelevant.

The SRCREV is still referenced from the tag so we could use nobranch here:
github/poco $ git tag --contains f1aefe34a46891b09230422bbc37465bc6d0a0d1
poco-1.12.3-release
poco-1.12.4-release

but the only difference in "new" branch HEAD is .github/FUNDING.ym file
(don't know why they force pushed all the branches just to remove this)

github/poco $ git diff f1aefe34a46891b09230422bbc37465bc6d0a0d1 9fc117d585e552ae3327b56900df9cc40653d574
  diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml
  deleted file mode 100644
  index b2884d85e..000000000
  --- a/.github/FUNDING.yml
  +++ /dev/null
  @@ -1,13 +0,0 @@
  -# These are supported funding model platforms
  -
  -github: [aleks-f]
  -patreon: # Replace with a single Patreon username
  -open_collective: # Replace with a single Open Collective username
  -ko_fi: # Replace with a single Ko-fi username
  -tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
  -community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
  -liberapay: # Replace with a single Liberapay username
  -issuehunt: # Replace with a single IssueHunt username
  -otechie: # Replace with a single Otechie username
  -lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
  -custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']

Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Martin Jansa <martin.jansa@gmail.com>
---
 meta-oe/recipes-support/poco/poco_1.12.3.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-support/poco/poco_1.12.3.bb b/meta-oe/recipes-support/poco/poco_1.12.3.bb
index 32c57ce978..5bd029a6d9 100644
--- a/meta-oe/recipes-support/poco/poco_1.12.3.bb
+++ b/meta-oe/recipes-support/poco/poco_1.12.3.bb
@@ -8,10 +8,10 @@  LIC_FILES_CHKSUM = "file://LICENSE;md5=4267f48fc738f50380cbeeb76f95cebc"
 # These dependencies are required by Foundation
 DEPENDS = "libpcre2 zlib"
 
-SRC_URI = "git://github.com/pocoproject/poco.git;branch=master;protocol=https \
+SRC_URI = "git://github.com/pocoproject/poco.git;branch=1.12.3;protocol=https \
            file://run-ptest \
            "
-SRCREV = "f1aefe34a46891b09230422bbc37465bc6d0a0d1"
+SRCREV = "9fc117d585e552ae3327b56900df9cc40653d574"
 
 UPSTREAM_CHECK_GITTAGREGEX = "poco-(?P<pver>\d+(\.\d+)+)"