this adds hg (Mercurial) SCM checkout support, very similar to the current 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
This commit is contained in:
parent
c37665895b
commit
a35b2385ae
1 changed files with 20 additions and 2 deletions
|
@ -15,16 +15,18 @@ $(strip \
|
||||||
$(if $(filter git://%,$(1)),git, \
|
$(if $(filter git://%,$(1)),git, \
|
||||||
$(if $(filter svn://%,$(1)),svn, \
|
$(if $(filter svn://%,$(1)),svn, \
|
||||||
$(if $(filter cvs://%,$(1)),cvs, \
|
$(if $(filter cvs://%,$(1)),cvs, \
|
||||||
|
$(if $(filter hg://%,$(1)),hg, \
|
||||||
unknown \
|
unknown \
|
||||||
) \
|
) \
|
||||||
) \
|
) \
|
||||||
) \
|
) \
|
||||||
) \
|
) \
|
||||||
) \
|
) \
|
||||||
|
) \
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
# code for creating tarballs from cvs/svn/git checkouts - useful for mirror support
|
# code for creating tarballs from cvs/svn/git/hg checkouts - useful for mirror support
|
||||||
dl_pack/bz2=$(TAR) cfj $(1) $(2)
|
dl_pack/bz2=$(TAR) cfj $(1) $(2)
|
||||||
dl_pack/gz=$(TAR) cfz $(1) $(2)
|
dl_pack/gz=$(TAR) cfz $(1) $(2)
|
||||||
dl_pack/unknown=echo "ERROR: Unknown pack format for file $(1)"; false
|
dl_pack/unknown=echo "ERROR: Unknown pack format for file $(1)"; false
|
||||||
|
@ -91,9 +93,25 @@ define DownloadMethod/git
|
||||||
)
|
)
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
define DownloadMethod/hg
|
||||||
|
$(call wrap_mirror, \
|
||||||
|
echo "Checking out files from the hg repository..."; \
|
||||||
|
mkdir -p $(TMP_DIR)/dl && \
|
||||||
|
cd $(TMP_DIR)/dl && \
|
||||||
|
rm -rf $(SUBDIR) && \
|
||||||
|
[ \! -d $(SUBDIR) ] && \
|
||||||
|
hg clone -r $(VERSION) $(URL) $(SUBDIR) && \
|
||||||
|
find $(SUBDIR) -name .hg | xargs rm -rf && \
|
||||||
|
echo "Packing checkout..." && \
|
||||||
|
$(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
|
||||||
|
mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/; \
|
||||||
|
)
|
||||||
|
endef
|
||||||
|
|
||||||
Validate/cvs=VERSION SUBDIR
|
Validate/cvs=VERSION SUBDIR
|
||||||
Validate/svn=VERSION SUBDIR
|
Validate/svn=VERSION SUBDIR
|
||||||
Validate/git=VERSION SUBDIR
|
Validate/git=VERSION SUBDIR
|
||||||
|
Validate/hg=VERSION SUBDIR
|
||||||
|
|
||||||
define Download/Defaults
|
define Download/Defaults
|
||||||
URL:=
|
URL:=
|
||||||
|
|
Loading…
Reference in a new issue