You can browse the source code for the development focus branch or get a copy of the branch using the command:
bzr branch lp:doit

See all merge proposals.

doit has 8 active branches owned by 7 people. There were 0 commits in the last month.

Bazaar branches

Name Status Last Modified Last Commit
lp:doit
Series: trunk
1 Development 2012-03-15 16:47:06 UTC
481. allow task generators to yield task g...

Author: schettino72
Revision Date: 2012-03-15 16:47:06 UTC

allow task generators to yield task generators.

lp:~tzeentch-gm/doit/218276-doit-on-windows bug 1 Development 2011-10-09 18:53:30 UTC
455. Moved CHANGES to doc/changes.rst, rep...

Author: Michael Gliwinski
Revision Date: 2011-10-09 18:44:15 UTC

Moved CHANGES to doc/changes.rst, replaced with a note.
(cannot use symlink because repo won't work on Windows due to https://bugs.launchpad.net/bzr/+bug/81689)

lp:~mnemnosi/doit/seek_dodo_files 1 Development 2011-05-19 06:34:24 UTC
394. tweaks to optionally allow doit to se...

Author: Matthew Day
Revision Date: 2011-05-19 06:29:47 UTC

tweaks to optionally allow doit to seek up from the cwd to find a dodo file

lp:~javier.collado/doit/packaging-recipe 1 Development 2011-04-20 11:33:24 UTC
10. Recipe format udpated from 0.2 to 0.3

Author: Javier Collado
Revision Date: 2011-04-20 11:33:24 UTC

Recipe format udpated from 0.2 to 0.3

lp:~javier.collado/doit/debian 1 Development 2011-04-20 09:47:54 UTC
6. Minimal changelog

Author: Javier Collado
Revision Date: 2011-04-20 09:47:54 UTC

Minimal changelog

lp:~damiro/doit/env-dict-cmd-action 1 Development 2010-09-24 14:32:16 UTC
299. Added support for using environment v...

Author: Daniel Rohlfing
Revision Date: 2010-09-23 21:04:51 UTC

Added support for using environment variables in cmd-actions. This expand the subst_dict with os.environ, so you can use it this way:

def task_hello_env():
    return {'actions': ['echo My shell is %($SHELL)s'] }

To indicate that an environment variable is meant, it starts with a shell like $

lp:~lorenz.jonas/doit/devel bug 1 Development 2009-11-17 01:58:11 UTC
179. support tilde char ~ home dir expansi...

Author: Lorenz
Revision Date: 2009-11-15 19:09:20 UTC

support tilde char ~ home dir expansion for targets and dependencies

lp:~toelke+lp/doit/callable-dependencies bug 1 Development 2009-09-29 08:38:17 UTC
143. This marks the final version of the f...

Author: Philipp Tölke
Revision Date: 2009-09-29 08:38:17 UTC

This marks the final version of the feature.

Callable dependencies now can support caching, by saving their output to the member "content".

Example:

def svn_up_to_date():
  svn_up_to_date.name = "svn_up_to_date"
  import subprocess

  process = subprocess.Popen("cd svn; svn up; svn info", stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True)

  out, err = process.communicate()

  svn_up_to_date.content = out + err

  return svn_up_to_date.content

def task_dist_src():
  return {'actions': ['svn export https://.../branches/dist project',
                      'rm -frv project/{.cvsignore,dist,dist.osx} || true',
                      'tar cvjf project.tar.bz2 project',
                      'rm -rf project'],
          'targets': ('project.tar.bz2',),
          'dependencies': [svn_up_to_date, ":co_svn"]}

The task_dist_src will only be executed, if the output of "svn info" after a "svn up" changes.

18 of 8 results
You can't create new branches for doit.