Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Jajcus/pyxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacek Konieczny <jajcus@jajcus.net>2011-05-03 20:28:08 +0400
committerJacek Konieczny <jajcus@jajcus.net>2011-05-03 20:28:08 +0400
commit852140b5bde8c5b67e5c115d8151f02c2c00438f (patch)
tree7ecba621c24a575a4325d94e2d5c8de7ba4f7618 /Makefile
parent4415920c86ff2de81d74f1d33842f1effed4c33b (diff)
Makefile updated for use with git instead of svn
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 5 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 2064a9d..91b9dc5 100644
--- a/Makefile
+++ b/Makefile
@@ -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