From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from 93-97-173-237.zone5.bethere.co.uk ([93.97.173.237] helo=tim.rpsys.net) by linuxtogo.org with esmtp (Exim 4.72) (envelope-from ) id 1TwiPv-0001Te-05 for openembedded-core@lists.openembedded.org; Sun, 20 Jan 2013 01:05:46 +0100 Received: from localhost (localhost [127.0.0.1]) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id r0JNoGiQ004770 for ; Sat, 19 Jan 2013 23:50:17 GMT Received: from tim.rpsys.net ([127.0.0.1]) by localhost (tim.rpsys.net [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 04722-02 for ; Sat, 19 Jan 2013 23:50:13 +0000 (GMT) Received: from [192.168.3.10] ([192.168.3.10]) (authenticated bits=0) by tim.rpsys.net (8.13.6/8.13.8) with ESMTP id r0JNoAfn004764 (version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO) for ; Sat, 19 Jan 2013 23:50:11 GMT Message-ID: <1358639410.14265.8.camel@ted> From: Richard Purdie To: openembedded-core Date: Sat, 19 Jan 2013 23:50:10 +0000 X-Mailer: Evolution 3.2.3-0ubuntu6 Mime-Version: 1.0 X-Virus-Scanned: amavisd-new at rpsys.net Subject: [PATCH] perl-rprovides: Fix perl-module-config anf perl-module-build providers X-BeenThere: openembedded-core@lists.openembedded.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: Patches and discussions about the oe-core layer List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Jan 2013 00:05:53 -0000 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit The rearrangement of various file contents left these empty modules which don't get packaged and hence lead to image creation errors on anything using them. This patch ensures the dependencies are attached to the packages which contain the config files or the build module infrastructure as appropriate. It also resolves some confusion over whether the name is perl-module-build or perl-module-module-build, the latter being the autogenerated dependency which previously couldn't be found. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/perl/perl-rprovides.inc b/meta/recipes-devtools/perl/perl-rprovides.inc index 637c993..3cfcb7d 100644 --- a/meta/recipes-devtools/perl/perl-rprovides.inc +++ b/meta/recipes-devtools/perl/perl-rprovides.inc @@ -5,6 +5,7 @@ RPROVIDES_perl-module-b-asmdata = "perl-module-${TARGET_SYS}-b-asmdata" RPROVIDES_perl-module-b-assembler = "perl-module-${TARGET_SYS}-b-assembler" RPROVIDES_perl-module-b-bblock = "perl-module-${TARGET_SYS}-b-bblock" +RPROVIDES_perl-module-build += "perl-module-module-build" RPROVIDES_perl-module-b-bytecode = "perl-module-${TARGET_SYS}-b-bytecode" RPROVIDES_perl-module-b-cc = "perl-module-${TARGET_SYS}-b-cc" RPROVIDES_perl-module-b-concise = "perl-module-${TARGET_SYS}-b-concise" @@ -17,8 +18,11 @@ RPROVIDES_perl-module-b-stackobj = "perl-module-${TARGET_SYS}-b-stackobj" RPROVIDES_perl-module-b-stash = "perl-module-${TARGET_SYS}-b-stash" RPROVIDES_perl-module-b-terse = "perl-module-${TARGET_SYS}-b-terse" RPROVIDES_perl-module-b-xref = "perl-module-${TARGET_SYS}-b-xref" -RPROVIDES_perl-module-config = "perl-module-${TARGET_SYS}-config" -RPROVIDES_perl-module-config-heavy = "perl-module-${TARGET_SYS}-config-heavy" +RPROVIDES_perl-lib += " \ + perl-module-config \ + perl-module-config-heavy \ + perl-module-${TARGET_SYS}-config \ + perl-module-${TARGET_SYS}-config-heavy" RPROVIDES_perl-module-encode-alias = "perl-module-${TARGET_SYS}-encode-alias" RPROVIDES_perl-module-encode-cjkconstants = "perl-module-${TARGET_SYS}-encode-cjkconstants" RPROVIDES_perl-module-encode-config = "perl-module-${TARGET_SYS}-encode-config"