projects-dir.mk: Add more dependencies on ssh-wrapper.sh

Signed-off-by: Jan Lindemann <jan@janware.com>
This commit is contained in:
Jan Lindemann 2017-04-21 16:37:23 +00:00
commit 0d4cc05271

View file

@ -116,7 +116,7 @@ doc-project doc-module:
pkg-%: pull.done pkg-%: pull.done
$(BUILD_PY) $@ $(BUILD_PROJECTS) $(BUILD_PY) $@ $(BUILD_PROJECTS)
status: status: ssh-wrapper.sh
for p in $(CVS_PROJECTS); do test -f $$d/CVS || echo $$p; done for p in $(CVS_PROJECTS); do test -f $$d/CVS || echo $$p; done
cvs status $(addsuffix VERSION,$(CVS_PROJECTS)) cvs status $(addsuffix VERSION,$(CVS_PROJECTS))
$(PGIT) status $(PGIT) status
@ -132,56 +132,56 @@ update pull: purge cvs-update git-clone git-pull
pull-all: purge cvs-update git-clone git-pull-all pull-all: purge cvs-update git-clone git-pull-all
touch pull.done touch pull.done
diff-all diff: diff-all diff: ssh-wrapper.sh
cvs diff -u; $(PGIT) diff cvs diff -u; $(PGIT) diff
rebuild: clean pull subdirs-all rebuild: clean pull subdirs-all
release: release: ssh-wrapper.sh
$(RELEASE_SH) $(RELEASE_SH)
subdirs-%: subdirs-%:
FORCE_REBUILD_SUBDIRS=true make $* FORCE_REBUILD_SUBDIRS=true make $*
cvs-update: cvs-update: ssh-wrapper.sh
rm -f $@.done rm -f $@.done
make $@.done make $@.done
cvs-diff: cvs-diff: ssh-wrapper.sh
cvs diff -u cvs diff -u
git-push push: git-push push: ssh-wrapper.sh
$(PGIT) push $(PGIT) push
git-push-all: git-push-all: ssh-wrapper.sh
$(PGIT) push --all $(PGIT) push --all
git-diff: git-diff: ssh-wrapper.sh
$(PGIT) diff $(PGIT) diff
git-short-diff: git-short-diff: ssh-wrapper.sh
$(PGIT) diff --shortstat $(PGIT) diff --shortstat
git-pull: git-pull: ssh-wrapper.sh
$(PGIT) pull $(PGIT) pull
git-pull-all: git-pull-all: ssh-wrapper.sh
$(PGIT) pull --all $(PGIT) pull --all
git-clone: git-clone: ssh-wrapper.sh
$(PGIT) clone $(PGIT) clone
touch clone.done touch clone.done
git-clone-%: git-clone-%: ssh-wrapper.sh
PGIT_CLONE_FROM_USER=$* $(PGIT) clone PGIT_CLONE_FROM_USER=$* $(PGIT) clone
pull-%: pull-%: ssh-wrapper.sh
PGIT_CLONE_FROM_USER=$* $(PGIT) clone PGIT_CLONE_FROM_USER=$* $(PGIT) clone
git-commit: git-commit:
$(PGIT) commit $(PGIT) commit
git-conv-%: git-conv-%: ssh-wrapper.sh
[ -e $*/.git ] || { \ [ -e $*/.git ] || { \
mv $* old/ ;\ mv $* old/ ;\
if PROJECTS="$*" make clone; then \ if PROJECTS="$*" make clone; then \
@ -191,15 +191,15 @@ git-conv-%:
fi \ fi \
} }
check-conv: check-conv: ssh-wrapper.sh
for p in `$(GIT_SRV_ADMIN_SH) -u jan -j list-personal-projects`; do \ for p in `$(GIT_SRV_ADMIN_SH) -u jan -j list-personal-projects`; do \
make git-conv-$$p ;\ make git-conv-$$p ;\
done done
list-maintainers: list-maintainers: ssh-wrapper.sh
$(GIT_SRV_ADMIN_SH) $@ $(GIT_SRV_ADMIN_SH) $@
git-update-project-descriptions: git-update-project-descriptions: ssh-wrapper.sh
$(GIT_SRV_ADMIN_SH) -j update-descriptions all $(GIT_SRV_ADMIN_SH) -j update-descriptions all
projects.txt: projects.txt:
@ -231,7 +231,7 @@ cvsdir.done: ssh-wrapper.sh
fi fi
touch $@ touch $@
cvs-update.done: cvsdir.done cvs-update.done: cvsdir.done ssh-wrapper.sh
cvs update -dP Makefile $(shell $(CVS_ADMIN_SH) list-projects) cvs update -dP Makefile $(shell $(CVS_ADMIN_SH) list-projects)
touch $@ touch $@
@ -240,7 +240,7 @@ update.done: purge
pull.done: cvs-update.done clone.done links.done pull.done: cvs-update.done clone.done links.done
touch $@ touch $@
clone.done: clone.done: ssh-wrapper.sh
$(PGIT) clone $(PGIT) clone
touch $@ touch $@