aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bb/fetch
AgeCommit message (Collapse)Author
2007-08-25svn.py: Handle paths in svn fetcher module parameterRichard Purdie
2007-08-18[regression] Make SRCDATE/CVSDATE for the fetchers work again. This ↵Holger Hans Peter Freyther
regressed in r653 PN should always be set for files as it comes from bitbake.conf but as we are close to a release make the least intrusive change and copy SRCDATE and CVSDATE to the above line as well. I think the second return is dead code and we should remove it.
2007-08-18fetch/__init__.py: Don't create .lock files for local filesRichard Purdie
2007-08-16Fix syntax and indentionHolger Hans Peter Freyther
2007-08-16svn.py: Handle case where SRCREV=NoneRichard Purdie
2007-08-16git.py: Fix reference to tagRichard Purdie
2007-08-16git.py: Handle tag=master correctly (from poky)Richard Purdie
2007-08-15fetch/__init__.py: Add locking so multiple fetch processes don't compete for ↵Richard Purdie
the same file
2007-08-12fetch/local.py: Fix local fetcher's localpath return values (remove parameters)Richard Purdie
2007-08-11fetch/__init__.py: Add SRCREV_FORMAT supportRichard Purdie
2007-08-11fetch/__init__.py: Add BB_SRCREV_POLICY variable (clear or cache) to control ↵Richard Purdie
SRCREV cache
2007-08-11fetch/__init__.py: Fix double newline output from fetcher commands (from poky)Richard Purdie
2007-08-11fetch/__init__.py: Reinstate global urldata cache instead of using the ↵Richard Purdie
persistent store for performance reasons
2007-08-03git.py: Fix tag problemRichard Purdie
2007-08-02fetcher updates: Add SRCREV support to git, fix svn SRCREV lockdown support, ↵Richard Purdie
clean up fetcher force options, finish sortable_revision implementation
2007-07-31Work around fetcher recursion problems for nowRichard Purdie
2007-07-31Various fetcher bugfixesRichard Purdie
2007-07-31fetch/svn.py: use LC_ALL=C LANG=C (LC_ALL= LANG= doesn't work on all ↵Michael 'Mickey' Lauer
distributions)
2007-07-31fetch/__init__.py: fix error in error reporting statement ;)Michael 'Mickey' Lauer
2007-07-30svn fetcher: Add SRCREV supportRichard Purdie
2007-07-28Convert fetcher to use persist_data to remove global urldata variable and ↵Richard Purdie
cleanup
2007-07-26fetch/__init__.py: Start to fill out FetchDataRichard Purdie
2007-07-25git.py: Add latest_revision functionRichard Purdie
2007-07-25svn.py: Add latest_revision and sortable_revison functionsRichard Purdie
2007-07-25fetchers: Add runfetchcmd function to handle command executionRichard Purdie
2007-07-25svn.py: Fix #2624 and #2644 by changing svn layout in SVNDIRRichard Purdie
2007-06-30svn fetcher: Create common 'build svn command' functionRichard Purdie
2007-01-23fetch/svn.py: use username/password when provided in SRC_URI - close OE#1781Marcin Juszkiewicz
Subversion will still ask if self-signed SSL certificate will be used.
2007-01-06Make cvs_port a string and an empty one as well. This should fix the ↵Holger Hans Peter Freyther
concatination error koen was seeing and describing in #1753
2007-01-06CVS Fetcher: Added support for non-default port (needed or rxvt-unicode in OE).Marcin Juszkiewicz
2007-01-04drop shebangs from lib/bb scriptsMarcin Juszkiewicz
- those scripts are not called by hand by bitbake users and most of package linting tools (lintian/Debian, rpmlint/Fedora) complain about not executable scripts. - if someone want to run them by hand then he will be able to do it with calling 'python SCRIPT'
2007-01-02svn fetcher: Don't have a date in the filename for specific svn revisionsRichard Purdie
2006-12-08Add proper GPLv2 headers to all BitBake filesHolger Hans Peter Freyther
BitBake trunk is now GPLv2 only, no mix of MIT,FreeBSD License is left. Update GPL headers to point to the correct address of the FSF Update the list of authors. Uli Luckas, Seb Frankengul and Tim Amsell contributed to the sourcecode as well
2006-12-06fetch/__init__.py: Have getSrcDate process an optional srcdate parameter ↵Richard Purdie
within the url
2006-11-25fetch/__init__.py: Store urldata by 'FILE' to solve url contamination ↵Richard Purdie
between .bb files
2006-11-22git.py: Fix typo (from koen)Richard Purdie
2006-11-19svn fetcher: added my (C) as this is code which I wrote in 2004 (pre-bitbake ↵Marcin Juszkiewicz
times) http://oe-devel.bkbits.net:8080/oe.deprecated/cset%401.780
2006-11-14git.py: Fix conversion errorRichard Purdie
2006-11-13Add perforce fetcher from Jordan Crouse, suitably modified for recent ↵Richard Purdie
bitbake changes
2006-11-12svk.py: Remove unused variablesRichard Purdie
2006-11-12Fetchers: More cleanups, error handling fixes, fix SRCDATE handling to ↵Richard Purdie
account for PN 'overrides'
2006-11-12Fetchers: Add forcefetch method for handling of SRCDATE now or tag=master. ↵Richard Purdie
Move md5 code from wget.py into the fetchre core. Start generating md5 stamps for all downloads including scm tarballs. When a download is accessed, touch the md5 file to allow easy creation of source mirrors
2006-11-12fetchers: Only call createCopy and update_data after checking if the ↵Richard Purdie
download already exists. Refactor parameters to wget's fetch_uri and make md5 a global urldata option.
2006-11-12svn.py: Fix a references to dateRichard Purdie
2006-11-12svn.py: Fix a reference to parmRichard Purdie
2006-11-12fetchers: Cleanup more variablesRichard Purdie
2006-11-12fetchers: Remove check_for_tarball() in favour of try_mirror directlyRichard Purdie
2006-11-12fetchers: Create a urldata object which is passed between the different url ↵Richard Purdie
methods. Start to use this to remove duplicate code and duplicate function execution, simplifying the fetchers
2006-11-12fetchers: Refactor interating through urls into the fetcher core (preparing ↵Richard Purdie
for common md5/tarball stash code)
2006-11-11Add ssh fetcher written by kergoth (from poky)Richard Purdie