#!/usr/bin/make -f
# -*- makefile -*-

VERSION=0.1.3

%:
	dh $@ --with=python2


build-orig:
	mkdir -p python-logging-extra-$(VERSION)
	tar --exclude=debian --exclude=\*~ --exclude=.svn --exclude=\*.pyc \
		--exclude=python-logging-extra-$(VERSION) -cf - . \
		| ( cd python-logging-extra-$(VERSION) && tar xf - )
	tar -czf ../tarballs/python-logging-extra_$(VERSION).orig.tar.gz python-logging-extra-$(VERSION)
	$(RM) -r python-logging-extra-$(VERSION)
