* [PATCH 0/3] meta: fixes for prserver
@ 2015-10-20 9:25 Robert Yang
2015-10-20 9:25 ` [PATCH 1/3] prserv.bbclass: remove it since it is null Robert Yang
` (2 more replies)
0 siblings, 3 replies; 8+ messages in thread
From: Robert Yang @ 2015-10-20 9:25 UTC (permalink / raw)
To: openembedded-core
The following changes since commit 13282223b07787a92c251f89251e8a49a0e4e3eb:
oeqa/runtime: Fix setUp and tearDown methods (2015-10-19 17:55:40 +0100)
are available in the git repository at:
git://git.openembedded.org/openembedded-core-contrib rbt/prserv
http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=rbt/prserv
Robert Yang (3):
prserv.bbclass: remove it since it is null
prexport.bbclass: avoid export for native and crosssdk
bitbake-prserv-tool: check file name
meta/classes/package.bbclass | 1 -
meta/classes/prexport.bbclass | 5 +++--
meta/classes/prserv.bbclass | 2 --
scripts/bitbake-prserv-tool | 9 +++++++++
4 files changed, 12 insertions(+), 5 deletions(-)
delete mode 100644 meta/classes/prserv.bbclass
--
1.7.9.5
^ permalink raw reply [flat|nested] 8+ messages in thread* [PATCH 1/3] prserv.bbclass: remove it since it is null 2015-10-20 9:25 [PATCH 0/3] meta: fixes for prserver Robert Yang @ 2015-10-20 9:25 ` Robert Yang 2015-10-20 9:25 ` [PATCH 2/3] prexport.bbclass: avoid export for native and crosssdk Robert Yang 2015-10-20 9:25 ` [PATCH 3/3] bitbake-prserv-tool: check file name Robert Yang 2 siblings, 0 replies; 8+ messages in thread From: Robert Yang @ 2015-10-20 9:25 UTC (permalink / raw) To: openembedded-core Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- meta/classes/package.bbclass | 1 - meta/classes/prserv.bbclass | 2 -- 2 files changed, 3 deletions(-) delete mode 100644 meta/classes/prserv.bbclass diff --git a/meta/classes/package.bbclass b/meta/classes/package.bbclass index 09230b5..a86b680 100644 --- a/meta/classes/package.bbclass +++ b/meta/classes/package.bbclass @@ -39,7 +39,6 @@ # packaging steps inherit packagedata -inherit prserv inherit chrpath # Need the package_qa_handle_error() in insane.bbclass diff --git a/meta/classes/prserv.bbclass b/meta/classes/prserv.bbclass deleted file mode 100644 index 139597f..0000000 --- a/meta/classes/prserv.bbclass +++ /dev/null @@ -1,2 +0,0 @@ - - -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 2/3] prexport.bbclass: avoid export for native and crosssdk 2015-10-20 9:25 [PATCH 0/3] meta: fixes for prserver Robert Yang 2015-10-20 9:25 ` [PATCH 1/3] prserv.bbclass: remove it since it is null Robert Yang @ 2015-10-20 9:25 ` Robert Yang 2015-10-20 9:25 ` [PATCH 3/3] bitbake-prserv-tool: check file name Robert Yang 2 siblings, 0 replies; 8+ messages in thread From: Robert Yang @ 2015-10-20 9:25 UTC (permalink / raw) To: openembedded-core * The prservice is only used by do_package, the native or crosssdk doesn't have do_package. * Change WARN to NOTE when no AUTOPR found, the prexport_handler() checks all the parsed recipes, but a lot of them may not be built, for example, the lower version or broken recipes. So change WARN to NOTE to not confuse user. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- meta/classes/prexport.bbclass | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta/classes/prexport.bbclass b/meta/classes/prexport.bbclass index 5a1cb33..809ec10 100644 --- a/meta/classes/prexport.bbclass +++ b/meta/classes/prexport.bbclass @@ -8,7 +8,8 @@ PRSERV_DUMPFILE ??= "${PRSERV_DUMPDIR}/prserv.inc" python prexport_handler () { import bb.event - if not e.data: + if not e.data or bb.data.inherits_class('native', e.data) or \ + bb.data.inherits_class('crosssdk', e.data): return if isinstance(e, bb.event.RecipeParsed): @@ -21,7 +22,7 @@ python prexport_handler () { bb.fatal("prexport_handler: export failed!") (metainfo, datainfo) = retval if not datainfo: - bb.warn("prexport_handler: No AUTOPR values found for %s" % ver) + bb.note("prexport_handler: No AUTOPR values found for %s" % ver) return oe.prservice.prserv_export_tofile(e.data, None, datainfo, False) if 'AUTOINC' in ver: -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* [PATCH 3/3] bitbake-prserv-tool: check file name 2015-10-20 9:25 [PATCH 0/3] meta: fixes for prserver Robert Yang 2015-10-20 9:25 ` [PATCH 1/3] prserv.bbclass: remove it since it is null Robert Yang 2015-10-20 9:25 ` [PATCH 2/3] prexport.bbclass: avoid export for native and crosssdk Robert Yang @ 2015-10-20 9:25 ` Robert Yang 2015-11-09 10:33 ` Burton, Ross 2 siblings, 1 reply; 8+ messages in thread From: Robert Yang @ 2015-10-20 9:25 UTC (permalink / raw) To: openembedded-core Fixed: $ bitbake-prserv-tool import /tmp/1 File "/path/to/lib/bb/parse/__init__.py", line 114, in handle(fn='/tmp/1', data=<bb.data_smart.DataSmart object at 0x2369bd0>, include=True): return h['handle'](fn, data, include) > raise ParseError("not a BitBake file", fn) ParseError: ParseError in /tmp/1: not a BitBake file But 1.conf works well, its help also shows "<file.conf>", so check the filename and print proper error message. Signed-off-by: Robert Yang <liezhi.yang@windriver.com> --- scripts/bitbake-prserv-tool | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/scripts/bitbake-prserv-tool b/scripts/bitbake-prserv-tool index 28c2416..dcfd7f2 100755 --- a/scripts/bitbake-prserv-tool +++ b/scripts/bitbake-prserv-tool @@ -86,6 +86,15 @@ do_migrate_localcount () [ $# -eq 0 ] && help && exit 1 +case $2 in +*.conf) + ;; +*) + echo ERROR: $2 must end with .conf! + exit 1 + ;; +esac + case $1 in export) do_export $2 -- 1.7.9.5 ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] bitbake-prserv-tool: check file name 2015-10-20 9:25 ` [PATCH 3/3] bitbake-prserv-tool: check file name Robert Yang @ 2015-11-09 10:33 ` Burton, Ross 2015-11-09 12:43 ` Robert Yang 0 siblings, 1 reply; 8+ messages in thread From: Burton, Ross @ 2015-11-09 10:33 UTC (permalink / raw) To: Robert Yang; +Cc: OE-core [-- Attachment #1: Type: text/plain, Size: 2847 bytes --] On 20 October 2015 at 10:25, Robert Yang <liezhi.yang@windriver.com> wrote: > Fixed: > $ bitbake-prserv-tool import /tmp/1 > File "/path/to/lib/bb/parse/__init__.py", line 114, in > handle(fn='/tmp/1', data=<bb.data_smart.DataSmart object at 0x2369bd0>, > include=True): > return h['handle'](fn, data, include) > > raise ParseError("not a BitBake file", fn) > > ParseError: ParseError in /tmp/1: not a BitBake file > > But 1.conf works well, its help also shows "<file.conf>", so check the > filename and print proper error message. > This breaks the selftest: ====================================================================== FAIL: test_import_export_override_db (oeqa.selftest.prservice.BitbakePrTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/utils/decorators.py", line 106, in wrapped_f return func(*args, **kwargs) File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", line 97, in test_import_export_override_db self.run_test_pr_export_import('m4', replace_current_db=False) File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", line 74, in run_test_pr_export_import self.assertEqual(export_result.status, 0, msg="PR Service database export failed: %s" % export_result.output) AssertionError: 1 != 0 : PR Service database export failed: ERROR: /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/build/export.inc must end with .conf! ====================================================================== FAIL: test_import_export_replace_db (oeqa.selftest.prservice.BitbakePrTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/utils/decorators.py", line 106, in wrapped_f return func(*args, **kwargs) File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", line 93, in test_import_export_replace_db self.run_test_pr_export_import('m4') File "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", line 74, in run_test_pr_export_import self.assertEqual(export_result.status, 0, msg="PR Service database export failed: %s" % export_result.output) AssertionError: 1 != 0 : PR Service database export failed: ERROR: /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/build/export.inc must end with .conf! Ross [-- Attachment #2: Type: text/html, Size: 3542 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] bitbake-prserv-tool: check file name 2015-11-09 10:33 ` Burton, Ross @ 2015-11-09 12:43 ` Robert Yang 2015-11-09 14:33 ` Burton, Ross 0 siblings, 1 reply; 8+ messages in thread From: Robert Yang @ 2015-11-09 12:43 UTC (permalink / raw) To: Burton, Ross; +Cc: OE-core On 11/09/2015 06:33 PM, Burton, Ross wrote: > > On 20 October 2015 at 10:25, Robert Yang <liezhi.yang@windriver.com > <mailto:liezhi.yang@windriver.com>> wrote: > > Fixed: > $ bitbake-prserv-tool import /tmp/1 > File "/path/to/lib/bb/parse/__init__.py", line 114, in > handle(fn='/tmp/1', data=<bb.data_smart.DataSmart object at 0x2369bd0>, > include=True): > return h['handle'](fn, data, include) > > raise ParseError("not a BitBake file", fn) > > ParseError: ParseError in /tmp/1: not a BitBake file > > But 1.conf works well, its help also shows "<file.conf>", so check the > filename and print proper error message. > > > This breaks the selftest: > > ====================================================================== > FAIL: test_import_export_override_db (oeqa.selftest.prservice.BitbakePrTests) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/utils/decorators.py", > line 106, in wrapped_f > return func(*args, **kwargs) > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", > line 97, in test_import_export_override_db > self.run_test_pr_export_import('m4', replace_current_db=False) > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", > line 74, in run_test_pr_export_import > self.assertEqual(export_result.status, 0, msg="PR Service database export > failed: %s" % export_result.output) > AssertionError: 1 != 0 : PR Service database export failed: ERROR: > /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/build/export.inc > must end with .conf! > > ====================================================================== > FAIL: test_import_export_replace_db (oeqa.selftest.prservice.BitbakePrTests) > ---------------------------------------------------------------------- > Traceback (most recent call last): > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/utils/decorators.py", > line 106, in wrapped_f > return func(*args, **kwargs) > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", > line 93, in test_import_export_replace_db > self.run_test_pr_export_import('m4') > File > "/home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/meta/lib/oeqa/selftest/prservice.py", > line 74, in run_test_pr_export_import > self.assertEqual(export_result.status, 0, msg="PR Service database export > failed: %s" % export_result.output) > AssertionError: 1 != 0 : PR Service database export failed: ERROR: > /home/pokybuild/yocto-autobuilder/yocto-worker/nightly-oe-selftest/build/build/export.inc > must end with .conf! Maybe selftest should use export.conf rather than export.inc ? // Robert > > Ross ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] bitbake-prserv-tool: check file name 2015-11-09 12:43 ` Robert Yang @ 2015-11-09 14:33 ` Burton, Ross 2015-11-10 6:03 ` Robert Yang 0 siblings, 1 reply; 8+ messages in thread From: Burton, Ross @ 2015-11-09 14:33 UTC (permalink / raw) To: Robert Yang; +Cc: OE-core [-- Attachment #1: Type: text/plain, Size: 349 bytes --] On 9 November 2015 at 12:43, Robert Yang <liezhi.yang@windriver.com> wrote: > Maybe selftest should use export.conf rather than export.inc ? > It's a configuration file that is typically included, so I'd say .inc is perfectly reasonable. Better error reporting in the Python would be useful so it doesn't just throw an exception. Ross [-- Attachment #2: Type: text/html, Size: 772 bytes --] ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH 3/3] bitbake-prserv-tool: check file name 2015-11-09 14:33 ` Burton, Ross @ 2015-11-10 6:03 ` Robert Yang 0 siblings, 0 replies; 8+ messages in thread From: Robert Yang @ 2015-11-10 6:03 UTC (permalink / raw) To: Burton, Ross; +Cc: OE-core On 11/09/2015 10:33 PM, Burton, Ross wrote: > > On 9 November 2015 at 12:43, Robert Yang <liezhi.yang@windriver.com > <mailto:liezhi.yang@windriver.com>> wrote: > > Maybe selftest should use export.conf rather than export.inc ? > > > It's a configuration file that is typically included, so I'd say .inc is > perfectly reasonable. Better error reporting in the Python would be useful so > it doesn't just throw an exception. Thanks, I will update it to both check .inc and .conf. // Robert > > Ross ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2015-11-10 6:03 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2015-10-20 9:25 [PATCH 0/3] meta: fixes for prserver Robert Yang 2015-10-20 9:25 ` [PATCH 1/3] prserv.bbclass: remove it since it is null Robert Yang 2015-10-20 9:25 ` [PATCH 2/3] prexport.bbclass: avoid export for native and crosssdk Robert Yang 2015-10-20 9:25 ` [PATCH 3/3] bitbake-prserv-tool: check file name Robert Yang 2015-11-09 10:33 ` Burton, Ross 2015-11-09 12:43 ` Robert Yang 2015-11-09 14:33 ` Burton, Ross 2015-11-10 6:03 ` Robert Yang
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox