42d328701d
This is a very intrusive change, so I've beefed up the tests significantly. Added 'full-test' a target to the Makefile, to test different possible configurations. This is intended for maintainers only. Users should only be concerned with 'test' succeeding. We now have a very simple custom database format for handling mapping of svn revisions => git commits. Of course, we're not really using it yet, either. Also disabled automatic branch-finding on new trees for now. It's too easily broken. revisions_eq() function should be helpful for branch detection. Also removed an extra assertion in fetch_cmd() that wasn't correctly done. This bug was found by full-test. Signed-off-by: Eric Wong <normalperson@yhbt.net>
45 lines
1.1 KiB
Makefile
45 lines
1.1 KiB
Makefile
all: git-svn
|
|
|
|
prefix?=$(HOME)
|
|
bindir=$(prefix)/bin
|
|
mandir=$(prefix)/man
|
|
man1=$(mandir)/man1
|
|
INSTALL?=install
|
|
doc_conf=../../Documentation/asciidoc.conf
|
|
-include ../../config.mak
|
|
|
|
git-svn: git-svn.perl
|
|
cp $< $@
|
|
chmod +x $@
|
|
|
|
install: all
|
|
$(INSTALL) -d -m755 $(DESTDIR)$(bindir)
|
|
$(INSTALL) git-svn $(DESTDIR)$(bindir)
|
|
|
|
install-doc: doc
|
|
$(INSTALL) git-svn.1 $(DESTDIR)$(man1)
|
|
|
|
doc: git-svn.1
|
|
git-svn.1 : git-svn.xml
|
|
xmlto man git-svn.xml
|
|
git-svn.xml : git-svn.txt
|
|
asciidoc -b docbook -d manpage \
|
|
-f ../../Documentation/asciidoc.conf $<
|
|
git-svn.html : git-svn.txt
|
|
asciidoc -b xhtml11 -d manpage \
|
|
-f ../../Documentation/asciidoc.conf $<
|
|
test: git-svn
|
|
cd t && $(SHELL) ./t0000-contrib-git-svn.sh $(TEST_FLAGS)
|
|
cd t && $(SHELL) ./t0001-contrib-git-svn-props.sh $(TEST_FLAGS)
|
|
|
|
full-test:
|
|
$(MAKE) test GIT_SVN_NO_LIB=1 GIT_SVN_NO_OPTIMIZE_COMMITS=1
|
|
$(MAKE) test GIT_SVN_NO_LIB=0 GIT_SVN_NO_OPTIMIZE_COMMITS=1
|
|
$(MAKE) test GIT_SVN_NO_LIB=1 GIT_SVN_NO_OPTIMIZE_COMMITS=0 \
|
|
LC_ALL=en_US.UTF-8
|
|
$(MAKE) test GIT_SVN_NO_LIB=0 GIT_SVN_NO_OPTIMIZE_COMMITS=0 \
|
|
LC_ALL=en_US.UTF-8
|
|
|
|
clean:
|
|
rm -f git-svn *.xml *.html *.1
|