2007-07-11 20:39:55 +00:00
|
|
|
|
|
|
|
# this Makefile requires GNU make
|
|
|
|
|
2008-01-01 07:44:30 +00:00
|
|
|
default: simple-build
|
2007-01-07 20:09:37 +00:00
|
|
|
|
2007-02-01 02:12:33 +00:00
|
|
|
PYTHON=python
|
2007-04-10 19:24:32 +00:00
|
|
|
PATHSEP=$(shell python -c 'import os ; print os.pathsep')
|
2007-09-21 00:02:54 +00:00
|
|
|
OSSEP=$(shell python -c 'import os ; print os.sep')
|
2007-04-04 18:18:38 +00:00
|
|
|
|
2007-09-14 01:20:35 +00:00
|
|
|
REACTOR=
|
2007-04-10 19:24:32 +00:00
|
|
|
|
2007-11-14 03:16:59 +00:00
|
|
|
ifneq ($(INCLUDE_DIRS),)
|
|
|
|
INCLUDE_DIRS_ARG = -I$(INCLUDE_DIRS)
|
|
|
|
endif
|
|
|
|
ifneq ($(LIBRARY_DIRS),)
|
|
|
|
LIBRARY_DIRS_ARG = -L$(LIBRARY_DIRS)
|
|
|
|
endif
|
|
|
|
|
2007-04-10 19:24:32 +00:00
|
|
|
PLAT = $(strip $(shell python -c "import sys ; print sys.platform"))
|
2007-09-14 01:20:35 +00:00
|
|
|
ifeq ($(PLAT),win32)
|
|
|
|
# The platform is Windows with cygwin build tools and the native Python interpreter.
|
|
|
|
SUPPORT = $(shell cygpath -w $(shell pwd))\support
|
|
|
|
SUPPORTLIB := $(SUPPORT)\Lib\site-packages
|
2007-10-15 18:52:26 +00:00
|
|
|
SRCPATH := $(shell cygpath -w $(shell pwd)/src)
|
2007-09-21 21:11:16 +00:00
|
|
|
CHECK_PYWIN32_DEP := check-pywin32-dep
|
2007-04-10 19:24:32 +00:00
|
|
|
else
|
2007-09-14 01:20:35 +00:00
|
|
|
PYVER=$(shell $(PYTHON) misc/pyver.py)
|
|
|
|
SUPPORT = $(shell pwd)/support
|
|
|
|
SUPPORTLIB = $(SUPPORT)/lib/$(PYVER)/site-packages
|
2007-09-15 03:17:43 +00:00
|
|
|
SRCPATH := $(shell pwd)/src
|
2007-09-21 21:11:16 +00:00
|
|
|
CHECK_PYWIN32_DEP :=
|
2007-04-04 18:18:38 +00:00
|
|
|
endif
|
2007-04-10 19:24:32 +00:00
|
|
|
|
2007-10-15 22:01:59 +00:00
|
|
|
TRIALCMD = $(shell PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SRCPATH)" $(PYTHON) misc/find_trial.py)
|
2007-10-15 18:52:26 +00:00
|
|
|
|
2007-09-14 10:33:44 +00:00
|
|
|
ifeq ($(PLAT),cygwin)
|
|
|
|
REACTOR = poll
|
|
|
|
endif
|
|
|
|
|
2007-09-14 01:20:35 +00:00
|
|
|
ifneq ($(REACTOR),)
|
|
|
|
REACTOROPT := --reactor=$(REACTOR)
|
2007-04-04 18:18:38 +00:00
|
|
|
else
|
2007-09-14 01:20:35 +00:00
|
|
|
REACTOROPT :=
|
2007-04-04 18:18:38 +00:00
|
|
|
endif
|
2007-03-09 00:54:38 +00:00
|
|
|
|
2007-10-15 18:52:26 +00:00
|
|
|
TRIAL=PYTHONUNBUFFERED=1 $(TRIALCMD) --rterrors $(REACTOROPT)
|
2007-04-10 19:24:32 +00:00
|
|
|
|
2008-01-01 08:49:21 +00:00
|
|
|
build-auto-deps: check-deps
|
2007-09-14 01:20:35 +00:00
|
|
|
mkdir -p "$(SUPPORTLIB)"
|
2007-10-04 21:11:16 +00:00
|
|
|
PYTHONPATH="$(PYTHONPATH)$(PATHSEP)$(SUPPORTLIB)$(PATHSEP)" \
|
2007-09-15 02:23:55 +00:00
|
|
|
$(PYTHON) misc/dependencies/build-deps-setup.py install \
|
2007-09-14 01:20:35 +00:00
|
|
|
--prefix="$(SUPPORT)"
|
|
|
|
|
2008-01-01 08:58:02 +00:00
|
|
|
# The following target is here because I don't know how to tell the buildmaster
|
|
|
|
# to start instructing his slaves to "build-auto-deps" instead of instructing
|
|
|
|
# them to "build-deps". --Z
|
|
|
|
build-deps: build-auto-deps
|
|
|
|
|
2007-09-12 23:48:45 +00:00
|
|
|
EGGSPATH = $(shell $(PYTHON) misc/find-dep-eggs.py)
|
|
|
|
show-eggspath:
|
|
|
|
@echo $(EGGSPATH)
|
|
|
|
|
2007-10-04 21:11:16 +00:00
|
|
|
ifneq ($(PYTHONPATH),)
|
|
|
|
PYTHONPATH := $(PYTHONPATH)$(PATHSEP)
|
|
|
|
endif
|
2007-12-25 00:21:53 +00:00
|
|
|
PP=PYTHONPATH="$(SRCPATH)$(PATHSEP)$(PYTHONPATH)$(PATHSEP)$(EGGSPATH)"
|
2007-09-13 01:56:33 +00:00
|
|
|
|
|
|
|
.PHONY: make-version build
|
2007-12-21 01:17:55 +00:00
|
|
|
|
2008-01-01 06:28:31 +00:00
|
|
|
# The 'darcsver' setup.py command comes in the 'darcsver' package:
|
|
|
|
# http://pypi.python.org/pypi/darcsver It is necessary only if you want to
|
2007-12-21 01:17:55 +00:00
|
|
|
# automatically produce a new _version.py file from the current darcs history.
|
2007-09-13 01:56:33 +00:00
|
|
|
make-version:
|
2008-01-01 06:28:31 +00:00
|
|
|
$(PYTHON) ./setup.py darcsver
|
2007-09-13 01:56:33 +00:00
|
|
|
|
2008-01-03 21:33:33 +00:00
|
|
|
# We want src/allmydata/_version.py to be up-to-date, but it's a fairly
|
|
|
|
# expensive operation (about 6 seconds on a just-before-0.7.0 tree, probably
|
|
|
|
# because of the 332 patches since the last tag), and we've removed the need
|
|
|
|
# for an explicit 'build' step by removing the C code from src/allmydata and
|
|
|
|
# by running everything in place. It would be neat to do:
|
|
|
|
#
|
|
|
|
#src/allmydata/_version.py: _darcs/patches
|
|
|
|
# $(MAKE) make-version
|
|
|
|
#build: src/allmydata/_version.py
|
|
|
|
# ...
|
|
|
|
#
|
|
|
|
# since that would update the embedded version string each time new darcs
|
|
|
|
# patches were pulled, but 1) this would break non-darcs trees (i.e. building
|
|
|
|
# from an exported tarball), and 2) without an obligatory 'build' step this
|
|
|
|
# rule wouldn't be run frequently enought anyways.
|
|
|
|
#
|
|
|
|
# So instead, I'll just make sure that we update the version at least once
|
|
|
|
# when we first start using the tree, and again whenever an explicit 'make'
|
|
|
|
# is run, since when things are confused, the first thing a developer does is
|
|
|
|
# a 'make clean; make all'. We do this by putting an explicit call to
|
|
|
|
# make-version in the 'build' target.
|
|
|
|
|
2007-09-19 19:28:30 +00:00
|
|
|
.built:
|
|
|
|
$(MAKE) build
|
|
|
|
touch .built
|
|
|
|
|
2008-01-01 08:49:21 +00:00
|
|
|
simple-build: build-auto-deps build
|
2008-01-01 07:44:30 +00:00
|
|
|
|
2008-01-03 21:33:33 +00:00
|
|
|
build:
|
|
|
|
$(MAKE) make-version
|
2007-11-14 03:16:59 +00:00
|
|
|
$(PYTHON) ./setup.py build_ext -i $(INCLUDE_DIRS_ARG) $(LIBRARY_DIRS_ARG)
|
2007-10-11 10:38:24 +00:00
|
|
|
chmod +x bin/tahoe
|
2007-09-12 23:48:45 +00:00
|
|
|
|
2007-09-12 23:02:53 +00:00
|
|
|
# 'make install' will do the following:
|
|
|
|
# build+install tahoe (probably to /usr/lib/pythonN.N/site-packages)
|
2007-09-15 02:23:55 +00:00
|
|
|
# 'make install PREFIX=/usr/local/stow/tahoe-N.N' will do the same, but to
|
|
|
|
# a different location
|
2007-01-30 21:57:59 +00:00
|
|
|
|
2007-10-04 21:14:48 +00:00
|
|
|
install:
|
2007-09-12 23:02:53 +00:00
|
|
|
ifdef PREFIX
|
|
|
|
mkdir -p $(PREFIX)
|
|
|
|
$(PP) $(PYTHON) ./setup.py install \
|
|
|
|
--single-version-externally-managed \
|
|
|
|
--prefix=$(PREFIX) --record=./tahoe.files
|
|
|
|
else
|
|
|
|
$(PP) $(PYTHON) ./setup.py install \
|
|
|
|
--single-version-externally-managed
|
|
|
|
endif
|
2007-02-01 23:07:07 +00:00
|
|
|
|
2007-01-17 04:02:00 +00:00
|
|
|
|
2007-04-27 03:16:48 +00:00
|
|
|
# TESTING
|
|
|
|
|
2007-12-30 12:47:17 +00:00
|
|
|
.PHONY: check-all-deps check-twisted-dep $(CHECK_PYWIN32_DEP) signal-error-deps, signal-error-twisted-dep, signal-error-pywin32-dep, test test-figleaf figleaf-output
|
2007-09-15 22:17:55 +00:00
|
|
|
|
|
|
|
|
2007-09-21 20:40:28 +00:00
|
|
|
signal-error-deps:
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2007-11-09 20:13:39 +00:00
|
|
|
@echo "ERROR: Not all of Tahoe's dependencies are in place. Please \
|
2007-09-19 23:23:55 +00:00
|
|
|
see the README for help on installing dependencies."
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2007-09-19 23:23:55 +00:00
|
|
|
exit 1
|
|
|
|
|
2007-09-21 20:40:28 +00:00
|
|
|
signal-error-twisted-dep:
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2008-01-01 08:49:21 +00:00
|
|
|
@echo "ERROR: Before running \"make build-auto-deps\" you have to ensure that \
|
2007-11-09 20:13:39 +00:00
|
|
|
Twisted is installed (including its zope.interface dependency). Twisted and \
|
|
|
|
zope.interface are required for the automatic installation of certain other \
|
2007-09-21 20:40:28 +00:00
|
|
|
libraries that Tahoe requires). Please see the README for details."
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2007-09-21 20:40:28 +00:00
|
|
|
exit 1
|
|
|
|
|
|
|
|
signal-error-pywin32-dep:
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2007-11-09 20:13:39 +00:00
|
|
|
@echo "ERROR: the pywin32 dependency is not in place. Please see the README \
|
2007-09-21 20:40:28 +00:00
|
|
|
for help on installing dependencies."
|
2007-11-20 07:07:44 +00:00
|
|
|
@echo
|
|
|
|
@echo
|
2007-09-21 20:40:28 +00:00
|
|
|
exit 1
|
|
|
|
|
2007-11-20 07:07:44 +00:00
|
|
|
signal-error-pyopenssl-dep:
|
|
|
|
@echo
|
|
|
|
@echo
|
|
|
|
@echo "ERROR: the pyOpenSSL dependency is not in place (note that pyOpenSSL required \
|
|
|
|
OpenSSL). Please see the README for help on installing dependencies."
|
|
|
|
@echo
|
|
|
|
@echo
|
|
|
|
exit 1
|
|
|
|
|
2007-12-30 12:47:17 +00:00
|
|
|
check-all-deps: check-deps
|
2007-09-15 22:17:55 +00:00
|
|
|
$(PP) \
|
2007-11-20 07:07:44 +00:00
|
|
|
$(PYTHON) -c 'import allmydata, zfec, foolscap, simplejson, nevow, pycryptopp' || $(MAKE) signal-error-deps
|
2007-09-21 20:40:28 +00:00
|
|
|
|
|
|
|
check-twisted-dep:
|
|
|
|
$(PYTHON) -c 'import twisted, zope.interface' || $(MAKE) signal-error-twisted-dep
|
|
|
|
|
|
|
|
check-pywin32-dep:
|
|
|
|
$(PYTHON) -c 'import win32process' || $(MAKE) signal-error-pywin32-dep
|
2007-09-15 22:17:55 +00:00
|
|
|
|
2007-11-20 07:07:44 +00:00
|
|
|
check-pyopenssl-dep:
|
|
|
|
$(PYTHON) -c 'import OpenSSL' || $(MAKE) signal-error-pyopenssl-dep
|
|
|
|
|
2007-12-30 12:47:17 +00:00
|
|
|
check-deps: check-twisted-dep $(CHECK_PYWIN32_DEP) check-pyopenssl-dep
|
2007-12-22 17:46:31 +00:00
|
|
|
|
2007-09-15 22:17:55 +00:00
|
|
|
.checked-deps:
|
2007-12-30 12:47:17 +00:00
|
|
|
$(MAKE) check-all-deps
|
2007-09-15 22:17:55 +00:00
|
|
|
touch .checked-deps
|
2006-12-01 02:51:19 +00:00
|
|
|
|
2007-08-09 22:26:27 +00:00
|
|
|
# you can use 'make test TEST=allmydata.test.test_introducer' to run just
|
|
|
|
# test_introducer. TEST=allmydata.test.test_client.Basic.test_permute works
|
2007-05-01 18:08:39 +00:00
|
|
|
# too.
|
2007-09-12 23:02:53 +00:00
|
|
|
TEST=allmydata
|
2007-01-04 04:38:29 +00:00
|
|
|
|
2007-12-13 02:34:08 +00:00
|
|
|
# use 'make test TRIALARGS=--reporter=bwverbose' from buildbot, to
|
2007-09-14 01:20:35 +00:00
|
|
|
# suppress the ansi color sequences
|
2007-05-04 04:12:15 +00:00
|
|
|
|
2007-09-19 19:28:30 +00:00
|
|
|
test: .built .checked-deps
|
2007-09-15 19:32:11 +00:00
|
|
|
$(PP) \
|
2007-12-13 02:34:08 +00:00
|
|
|
$(TRIAL) $(TRIALARGS) $(TEST)
|
2007-05-01 06:02:45 +00:00
|
|
|
|
2007-09-19 19:28:30 +00:00
|
|
|
test-figleaf: .built .checked-deps
|
2007-01-09 04:28:08 +00:00
|
|
|
rm -f .figleaf
|
2007-09-15 19:32:11 +00:00
|
|
|
$(PP) \
|
|
|
|
$(TRIAL) --reporter=bwverbose-figleaf $(TEST)
|
2006-12-06 22:26:12 +00:00
|
|
|
|
2006-12-07 02:24:02 +00:00
|
|
|
figleaf-output:
|
2007-09-15 19:32:11 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) misc/figleaf2html -d coverage-html -r src -x misc/figleaf.excludes
|
2007-01-04 05:06:51 +00:00
|
|
|
@echo "now point your browser at coverage-html/index.html"
|
2007-05-01 18:08:39 +00:00
|
|
|
|
2007-01-04 04:38:29 +00:00
|
|
|
# after doing test-figleaf and figleaf-output, point your browser at
|
|
|
|
# coverage-html/index.html
|
2006-12-07 02:24:02 +00:00
|
|
|
|
2007-09-19 19:59:32 +00:00
|
|
|
.PHONY: upload-figleaf .figleaf.el pyflakes count-lines
|
|
|
|
.PHONY: check-memory check-memory-once clean
|
2007-05-01 18:08:39 +00:00
|
|
|
|
|
|
|
# 'upload-figleaf' is meant to be run with an UPLOAD_TARGET=host:/dir setting
|
2007-03-08 22:28:13 +00:00
|
|
|
ifdef UPLOAD_TARGET
|
2007-07-02 22:10:20 +00:00
|
|
|
|
|
|
|
ifndef UPLOAD_HOST
|
|
|
|
$(error UPLOAD_HOST must be set when using UPLOAD_TARGET)
|
|
|
|
endif
|
|
|
|
ifndef COVERAGEDIR
|
|
|
|
$(error COVERAGEDIR must be set when using UPLOAD_TARGET)
|
|
|
|
endif
|
|
|
|
|
2007-03-08 22:28:13 +00:00
|
|
|
upload-figleaf:
|
|
|
|
rsync -a coverage-html/ $(UPLOAD_TARGET)
|
2007-07-02 22:22:49 +00:00
|
|
|
ssh $(UPLOAD_HOST) make update-tahoe-figleaf COVERAGEDIR=$(COVERAGEDIR)
|
2007-03-08 22:28:13 +00:00
|
|
|
else
|
|
|
|
upload-figleaf:
|
|
|
|
echo "this target is meant to be run with UPLOAD_TARGET=host:/path/"
|
|
|
|
/bin/false
|
|
|
|
endif
|
|
|
|
|
2007-01-04 08:25:36 +00:00
|
|
|
.figleaf.el: .figleaf
|
2007-09-17 08:10:27 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) misc/figleaf2el.py .figleaf src
|
2007-01-04 08:25:36 +00:00
|
|
|
|
2006-12-14 11:05:22 +00:00
|
|
|
pyflakes:
|
2007-09-14 01:20:35 +00:00
|
|
|
$(PYTHON) -OOu `which pyflakes` src/allmydata
|
2006-12-14 11:05:22 +00:00
|
|
|
|
2007-01-22 08:17:39 +00:00
|
|
|
count-lines:
|
2007-01-31 01:10:37 +00:00
|
|
|
@echo -n "files: "
|
|
|
|
@find src -name '*.py' |grep -v /build/ |wc --lines
|
2007-01-22 08:17:39 +00:00
|
|
|
@echo -n "lines: "
|
2007-01-31 01:10:37 +00:00
|
|
|
@cat `find src -name '*.py' |grep -v /build/` |wc --lines
|
2007-01-22 08:17:39 +00:00
|
|
|
@echo -n "TODO: "
|
2007-01-31 01:10:37 +00:00
|
|
|
@grep TODO `find src -name '*.py' |grep -v /build/` | wc --lines
|
2007-01-22 08:17:39 +00:00
|
|
|
|
2007-09-19 19:28:30 +00:00
|
|
|
check-memory: .built
|
2007-09-15 20:53:36 +00:00
|
|
|
rm -rf _test_memory
|
2007-09-15 19:32:11 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py upload
|
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py upload-self
|
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py upload-POST
|
2007-09-19 01:56:05 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py download
|
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py download-GET
|
2007-09-19 03:35:27 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py download-GET-slow
|
2007-09-20 03:39:17 +00:00
|
|
|
$(PP) \
|
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py receive
|
2007-09-15 20:53:36 +00:00
|
|
|
|
2007-09-19 19:29:16 +00:00
|
|
|
check-memory-once: .built
|
|
|
|
rm -rf _test_memory
|
|
|
|
$(PP) \
|
2007-09-19 19:59:32 +00:00
|
|
|
$(PYTHON) src/allmydata/test/check_memory.py $(MODE)
|
2007-09-19 19:29:16 +00:00
|
|
|
|
2007-09-20 01:27:47 +00:00
|
|
|
# this target uses a pre-established client node to run a canned set of
|
|
|
|
# performance tests against a test network that is also pre-established
|
|
|
|
# (probably on a remote machine). Provide it with the path to a local
|
|
|
|
# directory where this client node has been created (and populated with the
|
2007-09-21 02:03:16 +00:00
|
|
|
# necessary FURLs of the test network). This target will start that client
|
|
|
|
# with the current code and then run the tests. Afterwards it will stop the
|
|
|
|
# client.
|
|
|
|
#
|
|
|
|
# The 'sleep 5' is in there to give the new client a chance to connect to its
|
|
|
|
# storageservers, since check_speed.py has no good way of doing that itself.
|
|
|
|
|
2007-09-20 01:27:47 +00:00
|
|
|
check-speed: .built
|
|
|
|
if [ -z '$(TESTCLIENTDIR)' ]; then exit 1; fi
|
2007-12-14 09:04:25 +00:00
|
|
|
@echo "stopping any leftover client code"
|
|
|
|
-$(PYTHON) bin/tahoe stop $(TESTCLIENTDIR)
|
2007-10-11 10:38:24 +00:00
|
|
|
$(PYTHON) bin/tahoe start $(TESTCLIENTDIR)
|
2007-09-21 02:03:16 +00:00
|
|
|
sleep 5
|
2007-09-20 01:27:47 +00:00
|
|
|
$(PYTHON) src/allmydata/test/check_speed.py $(TESTCLIENTDIR)
|
2007-10-11 10:38:24 +00:00
|
|
|
$(PYTHON) bin/tahoe stop $(TESTCLIENTDIR)
|
2007-03-09 01:12:24 +00:00
|
|
|
|
2007-11-03 05:32:55 +00:00
|
|
|
# 'make repl' is a simple-to-type command to get a Python interpreter loop
|
|
|
|
# from which you can type 'import allmydata'
|
|
|
|
repl:
|
|
|
|
$(PP) python
|
|
|
|
|
2007-05-24 00:51:28 +00:00
|
|
|
test-darcs-boringfile:
|
2007-05-24 00:57:48 +00:00
|
|
|
$(MAKE)
|
2007-05-24 00:51:28 +00:00
|
|
|
$(PYTHON) misc/test-darcs-boringfile.py
|
|
|
|
|
2007-05-24 00:57:48 +00:00
|
|
|
test-clean:
|
2007-09-14 10:28:56 +00:00
|
|
|
find . |grep -v allfiles.tmp |grep -v src/allmydata/_version.py |sort >allfiles.tmp.old
|
2007-05-24 00:57:48 +00:00
|
|
|
$(MAKE)
|
|
|
|
$(MAKE) clean
|
2007-09-14 10:28:56 +00:00
|
|
|
find . |grep -v allfiles.tmp |grep -v src/allmydata/_version.py |sort >allfiles.tmp.new
|
2007-05-24 00:57:48 +00:00
|
|
|
diff allfiles.tmp.old allfiles.tmp.new
|
2007-05-24 00:51:28 +00:00
|
|
|
|
2007-09-12 23:02:53 +00:00
|
|
|
clean:
|
2007-09-19 19:28:30 +00:00
|
|
|
rm -rf build _trial_temp _test_memory .checked-deps .built
|
2006-12-14 11:08:09 +00:00
|
|
|
rm -f debian
|
2007-09-12 23:02:53 +00:00
|
|
|
rm -f `find src/allmydata -name '*.so' -or -name '*.pyc'`
|
2007-09-15 02:23:55 +00:00
|
|
|
rm -rf tahoe_deps.egg-info allmydata_tahoe.egg-info
|
2007-09-15 22:17:55 +00:00
|
|
|
rm -rf support dist
|
2008-01-01 06:58:25 +00:00
|
|
|
rm -rf setuptools*.egg *.pyc darcsver*.egg
|
2006-12-14 10:59:51 +00:00
|
|
|
|
2007-11-06 04:32:08 +00:00
|
|
|
find-trailing-spaces:
|
|
|
|
$(PYTHON) misc/find-trailing-spaces.py -r src
|
2007-07-31 23:55:45 +00:00
|
|
|
|
|
|
|
|
2007-05-01 18:08:39 +00:00
|
|
|
# DEBIAN PACKAGING
|
2006-12-05 09:00:44 +00:00
|
|
|
|
2007-05-04 03:14:07 +00:00
|
|
|
VER=$(shell $(PYTHON) misc/get-version.py)
|
2007-01-06 03:06:51 +00:00
|
|
|
DEBCOMMENTS="'make deb' build"
|
|
|
|
|
2007-05-04 03:14:07 +00:00
|
|
|
show-version:
|
2007-05-01 20:23:15 +00:00
|
|
|
@echo $(VER)
|
2007-01-06 03:06:51 +00:00
|
|
|
|
2007-07-11 19:45:00 +00:00
|
|
|
.PHONY: setup-deb deb-ARCH is-known-debian-arch
|
2007-07-11 21:31:04 +00:00
|
|
|
.PHONY: deb-sid deb-feisty deb-edgy deb-etch
|
2007-07-11 19:45:00 +00:00
|
|
|
|
|
|
|
deb-sid:
|
|
|
|
$(MAKE) deb-ARCH ARCH=sid
|
|
|
|
deb-feisty:
|
|
|
|
$(MAKE) deb-ARCH ARCH=feisty
|
2007-04-04 23:39:25 +00:00
|
|
|
# edgy uses the feisty control files for now
|
2007-07-11 19:45:00 +00:00
|
|
|
deb-edgy:
|
|
|
|
$(MAKE) deb-ARCH ARCH=edgy TAHOE_ARCH=feisty
|
|
|
|
# etch uses the feisty control files for now
|
|
|
|
deb-etch:
|
2007-09-12 23:02:53 +00:00
|
|
|
$(MAKE) deb-ARCH ARCH=etch TAHOE_ARCH=feisty
|
2007-10-17 20:35:11 +00:00
|
|
|
# same with gutsy, the process has been nicely stable for a while now
|
|
|
|
deb-gutsy:
|
|
|
|
$(MAKE) deb-ARCH ARCH=gutsy TAHOE_ARCH=feisty
|
2007-07-11 19:45:00 +00:00
|
|
|
|
|
|
|
# we know how to handle the following debian architectures
|
2007-10-17 20:35:11 +00:00
|
|
|
KNOWN_DEBIAN_ARCHES := sid feisty edgy etch gutsy
|
2007-07-11 19:45:00 +00:00
|
|
|
|
|
|
|
ifeq ($(findstring x-$(ARCH)-x,$(foreach arch,$(KNOWN_DEBIAN_ARCHES),"x-$(arch)-x")),)
|
|
|
|
is-known-debian-arch:
|
|
|
|
@echo "ARCH must be set when using setup-deb or deb-ARCH"
|
|
|
|
@echo "I know how to handle:" $(KNOWN_DEBIAN_ARCHES)
|
2007-12-22 18:50:10 +00:00
|
|
|
false
|
2007-07-11 19:45:00 +00:00
|
|
|
else
|
|
|
|
is-known-debian-arch:
|
2007-12-22 18:50:10 +00:00
|
|
|
true
|
2007-07-11 19:45:00 +00:00
|
|
|
endif
|
2007-04-04 23:39:25 +00:00
|
|
|
|
2007-07-11 19:45:00 +00:00
|
|
|
ifndef TAHOE_ARCH
|
|
|
|
TAHOE_ARCH=$(ARCH)
|
|
|
|
endif
|
2007-03-29 21:36:15 +00:00
|
|
|
|
2007-07-11 19:45:00 +00:00
|
|
|
setup-deb: is-known-debian-arch
|
2007-05-04 07:07:06 +00:00
|
|
|
rm -f debian
|
2007-07-11 19:45:00 +00:00
|
|
|
ln -s misc/$(TAHOE_ARCH)/debian debian
|
|
|
|
chmod +x debian/rules
|
2007-05-01 19:41:35 +00:00
|
|
|
|
2007-09-14 10:28:56 +00:00
|
|
|
# etch (current debian stable) has python-simplejson-1.3, which doesn't
|
|
|
|
# support indent=
|
2007-07-11 21:00:47 +00:00
|
|
|
# sid (debian unstable) currently has python-simplejson 1.7.1
|
2007-09-14 10:28:56 +00:00
|
|
|
# edgy has 1.3, which doesn't support indent=
|
|
|
|
# feisty has 1.4, which supports indent= but emits a deprecation warning
|
2007-07-11 21:00:47 +00:00
|
|
|
# gutsy has 1.7.1
|
2007-09-14 10:28:56 +00:00
|
|
|
#
|
|
|
|
# we need 1.4 or newer
|
2007-07-11 21:00:47 +00:00
|
|
|
|
|
|
|
deb-ARCH: is-known-debian-arch setup-deb
|
|
|
|
fakeroot debian/rules binary
|
2007-10-11 21:37:29 +00:00
|
|
|
@echo
|
|
|
|
@echo "The newly built .deb packages are in the parent directory from here."
|
2007-05-01 19:41:35 +00:00
|
|
|
|
2007-07-11 19:45:00 +00:00
|
|
|
.PHONY: increment-deb-version
|
2007-07-11 21:31:04 +00:00
|
|
|
.PHONY: deb-sid-head deb-edgy-head deb-feisty-head
|
2007-07-11 19:45:00 +00:00
|
|
|
.PHONY: deb-etch-head
|
2007-01-06 03:06:51 +00:00
|
|
|
|
2007-07-11 19:45:00 +00:00
|
|
|
# The buildbot runs the following targets after each change, to produce
|
2007-08-21 21:01:01 +00:00
|
|
|
# up-to-date tahoe .debs. These steps do not create .debs for anything else.
|
2007-05-04 07:07:06 +00:00
|
|
|
|
|
|
|
increment-deb-version: make-version
|
2007-05-04 03:14:07 +00:00
|
|
|
debchange --newversion $(VER) $(DEBCOMMENTS)
|
2007-07-11 19:45:00 +00:00
|
|
|
deb-sid-head:
|
|
|
|
$(MAKE) setup-deb ARCH=sid
|
|
|
|
$(MAKE) increment-deb-version
|
2006-12-05 09:00:44 +00:00
|
|
|
fakeroot debian/rules binary
|
2007-07-11 19:45:00 +00:00
|
|
|
deb-edgy-head:
|
2007-07-11 20:26:23 +00:00
|
|
|
$(MAKE) setup-deb ARCH=edgy TAHOE_ARCH=feisty
|
2007-07-11 19:45:00 +00:00
|
|
|
$(MAKE) increment-deb-version
|
2007-04-04 23:39:25 +00:00
|
|
|
fakeroot debian/rules binary
|
2007-07-11 19:45:00 +00:00
|
|
|
deb-feisty-head:
|
|
|
|
$(MAKE) setup-deb ARCH=feisty
|
|
|
|
$(MAKE) increment-deb-version
|
2007-03-29 21:36:15 +00:00
|
|
|
fakeroot debian/rules binary
|
2007-07-11 19:45:00 +00:00
|
|
|
deb-etch-head:
|
2007-07-11 20:26:23 +00:00
|
|
|
$(MAKE) setup-deb ARCH=etch TAHOE_ARCH=feisty
|
2007-07-11 19:45:00 +00:00
|
|
|
$(MAKE) increment-deb-version
|
2007-05-04 07:07:06 +00:00
|
|
|
fakeroot debian/rules binary
|
2007-10-17 20:35:11 +00:00
|
|
|
deb-gutsy-head:
|
|
|
|
$(MAKE) setup-deb ARCH=gutsy TAHOE_ARCH=feisty
|
|
|
|
$(MAKE) increment-deb-version
|
|
|
|
fakeroot debian/rules binary
|