All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-oe] [PATCH] bats: upgrade 1.4.1 -> 1.5.0
@ 2022-01-07 14:27 Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2 Wang Mingyu
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-01-07 14:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

0001-install.sh-consider-multilib.patch
removed since it is included in 1.5.0

Changelog:
Issues for this release <https://github.com/bats-core/bats-core/pull/####>
=========
Added:
---------
 new command line flags (#488)
 --verbose-run: Make run print $output by default
 -x, --trace: Print test commands as they are executed (like set -x)`
 --show-output-of-passing-tests: Print output of passing tests
 --print-output-on-failure: Automatically print the value of $output on
 failed tests
 --gather-test-outputs-in <directory>: Gather the output of failing and
 passing tests as files in directory
 Experimental: add return code checks to run via !/-<N> (#367, #507)
 install.sh and uninstall.sh take an optional second parameter for the lib
 folder name to allow for multilib install, e.g. into lib64 (#452)
 add run flag --keep-empty-lines to retain empty lines in ${lines[@]} (#224,
 a894fbf)
 add run flag --separate-stderr which also fills $stderr and
 $stderr_lines (#47, 5c9b173d, #507)

Fixed:
---------
 don't glob run's $output when splitting into ${lines[@]}
 (#151, #152, #158, #156, #281, #289)
 remove empty line after test with pretty formatter on some terminals (#481)
 don't run setup_file/teardown_file on files without tests, e.g. due to
 filtering (#484)
 print final line without newline on Bash 3.2 for midtest (ERREXIT) failures
 too (#495, #145)
 abort with error on missing flock/shlock when running in parallel mode (#496)
 improved set -u test and fixed some unset variable accesses (#498, #501)
 shorten suite/file/test temporary folder paths to leave enough space even on
 restricted systems (#503)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../bats/{bats_1.4.1.bb => bats_1.5.0.bb}     |  6 +--
 .../0001-install.sh-consider-multilib.patch   | 43 -------------------
 2 files changed, 2 insertions(+), 47 deletions(-)
 rename meta-oe/recipes-test/bats/{bats_1.4.1.bb => bats_1.5.0.bb} (87%)
 delete mode 100644 meta-oe/recipes-test/bats/files/0001-install.sh-consider-multilib.patch

diff --git a/meta-oe/recipes-test/bats/bats_1.4.1.bb b/meta-oe/recipes-test/bats/bats_1.5.0.bb
similarity index 87%
rename from meta-oe/recipes-test/bats/bats_1.4.1.bb
rename to meta-oe/recipes-test/bats/bats_1.5.0.bb
index 13babd5ea..ffbb37c8a 100644
--- a/meta-oe/recipes-test/bats/bats_1.4.1.bb
+++ b/meta-oe/recipes-test/bats/bats_1.5.0.bb
@@ -6,11 +6,9 @@ HOMEPAGE = "https://github.com/bats-core/bats-core"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.md;md5=2970203aedf9e829edb96a137a4fe81b"
 
-SRC_URI = "git://github.com/bats-core/bats-core.git;branch=master;protocol=https \
-           file://0001-install.sh-consider-multilib.patch \
-          "
+SRC_URI = "git://github.com/bats-core/bats-core.git;branch=master;protocol=https"
 # v1.4.1
-SRCREV = "54e965fa9d269c2b3ff9036d81f32bac3df0edea"
+SRCREV = "99d64eb017abcd6a766dd0d354e625526da69cb3"
 
 S = "${WORKDIR}/git"
 
diff --git a/meta-oe/recipes-test/bats/files/0001-install.sh-consider-multilib.patch b/meta-oe/recipes-test/bats/files/0001-install.sh-consider-multilib.patch
deleted file mode 100644
index c7393ca2e..000000000
--- a/meta-oe/recipes-test/bats/files/0001-install.sh-consider-multilib.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-From 6e3d01f1ff199383b78a7504858c374fbce05f4e Mon Sep 17 00:00:00 2001
-From: Kai Kang <kai.kang@windriver.com>
-Date: Thu, 10 Jun 2021 11:11:07 +0800
-Subject: [PATCH] install.sh: consider multilib
-
-It may install files to /usr/lib64 when multilib is enabled. Add an
-optional parameter for install.sh to support it.
-
-Upstream-Status: Submitted [https://github.com/bats-core/bats-core/pull/452]
-
-Signed-off-by: Kai Kang <kai.kang@windriver.com>
----
- install.sh | 5 +++--
- 1 file changed, 3 insertions(+), 2 deletions(-)
-
-diff --git a/install.sh b/install.sh
-index e660866..d91159e 100755
---- a/install.sh
-+++ b/install.sh
-@@ -4,6 +4,7 @@ set -e
- 
- BATS_ROOT="${0%/*}"
- PREFIX="$1"
-+BASELIB="${2:-lib}"
- 
- if [[ -z "$PREFIX" ]]; then
-   printf '%s\n' \
-@@ -12,10 +13,10 @@ if [[ -z "$PREFIX" ]]; then
-   exit 1
- fi
- 
--install -d -m 755 "$PREFIX"/{bin,libexec/bats-core,lib/bats-core,share/man/man{1,7}}
-+install -d -m 755 "$PREFIX"/{bin,libexec/bats-core,${BASELIB}/bats-core,share/man/man{1,7}}
- install -m 755 "$BATS_ROOT/bin"/* "$PREFIX/bin"
- install -m 755 "$BATS_ROOT/libexec/bats-core"/* "$PREFIX/libexec/bats-core"
--install -m 755 "$BATS_ROOT/lib/bats-core"/* "$PREFIX/lib/bats-core"
-+install -m 755 "$BATS_ROOT/lib/bats-core"/* "$PREFIX/${BASELIB}/bats-core"
- install -m 644 "$BATS_ROOT/man/bats.1" "$PREFIX/share/man/man1"
- install -m 644 "$BATS_ROOT/man/bats.7" "$PREFIX/share/man/man7"
- 
--- 
-2.17.1
-
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
  2022-01-07 14:27 [oe] [meta-oe] [PATCH] bats: upgrade 1.4.1 -> 1.5.0 Wang Mingyu
@ 2022-01-07 14:27 ` Wang Mingyu
  2022-01-07 18:51   ` Khem Raj
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] doxygen: upgrade 1.9.2 -> 1.9.3 Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] pcsc-tools: upgrade 1.5.7 -> 1.5.8 Wang Mingyu
  2 siblings, 1 reply; 7+ messages in thread
From: Wang Mingyu @ 2022-01-07 14:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog:
Bugs fixed for this release <https://github.com/manatools/dnfdragora/issues/#####>
=========
Fixed wrong access to manatools.service module (issue #202)
Fixed issue #189 "No line break to fit the width of the window in dnfdragora"

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
index fdc164d56..a67bd9bcb 100644
--- a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
+++ b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
@@ -9,8 +9,8 @@ SRC_URI = "git://github.com/manatools/dnfdragora.git;branch=master;protocol=http
            file://0001-To-fix-error-when-do_package.patch \
            "
 
-PV = "1.1.2+git${SRCPV}"
-SRCREV = "19e123132cfd4efd860e5204261c3c228bfe80a8"
+PV = "2.1.2"
+SRCREV = "5cbbc07c9d015af284a424a172a379b385f05b6f"
 
 S = "${WORKDIR}/git"
 
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] doxygen: upgrade 1.9.2 -> 1.9.3
  2022-01-07 14:27 [oe] [meta-oe] [PATCH] bats: upgrade 1.4.1 -> 1.5.0 Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2 Wang Mingyu
@ 2022-01-07 14:27 ` Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] pcsc-tools: upgrade 1.5.7 -> 1.5.8 Wang Mingyu
  2 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-01-07 14:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

refresh doxygen-native-only-check-python3.patch

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../doxygen-native-only-check-python3.patch   | 44 +++++++++----------
 .../{doxygen_1.9.2.bb => doxygen_1.9.3.bb}    |  2 +-
 2 files changed, 22 insertions(+), 24 deletions(-)
 rename meta-oe/recipes-devtools/doxygen/{doxygen_1.9.2.bb => doxygen_1.9.3.bb} (86%)

diff --git a/meta-oe/recipes-devtools/doxygen/doxygen/doxygen-native-only-check-python3.patch b/meta-oe/recipes-devtools/doxygen/doxygen/doxygen-native-only-check-python3.patch
index 9d1a5a93d..b6d007d8d 100644
--- a/meta-oe/recipes-devtools/doxygen/doxygen/doxygen-native-only-check-python3.patch
+++ b/meta-oe/recipes-devtools/doxygen/doxygen/doxygen-native-only-check-python3.patch
@@ -1,4 +1,4 @@
-From 7aeee92c752f8a4b2524ed6a41d60c1a3ca8bf2d Mon Sep 17 00:00:00 2001
+From daf686508f2ee4711d93e96e5b100e50bf161656 Mon Sep 17 00:00:00 2001
 From: Leon Anavi <leon.anavi@konsulko.com>
 Date: Wed, 26 Aug 2020 10:52:10 +0300
 Subject: [PATCH] doxygen: Fix Python issues for doxygen-native
@@ -39,6 +39,7 @@ Upstream-Status: Inappropriate[oe specific]
 Co-Authored-By: Kai Kang <kai.kang@windriver.com>
 Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
 Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
+
 ---
  CMakeLists.txt                  |  2 +-
  addon/doxywizard/CMakeLists.txt |  6 +++---
@@ -50,10 +51,10 @@ Signed-off-by: Randy MacLeod <Randy.MacLeod@windriver.com>
  7 files changed, 17 insertions(+), 17 deletions(-)
 
 diff --git a/CMakeLists.txt b/CMakeLists.txt
-index f30b46b8..50f211c8 100644
+index 2455793..28f0d83 100644
 --- a/CMakeLists.txt
 +++ b/CMakeLists.txt
-@@ -101,7 +101,7 @@ else ()
+@@ -105,7 +105,7 @@ else ()
  endif ()
  
  find_program(DOT NAMES dot)
@@ -63,10 +64,10 @@ index f30b46b8..50f211c8 100644
  find_package(BISON REQUIRED)
  if (BISON_VERSION VERSION_LESS 2.7)
 diff --git a/addon/doxywizard/CMakeLists.txt b/addon/doxywizard/CMakeLists.txt
-index a6f65f8d..d163aa5b 100644
+index 63ac8e3..d37d1d0 100644
 --- a/addon/doxywizard/CMakeLists.txt
 +++ b/addon/doxywizard/CMakeLists.txt
-@@ -58,7 +58,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/settings.h PROPERTIES GENERA
+@@ -57,7 +57,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/settings.h PROPERTIES GENERA
  
  # generate version.cpp
  add_custom_command(
@@ -75,7 +76,7 @@ index a6f65f8d..d163aa5b 100644
      DEPENDS ${PROJECT_SOURCE_DIR}/VERSION ${PROJECT_SOURCE_DIR}/src/version.py
      OUTPUT ${GENERATED_SRC_WIZARD}/version.cpp
  )
-@@ -66,7 +66,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/version.cpp PROPERTIES GENER
+@@ -65,7 +65,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/version.cpp PROPERTIES GENER
  
  # generate configdoc.cpp
  add_custom_command(
@@ -84,7 +85,7 @@ index a6f65f8d..d163aa5b 100644
      DEPENDS  ${PROJECT_SOURCE_DIR}/src/configgen.py ${PROJECT_SOURCE_DIR}/src/config.xml
      OUTPUT ${GENERATED_SRC_WIZARD}/configdoc.cpp
  )
-@@ -75,7 +75,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/configdoc.cpp PROPERTIES GEN
+@@ -74,7 +74,7 @@ set_source_files_properties(${GENERATED_SRC_WIZARD}/configdoc.cpp PROPERTIES GEN
  set(LEX_FILES config_doxyw)
  foreach(lex_file ${LEX_FILES})
      add_custom_command(
@@ -94,10 +95,10 @@ index a6f65f8d..d163aa5b 100644
          OUTPUT  ${GENERATED_SRC_WIZARD}/${lex_file}.l.h
      )
 diff --git a/doc/CMakeLists.txt b/doc/CMakeLists.txt
-index f2d177ed..22a4d602 100644
+index ec63ceb..49a2bda 100644
 --- a/doc/CMakeLists.txt
 +++ b/doc/CMakeLists.txt
-@@ -163,7 +163,7 @@ configure_file(${PROJECT_SOURCE_DIR}/doc/doxyindexer.1      ${PROJECT_BINARY_DIR
+@@ -168,7 +168,7 @@ configure_file(${PROJECT_SOURCE_DIR}/doc/doxyindexer.1      ${PROJECT_BINARY_DIR
  
  # doc/language.doc (see tag Doxyfile:INPUT)
  add_custom_command(
@@ -106,7 +107,7 @@ index f2d177ed..22a4d602 100644
          DEPENDS ${PROJECT_SOURCE_DIR}/doc/maintainers.txt ${PROJECT_SOURCE_DIR}/doc/language.tpl ${PROJECT_BINARY_DIR}/doc/translator.py ${LANG_FILES}
          OUTPUT language.doc
          WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/doc
-@@ -172,7 +172,7 @@ set_source_files_properties(language.doc PROPERTIES GENERATED 1)
+@@ -177,7 +177,7 @@ set_source_files_properties(language.doc PROPERTIES GENERATED 1)
  
  # doc/config.doc (see tag Doxyfile:INPUT)
  add_custom_command(
@@ -115,7 +116,7 @@ index f2d177ed..22a4d602 100644
          DEPENDS ${TOP}/src/config.xml ${TOP}/src/configgen.py
          OUTPUT config.doc
          WORKING_DIRECTORY ${PROJECT_BINARY_DIR}/doc/
-@@ -223,7 +223,7 @@ add_custom_target(docs_chm
+@@ -228,7 +228,7 @@ add_custom_target(docs_chm
      COMMAND ${CMAKE_COMMAND} -E echo "    for file in files:" >> ${PROJECT_BINARY_DIR}/chm/doxygen_manual_examples_chm.py
      COMMAND ${CMAKE_COMMAND} -E echo "        if file.endswith('.html') or file.endswith('.png') or file.endswith('.css') or file.endswith('.gif'):" >> ${PROJECT_BINARY_DIR}/chm/doxygen_manual_examples_chm.py
      COMMAND ${CMAKE_COMMAND} -E echo "            print(os.path.join(root, file))" >> ${PROJECT_BINARY_DIR}/chm/doxygen_manual_examples_chm.py
@@ -125,7 +126,7 @@ index f2d177ed..22a4d602 100644
      COMMAND ${CMAKE_COMMAND} -E rename ${PROJECT_BINARY_DIR}/chm/index.chm ${PROJECT_BINARY_DIR}/chm/doxygen_manual.chm
          DEPENDS ${PROJECT_BINARY_DIR}/doc/language.doc ${PROJECT_BINARY_DIR}/doc/config.doc
 diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt
-index 194b4271..248b8076 100644
+index 194b427..248b807 100644
 --- a/examples/CMakeLists.txt
 +++ b/examples/CMakeLists.txt
 @@ -54,7 +54,7 @@ foreach (f_inp  ${BASIC_EXAMPLES})
@@ -147,7 +148,7 @@ index 194b4271..248b8076 100644
  	OUTPUT ${PROJECT_BINARY_DIR}/html/examples/diagrams/html/index.html ${PROJECT_BINARY_DIR}/latex/examples/diagrams/latex/refman_doc.tex
    )
 diff --git a/libmscgen/CMakeLists.txt b/libmscgen/CMakeLists.txt
-index 0a239008..09849e2d 100644
+index 34cf4d8..f015afc 100644
 --- a/libmscgen/CMakeLists.txt
 +++ b/libmscgen/CMakeLists.txt
 @@ -7,7 +7,7 @@ include_directories(
@@ -160,10 +161,10 @@ index 0a239008..09849e2d 100644
          OUTPUT  ${GENERATED_SRC}/${lex_file}.l.h
      )
 diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
-index 5004a957..68e803f2 100644
+index 0e0c5f7..c1d3ca5 100644
 --- a/src/CMakeLists.txt
 +++ b/src/CMakeLists.txt
-@@ -39,7 +39,7 @@ set_source_files_properties(${GENERATED_SRC}/settings.h PROPERTIES GENERATED 1)
+@@ -40,7 +40,7 @@ set_source_files_properties(${GENERATED_SRC}/settings.h PROPERTIES GENERATED 1)
  
  # configvalues.h
  add_custom_command(
@@ -172,7 +173,7 @@ index 5004a957..68e803f2 100644
      DEPENDS ${CMAKE_CURRENT_LIST_DIR}/config.xml ${CMAKE_CURRENT_LIST_DIR}/configgen.py
      OUTPUT ${GENERATED_SRC}/configvalues.h
  )
-@@ -51,7 +51,7 @@ add_custom_target(
+@@ -52,7 +52,7 @@ add_custom_target(
  
  # configvalues.cpp
  add_custom_command(
@@ -181,7 +182,7 @@ index 5004a957..68e803f2 100644
      DEPENDS ${CMAKE_CURRENT_LIST_DIR}/config.xml ${CMAKE_CURRENT_LIST_DIR}/configgen.py
      OUTPUT ${GENERATED_SRC}/configvalues.cpp
  )
-@@ -59,7 +59,7 @@ set_source_files_properties(${GENERATED_SRC}/configvalues.cpp PROPERTIES GENERAT
+@@ -60,7 +60,7 @@ set_source_files_properties(${GENERATED_SRC}/configvalues.cpp PROPERTIES GENERAT
  
  # configoptions.cpp
  add_custom_command(
@@ -190,7 +191,7 @@ index 5004a957..68e803f2 100644
      DEPENDS ${CMAKE_CURRENT_LIST_DIR}/config.xml ${CMAKE_CURRENT_LIST_DIR}/configgen.py
      OUTPUT ${GENERATED_SRC}/configoptions.cpp
  )
-@@ -94,7 +94,7 @@ endif()
+@@ -95,7 +95,7 @@ endif()
  # resources.cpp
  add_custom_command(
      COMMENT  "Generating ${GENERATED_SRC}/resources.cpp"
@@ -199,7 +200,7 @@ index 5004a957..68e803f2 100644
      DEPENDS ${RESOURCES} ${CMAKE_CURRENT_LIST_DIR}/res2cc_cmd.py
      OUTPUT ${GENERATED_SRC}/resources.cpp
  )
-@@ -124,7 +124,7 @@ foreach(lex_file ${LEX_FILES})
+@@ -126,7 +126,7 @@ foreach(lex_file ${LEX_FILES})
      set(LEX_FILES_H ${LEX_FILES_H} " " ${GENERATED_SRC}/${lex_file}.l.h CACHE INTERNAL "Stores generated files")
      set(LEX_FILES_CPP ${LEX_FILES_CPP} " " ${GENERATED_SRC}/${lex_file}.cpp CACHE INTERNAL "Stores generated files")
      add_custom_command(
@@ -209,7 +210,7 @@ index 5004a957..68e803f2 100644
          OUTPUT  ${GENERATED_SRC}/${lex_file}.l.h
      )
 diff --git a/testing/CMakeLists.txt b/testing/CMakeLists.txt
-index fd6912e9..0af1865b 100644
+index fd6912e..0af1865 100644
 --- a/testing/CMakeLists.txt
 +++ b/testing/CMakeLists.txt
 @@ -1,7 +1,7 @@
@@ -229,6 +230,3 @@ index fd6912e9..0af1865b 100644
 +		 COMMAND ${Python3_EXECUTABLE} ${PROJECT_SOURCE_DIR}/testing/runtests.py --id ${TEST_ID} --doxygen $<TARGET_FILE:doxygen> --inputdir ${PROJECT_SOURCE_DIR}/testing --outputdir ${PROJECT_BINARY_DIR}/testing
  	)
  endforeach()
--- 
-2.27.0
-
diff --git a/meta-oe/recipes-devtools/doxygen/doxygen_1.9.2.bb b/meta-oe/recipes-devtools/doxygen/doxygen_1.9.3.bb
similarity index 86%
rename from meta-oe/recipes-devtools/doxygen/doxygen_1.9.2.bb
rename to meta-oe/recipes-devtools/doxygen/doxygen_1.9.3.bb
index fc5df4c71..7070c1f2d 100644
--- a/meta-oe/recipes-devtools/doxygen/doxygen_1.9.2.bb
+++ b/meta-oe/recipes-devtools/doxygen/doxygen_1.9.3.bb
@@ -10,7 +10,7 @@ SRC_URI = "${SOURCEFORGE_MIRROR}/${BPN}/${BP}.src.tar.gz \
            file://0001-build-don-t-look-for-Iconv.patch \
 "
 SRC_URI:append:class-native = " file://doxygen-native-only-check-python3.patch"
-SRC_URI[sha256sum] = "060f254bcef48673cc7ccf542736b7455b67c110b30fdaa33512a5b09bbecee5"
+SRC_URI[sha256sum] = "f352dbc3221af7012b7b00935f2dfdc9fb67a97d43287d2f6c81c50449d254e0"
 
 inherit cmake python3native
 
-- 
2.25.1



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

* [oe] [meta-oe] [PATCH] pcsc-tools: upgrade 1.5.7 -> 1.5.8
  2022-01-07 14:27 [oe] [meta-oe] [PATCH] bats: upgrade 1.4.1 -> 1.5.0 Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2 Wang Mingyu
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] doxygen: upgrade 1.9.2 -> 1.9.3 Wang Mingyu
@ 2022-01-07 14:27 ` Wang Mingyu
  2 siblings, 0 replies; 7+ messages in thread
From: Wang Mingyu @ 2022-01-07 14:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../pcsc-tools/{pcsc-tools_1.5.7.bb => pcsc-tools_1.5.8.bb}     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-oe/recipes-support/pcsc-tools/{pcsc-tools_1.5.7.bb => pcsc-tools_1.5.8.bb} (89%)

diff --git a/meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.7.bb b/meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.8.bb
similarity index 89%
rename from meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.7.bb
rename to meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.8.bb
index 4f788f454..19654f15b 100644
--- a/meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.7.bb
+++ b/meta-oe/recipes-support/pcsc-tools/pcsc-tools_1.5.8.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://LICENCE;md5=94d55d512a9ba36caa9b7df079bae19f"
 
 SRC_URI = "git://github.com/LudovicRousseau/pcsc-tools;protocol=https;branch=master"
 
-SRCREV = "34ac207adbba0d1a951b314c1676610a1d0bba01"
+SRCREV = "53923ef8e98062c478f99e3bfcc8eb4654996c27"
 
 inherit autotools pkgconfig
 
-- 
2.25.1



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

* Re: [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
  2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2 Wang Mingyu
@ 2022-01-07 18:51   ` Khem Raj
  2022-01-10  0:16     ` wangmy
  0 siblings, 1 reply; 7+ messages in thread
From: Khem Raj @ 2022-01-07 18:51 UTC (permalink / raw)
  To: wangmy, openembedded-devel



On 1/7/22 6:27 AM, wangmy wrote:
> Changelog:
> Bugs fixed for this release <https://github.com/manatools/dnfdragora/issues/#####>
> =========
> Fixed wrong access to manatools.service module (issue #202)
> Fixed issue #189 "No line break to fit the width of the window in dnfdragora"
> 
> Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> ---
>   meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> index fdc164d56..a67bd9bcb 100644
> --- a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> +++ b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> @@ -9,8 +9,8 @@ SRC_URI = "git://github.com/manatools/dnfdragora.git;branch=master;protocol=http
>              file://0001-To-fix-error-when-do_package.patch \
>              "
>   
> -PV = "1.1.2+git${SRCPV}"
> -SRCREV = "19e123132cfd4efd860e5204261c3c228bfe80a8"
> +PV = "2.1.2"
> +SRCREV = "5cbbc07c9d015af284a424a172a379b385f05b6f"
>   
>   S = "${WORKDIR}/git"
>   
> 

please rename the recipe as well to reflect PV while you are here.

> 
> 
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#94688): https://lists.openembedded.org/g/openembedded-devel/message/94688
> Mute This Topic: https://lists.openembedded.org/mt/88261764/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] 7+ messages in thread

* RE: [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
  2022-01-07 18:51   ` Khem Raj
@ 2022-01-10  0:16     ` wangmy
  2022-01-10  1:14       ` Khem Raj
  0 siblings, 1 reply; 7+ messages in thread
From: wangmy @ 2022-01-10  0:16 UTC (permalink / raw)
  To: Khem Raj, openembedded-devel

Do you mean that I should change the name of recipe to dnfdragora_2.1.1.bb?

In addition, I'd like to ask you about the naming rules of recipe. 
Could you tell me when to use_ git.bb, and when to use_ versionnumber.bb?

  --
Best Regards
---------------------------------------------------
Wang Mingyu
Development Dept.I
Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 6 Wenzhu Road, Nanjing, 210012, China
TEL: +86+25-86630566-8568
COINS: 79988548
FAX: +86+25-83317685
MAIL: wangmy@fujitsu.com
http://www.fujitsu.com/cn/fnst/

> -----Original Message-----
> From: Khem Raj <raj.khem@gmail.com>
> Sent: Saturday, January 8, 2022 2:51 AM
> To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com>;
> openembedded-devel@lists.openembedded.org
> Subject: Re: [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
> 
> 
> 
> On 1/7/22 6:27 AM, wangmy wrote:
> > Changelog:
> > Bugs fixed for this release
> > <https://github.com/manatools/dnfdragora/issues/#####>
> > =========
> > Fixed wrong access to manatools.service module (issue #202) Fixed
> > issue #189 "No line break to fit the width of the window in dnfdragora"
> >
> > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> > ---
> >   meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb | 4 ++--
> >   1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > index fdc164d56..a67bd9bcb 100644
> > --- a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > +++ b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > @@ -9,8 +9,8 @@ SRC_URI =
> "git://github.com/manatools/dnfdragora.git;branch=master;protocol=http
> >              file://0001-To-fix-error-when-do_package.patch \
> >              "
> >
> > -PV = "1.1.2+git${SRCPV}"
> > -SRCREV = "19e123132cfd4efd860e5204261c3c228bfe80a8"
> > +PV = "2.1.2"
> > +SRCREV = "5cbbc07c9d015af284a424a172a379b385f05b6f"
> >
> >   S = "${WORKDIR}/git"
> >
> >
> 
> please rename the recipe as well to reflect PV while you are here.
> 
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#94688):
> > https://lists.openembedded.org/g/openembedded-devel/message/94688
> > Mute This Topic: https://lists.openembedded.org/mt/88261764/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] 7+ messages in thread

* Re: [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
  2022-01-10  0:16     ` wangmy
@ 2022-01-10  1:14       ` Khem Raj
  0 siblings, 0 replies; 7+ messages in thread
From: Khem Raj @ 2022-01-10  1:14 UTC (permalink / raw)
  To: wangmy; +Cc: openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 3064 bytes --]

On Sun, Jan 9, 2022 at 4:16 PM wangmy@fujitsu.com <wangmy@fujitsu.com>
wrote:

> Do you mean that I should change the name of recipe to dnfdragora_2.1.1.bb
> ?


Yes


>
> In addition, I'd like to ask you about the naming rules of recipe.
> Could you tell me when to use_ git.bb, and when to use_ versionnumber.bb?
>

When version is fixed and known then use PV otherwise if it is intermittent
version then use git

>
>   --
> Best Regards
> ---------------------------------------------------
> Wang Mingyu
> Development Dept.I
> Nanjing Fujitsu Nanda Software Tech. Co., Ltd.(FNST) No. 6 Wenzhu Road,
> Nanjing, 210012, China
> <https://www.google.com/maps/search/Wenzhu+Road,+Nanjing,+210012,+China?entry=gmail&source=g>
> TEL: +86+25-86630566-8568
> COINS: 79988548
> FAX: +86+25-83317685
> MAIL: wangmy@fujitsu.com
> http://www.fujitsu.com/cn/fnst/
>
> > -----Original Message-----
> > From: Khem Raj <raj.khem@gmail.com>
> > Sent: Saturday, January 8, 2022 2:51 AM
> > To: Wang, Mingyu/王 鸣瑜 <wangmy@fujitsu.com>;
> > openembedded-devel@lists.openembedded.org
> > Subject: Re: [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2
> >
> >
> >
> > On 1/7/22 6:27 AM, wangmy wrote:
> > > Changelog:
> > > Bugs fixed for this release
> > > <https://github.com/manatools/dnfdragora/issues/#####>
> > > =========
> > > Fixed wrong access to manatools.service module (issue #202) Fixed
> > > issue #189 "No line break to fit the width of the window in dnfdragora"
> > >
> > > Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
> > > ---
> > >   meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb | 4 ++--
> > >   1 file changed, 2 insertions(+), 2 deletions(-)
> > >
> > > diff --git a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > > b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > > index fdc164d56..a67bd9bcb 100644
> > > --- a/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > > +++ b/meta-oe/recipes-graphics/dnfdragora/dnfdragora_git.bb
> > > @@ -9,8 +9,8 @@ SRC_URI =
> > "git://github.com/manatools/dnfdragora.git;branch=master;protocol=http
> > >              file://0001-To-fix-error-when-do_package.patch \
> > >              "
> > >
> > > -PV = "1.1.2+git${SRCPV}"
> > > -SRCREV = "19e123132cfd4efd860e5204261c3c228bfe80a8"
> > > +PV = "2.1.2"
> > > +SRCREV = "5cbbc07c9d015af284a424a172a379b385f05b6f"
> > >
> > >   S = "${WORKDIR}/git"
> > >
> > >
> >
> > please rename the recipe as well to reflect PV while you are here.
> >
> > >
> > >
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > > Links: You receive all messages sent to this group.
> > > View/Reply Online (#94688):
> > > https://lists.openembedded.org/g/openembedded-devel/message/94688
> > > Mute This Topic: https://lists.openembedded.org/mt/88261764/1997914
> > > Group Owner: openembedded-devel+owner@lists.openembedded.org
> > > Unsubscribe:
> > https://lists.openembedded.org/g/openembedded-devel/unsub
> > > [raj.khem@gmail.com]
> > > -=-=-=-=-=-=-=-=-=-=-=-
> > >
>

[-- Attachment #2: Type: text/html, Size: 5927 bytes --]

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

end of thread, other threads:[~2022-01-10  1:15 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-07 14:27 [oe] [meta-oe] [PATCH] bats: upgrade 1.4.1 -> 1.5.0 Wang Mingyu
2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] dnfdragora: upgrade 1.1.2 -> 2.1.2 Wang Mingyu
2022-01-07 18:51   ` Khem Raj
2022-01-10  0:16     ` wangmy
2022-01-10  1:14       ` Khem Raj
2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] doxygen: upgrade 1.9.2 -> 1.9.3 Wang Mingyu
2022-01-07 14:27 ` [oe] [meta-oe] [PATCH] pcsc-tools: upgrade 1.5.7 -> 1.5.8 Wang Mingyu

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.