summaryrefslogtreecommitdiff
path: root/packages/perl
AgeCommit message (Collapse)AuthorFiles
2007-04-21perl: Move the list of rprovides for backward compatiblity into a seperateJamie Lenehan3
.inc file and include it in the two recipes that need the list.
2007-04-21perl: Add 5.8.8 and use DEFAULT_PREFERENCE to disable it until moreJamie Lenehan16
testing is done. Main differences from the 5.8.7 recipe are: * Always use gcc to link. Same arch's require this, while others can happily use ld. Use gcc for everything. * Fix threading issues by enabling threading in both perl-native and perl. In fact make the configurations almost identical. * No per ARCH configuration, just 32/64/le/be configs. This should stop configurations differing between arch's which made fixing things 5.8.7 difficult. Also means new ARCH's should work without any changes. * Fix up the way miniperl is handled so it shouldn't be the cause of problems for people anymore. * Stop perl-modules depending on perl-dbg, perl-pod, perl-dev etc. * In theory should work for MACHINE="native" now. Only tested for an sh4/glibc target built on an x86_64 host so far. A lot more testing and more cleanups are needed before this is ready to be enabled by default. NOTE: You must build the matching version of perl-native before attempting to build perl (that applies for any version).
2007-04-07perl.inc: use ${TARGET_SYS}, otherwise people with TARGET_VENDOR set can't ↵Koen Kooi1
build perl
2007-04-05perl: Move the do_configure from perl.inc into perl_5.8.4.bb since it isJamie Lenehan2
only really useful for this version of perl the way it's written.
2007-04-05perl 5.8.7: Simplify the addition of patches to support gcc for linking andJamie Lenehan1
using PIC for compiling shared libraries.
2007-04-05perl: Rearrange the patches/files a bit. Move the 5.8.4 specificJamie Lenehan10
patches out of the common directory and only specify common files in the SRC_URI in perl.inc, move the others to the version specific .bb's.
2007-04-03perl: Fix perl build for sh3/sh4. The recent change to support powerpc wasJamie Lenehan1
wiping out the options that were set for sh3/sh4 - we only need to init the OPTIONS once.
2007-04-01perl-native: bump PRKoen Kooi1
2007-04-01packages/perl/perl_5.8.7.bb: A set of patches to make perl usable on powerpc ↵Stelios Koroneos3
targets. Thanks to Jamie Lenahan for the help
2007-03-31perl: Add support for armeb-linux-gnueabi (trivial addition) - now ↵Rod Whitby1
configures and compiles, but still doesn't install.
2007-03-14packages/perl/perl-5.8.7/config.sh-powerpc-linux: Fix typoStelios Koroneos1
2007-03-12packages/perl/perl-5.8.7/config.sh-powerpc-linux: Don't use share library ↵Stelios Koroneos1
for powerpc targets
2007-01-11perl: cleaned config.sh-x86-64 from paths of my buildMarcin Juszkiewicz1
2006-12-31remove extra whitespace at end-of-line in about 900 bb files.Rolf Leggewie3
2006-12-13perl: addition of powerpc-linux config.sh file and bitbake hooks to use Andrew Wilcox2
it.
2006-11-29Introduce STAGING_BINDIR_CROSS and STAGING_BINDIR_NATIVE as discussed on the ↵Richard Purdie2
mailing list. There should be no functionality changes yet.
2006-11-25perl: Add -f option to rm, fixing read only file issuesRichard Purdie2
2006-11-20perl: Replace the require in the native modules with a simpler version thatJamie Lenehan31
names the actual module instead of using python. Should help with the current parse errors that is apparently occurring with new versions of bitbake. The python version was helpful when messing with lots of these things but serves no purpose now.
2006-11-20another set of parse errors fixingMarcin Juszkiewicz1
2006-11-18Fix parse error by adding one or two "'" or '"' removing whitespace behind \...Holger Freyther1
2006-11-16perl: add support for x86_64 - close #1591Marcin Juszkiewicz2
2006-11-02libintl-perl: added do_compile() function needed for crosscompilationMartin Dietze1
- the function has obviously been forgotten to add for version 1.16
2006-10-22perl: fix issues with debug packages, from PokyKoen Kooi3
2006-10-10Remove MAINTAINER fields from recipes, add MAINTAINER file to replace them.Koen Kooi37
see email thread at http://lists.openembedded.org/pipermail/openembedded-devel/2006-October/000523.html for details
2006-10-04perl modules: Exclude debugging information from the modules that areJamie Lenehan5
currently including it.
2006-10-04perl modules: Update the SRC_URI on all the modules to use PV to refer toJamie Lenehan24
the version so upgrades are easier.
2006-10-04perl: Add a new set of perl modules related to testing.Jamie Lenehan15
2006-10-04libalgorithm-diff-perl: Fix up RDEPENDS, there was one " too many and oneJamie Lenehan1
dependency listed twice.
2006-10-04perl: For native perl module packages determine the actual non-nativeJamie Lenehan26
package name to require from the name of the native package. This makes all native files identical which makes adding new ones easier.
2006-10-04perl: Add the perl Text::Diff module and the Algorithm::Diff module itJamie Lenehan4
requires.
2006-10-03perl: Add Perl6::Junction perl module. This provides support for theJamie Lenehan1
perl6 style junction operators in perl5.
2006-10-03perl: Add the Math::BigInt::GMP cpan module. This provides a faster, gmpJamie Lenehan1
based, implementation of Math::BigInt.
2006-10-03libnet-ip-perl: Net::IP required Math::BigInt to function, so add toJamie Lenehan1
RDEPENDS.
2006-10-03perl 5.8.7: Manually add some dependencies for the math-bigintJamie Lenehan1
modules which are not picked up by the script which was used to generate the automatic dependencies. They way they are used makes it difficult to automatically detect that these are needed.
2006-10-03perl 5.8.7: Enable threading in perl for sh4 to fix modules thatJamie Lenehan1
check for threading availability. Since perl-native is used to compile modules, and perl-native is built with threading enabled, any modules that check for threading think that it's available. However when you attempt to use the module on the target it complains about missing symbols (those related to threading). The two options to fix this are to enable threading in perl or to disable it in perl-native. I've tested the later and will use that since I have some modules that required threading. This change is still needed for all the other targets.
2006-10-03perl: Another sh3/sh4 shared library fix. Modules build built withJamie Lenehan5
cpan.bbclass were being linked using ld instead of gcc, which often breaks on sh. Override the LD settings so any cpan modules that compile c/c++ code use gcc to link. Bump the PR on the effected modules.
2006-10-02perl 5.8.7: Use grep -I to ignore binary files instead of looking atJamie Lenehan1
the output message from grep. The output message could change depending on the LOCALE which would break the current test. Make it DEPEND on grep-native to ensure we get the gnu version of grep which is needed for -I to work. As per bug #1439.
2006-09-29perl: Don't try and patch up references to /usr/include in binary files, asJamie Lenehan1
per #1439, so that configure doesn't fail if you happen to end up with this string in the perl-native binary.
2006-09-29perl: More shared library fixes for sh3/sh4, this time for the sharedJamie Lenehan2
libraries used by standard perl modules. This was picking up LD from OE which as the linking when we need to use gcc to link. Override LD when calling oe_make to force the use of gcc to link.
2006-09-28perl: Update cpan_build to automatically add libmodule-build-perl-native toJamie Lenehan1
DEPENDS when building anything apart from libmodule-build-perl or libmodule-build-perl-native. When building itself it uses itself to provide the libmodule-build-perl code, for anything else it needs to have been built and installed. Remove the explicit depends from the modules that use it.
2006-09-28perl: Update the LICENSE on the modules to indicate that they are availableJamie Lenehan21
under either the Artistic license or the GPL, and not just under the Artistic license.
2006-09-28perl: Add the 1.1.6 version of libintl-perl. The 1.11 versions which areJamie Lenehan2
currently in OE are no longer available on cpan.
2006-09-28perl: Add the native version of the Local::gettext module.Jamie Lenehan1
2006-09-28perl: Add the perl Locale::gettext module, which is used for gettextJamie Lenehan1
style message handling.
2006-09-28perl: Update cpan.bbclass to set CCFLAGS to CFLAGS so that the compilerJamie Lenehan4
settings for the current OE build are used instead of the made up values in the perl config (which were manually generated since we are cross compiling). Remove this from each of the perl modules that was manually setting this.
2006-09-28perl: Add the perl IP address manipulation module Net::IP.Jamie Lenehan2
2006-09-27perl: Add the perl logging modules Log::Dispatch and Log::Log4perl.Jamie Lenehan4
2006-09-26perl: Add the libmodule-build perl module. This is required for anythingJamie Lenehan2
using the new Build.PL build system, *expect* for libmodule-build itself which can bootstrap itself.
2006-09-26perl: Add libio-zlib perl module which I forget to add in the previousJamie Lenehan1
commit.
2006-09-26perl: Add some additional perl modules. This are the optional dependenciesJamie Lenehan13
of libmodule-build, the new Build.PL based perl install system.