summaryrefslogtreecommitdiff
path: root/classes/base.bbclass
AgeCommit message (Collapse)AuthorFiles
2007-04-02classes/base.bbclass: place shasum-native as the first package to buildHolger Freyther1
classes/base.bbclass: Make sure shasum-native does not depend on quilt classes/sanity.bbclass: No need to require sha256sum as we use oe_sha256sum packages/shasum: Change the name, make the -native version not have any deps
2007-04-01base.bbclass, sanity.bbclass: use sha256sum instead of shasum -a256Philipp Zabel1
2007-04-01classes/base.bbclass: ↵Holger Freyther1
[ftp://ftp.trolltech.com/qt/source/qtopia-core-4.3.0beta.tar.gz] is good enough src_uri as section/groups are unique enough as well. Most of the time (almost always) scoping PN (or PN+PV) is not necessary and in this case the SRC_URI is good enough. Richard thank you for saying the obvious
2007-03-31classes/base.bbclass: Make the checksum code work and test it with file-nativeHolger Freyther1
conf/checksums.ini: Provide an example on how this can be used
2007-03-31classes/base.bbclass: Add checksum.py code to verify md5/sha256 sums on do_fetchHolger Freyther1
This code uses the checksum.py from contrib/qa/checksum to verify md5sum and sha256 on do_fetch task. This code would even allow to checksum certain local patches.
2007-02-27base.bbclass: Add base_less_or_equal(): perform comparison fo ↵Paul Sokolovsky1
integer/floating point values for <=.
2007-02-25add base_path_joinPhil Blundell1
2007-01-01base.bbclass: Allow base_contains to take an array of values to check for ↵Richard Purdie1
(from poky)
2006-12-12many files: KERNELORG_MIRROR variable createdMarcin Juszkiewicz1
2006-11-25base.bbclass: Try to ensure the MACHINE variable isn't exported (needs ↵Richard Purdie1
bitbake support to complete)
2006-11-21base.bbclass: added support for creating source mirrorMarcin Juszkiewicz1
- if SOURCE_MIRROR_FETCH variable is set then we ignore COMPATIBLE_MACHINE/COMPATIBLE_HOST settings to be able to fetch all recipes. - Fetching sources can be done by setting any MACHINE/DISTRO combination and SOURCE_MIRROR_FETCH = "1" in configuration. Then one invocation of BitBake should do all fetching: bitbake --cmd fetchall --continue world - scripts to manage source mirror will get added into contrib/
2006-11-21base.bbclass: added lsof mirrors (main server does not allow connections ↵Marcin Juszkiewicz1
without revdns)
2006-11-20base.bbclass: whitespace cleanup, remove unneeded stage addtask callRichard Purdie1
2006-11-20classes: Clean up anonymous function whitespaceRichard Purdie1
2006-11-18Micro-Optimisation decreasing initial parsing time by 10%Holger Freyther1
python () {} and python __anonymous () {} are as the same says functions without a name. They get executed when the main bb file is completely parsed. This is used to set information like FILESDIR. This is a python method so it gets evaled which means compiled and executed a lot of times. By moving the code of the anonfunc into a proper method this is only compiled once. The result is is the 10% speed up when parsing. Reindent anonfuncs and new defs without tabs and four spaces
2006-11-16base.bbclass: Add missing fetchall dummy functionRichard Purdie1
2006-11-16base.bbclass: added two mirrors for info-zip.orgMarcin Juszkiewicz1
2006-11-16base.bbclass: Fix duplicate task execution in fetchallRichard Purdie1
2006-11-14site infrastructure changes: Allow more than one file per target so common ↵Richard Purdie1
files can be created. Add a new class to handle this. Based on the work of Jamie Lenehan, with changes from me. This commit creates a common x86 file and the arm configs are merged but much work still remains.
2006-10-28base.bbclass, package.bbclass: don destrucively set RDEPENDS and ↵Koen Kooi1
RRECOMMENDS, from Poky * poky rev 823: 'package.bbclass: depchains: don't -destructively- set the pkg's RRECOMMENDS.' * poky rev 824: 'base.bbclass: depchains: don't -destructively- set the pkg's RRECOMMENDS.'
2006-10-20base.bbclass: Remove some pointless presumably dead codeRichard Purdie1
2006-10-20package.bbclass: Split into two tasks, one which prepares the packages and ↵Richard Purdie1
then package_write which actually generates the packages. The two stage approach allows us to avoid circular dependency issues from classes like debian.bbclass. As the data being emitted into pkgdata/ changed, you need to either wipe tmp or rerun the do_package tasks (wipe the do_package stamps). Everything will repackage anyway due to the new task.
2006-10-20base/package.bbclass: Clean up and document things a bit more. Should be no ↵Richard Purdie1
functional changes (from poky)
2006-10-20base.bbclass: remove oesources.orgKoen Kooi1
2006-10-16base.bbclass: Add fetchall task to fetch all sources for all the given task ↵Richard Purdie1
and all its dependencies (requires bitbake trunk)
2006-10-12base.bbclass: make showing display revision work with the mtn 0.30 workspace ↵Michael Lauer1
format
2006-09-26base.bbclass: handle tar.Z archives - close #1433Tom Walsh1
2006-09-17base.bbclass: attempt to fix the case where do_install wants to run from ↵Koen Kooi1
inside ${D}
2006-09-17base.bbclass: add ${D} to do_install[dirs] to fix some issues introduced by ↵Koen Kooi1
the task reordering
2006-09-15Restructure the subpackage metadata to facilitate use of that metadata by ↵Chris Larson1
other packages.
2006-09-12base.bbclass(oe_libinstall): Handle shared libs basenames of which werePaul Sokolovsky1
suffixed with version properly. * Sometimes soname of a shlib is overriden to contain extra version. If it's build by libtool, .la still has basename w/o suffix. This fix recognizes such case, and handles shlib installation properly (via libtool). * Example of this is smpeg_0.4.4+0.4.5cvs20040311 which builds libsmpeg-0.4, while still being linked as -lsmpeg. Fixes #1389.
2006-09-05Add 'rebuild' task to base.bbclass, as it's quite useful and simple to add.Chris Larson1
2006-08-28Merge from poky:Chris Larson1
Rework the way patches are handled. There are now two abstract base classes, initialized in patch.bbclass. One for patchset operations on a directory, and another for patch failure resolution. Currently includes 'patch' and 'quilt' concrete PatchSet classes, and a 'user' resolver class, which simply drops you into a shell in the source tree to fix the rejects.
2006-08-27base.bbclass: Add base_contains and base_both_containg - useful functions ↵Richard Purdie1
for the new task-machine code (from poky)
2006-08-26base.bbclass: Change FILESPATH handling to allow it to be appended/prepended ↵Richard Purdie1
to. Should be backwards compatible.
2006-08-25classes: run do_package before do_stage so we can populate staging with ↵Koen Kooi1
package if we want
2006-08-23base.bbclass: Remove empty messagesRichard Purdie1
2006-08-22base.bbclass: remove nostamp for fetchKoen Kooi1
* this will force a full rebuild, so have some coffee + cookies ready
2006-08-20classes: Add task dependencies expressions, as required for the new ↵Richard Purdie1
multithreading version of bitbake. Also, set BB_DEFAULT_TASK to specify the default task (build) rather than hardcode into bitbake.
2006-08-05classes/base.bbclass: Make find call portableHolger Freyther1
Make the find invocation portable (BSD) by specifying '.' as the to be searched directory. The error on libtool-native was: find: illegal option -- n find: illegal option -- a find: illegal option -- m find: illegal option -- e
2006-07-28base.bbclass: bugfix in oe_unpack_fileChris Larson1
* Fix an issue with file:// urls in SRC_URI which reside in WORKDIR. With this issue fixed, patches within tarballs can be successfully applied to ${S}.
2006-07-22classes/base.bbclass: adapt to monotone 0.27Koen Kooi1
2006-06-12base.bbclass: added gnutls mirrorsMarcin Juszkiewicz1
2006-05-31base.bbclass: Fix COMPATIBLE_MACHINE to cope when MACHINE isn't setRichard Purdie1
2006-05-27openembedded/classes/base.bbclass: Add CTAN mirrorHolger Freyther1
Add CTAN mirror. A German/Berlin, Japan and an Australian one.
2006-05-27base.bbclass: Move manifest code into manifest.bbclass and fix a bug in it ↵Richard Purdie1
(import bb.manifest)
2006-05-24classes/base.bbclass: Add GnuPG mirrorHolger Freyther1
Add two european and one north american mirror for gnupg.
2006-05-21base.bbclass: fix all patches being classified as "outdated" when SRCDATE > DATEMichael Lauer1
2006-05-20base.bbclass: add support for 'min/max' date for patchesMarcin Juszkiewicz1
- SRC_URI = "file//something.patch;patch=1;mindate=20050312;maxdate=20060302 means that patch should be applied if SRCDATE > 20050312 and SRCDATE < 20060302
2006-05-09base.bbclass: remove bogus debug out. thanks koen for spotting.Michael Lauer1