summaryrefslogtreecommitdiffstats
path: root/include/download.mk
Commit message (Collapse)AuthorAgeFilesLines
* download.mk: use HTTPS for git.lede-project.orgJo-Philipp Wich2016-06-011-1/+1
| | | | | | | | Some Git versions have issues following the HTTP->HTTPS redirect and since the keyring package is fetched from this host, switching to HTTPS is a sensible choice anyway. Signed-off-by: Jo-Philipp Wich <jo@mein.io>
* include: add lede git server urlJohn Crispin2016-04-291-0/+1
| | | | Signed-off-by: John Crispin <john@phrozen.org>
* download: add @GITHUB download facilityÁlvaro Fernández Rojas2016-04-031-0/+1
| | | | | | Define a new alias (@GITHUB) for downloading raw files from github repos. Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
* download: add @GITHUB download facilityJohn Crispin2016-04-091-1/+1
| | | | | | | | Define a new alias (@GITHUB) for downloading raw github repository files Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> SVN-Revision: 49138
* buildroot: improve git submodule handling for packagesFelix Fietkau2016-02-291-2/+3
| | | | | | | | | | | | | | | | | | | Move the `--recursive` switch from `git clone` to `git submodule` so that submodules are cloned for upstream branches where the PKG_SOURCE_VERSION commit-ish has a different .gitmodules configuration than the repository default. This is, for example, required when the master branch for a source package does not use submodules, but its topic branch for OpenWRT does. This changes the buildroot dependency from git-1.6.2 to git 1.7.12.2, which was released September 2012. Signed-off-by: Darik Horn <dajhorn@vanadac.com> Signed-off-by: Karl Palsson <karlp@tweak.net.au> SVN-Revision: 48830
* download.mk: fix packed checkout mirroring supportJo-Philipp Wich2016-02-171-1/+1
| | | | | | | | | | | Changeset r48416 broke the downloading of mirrored, packed scm checkouts. Fix this by removing the "@" sign in front of the download command which is now executed as part of a larger shell command under flock. Signed-off-by: Jo-Philipp Wich <jow@openwrt.org> SVN-Revision: 48733
* build: download.mk: bugfix download.pl argument call orderFelix Fietkau2016-01-211-1/+1
| | | | | | | | | Change wrong download.pl argument call order. See download.pl argument list. Signed-off-by: Florian Eckert <Eckert.Florian@googlemail.com> SVN-Revision: 48427
* build: add locking for downloads (fixes race conditions with multiple variants)Felix Fietkau2016-01-201-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48416
* build: add @APACHE download facilityFelix Fietkau2016-01-171-1/+1
| | | | | | | | | | The Apache Software Foundation offers diverse download mirros. For packaging Apache software a new alias @APACHE is defined. Signed-off-by: Heinrich Schuchardt <xypron.glpk@gmx.de> SVN-Revision: 48270
* build: add a variable pointing to the main openwrt git repositories (useful ↵Felix Fietkau2016-01-041-0/+2
| | | | | | | | if we want to support using a mirror later) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 48117
* build: add support for choosing a different url filename part than the ↵Felix Fietkau2015-11-221-2/+3
| | | | | | | | output file Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 47591
* include/download.mk: Add download mirrors for tools from GNU Savannah (bug ↵John Crispin2014-10-081-1/+1
| | | | | | | | | | | #15184) I defined a new download method @SAVANNAH in include/download.mk and scripts/download.pl, and converted quilt and qemu to use that method. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi> SVN-Revision: 42840
* build: add support for packing version control downloads with xzFelix Fietkau2014-04-101-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 40446
* Incorrect checkout of git submodulesJo-Philipp Wich2013-10-101-1/+1
| | | | | | | | | | | When checking out git packages, buildroot doesn't seem to track the revisions correctly of any submodules referenced by that project. As a result, the submodule stays at whatever revision was referenced by the head of the master branch. Running a 'git submodule update' after the checkout fixes this problem. Signed-off-by: Owen Kirby <osk@exegin.com> SVN-Revision: 38359
* include: download.mk: correct tar argument order when packing checkoutsJo-Philipp Wich2012-12-021-2/+2
| | | | | | | GNU TAR v1.26 will fail with "no such file or directory" errors when the output file does not immediately follow the -f switch. SVN-Revision: 34460
* download.mk: refuse to download mirror tarballs from packages using version ↵Felix Fietkau2012-06-061-1/+1
| | | | | | control if no mirror md5sum was provided SVN-Revision: 32079
* Enable recursive download of git sources.Jens Muecke2012-03-171-2/+2
| | | | SVN-Revision: 30967
* add support for md5sum checks for mirrored tarballs of packages with version ↵Felix Fietkau2011-03-211-1/+2
| | | | | | control source urls SVN-Revision: 26260
* download.mk: properly quote download urlsFelix Fietkau2011-03-131-1/+1
| | | | SVN-Revision: 26129
* download.mk: support https:// downloadsJo-Philipp Wich2010-12-181-1/+1
| | | | SVN-Revision: 24688
* add support for darcs repositoriesFlorian Fainelli2010-10-241-1/+18
| | | | | | | | | | | | | | | | | | | | This patch adds support for darcs repositories (as sources of packages). It does *not* add support for darcs:// URI scheme because such a scheme do not exist (AFAIK). You must therefore manually set PKG_SOURCE_PROTO to darcs in your Makefile (and use a regular http:// URI). You also have to set PKG_SOURCE_VERSION to a string matching a tag contained in the repository, and PKG_SOURCE_SUBDIR to something sensible ($(PACKAGE_NAME)-$(PACKAGE_SOURCE_VERSION) for instance). Same rationale as for the previous patch ("useless to most, but small and straightforward so why no add it?). Best regards, Signed-off-by: Gabriel Kerneis <kerneis@pps.jussieu.fr> SVN-Revision: 23615
* download.mk: fix bzr download methodNicolas Thill2010-03-291-2/+2
| | | | SVN-Revision: 20582
* the svn fallback code added in r20322 is evaluated with each make invocation ↵Jo-Philipp Wich2010-03-231-7/+3
| | | | | | and produces a lot of spurious "svn: broken pipe" error - replace it with a more efficient version SVN-Revision: 20377
* fix svn download with older svn client versionsFlorian Fainelli2010-03-201-1/+7
| | | | SVN-Revision: 20322
* accept unknown server certificates by default on svn downloadFlorian Fainelli2010-03-191-1/+1
| | | | | | | Some packages sources need to be checked out from server with unknown certificates, silently accept by default in order not to stop builds, thanks rhk. SVN-Revision: 20299
* Updated post r19769, integrates the missing dl_method bzr hunk from #6370, ↵Travis Kemen2010-03-141-12/+16
| | | | | | uses the export subcommand for the vcs' that provide a usable version (hg archive doesn't work remotely, git archive isn't enabled on github), from #6700 SVN-Revision: 20222
* this patch adds support for bzr in include/download.mk, and fixes whitespace.Travis Kemen2010-02-201-18/+33
| | | | | | -Raphael SVN-Revision: 19769
* allow download urls using the file:// schema (#6480)Jo-Philipp Wich2010-01-131-1/+1
| | | | SVN-Revision: 19120
* fix download reverse dependsFelix Fietkau2009-03-171-2/+4
| | | | SVN-Revision: 14907
* build system refactoring in preparation for allowing packages to do ↵Felix Fietkau2009-02-221-1/+1
| | | | | | host-build steps SVN-Revision: 14610
* make cvs checkouts more flexible. packages must now specify either -r <tag> ↵Felix Fietkau2009-02-191-1/+1
| | | | | | or -D <date> in their source revision specification. previously date based checkouts were not supported SVN-Revision: 14566
* Add @GNOME download source.Lars-Peter Clausen2008-09-011-1/+1
| | | | SVN-Revision: 12469
* this adds hg (Mercurial) SCM checkout support, very similar to the current ↵Florian Fainelli2008-08-291-2/+20
| | | | | | | | git or svn checkout support; potential use is for building em28xx-new driver (USB hybrid DVB-T device) which lives in a Mercurial repo. (#3229) Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net> SVN-Revision: 12433
* fixes cvs download, signed-off by Bruno RandolfJohn Crispin2008-08-271-1/+1
| | | | SVN-Revision: 12401
* replace the deprecated git-* command calls with git *Felix Fietkau2008-08-241-2/+2
| | | | SVN-Revision: 12379
* allow packages to forcibly disable the svn/git mirror downloading attempt by ↵Felix Fietkau2008-07-311-1/+2
| | | | | | setting PKG_SOURCE_MIRROR:=0 (#3815) SVN-Revision: 12034
* SVN checkouts should be made non-interactive, so that https repositories ↵Florian Fainelli2008-07-121-1/+1
| | | | | | with auto-signed repositories can be checked out without user interaction SVN-Revision: 11785
* Fix typoFlorian Fainelli2008-01-021-0/+1
| | | | SVN-Revision: 10084
* Add CVS download method #2947Florian Fainelli2008-01-021-2/+20
| | | | SVN-Revision: 10083
* prefer http downloads over svn/git checkouts, remove git dependencyFelix Fietkau2007-11-161-3/+1
| | | | SVN-Revision: 9567
* add git checkout supportFelix Fietkau2007-11-161-2/+18
| | | | SVN-Revision: 9553
* use $(TAR) instead of tarFelix Fietkau2007-09-291-2/+2
| | | | SVN-Revision: 9058
* Refactor downloading code into download.mk Support multiple file downloads ↵Felix Fietkau2007-09-291-0/+90
Support svn downloads SVN-Revision: 9057