All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-gnome] [PATCH] gnome-desktop3: upgrade 3.36.6 -> 3.38.8
@ 2021-07-23  2:10 wangmy
  2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] cmark: upgrade 0.30.0 -> 0.30.1 wangmy
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: wangmy @ 2021-07-23  2:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{gnome-desktop3_3.36.6.bb => gnome-desktop3_3.38.8.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-gnome/recipes-gnome/gnome-desktop/{gnome-desktop3_3.36.6.bb => gnome-desktop3_3.38.8.bb} (92%)

diff --git a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.36.6.bb b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.38.8.bb
similarity index 92%
rename from meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.36.6.bb
rename to meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.38.8.bb
index a383da479b..6d2574015f 100644
--- a/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.36.6.bb
+++ b/meta-gnome/recipes-gnome/gnome-desktop/gnome-desktop3_3.38.8.bb
@@ -16,7 +16,7 @@ inherit gnomebase itstool pkgconfig upstream-version-is-even gobject-introspecti
 REQUIRED_DISTRO_FEATURES = "gobject-introspection-data"
 UNKNOWN_CONFIGURE_WHITELIST_append = " introspection"
 
-SRC_URI[archive.sha256sum] = "d23c76947c781f447fb39538dec509408b161b291a75a4ce1c14c2b3d33344f6"
+SRC_URI[archive.sha256sum] = "04dc3b37c2b7d98df972670ac2a5a33ec7dc278e6814c3d23d099ae6789dcae8"
 
 SRC_URI += " \
     file://gnome-desktop-thumbnail-don-t-assume-time_t-is-long.patch \
-- 
2.25.1


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

* [oe] [meta-oe] [PATCH] cmark: upgrade 0.30.0 -> 0.30.1
  2021-07-23  2:10 [oe] [meta-gnome] [PATCH] gnome-desktop3: upgrade 3.36.6 -> 3.38.8 wangmy
@ 2021-07-23  2:10 ` wangmy
  2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] ctags: upgrade 5.9.20210711.0 -> 5.9.20210718.0 wangmy
  2021-07-23  2:10 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.31 -> 1.32 wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2021-07-23  2:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog:
Properly indent block-level contents of list items in man (#258).
https://github.com/commonmark/cmark/issues/258
This handles nested lists as well as items with multiple paragraphs.
The change requires addition of a new field block_number_in_list_item
to cmark_renderer, but this does not change the public API.

Fix quadratic behavior when parsing emphasis (#389, Nick
Wellnhofer). Delimiters can be deleted, so store delimiter positions
instead of pointers in openers_bottom. Besides causing undefined
behavior when reading a dangling pointer, this could also result
in quadratic behavior when parsing emphasis.
https://github.com/commonmark/cmark/issues/389

Fix quadratic behavior when parsing smart quotes (#388, Nick Wellnhofer).
Remove matching smart quote delimiters. Otherwise, the same opener
could be found over and over, preventing the openers_bottom
optimization from kicking in and leading to quadratic behavior when
processing lots of quotes.
https://github.com/commonmark/cmark/issues/388

Modify CMake configuration so that the project can be built with
older versions of CMake (#384, Saleem Abdulrasool). (In 0.30.0,
some features were used that require CMake >= 3.3.) The cost of this
backwards compatibility is that developers must now explicitly invoke
cmark_add_compile_options when a new compilation target is added.
https://github.com/commonmark/cmark/issues/384

Remove a comma at the end of an enumerator list, which was flagged
by clang as a C++11 extension.

make_man_page.py: use absolute path with CDLL. This avoids the error
"file system relative paths not allowed in hardened programs."

Include cmark version in cmark(3) man page (instead of LOCAL).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-support/cmark/{cmark_0.30.0.bb => cmark_0.30.1.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/cmark/{cmark_0.30.0.bb => cmark_0.30.1.bb} (88%)

diff --git a/meta-oe/recipes-support/cmark/cmark_0.30.0.bb b/meta-oe/recipes-support/cmark/cmark_0.30.1.bb
similarity index 88%
rename from meta-oe/recipes-support/cmark/cmark_0.30.0.bb
rename to meta-oe/recipes-support/cmark/cmark_0.30.1.bb
index c52a040645..e2db8aa762 100644
--- a/meta-oe/recipes-support/cmark/cmark_0.30.0.bb
+++ b/meta-oe/recipes-support/cmark/cmark_0.30.1.bb
@@ -4,7 +4,7 @@ LICENSE = "BSD-2-Clause & MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=81f9cae6293cc0345a9144b78152ab62"
 
 SRC_URI = "git://github.com/commonmark/cmark.git"
-SRCREV = "8800e66010214384e75f933830ca5585e1ae3060"
+SRCREV = "977b128291c0cf6c5053cdcf2ac72e627f09c105"
 S = "${WORKDIR}/git"
 
 inherit cmake lib_package
-- 
2.25.1


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

* [oe] [meta-oe] [PATCH] ctags: upgrade 5.9.20210711.0 -> 5.9.20210718.0
  2021-07-23  2:10 [oe] [meta-gnome] [PATCH] gnome-desktop3: upgrade 3.36.6 -> 3.38.8 wangmy
  2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] cmark: upgrade 0.30.0 -> 0.30.1 wangmy
@ 2021-07-23  2:10 ` wangmy
  2021-07-23  2:10 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.31 -> 1.32 wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2021-07-23  2:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

docs(web): add RpmMacros as a new parser

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../ctags/{ctags_5.9.20210711.0.bb => ctags_5.9.20210718.0.bb}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-devtools/ctags/{ctags_5.9.20210711.0.bb => ctags_5.9.20210718.0.bb} (95%)

diff --git a/meta-oe/recipes-devtools/ctags/ctags_5.9.20210711.0.bb b/meta-oe/recipes-devtools/ctags/ctags_5.9.20210718.0.bb
similarity index 95%
rename from meta-oe/recipes-devtools/ctags/ctags_5.9.20210711.0.bb
rename to meta-oe/recipes-devtools/ctags/ctags_5.9.20210718.0.bb
index 4be634b38f..9e803913fe 100644
--- a/meta-oe/recipes-devtools/ctags/ctags_5.9.20210711.0.bb
+++ b/meta-oe/recipes-devtools/ctags/ctags_5.9.20210718.0.bb
@@ -14,7 +14,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0636e73ff0215e8d672dc4c32c317bb3"
 
 inherit autotools-brokensep pkgconfig manpages
 
-SRCREV = "c81079788bfe650190db8ac9df80d63d2bc160aa"
+SRCREV = "23ea3765d15a4cc361a1dfef497617c91c704fbe"
 SRC_URI = "git://github.com/universal-ctags/ctags"
 
 S = "${WORKDIR}/git"
-- 
2.25.1


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

* [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.31 -> 1.32
  2021-07-23  2:10 [oe] [meta-gnome] [PATCH] gnome-desktop3: upgrade 3.36.6 -> 3.38.8 wangmy
  2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] cmark: upgrade 0.30.0 -> 0.30.1 wangmy
  2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] ctags: upgrade 5.9.20210711.0 -> 5.9.20210718.0 wangmy
@ 2021-07-23  2:10 ` wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2021-07-23  2:10 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

**** 1.32 Jul 16, 2021

	Text: Offer both Unicode and escaped-ASCII strings.

	Add LICENSE file to comply with Fedora/RedHat announcement.

Fix rt.cpan.org #136666

	Net::DNS::RR::ZoneFile parser erroneously strips line
	terminators in quoted string forming part of multiline RR.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libnet/{libnet-dns-perl_1.31.bb => libnet-dns-perl_1.32.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-perl/recipes-perl/libnet/{libnet-dns-perl_1.31.bb => libnet-dns-perl_1.32.bb} (95%)

diff --git a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.31.bb b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.32.bb
similarity index 95%
rename from meta-perl/recipes-perl/libnet/libnet-dns-perl_1.31.bb
rename to meta-perl/recipes-perl/libnet/libnet-dns-perl_1.32.bb
index c806456192..f9fa50603f 100644
--- a/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.31.bb
+++ b/meta-perl/recipes-perl/libnet/libnet-dns-perl_1.32.bb
@@ -9,7 +9,7 @@ DEPENDS += "perl"
 
 SRC_URI = "http://search.cpan.org/CPAN/authors/id/N/NL/NLNETLABS/Net-DNS-${PV}.tar.gz"
 
-SRC_URI[sha256sum] = "00024a8e371605c6d8422a27a0a87af8b7cf66f26502102e68ddd4baf7cfc615"
+SRC_URI[sha256sum] = "b890a7b44d573f27cc713caadf1e12eaaa4478a6504d1157194df614316b5b50"
 
 UPSTREAM_CHECK_REGEX = "Net\-DNS\-(?P<pver>(\d+\.\d+))(?!_\d+).tar"
 
-- 
2.25.1


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

end of thread, other threads:[~2021-07-23  2:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-23  2:10 [oe] [meta-gnome] [PATCH] gnome-desktop3: upgrade 3.36.6 -> 3.38.8 wangmy
2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] cmark: upgrade 0.30.0 -> 0.30.1 wangmy
2021-07-23  2:10 ` [oe] [meta-oe] [PATCH] ctags: upgrade 5.9.20210711.0 -> 5.9.20210718.0 wangmy
2021-07-23  2:10 ` [oe] [meta-perl] [PATCH] libnet-dns-perl: upgrade 1.31 -> 1.32 wangmy

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.