forked from fschulze/mr.developer
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstage2.cfg
More file actions
50 lines (46 loc) · 1.65 KB
/
stage2.cfg
File metadata and controls
50 lines (46 loc) · 1.65 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[buildout]
parts =
versions = versions
develop = .
extensions = mr.developer
sources = sources
sources-dir = mrd
auto-checkout =
example.packagerepo
example.projectrepo.pkg1
example.projectrepo.pkg2
example.svnpackagerepo
example.svnprojectrepo.pkg1
example.svnprojectrepo.pkg2
[sources]
# revision support for git is implemented and defaults to master
# valid revisions are: branch name (local/remote), SHA1, more to follow
# git_checkout calls git_update if repo exists and checks out revision
# TODO:
# - tests
# - further revisions for git
# - gitsvn as a new backend
# - revision support for gitsvn
# - revision support for svn
# - revision support for hg
#example.packagerepo = git git://github.com/chaoflow/example.packagerepo.git revision=master
example.packagerepo = git git://github.com/chaoflow/example.packagerepo.git revision=stable
#example.packagerepo = git git://github.com/chaoflow/example.packagerepo.git revision=50e34
# A git repository may hold several eggs (in subdirectories) belonging to one
# project. The base directory in which the package directory is located can be
# specified with basedir=
example.projectrepo.pkg1 =
git github:chaoflow/example.projectrepo.git
revision=master
pkgbasedir=
example.projectrepo.pkg2 =
git github:chaoflow/example.projectrepo.git
revision=master
pkgbasedir=subdir
example.svnpackagerepo =
svn https://svn.plone.org/svn/collective/example.svnpackagerepo/trunk@100499
example.svnprojectrepo.pkg1 = svn collective:example.svnprojectrepo/trunk
pkgbasedir=
example.svnprojectrepo.pkg2 = svn collective:example.svnprojectrepo/trunk
pkgbasedir=subdir
[versions]