From bf3453c3ea3858a857d44c5cbc4f4a48069652da Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Fri, 27 Apr 2007 02:06:22 +0000 Subject: perl 5.8.8/cpan: Fix the installation paths for cpan modules. The installed files for perl modules built using cpan will end up in different places depending on which version of perl they are being built with. Modules that explicitly set various FILES_ values were using the paths that are only valid for the older versions of perl. Calculate and set the correct path in cpan.bbclass and use that in the FILES_ variables so that it'll be correct for all versions of perl. --- packages/perl/libparams-validate-perl_0.86.bb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index 8b1f9583ed..c102b6df1b 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r7" +PR = "r8" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" @@ -9,8 +9,8 @@ S = "${WORKDIR}/Params-Validate-${PV}" inherit cpan -FILES_${PN} = "${libdir}/perl5/*/*/auto/Params/Validate/* \ - ${libdir}/perl5/*/*/auto/Params/Validate/.packlist \ - ${libdir}/perl5/*/*/Params \ - ${libdir}/perl5/*/*/Attribute" -FILES_${PN}-dbg += "${libdir}/perl5/*/*/auto/Params/Validate/.debug" +FILES_${PN} = "${PERLLIBDIRS}/auto/Params/Validate/* \ + ${PERLLIBDIRS}/auto/Params/Validate/.packlist \ + ${PERLLIBDIRS}/Params \ + ${PERLLIBDIRS}/Attribute" +FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/Params/Validate/.debug" -- cgit v1.2.3 From 25bc38faefa2262bfaebc5fa7a5ff6c915c4583b Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Wed, 2 May 2007 02:18:29 +0000 Subject: perl modules: Bump PR on cpan modules effected by the recent cpan.bbclass changes. --- packages/perl/libparams-validate-perl_0.86.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index c102b6df1b..006d9602e7 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r8" +PR = "r9" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" -- cgit v1.2.3 From bafa9b3ec1bd91cd710d587a31b58db4c1e2a503 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Fri, 4 May 2007 02:09:42 +0000 Subject: perl: Add the .debug directories that to FILES_${PN}-dbg in the cpan-base.bbclass, and then update the cpan modules to no longer manually specify this. Also remove references to the new removed .packlist files. --- packages/perl/libparams-validate-perl_0.86.bb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index 006d9602e7..bc42b47a33 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r9" +PR = "r10" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" @@ -10,7 +10,5 @@ S = "${WORKDIR}/Params-Validate-${PV}" inherit cpan FILES_${PN} = "${PERLLIBDIRS}/auto/Params/Validate/* \ - ${PERLLIBDIRS}/auto/Params/Validate/.packlist \ ${PERLLIBDIRS}/Params \ ${PERLLIBDIRS}/Attribute" -FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/Params/Validate/.debug" -- cgit v1.2.3 From 83afd0d6983be7ab795e66f49cb8a9e7e0d9faf6 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Tue, 8 May 2007 01:08:49 +0000 Subject: perl modules: Bump PR since the directories they install into have changed with the new version of perl. --- packages/perl/libparams-validate-perl_0.86.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index bc42b47a33..f3a11d2d60 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r10" +PR = "r11" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" -- cgit v1.2.3 From 87fd6c090376dd2a5e54177eaa41bd931007e617 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Tue, 29 May 2007 23:52:07 +0000 Subject: perl: Bump PR on modules that include shared libraries since these may have been effected by the revent CFLAGS changes to perl 5.8.8. --- packages/perl/libparams-validate-perl_0.86.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index f3a11d2d60..db1a7bd812 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r11" +PR = "r12" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" -- cgit v1.2.3 From 1e8d1070cb56fbddd5fdae1ff5b94de635b6da23 Mon Sep 17 00:00:00 2001 From: Jamie Lenehan Date: Wed, 30 May 2007 07:01:46 +0000 Subject: perl 5.8.8: Bump PR on modules to force the -native versions to be rebuilt to take into account the new staging location of perl. This will also force a rebuild of libxml-parser-perl which should now work. --- packages/perl/libparams-validate-perl_0.86.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/perl/libparams-validate-perl_0.86.bb') diff --git a/packages/perl/libparams-validate-perl_0.86.bb b/packages/perl/libparams-validate-perl_0.86.bb index db1a7bd812..52c23333e9 100644 --- a/packages/perl/libparams-validate-perl_0.86.bb +++ b/packages/perl/libparams-validate-perl_0.86.bb @@ -1,7 +1,7 @@ DESCRIPTION = "Params::Validate - Validate method/function parameters" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r12" +PR = "r13" SRC_URI = "http://search.cpan.org/CPAN/authors/id/D/DR/DROLSKY/Params-Validate-${PV}.tar.gz" -- cgit v1.2.3