1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-07-02 19:43:16 +03:00

Add CVS download method #2947

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@10083 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-01-02 15:14:31 +00:00
parent ebe1e29983
commit 08809e2390

View File

@ -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