summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2009-07-22Add .gitignore, ignore *.pyc.1.3Chris Larson
Signed-off-by: Chris Larson <clarson@mvista.com>
2006-02-09bitbake/lib/bb:1.3.3Holger Hans Peter Freyther
Use 1.3.3.0 instead - I felt like that..
2006-02-09bitbake/bin/bitbake:Holger Hans Peter Freyther
Bump the version to 1.3.3 lib/bb/__init__.py: Bump the version to 1.3.2.2
2006-02-09bitbake/ChangeLog:Holger Hans Peter Freyther
Add the recent changes to the ChangeLog including -ph5's STAMP fix -Richard's RDEPENDS reverse tracking
2006-02-09bitbake/bin/bitbake:Holger Hans Peter Freyther
Stop hardcoding the stamps directory directly but use the STAMP variable instead. The Package Version, Name and Release is already included in the STAMP variable. This patch was created by Phillip Zabel (pH5). Thank you
2006-01-31bitbake/bin/bitbake:Holger Hans Peter Freyther
It could be that we have no buildable providers and eligible is None. Do not error in this case. This was spotted by mickeyl on a world build (with a lot of failures) and fixed by Richard Purdie again.
2006-01-23bitbake/lib/bb/parse/parse_py/ConfHandler.py:Holger Hans Peter Freyther
if we included the required file without an error we parsed that line and may return. This oversight was spotted by Richard Purdie. Thanks again.
2006-01-19bitbake/bin/bitbake:Holger Hans Peter Freyther
Patch by Richard Purdie to fix the selection of a preferred R provider
2006-01-19bitbake/bin/bitbake:Holger Hans Peter Freyther
Patch by Richard Purdie to fix the recognition of circular dependencies.
2006-01-12bitbake/lib/bb/utils.py:Holger Hans Peter Freyther
-add explode_deps method to return a list of package names from a string (RDEPENDS) Patch courtsey Richard Purdie (rpurdie@openedhand.com) bitbake/bin/bitbake: -major overhaul on dependency tracking and improvement to the previous commit. Build Runtime Depends and Runtime Recommendations at the same time as the package is built. Patch courtsey Richard Purdie (rpurdie@openedhand.com)
2006-01-12bitbake/lib/bb/shell.py:Holger Hans Peter Freyther
-Patch by ph5 to call the build method with the right amount of parameters.
2006-01-08bitbake/lib/bb/fetch/wget.py:Holger Hans Peter Freyther
-Do not error out if there is no md5sum key in the parameter map
2006-01-08bitbake/bin/bitbake:Holger Hans Peter Freyther
Build a reverse hash for PACKAGES, so runtimes dependencies can be resolved. E.g. which bb file is needed to get glibc-locale-de build. Patch by Richard Prudie of zaurus kernel and openedhand.com fame. Thanks!
2006-01-07bitbake/lib/bb/fetch:Holger Hans Peter Freyther
-Make the wget fetcher use md5sum parameter associated with a URL. -In a bitbake file for use with OpenEmbedded SRC_URI="http://www.froglogic.de;md5sum=ABCDEF" will now work.
2006-01-05bitbake/doc/manual:Holger Hans Peter Freyther
-Mention the new require keyword
2006-01-05bitbake/:Holger Hans Peter Freyther
Update the ChangeLog to specially mention the contributions done by openedhand.com employees and the bugfixes they have done.
2006-01-05bitbake/lib/bb/fetch:Holger Hans Peter Freyther
Add a getSRCDate static method to the Fetcher Baseclass to extract the SRCDATE with fallbacks to CVSDATE and DATE Switch over users of CVSDATE to this new method.
2006-01-05bitbake/lib/bb/parse:Holger Hans Peter Freyther
-Implement the 'require' keyword in bitbake. The semantic inherits the semantic of include. It only differs in the way missing files are handled. Require will raise a ParseError when a 'required' file could not be found. -We add a new keyword and scan for it -We change the include method to carry an additional parameter
2005-12-29bitbake/lib/bb/fetch/svn.py:Holger Hans Peter Freyther
Apply patch courtsey Richard for #554 to include the path in the filename of the tar.gz snapshot
2005-12-29bitbake/lib/bb/fetch/svn.py:Holger Hans Peter Freyther
Apply patch courtsey Chris at openhand.com to make the svn fetcher honor the CVSDATE/DATE when fetching source.
2005-12-18bitbake/bb/fetch:Holger Hans Peter Freyther
Patch courtsey RP for #438. Move the fetchers into a separate module to ease the writing of new fetchers and to separate the individual implementations. bitbake/MANIFEST: added the new files bitbake/setup.py: added the fetch module
2005-12-15bin/bitbake:Holger Hans Peter Freyther
patch by pHilipp Zabel on #531. The variable was initialisied with one name and used with other names. I don't know if this lead to any exceptions but it is better this way.
2005-11-03bitbake/bin/bitbakeHolger Hans Peter Freyther
Patch for #436 to fix CVSDATE = "xxx" CVSDATE_somepackage = "yyy" PREFERRED_VERSION_somepackage = "zzz-${CVSDATE}" results in "zzz-xxx", not the expected and preferred "zzz-yyy". This is due to PN not being in OVERRIDES at this stage of bitbake operation. applied RP's patch from http://bugs.openembedded.org/attachment.cgi?id=365&action=view thanks RP
2005-10-24BitBake MD5 SUM:Holger Hans Peter Freyther
-Attempt at verifying the MD5 SUM after the fetch and fail if the one specified does not match the one calculated. -Simplify the code writing the md5sum
2005-10-21BitBake Configuration Parser:Holger Hans Peter Freyther
-say what file could not be opened instead of simply saying file not found.
2005-09-08parser: add function to update the mtime for one file, courtesy Justin PatrinMichael 'Mickey' Lauer
parser: move import bb and import os out of the commands (import in a function that's called often has a performance penalty) lib: increase revision shell: add 'reparse' and 'fileReparse' commands, courtesy Justin Patrin
2005-08-09bitbake/lib/bb/parse/parse_py/BBHandler.py:Holger Hans Peter Freyther
-Patch by pHilipp Zabel to allow dots in the function names. This fixes bug #139. It seems right to have dots in the packagename
2005-08-04bitbake/lib/bb/data_smart.py:Holger Hans Peter Freyther
-Do not write the global configuration file into each cached file. On unpickling reattach a current configuration file. This is based on the work of proti http://www.frankengul.org/~seb/cow/cow8a.patch and was adopted to the current data_smart instance. CVSDATE, BUILDSTART and similiar should be always current again
2005-08-04bitbake/lib/bb/data.py:Holger Hans Peter Freyther
-Pass the configuration to the persistent data instance
2005-08-04bitbake/bin/bitbake:Holger Hans Peter Freyther
-Pass a configuration instance to pkgdata bitbake/lib/bb/data.py: -take an optional configuration for pkgdata to prepare merging the '[pickle,unpickle]_prep' protis older cow work.
2005-07-30bitbake/bin/bitbake:Holger Hans Peter Freyther
-use gmtime instead of localtime for the BUILDSTART variable
2005-07-30Update the lib version to 1.3.2 as wellHolger Hans Peter Freyther
2005-07-30bitbake/ChangeLog:Holger Hans Peter Freyther
-Update the ChangeLog in preparation of the bitbake 1.3.2 release
2005-07-30bitbake/doc/manual/usermanual.xml:Holger Hans Peter Freyther
-Update the result of bitbake --help -Add note of the removal of bbread and its replacement with bitbake -e
2005-07-30bitbake/manual/usermanual.xml:Holger Hans Peter Freyther
-Provide an example for writing an event handler
2005-07-30bitbake/manual/usermanual.xml:Holger Hans Peter Freyther
-Update 1 to True to catch up with python 2.2 ;)
2005-07-30bitbake/manual/usermanual.xml:Holger Hans Peter Freyther
-Add Documentation for the .= and =. operators we introduce with Bitbake 1.3.2.
2005-07-30bitbake/bin/bitdoc:Holger Hans Peter Freyther
-Sort the groups (I had not expected to still see this on my disk)
2005-07-27add .= and =. operators, as requested by HolgerPhil Blundell
2005-07-26bitbake/bin/bitbake:Holger Hans Peter Freyther
-Inject a BUILDSTART variable into each parsed file
2005-07-21bitbake/lib/bb/fetch.py:Holger Hans Peter Freyther
-Prepare the Wget fetcher to soon check the MD5SUMs in many different ways.
2005-07-21bitbake/lib/bb/fetch.py:Holger Hans Peter Freyther
-Remove decodeurl comment/testcase. We will readd to the right place to be a proper testcase.
2005-07-21bitbake/lib/bb/fetch.py:Holger Hans Peter Freyther
-Create a MD5SumException. We will throw it when the sums do not match.
2005-07-21bitbake/parse/parse_py/ConfHandler.pyHolger Hans Peter Freyther
-ParseError was unknown to ConfHandler since the moving of the directories. Import ParseError into ConfHandler
2005-07-19update configuration data before entering the shell. patch courtesy Proti - ↵Michael 'Mickey' Lauer
thanks.
2005-07-12bitbake/setup.py:Holger Hans Peter Freyther
-Unmess the result of parser reorginisation even more. Introduce parse_py to distutils.
2005-07-11Sorry for the inconvience and add the missing fileHolger Hans Peter Freyther
I wonder what would happen if I only commit after getting enough donations for a file... Currently it defaults to the python implementation
2005-07-10Getting closer...Holger Hans Peter Freyther
2005-07-10More things done on the Bitbake C parser:Holger Hans Peter Freyther
-Implement token_t and switch the grammar actions to the new class -Start with the lex_t as well -Start with implementing the high level python side.
2005-07-10Start with the excellent lexer and lemon Grammar fromHolger Hans Peter Freyther
Marc Singer and turn it into a C module (after pybison was a total failure). Lexer Changes: Do not allow unquoted R_VALUE Grammar Changes: FILES_${PN} () { } T_VARIABLE is a legal start of a procedure