All of lore.kernel.org
 help / color / mirror / Atom feed
* [OE-core] [PATCH] libsdl2: upgrade 2.26.1 -> 2.26.2
@ 2023-01-09  5:14 wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] libva-utils: upgrade 2.17.0 -> 2.17.1 wangmy
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: wangmy @ 2023-01-09  5:14 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libsdl2/{libsdl2_2.26.1.bb => libsdl2_2.26.2.bb}            | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/libsdl2/{libsdl2_2.26.1.bb => libsdl2_2.26.2.bb} (97%)

diff --git a/meta/recipes-graphics/libsdl2/libsdl2_2.26.1.bb b/meta/recipes-graphics/libsdl2/libsdl2_2.26.2.bb
similarity index 97%
rename from meta/recipes-graphics/libsdl2/libsdl2_2.26.1.bb
rename to meta/recipes-graphics/libsdl2/libsdl2_2.26.2.bb
index 0b2231bc7a..17fc410f6c 100644
--- a/meta/recipes-graphics/libsdl2/libsdl2_2.26.1.bb
+++ b/meta/recipes-graphics/libsdl2/libsdl2_2.26.2.bb
@@ -25,7 +25,7 @@ SRC_URI = "http://www.libsdl.org/release/SDL2-${PV}.tar.gz"
 
 S = "${WORKDIR}/SDL2-${PV}"
 
-SRC_URI[sha256sum] = "02537cc7ebd74071631038b237ec4bfbb3f4830ba019e569434da33f42373e04"
+SRC_URI[sha256sum] = "95d39bc3de037fbdfa722623737340648de4f180a601b0afad27645d150b99e0"
 
 inherit cmake lib_package binconfig-disabled pkgconfig upstream-version-is-even
 
-- 
2.25.1



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

* [OE-core] [PATCH] libva-utils: upgrade 2.17.0 -> 2.17.1
  2023-01-09  5:14 [OE-core] [PATCH] libsdl2: upgrade 2.26.1 -> 2.26.2 wangmy
@ 2023-01-09  5:14 ` wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] libxkbcommon: upgrade 1.4.1 -> 1.5.0 wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] mpfr: upgrade 4.1.1 -> 4.2.0 wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2023-01-09  5:14 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
* fix: Fix possible memory leak
* fix: fix coding issues of array size and function return types

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../libva/{libva-utils_2.17.0.bb => libva-utils_2.17.1.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/libva/{libva-utils_2.17.0.bb => libva-utils_2.17.1.bb} (95%)

diff --git a/meta/recipes-graphics/libva/libva-utils_2.17.0.bb b/meta/recipes-graphics/libva/libva-utils_2.17.1.bb
similarity index 95%
rename from meta/recipes-graphics/libva/libva-utils_2.17.0.bb
rename to meta/recipes-graphics/libva/libva-utils_2.17.1.bb
index c5a563b853..1e475e804b 100644
--- a/meta/recipes-graphics/libva/libva-utils_2.17.0.bb
+++ b/meta/recipes-graphics/libva/libva-utils_2.17.1.bb
@@ -15,7 +15,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=b148fc8adf19dc9aec17cf9cd29a9a5e"
 
 SRC_URI = "git://github.com/intel/libva-utils.git;branch=v2.17-branch;protocol=https"
-SRCREV = "42c02a6a37b1bfce91a7f15c898750f2ee9e3d6a"
+SRCREV = "3a291be22cfe70e41bad8a376fa278efa651fdff"
 S = "${WORKDIR}/git"
 
 UPSTREAM_CHECK_GITTAGREGEX = "(?P<pver>(\d+(\.\d+)+))$"
-- 
2.25.1



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

* [OE-core] [PATCH] libxkbcommon: upgrade 1.4.1 -> 1.5.0
  2023-01-09  5:14 [OE-core] [PATCH] libsdl2: upgrade 2.26.1 -> 2.26.2 wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] libva-utils: upgrade 2.17.0 -> 2.17.1 wangmy
@ 2023-01-09  5:14 ` wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] mpfr: upgrade 4.1.1 -> 4.2.0 wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2023-01-09  5:14 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- Add 'xkb_context' flag 'XKB_CONTEXT_NO_SECURE_GETENV' and 'rxkb_context' flag
  'RXKB_CONTEXT_NO_SECURE_GETENV'.

  xkbcommon uses 'getenv_secure()' to obtain environment variables. This flag
  makes xkbcommon use 'getenv()' instead.

  This is useful for some clients that have relatively benign capabilities set,
  like CAP_SYS_NICE, that also want to use e.g. the XKB configuration from the
  environment and user configs in XDG_CONFIG_HOME.

  Contributed by Ronan Pigott.

- Fix crash in 'xkbcli interactive-wayland' under a compositor which supports
  new versions of the xdg-shell protocol.

  Contributed by Jan Alexander Steffens (heftig).

- Fix some MSVC build issues.

- Fix some issues when including xkbcommon as a meson subproject.

- meson>=0.51 is now required.

- New API:
  XKB_CONTEXT_NO_SECURE_GETENV
  RXKB_CONTEXT_NO_SECURE_GETENV

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../xorg-lib/{libxkbcommon_1.4.1.bb => libxkbcommon_1.5.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-graphics/xorg-lib/{libxkbcommon_1.4.1.bb => libxkbcommon_1.5.0.bb} (94%)

diff --git a/meta/recipes-graphics/xorg-lib/libxkbcommon_1.4.1.bb b/meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb
similarity index 94%
rename from meta/recipes-graphics/xorg-lib/libxkbcommon_1.4.1.bb
rename to meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb
index df13ceb389..01966c8973 100644
--- a/meta/recipes-graphics/xorg-lib/libxkbcommon_1.4.1.bb
+++ b/meta/recipes-graphics/xorg-lib/libxkbcommon_1.5.0.bb
@@ -9,7 +9,7 @@ DEPENDS = "flex-native bison-native"
 
 SRC_URI = "http://xkbcommon.org/download/${BPN}-${PV}.tar.xz"
 
-SRC_URI[sha256sum] = "943c07a1e2198026d8102b17270a1f406e4d3d6bbc4ae105b9e1b82d7d136b39"
+SRC_URI[sha256sum] = "560f11c4bbbca10f495f3ef7d3a6aa4ca62b4f8fb0b52e7d459d18a26e46e017"
 
 UPSTREAM_CHECK_URI = "http://xkbcommon.org/"
 
-- 
2.25.1



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

* [OE-core] [PATCH] mpfr: upgrade 4.1.1 -> 4.2.0
  2023-01-09  5:14 [OE-core] [PATCH] libsdl2: upgrade 2.26.1 -> 2.26.2 wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] libva-utils: upgrade 2.17.0 -> 2.17.1 wangmy
  2023-01-09  5:14 ` [OE-core] [PATCH] libxkbcommon: upgrade 1.4.1 -> 1.5.0 wangmy
@ 2023-01-09  5:14 ` wangmy
  2 siblings, 0 replies; 4+ messages in thread
From: wangmy @ 2023-01-09  5:14 UTC (permalink / raw)
  To: openembedded-core; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
- The "fondue savoyarde" release.
- Binary compatible with MPFR 4.0.* and 4.1.*, though some minor changes in
  the behavior of the formatted output functions may be visible, regarded
  as underspecified behavior or bug fixes (see below).
- New functions mpfr_cosu, mpfr_sinu, mpfr_tanu, mpfr_acosu, mpfr_asinu,
  mpfr_atanu and mpfr_atan2u.
- New functions mpfr_cospi, mpfr_sinpi, mpfr_tanpi, mpfr_acospi, mpfr_asinpi,
  mpfr_atanpi and mpfr_atan2pi.
- New functions mpfr_log2p1, mpfr_log10p1, mpfr_exp2m1, mpfr_exp10m1 and
  mpfr_compound_si.
- New functions mpfr_fmod_ui, mpfr_powr, mpfr_pown, mpfr_pow_uj, mpfr_pow_sj
  and mpfr_rootn_si (mpfr_pown is actually a macro defined as an alias for
  mpfr_pow_sj).
- Bug fixes.
  In particular, for the formatted output functions (mpfr_printf, etc.),
  the case where the precision consists only of a period has been fixed
  to be like ".0" as specified in the ISO C standard, and the manual has
  been corrected and clarified.
  The macros of the custom interface have also been fixed: they now behave
  like functions (except a minor limitation for mpfr_custom_init_set).

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta/recipes-support/mpfr/{mpfr_4.1.1.bb => mpfr_4.2.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta/recipes-support/mpfr/{mpfr_4.1.1.bb => mpfr_4.2.0.bb} (91%)

diff --git a/meta/recipes-support/mpfr/mpfr_4.1.1.bb b/meta/recipes-support/mpfr/mpfr_4.2.0.bb
similarity index 91%
rename from meta/recipes-support/mpfr/mpfr_4.1.1.bb
rename to meta/recipes-support/mpfr/mpfr_4.2.0.bb
index f531a88961..fead5c3833 100644
--- a/meta/recipes-support/mpfr/mpfr_4.1.1.bb
+++ b/meta/recipes-support/mpfr/mpfr_4.2.0.bb
@@ -12,7 +12,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=1ebbd3e34237af26da5dc08a4e440464 \
 DEPENDS = "gmp autoconf-archive"
 
 SRC_URI = "https://www.mpfr.org/mpfr-${PV}/mpfr-${PV}.tar.xz"
-SRC_URI[sha256sum] = "ffd195bd567dbaffc3b98b23fd00aad0537680c9896171e44fe3ff79e28ac33d"
+SRC_URI[sha256sum] = "06a378df13501248c1b2db5aa977a2c8126ae849a9d9b7be2546fb4a9c26d993"
 
 UPSTREAM_CHECK_URI = "http://www.mpfr.org/mpfr-current/"
 
-- 
2.25.1



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

end of thread, other threads:[~2023-01-09  5:15 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-01-09  5:14 [OE-core] [PATCH] libsdl2: upgrade 2.26.1 -> 2.26.2 wangmy
2023-01-09  5:14 ` [OE-core] [PATCH] libva-utils: upgrade 2.17.0 -> 2.17.1 wangmy
2023-01-09  5:14 ` [OE-core] [PATCH] libxkbcommon: upgrade 1.4.1 -> 1.5.0 wangmy
2023-01-09  5:14 ` [OE-core] [PATCH] mpfr: upgrade 4.1.1 -> 4.2.0 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.