All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377
@ 2022-11-28  6:25 wangmy
  2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] spdlog: upgrade 1.10.0 -> 1.11.0 wangmy
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: wangmy @ 2022-11-28  6:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

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

diff --git a/meta-oe/recipes-graphics/xorg-app/xterm_373.bb b/meta-oe/recipes-graphics/xorg-app/xterm_377.bb
similarity index 94%
rename from meta-oe/recipes-graphics/xorg-app/xterm_373.bb
rename to meta-oe/recipes-graphics/xorg-app/xterm_377.bb
index bc555cbcd..e96c014ab 100644
--- a/meta-oe/recipes-graphics/xorg-app/xterm_373.bb
+++ b/meta-oe/recipes-graphics/xorg-app/xterm_377.bb
@@ -8,7 +8,7 @@ SRC_URI = "http://invisible-mirror.net/archives/${BPN}/${BP}.tgz \
            file://0001-Add-configure-time-check-for-setsid.patch \
           "
 
-SRC_URI[sha256sum] = "deb0989473a63908b5a8d44dfeea8301c8710f6ce01fb57ce8c30002375746b6"
+SRC_URI[sha256sum] = "db108fe7a45d8ed97e604721b58443b473649e61e263631bf8759f8618a990b2"
 
 PACKAGECONFIG ?= ""
 PACKAGECONFIG[xft] = "--enable-freetype,--disable-freetype,libxft fontconfig freetype-native"
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] spdlog: upgrade 1.10.0 -> 1.11.0
  2022-11-28  6:25 [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377 wangmy
@ 2022-11-28  6:25 ` wangmy
  2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] smarty: upgrade 4.2.1 -> 4.3.0 wangmy
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: wangmy @ 2022-11-28  6:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
Update to fmt lib version 9.1.0 #2346, #2485, #2512, #2517 . 
Fix template instantiation warning #2336 . 
Event handlers improvements #2342, #2375 . 
Allow modifying the used Android buffer ID #2358. 
Fix clone in async test #2364. 
Custom formatting optimization #2365. 
Fix C++14 builds for gcc 4.x (#2333) #2372 . 
Add minor version to CMake's SOVERSION #2376
Allow compilation with FMT_ENFORCE_COMPILE_STRING #2381. 
Fix pkg-config generation #2383. 
Remove unused code from null_mutex #2385. 
Fix redundant std::move #2396. 
Remove the empty file if in first period in hourly logger #2386. 
Add reset_overrun_counter() function to the async logging #2399 
Set C++20 in CMake when SPDLOG_USE_STD_FORMAT option is turned on #2402. 
Fix mingw test #2415. 
Support for any std::chrono::duration type in flush_every(..) #2439. 
Fix implicit casting of level_enum #2443. 
Comment fix #2445. 
Fix gcc 4.x build #2449. 
Add openSUSE installation instructions #2468. 
Fixed missing include file in stopwatch.h #2434. 
Support for omitting source info by defining SPDLOG_NO_SOURCE_LOC #2476. 
Added SPDLOG_BUILD_PIC build option to CMake #2475. 
Fix include windows.h #2495. 
Workaround gcc 12 warnings #2498, #2499 . 
Migrate to Github Actions CI #2500. 
Replace iterator difference with std::distance #2509 
Export targets file to build directory at configure time #2514, #2515. 
MongoDB sink improvements #2519. 
Fix shadow warning in dist_sink #2431. 
Fixed msvc warning C4800 in win_eventlog_sink
Check IsDebuggerPresent() in msvc_sink before doing actual work #2408. To use old behavior pass false to the msvc_sink constructor.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../spdlog/{spdlog_1.10.0.bb => spdlog_1.11.0.bb}               | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/spdlog/{spdlog_1.10.0.bb => spdlog_1.11.0.bb} (92%)

diff --git a/meta-oe/recipes-support/spdlog/spdlog_1.10.0.bb b/meta-oe/recipes-support/spdlog/spdlog_1.11.0.bb
similarity index 92%
rename from meta-oe/recipes-support/spdlog/spdlog_1.10.0.bb
rename to meta-oe/recipes-support/spdlog/spdlog_1.11.0.bb
index a7d926351..2c71331ff 100644
--- a/meta-oe/recipes-support/spdlog/spdlog_1.10.0.bb
+++ b/meta-oe/recipes-support/spdlog/spdlog_1.11.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/gabime/spdlog/wiki"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
 
-SRCREV = "76fb40d95455f249bd70824ecfcae7a8f0930fa3"
+SRCREV = "ad0e89cbfb4d0c1ce4d097e134eb7be67baebb36"
 SRC_URI = "git://github.com/gabime/spdlog.git;protocol=https;branch=v1.x"
 
 DEPENDS += "fmt"
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] smarty: upgrade 4.2.1 -> 4.3.0
  2022-11-28  6:25 [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377 wangmy
  2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] spdlog: upgrade 1.10.0 -> 1.11.0 wangmy
@ 2022-11-28  6:25 ` wangmy
  2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 1.1.0 -> 1.1.1 wangmy
  2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pyperf: upgrade 2.4.1 -> 2.5.0 wangmy
  3 siblings, 0 replies; 5+ messages in thread
From: wangmy @ 2022-11-28  6:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
==========
    clean output buffer for Throwable instead of just Exception 
    Fix wrong indentation in libs/plugins/modifier.capitalize.php 
    fix compilation for caching templates 
    Fix Variable Expression 
    Silence deprecation errors for strtime in PHP8.1 or higher 
    Fixed PHP8.1 deprecation errors passing null to parameter in trim 
    Re-organize all testrunners to use the same script(s). 
    Fixed PHP8.1 deprecation errors in strip_tags 
    #155 Adapt Smarty upper/lower functions to be codesafe (e.g. for Turkish locale) 
    Bug fix for underscore in template name 
    Using PHP functions as modifiers now triggers a deprecation notice. 
    Use 'DIR' instead of 'dirname(FILE)' 
    Fixed several typos and grammar errors 
    PHP8.2 compatibility 
    Make SmartyCompilerException play nicer with error handler libraries 
    Change file permissions for directories and respect umask for files 

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../recipes-support/smarty/{smarty_4.2.1.bb => smarty_4.3.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/smarty/{smarty_4.2.1.bb => smarty_4.3.0.bb} (94%)

diff --git a/meta-oe/recipes-support/smarty/smarty_4.2.1.bb b/meta-oe/recipes-support/smarty/smarty_4.3.0.bb
similarity index 94%
rename from meta-oe/recipes-support/smarty/smarty_4.2.1.bb
rename to meta-oe/recipes-support/smarty/smarty_4.3.0.bb
index 71040d016..bc6fc0d8c 100644
--- a/meta-oe/recipes-support/smarty/smarty_4.2.1.bb
+++ b/meta-oe/recipes-support/smarty/smarty_4.3.0.bb
@@ -9,7 +9,7 @@ DEPENDS += "php"
 
 SRC_URI = "git://github.com/smarty-php/smarty.git;protocol=https;branch=master"
 
-SRCREV = "ffa2b81a8e354a49fd8a2f24742dc9dc399e8007"
+SRCREV = "c02e9e135ea719b91f457a0072748ded0e852e7d"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 1.1.0 -> 1.1.1
  2022-11-28  6:25 [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377 wangmy
  2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] spdlog: upgrade 1.10.0 -> 1.11.0 wangmy
  2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] smarty: upgrade 4.2.1 -> 4.3.0 wangmy
@ 2022-11-28  6:25 ` wangmy
  2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pyperf: upgrade 2.4.1 -> 2.5.0 wangmy
  3 siblings, 0 replies; 5+ messages in thread
From: wangmy @ 2022-11-28  6:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ython3-pywbemtools_1.1.0.bb => python3-pywbemtools_1.1.1.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/pywbemtools/{python3-pywbemtools_1.1.0.bb => python3-pywbemtools_1.1.1.bb} (92%)

diff --git a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.0.bb b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.1.bb
similarity index 92%
rename from meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.0.bb
rename to meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.1.bb
index e02485dde..1d449cb0e 100644
--- a/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.0.bb
+++ b/meta-python/recipes-extended/pywbemtools/python3-pywbemtools_1.1.1.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://pywbemtools.readthedocs.io/en/stable/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=e23fadd6ceef8c618fc1c65191d846fa"
 
-SRC_URI[sha256sum] = "5428169d9704f98519666cc81a33bfbb813612108979d4c9ce10d6202faf621e"
+SRC_URI[sha256sum] = "aacf4bfffa872bb0e3d0c19ee0630e3c0997d4f13553189b63b297787341735f"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-pyperf: upgrade 2.4.1 -> 2.5.0
  2022-11-28  6:25 [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377 wangmy
                   ` (2 preceding siblings ...)
  2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 1.1.0 -> 1.1.1 wangmy
@ 2022-11-28  6:25 ` wangmy
  3 siblings, 0 replies; 5+ messages in thread
From: wangmy @ 2022-11-28  6:25 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

From: Wang Mingyu <wangmy@fujitsu.com>

Changelog:
===========
Recognize new name of Graal-based Python as jitted
Collect specialization statistics from running benchmarks
Add support for Python 3.11

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../python/{python3-pyperf_2.4.1.bb => python3-pyperf_2.5.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pyperf_2.4.1.bb => python3-pyperf_2.5.0.bb} (89%)

diff --git a/meta-python/recipes-devtools/python/python3-pyperf_2.4.1.bb b/meta-python/recipes-devtools/python/python3-pyperf_2.5.0.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-pyperf_2.4.1.bb
rename to meta-python/recipes-devtools/python/python3-pyperf_2.5.0.bb
index cb8282566..d5eaa4f60 100644
--- a/meta-python/recipes-devtools/python/python3-pyperf_2.4.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pyperf_2.5.0.bb
@@ -13,7 +13,7 @@ Features: \
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://COPYING;md5=78bc2e6e87c8c61272937b879e6dc2f8"
 
-SRC_URI[sha256sum] = "38cf5e90c56f906a8320ce82a50bfa92c902b93affd72e4dc81580115f355853"
+SRC_URI[sha256sum] = "9fd9be5b57224e68b5a5b88f7126f15b6c8667573f62a0a39faf14d6fdd13909"
 
 DEPENDS += "${PYTHON_PN}-six-native"
 
-- 
2.25.1



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

end of thread, other threads:[~2022-11-28  6:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-11-28  6:25 [oe] [meta-oe] [PATCH] xterm: upgrade 373 -> 377 wangmy
2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] spdlog: upgrade 1.10.0 -> 1.11.0 wangmy
2022-11-28  6:25 ` [oe] [meta-oe] [PATCH] smarty: upgrade 4.2.1 -> 4.3.0 wangmy
2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pywbemtools: upgrade 1.1.0 -> 1.1.1 wangmy
2022-11-28  6:25 ` [oe] [meta-python] [PATCH] python3-pyperf: upgrade 2.4.1 -> 2.5.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.