- depth
1
(Remixed by Matt Hamilton, original from http://xkcd.com/303)
mr.developer is a zc.buildout extension that makes it easy to work with buildouts containing lots of packages, of which you only want to develop some. The basic idea comes from Wichert Akkerman's plonenext effort.
Add mr.developer
to the extensions
entry in your [buildout]
section:
[buildout]
extensions = mr.developer
This enables additional [buildout]
options:
sources
This specifies the name of a section which lists the repository information for your packages. Defaults to
sources
.sources-dir
This specifies the default directory where your development packages will be placed. Defaults to
src
.auto-checkout
This specifies the names of packages which should be checked out during buildout. Packages already checked out are skipped. You can use
*
as a wildcard for all packages insources
.always-checkout
This defaults to
false
. If it'strue
, then all packages specified byauto-checkout
and currently in develop mode are updated during each buildout run. If set toforce
, then packages are updated even when they are dirty instead of asking interactively.always-accept-server-certificate
This defaults to
false
. If it'strue
, invalid server certificates are accepted without asking (for subversion repositories).
The format of entries in the [sources]
section is:
[sources]
name = kind url [key=value ...]
Where individual parts are:
name
The package name.
kind
The kind of repository. Currently supported are
svn
,hg
,git
,bzr
,darcs
,cvs
, orfs
.url
The location of the repository. This value is specific to the version control system used.
key=value
You can add options for each individual package with this. No whitespace is allowed in
key
,value
, and around the equal sign. For a description of the options see below.
The per-package options are:
- Common options
The
path
option allows you to set the base directory where the package will be checked out. The name of the package will be appended to the base path. Ifpath
is not set,sources-dir
is used.With
full-path
you can set the directory where the package will be checked out. This is the actual destination, nothing will be added.The
update
option allows you to specify whether a package will be updated during buildout or not. If it'strue
, then it will always be updated. If it'sfalse
, then it will never be updated, even if the globalalways-checkout
option is set.The
egg
option makes it possible to manage packages which are not eggs withegg=false
. All commands likeupdate
work as expected, but the package isn't added to thedevelop
buildout option and theactivate
anddeactivate
commands skip the package.svn
The
url
is one of the urls supported by subversion.You can specify a url with a revision pin, like
http://example.com/trunk@123
.You can also set the
rev
orrevision
option, which is either a pin like withrev=123
or a minimum revision likerev=>123
orrev=>=123
. When you set a minimum revision, the repository is updated when the current revision is lower.git
The
branch
option allows you to use a specific branch instead of master.The
rev
option allows you to use a specific revision (usually a tag) instead of the HEAD.Note that the
branch
andrev
option are mutually exclusive.hg
The
branch
option allows you to use a specific branch instead of default.bzr
The
rev
option allows you to use a specific revision. Use of this option with forced updates will overwrite any local commits --it will not attempt a merge, regardless of whether the revision pin specified is newer or older than the current committed revision. The revision specified can be numeric, a tag, or other identifier matching Bazaar revision identification rules.darcs
Currently no additional options.
cvs
The
cvs_root
option can be used to override the setting of the $CVSROOT environment variable. Thetag
option forces checkout/update of the given tag instead of CVS HEAD.fs
This allows you to add packages on the filesystem without a version control system, or with an unsupported one. You can activate and deactivate packages, but you don't get status info and can't update etc.
The
url
needs to be the same as thename
of the package.
Here's an example of how your buildout.cfg
may look like:
[buildout]
extensions = mr.developer
auto-checkout = my.package
[sources]
my.package = svn http://example.com/svn/my.package/trunk update=true
some.other.package = git git://example.com/git/some.other.package.git
When you run buildout, the script bin/develop
is created in your buildout directory. With this script you can perform various actions on packages, like checking out their source code, without the need to know where the repositories are located.
For help on what the script can do, run bin/develop help
.
If you checked out the source code of a package, you must run buildout again. The new package will then be marked as a development egg and have its version pin cleared (if any). You can control the list of development eggs explicitely with the activate
and deactivate
commands.
You get an error like:
ERROR: Can't switch package 'foo' to 'https://example.com/svn/foo/trunk/' because it's dirty.
If you have not modified the package files under src/foo, then you can check what's going on with status -v
. One common cause is a *.egg-info
folder which gets generated every time you run buildout and this shows up as an untracked item in svn status.
You should add .egg-info to your global Subversion ignores in ~/.subversion/config
, like this:
global-ignores = *.o *.lo *.la *.al .libs *.so *.so.[0-9]* *.a *.pyc *.pyo *.rej *~ #*# .#* .*.swp .DS_Store *.egg-info
The best way to handle https certificates at the moment, is to accept them permanently when checking out the source manually.
This happens if you use lp:// URLs from launchpad. The problem is, that hg reports the actual URL, not the lp shortcut.