Openembedded Devel Discussions
 help / color / mirror / Atom feed
From: Khem Raj <raj.khem@gmail.com>
To: Martin Jansa <martin.jansa@gmail.com>,
	Tim Orling <timothy.t.orling@linux.intel.com>
Cc: openembedded-devel <openembedded-devel@lists.openembedded.org>
Subject: Re: [meta-oe][PATCH 2/9] libdbi-perl: fix dependencies
Date: Sat, 20 Jul 2019 19:22:41 -0700	[thread overview]
Message-ID: <910f1d32-e526-6ecc-ba4f-cf5c75461725@gmail.com> (raw)
In-Reply-To: <CA+chaQfnfvnSjEJbKoEf7gtF-FaM0rfNoRVWiJtSPcfuR+s4oQ@mail.gmail.com>


On 7/17/19 6:04 AM, Martin Jansa wrote:
> This causes libdbi-perl-native to depend on target perl again, why did you
> revert the fix from:
> http://git.openembedded.org/meta-openembedded/commit/?id=eb868d056d15a56596cbf6ed3a4b66b054f2d563
> ?


I think we should reintroduce the above patch Martin, would you be 
interested to send patch ? we need to rejig the checksum match tests on 
jenkins so

such oversight does not happen.


>
>   === Comparing signatures for task do_populate_sysroot.sigdata between
> qemux86 and qemux86copy ===
> ERROR: libdbi-perl-native different signature for task
> do_populate_sysroot.sigdata between qemux86 and qemux86copy
> NOTE: Starting bitbake server...
> NOTE: Started PRServer with DBfile: build/cache/prserv.sqlite3, IP:
> 127.0.0.1, PORT: 38307, PID: 13970
> Hash for dependent task perl/perl_5.30.0.bb.do_populate_sysroot
> changed from e3a38726fc849347a14b574ef52a59f5578632accbf70259a6ffd09fea54dc4e
> to de2eb1fa749aab50f0e99c144a875bd50025fbb6299723f2e7ad28b49bbadf78
> Unable to find matching sigdata for
> oe-core/meta/recipes-devtools/perl/perl_5.30.0.bb.do_populate_sysroot
> with hash de2eb1fa749aab50f0e99c144a875bd50025fbb6299723f2e7ad28b49bbadf78
>
> ERROR: 1 errors found in
> sstate-diff/1563367471/signatures.qemux86copy.do_populate_sysroot.sigdata.log
>
>
>
> On Fri, Jun 28, 2019 at 7:00 AM Tim Orling <timothy.t.orling@linux.intel.com>
> wrote:
>
>> * Fix RDEPENDS, drop class-target (dependencies are the same for native)
>> * Reorganize recipe to best practices
>> * Add ptest dependencies
>>
>> Signed-off-by: Tim Orling <timothy.t.orling@linux.intel.com>
>> ---
>>   .../perl/libdbi-perl_1.642.bb                 | 38 +++++++++++++++----
>>   1 file changed, 31 insertions(+), 7 deletions(-)
>>
>> diff --git a/meta-oe/recipes-devtools/perl/libdbi-perl_1.642.bb
>> b/meta-oe/recipes-devtools/perl/libdbi-perl_1.642.bb
>> index ff4a9d0610..77991bd158 100644
>> --- a/meta-oe/recipes-devtools/perl/libdbi-perl_1.642.bb
>> +++ b/meta-oe/recipes-devtools/perl/libdbi-perl_1.642.bb
>> @@ -7,13 +7,6 @@ database interface independent of the actual database
>> being used. \
>>   HOMEPAGE = "http://search.cpan.org/dist/DBI/"
>>   SECTION = "libs"
>>   LICENSE = "Artistic-1.0 | GPL-1.0+"
>> -RDEPENDS_${PN}_class-target = " \
>> -    perl-module-carp \
>> -    perl-module-exporter \
>> -    perl-module-exporter-heavy \
>> -    perl-module-dynaloader \
>> -"
>> -
>>   LIC_FILES_CHKSUM = "file://LICENSE;md5=10982c7148e0a012c0fd80534522f5c5"
>>
>>   SRC_URI = "
>> http://search.cpan.org/CPAN/authors/id/T/TI/TIMB/DBI-${PV}.tar.gz"
>> @@ -34,4 +27,35 @@ do_install_prepend() {
>>          rm -rf ${B}/t/z*.t
>>   }
>>
>> +RDEPENDS_${PN} = " \
>> +    perl-module-carp \
>> +    perl-module-exporter \
>> +    perl-module-exporter-heavy \
>> +    perl-module-dynaloader \
>> +    perl-module-io-dir \
>> +    perl-module-scalar-util \
>> +    perl-module-universal \
>> +"
>> +
>> +RDEPENDS_${PN}-ptest = " \
>> +    ${PN} \
>> +    perl-module-b \
>> +    perl-module-benchmark \
>> +    perl-module-cwd \
>> +    perl-module-data-dumper \
>> +    perl-module-encode \
>> +    perl-module-encode-byte \
>> +    perl-module-encode-encoding \
>> +    perl-module-file-copy \
>> +    perl-module-file-path \
>> +    perl-module-lib \
>> +    perl-module-perlio \
>> +    perl-module-perlio-scalar \
>> +    perl-module-perlio-via \
>> +    perl-module-sdbm-file \
>> +    perl-module-storable \
>> +    perl-module-test-more \
>> +    perl-module-utf8 \
>> +    "
>> +
>>   BBCLASSEXTEND = "native"
>> --
>> 2.20.1
>>
>> --
>> _______________________________________________
>> Openembedded-devel mailing list
>> Openembedded-devel@lists.openembedded.org
>> http://lists.openembedded.org/mailman/listinfo/openembedded-devel
>>


  reply	other threads:[~2019-07-21  2:22 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-06-28  4:52 [meta-oe][meta-perl][PATCH 0/9] Perl module recipe upgrades Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 1/9] libencode-perl: upgrade 2.94 -> 3.01; enable ptest Tim Orling
2019-06-28  4:52 ` [meta-oe][PATCH 2/9] libdbi-perl: fix dependencies Tim Orling
2019-07-17 13:04   ` Martin Jansa
2019-07-21  2:22     ` Khem Raj [this message]
2019-08-12  4:39       ` Martin Jansa
2019-08-12  4:44         ` Khem Raj
2019-08-12 17:42           ` Martin Jansa
2019-06-28  4:52 ` [meta-perl][PATCH 3/9] libtest-nowarnings-perl: add recipe for 1.04 Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 4/9] libdbd-sqlite-perl: upgrade 1.54 -> 1.62; enable ptest Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 5/9] libsub-uplevel-perl: add recipe for 0.36 Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 6/9] libtest-warn-perl: " Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 7/9] libcgi-perl: upgrade 4.43 -> 4.44 Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 8/9] libnet-ldap-perl: upgrade 0.65 -> 0.66; enable ptest Tim Orling
2019-06-28  4:52 ` [meta-perl][PATCH 9/9] libunicode-linebreak-perl: upgrade 2017.004 -> 2019.001; " Tim Orling

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=910f1d32-e526-6ecc-ba4f-cf5c75461725@gmail.com \
    --to=raj.khem@gmail.com \
    --cc=martin.jansa@gmail.com \
    --cc=openembedded-devel@lists.openembedded.org \
    --cc=timothy.t.orling@linux.intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox