parent
48b1f3645b
commit
eff65775c4
1 changed files with 20 additions and 2 deletions
|
@ -14,7 +14,8 @@ $(strip \
|
|||
$(if $(filter @GNU/% @KERNEL/% @SF/% ftp://% http://%,$(1)),default, \
|
||||
$(if $(filter git://%,$(1)),git, \
|
||||
$(if $(filter svn://%,$(1)),svn, \
|
||||
unknown \
|
||||
$(if $(filter cvs://%,$(1)),cvs, \
|
||||
unknown \
|
||||
) \
|
||||
) \
|
||||
) \
|
||||
|
@ -22,7 +23,7 @@ $(strip \
|
|||
)
|
||||
endef
|
||||
|
||||
# code for creating tarballs from svn/git checkouts - useful for mirror support
|
||||
# code for creating tarballs from cvs/svn/git checkouts - useful for mirror support
|
||||
dl_pack/bz2=$(TAR) cfj $(1) $(2)
|
||||
dl_pack/gz=$(TAR) cfz $(1) $(2)
|
||||
dl_pack/unknown=echo "ERROR: Unknown pack format for file $(1)"; false
|
||||
|
@ -42,6 +43,22 @@ define wrap_mirror
|
|||
@$(SCRIPT_DIR)/download.pl "$(DL_DIR)" "$(FILE)" "x" || ( $(1) )
|
||||
endef
|
||||
|
||||
define DownloadMethod/cvs
|
||||
$(call wrap_mirror, \
|
||||
echo "Checking out files from the cvs repository..."; \
|
||||
mkdir -p $(TMP_DIR)/dl && \
|
||||
cd $(TMP_DIR)/dl && \
|
||||
rm -rf $(SUBDIR) && \
|
||||
[ \! -d $(SUBDIR) ] && \
|
||||
cvs co -r$(VERSION) $(URL) $(SUBDIR) && \
|
||||
find $(SUBDIR) -name CVS | xargs rm -rf && \
|
||||
echo "Packing checkout..." && \
|
||||
$(call dl_pack,$(TMP_DIR)/dl/$(FILE),$(SUBDIR)) && \
|
||||
mv $(TMP_DIR)/dl/$(FILE) $(DL_DIR)/; \
|
||||
)
|
||||
endef
|
||||
|
||||
|
||||
define DownloadMethod/svn
|
||||
$(call wrap_mirror, \
|
||||
echo "Checking out files from the svn repository..."; \
|
||||
|
@ -73,6 +90,7 @@ define DownloadMethod/git
|
|||
)
|
||||
endef
|
||||
|
||||
Validate/cvs=VERSION SUBDIR
|
||||
Validate/svn=VERSION SUBDIR
|
||||
Validate/git=VERSION SUBDIR
|
||||
|
||||
|
|
Loading…
Reference in a new issue