Skip to content
This repository has been archived by the owner on Dec 15, 2021. It is now read-only.

Commit

Permalink
Makefile updated for use with git instead of svn
Browse files Browse the repository at this point in the history
  • Loading branch information
Jajcus committed May 3, 2011
1 parent 4415920 commit 852140b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 302 deletions.
11 changes: 5 additions & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,19 @@ TODO.pylint:
./auxtools/pylint.sh | tee TODO.pylint

ChangeLog:
test -f .svn/entries && make cl-stamp || :
test -d .git && make cl-stamp || :

cl-stamp: .svn/entries
TZ=UTC svn log -v --xml \
| auxtools/svn2log.py -p '/(branches/[^/]+|trunk)' -x ChangeLog -u auxtools/users -F
cl-stamp: .git
git log > ChangeLog
touch cl-stamp

cosmetics:
./auxtools/cosmetics.sh

version:
if test -d ".svn" ; then \
if test -d ".git" ; then \
echo "# pylint: disable-msg=W0103,W0131" > pyxmpp/version.py ; \
echo "version='$(VERSION)+svn'" >> pyxmpp/version.py ; \
echo "version='$(VERSION)+git'" >> pyxmpp/version.py ; \
fi

dist: build ChangeLog
Expand Down
296 changes: 0 additions & 296 deletions auxtools/svn2log.py

This file was deleted.

0 comments on commit 852140b

Please sign in to comment.