openembedded-devel.lists.openembedded.org archive mirror
 help / color / mirror / Atom feed
* [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0
@ 2021-10-19  2:17 Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] asio: upgrade 1.18.1.bb -> 1.20.0 Wang Mingyu
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Wang Mingyu @ 2021-10-19  2:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

New Features
Support custom git extensions by @ethomson in #6031
Introduce git_email_create; deprecate git_diff_format_email by @ethomson in #6061
Deprecated APIs
git_oidarray_free is deprecated; callers should use git_oidarray_dispose
Bug fixes
remote: Mark git_remote_name_is_valid as GIT_EXTERN by @lhchavez in #6032
Fix config parsing for multiline with multiple quoted comment chars by @basile-henry in #6043
indexer: Avoid one mmap(2)/munmap(2) pair per git_indexer_append call by @lhchavez in #6039
merge: Check file mode when resolving renames by @ccstolley in #6060
Allow proxy options when connecting with a detached remote. by @lrm29 in #6058
win32: allow empty environment variables by @ethomson in #6063
Fixes for deprecated APIs by @ethomson in #6066
filter: use a git_oid in filter options, not a pointer by @ethomson in #6067
diff: update GIT_DIFF_IGNORE_BLANK_LINES by @ethomson in #6068
Attribute lookups are always on relative paths by @ethomson in #6073
Handle long paths when querying attributes by @ethomson in #6075
Code cleanups
notes: use a buffer internally by @ethomson in #6047
Fix coding style for pointer by @punkymaniac in #6045
Use typeof GNUC keyword for ISO C compatibility by @duncanthomson in #6041
Discover libssh2 without pkg-config by @stac47 in #6053
Longpath filter bug by @lrm29 in #6055
Add test to ensure empty proxy env behaves like unset env by @sathieu in #6052
Stdint header condition has been reverted. by @lolgear in #6020
buf: common_prefix takes a string array by @ethomson in #6077
oidarray: introduce git_oidarray_dispose by @ethomson in #6076
examples: Free the git_config and git_config_entry after use by @257 in #6071
CI Improvements
ci: pull libssh2 from www.libssh2.org by @ethomson in #6064
Documentation changes
Update README.md by @shijinglu in #6050
New Contributors
@basile-henry made their first contribution in #6043
@duncanthomson made their first contribution in #6041
@stac47 made their first contribution in #6053
@shijinglu made their first contribution in #6050
@ccstolley made their first contribution in #6060
@sathieu made their first contribution in #6052
@257 made their first contribution in #6071

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libgit2/{libgit2_1.2.0.bb => libgit2_1.3.0.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta/recipes-support/libgit2/{libgit2_1.2.0.bb => libgit2_1.3.0.bb} (80%)

diff --git a/meta/recipes-support/libgit2/libgit2_1.2.0.bb b/meta/recipes-support/libgit2/libgit2_1.3.0.bb
similarity index 80%
rename from meta/recipes-support/libgit2/libgit2_1.2.0.bb
rename to meta/recipes-support/libgit2/libgit2_1.3.0.bb
index 6df42e473f..580fa41c21 100644
--- a/meta/recipes-support/libgit2/libgit2_1.2.0.bb
+++ b/meta/recipes-support/libgit2/libgit2_1.3.0.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=73fa96e40ce64f79bab087c7e1deeacd"
 
 DEPENDS = "curl openssl zlib libssh2 libgcrypt libpcre2"
 
-SRC_URI = "git://github.com/libgit2/libgit2.git;branch=main"
-SRCREV = "4fd32be01c79a5c003bb47674ac1d76d948518b7"
+SRC_URI = "git://github.com/libgit2/libgit2.git;nobranch=1"
+SRCREV = "b7bad55e4bb0a285b073ba5e02b01d3f522fc95d"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] asio: upgrade 1.18.1.bb -> 1.20.0
  2021-10-19  2:17 [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Wang Mingyu
@ 2021-10-19  2:17 ` Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libgusb: upgrade 0.3.7 -> 0.3.8 Wang Mingyu
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2021-10-19  2:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

release note:
Fixed experimental::coro compatibility with gcc.
Fixed experimental::promise compatibility with gcc.
Added documentation for per-operation cancellation.
Added documentation for parallel_group.
Added overview documentation for experimental::coro.
Added some missing C++14 examples.
Updated C++20 coroutines overview documentation.

-License-Update: Copyright year updated to 2021.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-support/asio/{asio_1.18.1.bb => asio_1.20.0.bb}  | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-oe/recipes-support/asio/{asio_1.18.1.bb => asio_1.20.0.bb} (77%)

diff --git a/meta-oe/recipes-support/asio/asio_1.18.1.bb b/meta-oe/recipes-support/asio/asio_1.20.0.bb
similarity index 77%
rename from meta-oe/recipes-support/asio/asio_1.18.1.bb
rename to meta-oe/recipes-support/asio/asio_1.20.0.bb
index 530e061968..cedcf9fee0 100644
--- a/meta-oe/recipes-support/asio/asio_1.18.1.bb
+++ b/meta-oe/recipes-support/asio/asio_1.20.0.bb
@@ -15,10 +15,9 @@ inherit autotools
 
 ALLOW_EMPTY:${PN} = "1"
 
-LIC_FILES_CHKSUM = "file://COPYING;md5=de86c8210a433f72bd3cc98e797a6084"
+LIC_FILES_CHKSUM = "file://COPYING;md5=416f4cc4f79551b690babb14ef1a5799"
 
-SRC_URI[md5sum] = "00807b2e976f467b3cec85d1589f0825"
-SRC_URI[sha256sum] = "4af9875df5497fdd507231f4b7346e17d96fc06fe10fd30e2b3750715a329113"
+SRC_URI[sha256sum] = "204374d3cadff1b57a63f4c343cbadcee28374c072dc04b549d772dbba9f650c"
 
 SRC_URI = "${SOURCEFORGE_MIRROR}/asio/${BP}.tar.bz2"
 
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] libgusb: upgrade 0.3.7 -> 0.3.8
  2021-10-19  2:17 [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] asio: upgrade 1.18.1.bb -> 1.20.0 Wang Mingyu
@ 2021-10-19  2:17 ` Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libxmlb: upgrade 0.3.2 -> 0.3.3 Wang Mingyu
  2021-10-19  4:03 ` [oe] [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2021-10-19  2:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libgusb/{libgusb_0.3.7.bb => libgusb_0.3.8.bb}            | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-oe/recipes-support/libgusb/{libgusb_0.3.7.bb => libgusb_0.3.8.bb} (69%)

diff --git a/meta-oe/recipes-support/libgusb/libgusb_0.3.7.bb b/meta-oe/recipes-support/libgusb/libgusb_0.3.8.bb
similarity index 69%
rename from meta-oe/recipes-support/libgusb/libgusb_0.3.7.bb
rename to meta-oe/recipes-support/libgusb/libgusb_0.3.8.bb
index 2b87281793..c22030b983 100644
--- a/meta-oe/recipes-support/libgusb/libgusb_0.3.7.bb
+++ b/meta-oe/recipes-support/libgusb/libgusb_0.3.8.bb
@@ -6,6 +6,6 @@ DEPENDS = "glib-2.0 libusb"
 
 inherit meson gobject-introspection gtk-doc gettext vala
 
-SRC_URI = "git://github.com/hughsie/libgusb.git"
-SRCREV = "ff9c606d9d72c7dd369ad220d92729556faaaf0c"
+SRC_URI = "git://github.com/hughsie/libgusb.git;branch=main"
+SRCREV = "db9edbd8b45662d551194a0985173732f8f557a5"
 S = "${WORKDIR}/git"
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] libxmlb: upgrade 0.3.2 -> 0.3.3
  2021-10-19  2:17 [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] asio: upgrade 1.18.1.bb -> 1.20.0 Wang Mingyu
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libgusb: upgrade 0.3.7 -> 0.3.8 Wang Mingyu
@ 2021-10-19  2:17 ` Wang Mingyu
  2021-10-19  4:03 ` [oe] [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Wang Mingyu @ 2021-10-19  2:17 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libxmlb/{libxmlb_0.3.2.bb => libxmlb_0.3.3.bb}       | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)
 rename meta-oe/recipes-gnome/libxmlb/{libxmlb_0.3.2.bb => libxmlb_0.3.3.bb} (72%)

diff --git a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.2.bb b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb
similarity index 72%
rename from meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.2.bb
rename to meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb
index cacb493a1d..0ebd653fe8 100644
--- a/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.2.bb
+++ b/meta-oe/recipes-gnome/libxmlb/libxmlb_0.3.3.bb
@@ -2,11 +2,10 @@ SUMMARY = "A library to help create and query binary XML blobs"
 LICENSE = "LGPLv2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=1803fa9c2c3ce8cb06b4861d75310742"
 
-SRC_URI = "\
-    git://github.com/hughsie/libxmlb.git \
-    file://run-ptest \
-"
-SRCREV = "994fd0ec3d28da82b5965949a9d925510f603562"
+SRC_URI = "git://github.com/hughsie/libxmlb.git;branch=main \
+           file://run-ptest \
+           "
+SRCREV = "5108556a17bb1c2863c2ca5df088143ea65474a3"
 S = "${WORKDIR}/git"
 
 inherit gobject-introspection gtk-doc meson ptest-gnome
-- 
2.25.1



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

* Re: [oe] [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0
  2021-10-19  2:17 [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Wang Mingyu
                   ` (2 preceding siblings ...)
  2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libxmlb: upgrade 0.3.2 -> 0.3.3 Wang Mingyu
@ 2021-10-19  4:03 ` Khem Raj
  3 siblings, 0 replies; 5+ messages in thread
From: Khem Raj @ 2021-10-19  4:03 UTC (permalink / raw)
  To: wangmy, openembedded-devel

this patch should go to oe-core mailing list.

On 10/18/21 19:17, wangmy wrote:
> New Features
> Support custom git extensions by @ethomson in #6031
> Introduce git_email_create; deprecate git_diff_format_email by @ethomson in #6061
> Deprecated APIs
> git_oidarray_free is deprecated; callers should use git_oidarray_dispose
> Bug fixes
> remote: Mark git_remote_name_is_valid as GIT_EXTERN by @lhchavez in #6032
> Fix config parsing for multiline with multiple quoted comment chars by @basile-henry in #6043
> indexer: Avoid one mmap(2)/munmap(2) pair per git_indexer_append call by @lhchavez in #6039
> merge: Check file mode when resolving renames by @ccstolley in #6060
> Allow proxy options when connecting with a detached remote. by @lrm29 in #6058
> win32: allow empty environment variables by @ethomson in #6063
> Fixes for deprecated APIs by @ethomson in #6066
> filter: use a git_oid in filter options, not a pointer by @ethomson in #6067
> diff: update GIT_DIFF_IGNORE_BLANK_LINES by @ethomson in #6068
> Attribute lookups are always on relative paths by @ethomson in #6073
> Handle long paths when querying attributes by @ethomson in #6075
> Code cleanups
> notes: use a buffer internally by @ethomson in #6047
> Fix coding style for pointer by @punkymaniac in #6045
> Use typeof GNUC keyword for ISO C compatibility by @duncanthomson in #6041
> Discover libssh2 without pkg-config by @stac47 in #6053
> Longpath filter bug by @lrm29 in #6055
> Add test to ensure empty proxy env behaves like unset env by @sathieu in #6052
> Stdint header condition has been reverted. by @lolgear in #6020
> buf: common_prefix takes a string array by @ethomson in #6077
> oidarray: introduce git_oidarray_dispose by @ethomson in #6076
> examples: Free the git_config and git_config_entry after use by @257 in #6071
> CI Improvements
> ci: pull libssh2 from www.libssh2.org by @ethomson in #6064
> Documentation changes
> Update README.md by @shijinglu in #6050
> New Contributors
> @basile-henry made their first contribution in #6043
> @duncanthomson made their first contribution in #6041
> @stac47 made their first contribution in #6053
> @shijinglu made their first contribution in #6050
> @ccstolley made their first contribution in #6060
> @sathieu made their first contribution in #6052
> @257 made their first contribution in #6071
> 
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>   .../libgit2/{libgit2_1.2.0.bb => libgit2_1.3.0.bb}            | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta/recipes-support/libgit2/{libgit2_1.2.0.bb => libgit2_1.3.0.bb} (80%)
> 
> diff --git a/meta/recipes-support/libgit2/libgit2_1.2.0.bb b/meta/recipes-support/libgit2/libgit2_1.3.0.bb
> similarity index 80%
> rename from meta/recipes-support/libgit2/libgit2_1.2.0.bb
> rename to meta/recipes-support/libgit2/libgit2_1.3.0.bb
> index 6df42e473f..580fa41c21 100644
> --- a/meta/recipes-support/libgit2/libgit2_1.2.0.bb
> +++ b/meta/recipes-support/libgit2/libgit2_1.3.0.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=73fa96e40ce64f79bab087c7e1deeacd"
>   
>   DEPENDS = "curl openssl zlib libssh2 libgcrypt libpcre2"
>   
> -SRC_URI = "git://github.com/libgit2/libgit2.git;branch=main"
> -SRCREV = "4fd32be01c79a5c003bb47674ac1d76d948518b7"
> +SRC_URI = "git://github.com/libgit2/libgit2.git;nobranch=1"
> +SRCREV = "b7bad55e4bb0a285b073ba5e02b01d3f522fc95d"
>   
>   S = "${WORKDIR}/git"
>   
> 
> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#93444): https://lists.openembedded.org/g/openembedded-devel/message/93444
> Mute This Topic: https://lists.openembedded.org/mt/86431067/1997914
> Group Owner: openembedded-devel+owner@lists.openembedded.org
> Unsubscribe: https://lists.openembedded.org/g/openembedded-devel/unsub [raj.khem@gmail.com]
> -=-=-=-=-=-=-=-=-=-=-=-
> 


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

end of thread, other threads:[~2021-10-19  4:03 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-19  2:17 [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Wang Mingyu
2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] asio: upgrade 1.18.1.bb -> 1.20.0 Wang Mingyu
2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libgusb: upgrade 0.3.7 -> 0.3.8 Wang Mingyu
2021-10-19  2:17 ` [oe] [meta-oe] [PATCH] libxmlb: upgrade 0.3.2 -> 0.3.3 Wang Mingyu
2021-10-19  4:03 ` [oe] [OE-core] [PATCH] libgit2: upgrade 1.2.0 -> 1.3.0 Khem Raj

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).