1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
#!/usr/bin/make -f
# -*- mode:makefile -*-
URL_AUTH=svn+ssh://${ALIOTH_USER}@svn.debian.org/svn/python-modules/packages/doublex/trunk
URL_ANON=svn://svn.debian.org/svn/python-modules/packages/doublex/trunk
debian:
if [ ! -z "$${ALIOTH_USER}" ]; then \
svn co ${URL_AUTH} -N; \
else \
svn co ${URL_ANON} -N; \
fi
mv trunk/.svn .
rmdir trunk
svn up debian
wiki:
hg clone ssh://hg@bitbucket.org/DavidVilla/python-doublex/wiki
clean:
find . -name *.pyc -delete
find . -name *.pyo -delete
find . -name *~ -delete
$(RM) -r dist build *.egg-info
$(RM) -r .svn debian MANIFEST
$(RM) -r *.egg-info
$(RM) -r slides/reveal.js
|