2010-02-22 20:30:26 +00:00
|
|
|
# This Makefile is only used by developers.
|
2010-02-21 19:18:08 +00:00
|
|
|
VERSION:=$(shell python setup.py --version)
|
2010-02-23 06:37:42 +00:00
|
|
|
ARCHIVE:=patool-$(VERSION).tar.gz
|
2010-02-21 11:14:57 +00:00
|
|
|
PY_FILES_DIRS := patool setup.py patoolib tests
|
2010-03-04 13:57:03 +00:00
|
|
|
NUMCPUS := $(shell grep -c '^process' /proc/cpuinfo)
|
2010-02-22 20:30:26 +00:00
|
|
|
# which test modules to run
|
2010-02-21 11:14:57 +00:00
|
|
|
TESTS ?= tests/
|
|
|
|
# set test options, eg. to "--nologcapture"
|
|
|
|
TESTOPTS=
|
|
|
|
|
|
|
|
all:
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: chmod
|
|
|
|
chmod:
|
|
|
|
-chmod -R a+rX,u+w,go-w -- *
|
|
|
|
find . -type d -exec chmod 755 {} \;
|
|
|
|
|
|
|
|
.PHONY: dist
|
|
|
|
dist:
|
2010-02-23 06:37:42 +00:00
|
|
|
git archive --format=tar --prefix=patool-$(VERSION)/ HEAD | gzip -9 > ../$(ARCHIVE)
|
|
|
|
sha1sum ../$(ARCHIVE) > ../$(ARCHIVE).sha1
|
2010-02-21 11:14:57 +00:00
|
|
|
# cd .. && zip -r - patool-git -x "**/.git/**" > $(HOME)/temp/share/patool-devel.zip
|
|
|
|
|
2010-03-04 08:03:36 +00:00
|
|
|
.PHONY: release
|
|
|
|
release: clean releasecheck dist
|
|
|
|
@echo "Register at Python Package Index..."
|
|
|
|
$(PYTHON) setup.py register
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: releasecheck
|
|
|
|
releasecheck: check test
|
|
|
|
@if egrep -i "xx\.|xxxx|\.xx" doc/changelog.txt > /dev/null; then \
|
|
|
|
echo "Could not release: edit doc/changelog.txt release date"; false; \
|
|
|
|
fi
|
|
|
|
|
2010-02-21 11:14:57 +00:00
|
|
|
# The check programs used here are mostly local scripts on my private system.
|
|
|
|
# So for other developers there is no need to execute this target.
|
|
|
|
.PHONY: check
|
|
|
|
check:
|
|
|
|
[ ! -d .svn ] || check-nosvneolstyle -v
|
|
|
|
check-copyright
|
|
|
|
check-pofiles -v
|
|
|
|
py-tabdaddy
|
|
|
|
$(MAKE) pyflakes
|
|
|
|
|
|
|
|
.PHONY: pyflakes
|
|
|
|
pyflakes:
|
|
|
|
pyflakes $(PY_FILES_DIRS)
|
|
|
|
|
|
|
|
.PHONY: count
|
|
|
|
count:
|
|
|
|
@sloccount patool patoolib | grep "Total Physical Source Lines of Code"
|
|
|
|
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
|
|
find . -name \*.pyc -delete
|
|
|
|
find . -name \*.pyo -delete
|
2010-03-01 15:01:23 +00:00
|
|
|
rm -rf build dist
|
2010-02-21 11:14:57 +00:00
|
|
|
|
|
|
|
.PHONY: test
|
|
|
|
test:
|
2010-03-04 13:57:03 +00:00
|
|
|
nosetests -v --processes=$(NUMCPUS) -m "^test_.*" $(TESTOPTS) $(TESTS)
|
2010-02-21 11:14:57 +00:00
|
|
|
|
|
|
|
doc/patool.txt: doc/patool.1
|
|
|
|
man -l doc/patool.1 | perl -pe 's/.\cH//g' > doc/patool.txt
|
2010-02-21 18:38:22 +00:00
|
|
|
|
|
|
|
.PHONY: deb
|
|
|
|
deb:
|
|
|
|
git-buildpackage --git-export-dir=../build-area/ --git-upstream-branch=master --git-debian-branch=debian --git-ignore-new
|