Skip to content

Commit

Permalink
Tailorization
Browse files Browse the repository at this point in the history
Import of the upstream sources from
 Repository: warner@cvs.sourceforge.net:/cvsroot/buildbot
       Kind: cvs
     Module: buildbot
   Revision: 2005-11-25 23:26:35 by warner
  • Loading branch information
tailor committed Nov 26, 2005
0 parents commit 464eaff
Show file tree
Hide file tree
Showing 129 changed files with 42,179 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .arch-inventory
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
precious ^m$
precious ^s$
precious ^svn$
junk ^_trial_temp$
junk ^MANIFEST$
junk ^dist$
junk ^_darcs$
junk ^.darcs-boring$
5,477 changes: 5,477 additions & 0 deletions ChangeLog

Large diffs are not rendered by default.

17 changes: 17 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

include ChangeLog MANIFEST.in README README.w32 NEWS
include docs/PyCon-2003/buildbot.html docs/PyCon-2003/stylesheet.css
include docs/PyCon-2003/overview.png docs/PyCon-2003/slave.png
include docs/PyCon-2003/waterfall.png
include docs/examples/*.cfg
include docs/buildbot.texinfo docs/buildbot.info
include docs/epyrun docs/gen-reference
include buildbot/test/mail/* buildbot/test/subdir/*
include buildbot/scripts/sample.cfg
include buildbot/status/classic.css
include buildbot/clients/debug.glade
include buildbot/buildbot.png

exclude buildbot/test/test_trial.py

include contrib/* contrib/windows/*
49 changes: 49 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@

# this is just a convenience for developers, and to automate the release
# process a little bit. This Makefile is not included in the source tarball.

BBBASE = $(PWD)
TRIALARGS=-v
ifdef SVN
T=~/stuff/python/twisted/Twisted
TRIALARGS=--reporter=verbose
else
T=
endif
ifdef T13
T=~/stuff/python/twisted/Twisted-1.3.0
endif
PP = PYTHONPATH=$(BBBASE):$(T)

.PHONY: test
TRIAL=trial
TEST=buildbot.test
test:
$(PP) $(TRIAL) $(TRIALARGS) $(TEST)


#debuild -uc -us

deb-snapshot:
debchange --newversion `PYTHONPATH=. python -c "import buildbot; print buildbot.version"`.`date +%Y.%m.%d.%H.%M.%S` \
"snapshot build"
debuild binary

.PHONY: docs apidocs paper
docs:
$(MAKE) -C docs buildbot.info
apidocs:
PYTHONPATH=.:$(T) python docs/epyrun -o docs/reference
paper:
$(MAKE) -C docs/PyCon-2003 all

release: docs paper
chmod 0755 .
find buildbot contrib docs -type d -exec chmod 0755 {} \;
find bin buildbot contrib docs -type f -exec chmod 0644 {} \;
chmod 0644 ChangeLog MANIFEST* NEWS README* setup.py
chmod a+x bin/buildbot contrib/*.py
rm -rf _trial_temp
python ./setup.py clean
rm -f MANIFEST
python ./setup.py sdist
Loading

0 comments on commit 464eaff

Please sign in to comment.