|
Revision 801, 0.7 KB
(checked in by dokai, 3 years ago)
|
|
OWSLib buildout
|
| Line | |
|---|
| 1 | [buildout] |
|---|
| 2 | index = http://download.zope.org/ppix |
|---|
| 3 | parts = |
|---|
| 4 | python-2.4 |
|---|
| 5 | interpreter |
|---|
| 6 | test |
|---|
| 7 | python = custom-python |
|---|
| 8 | develop = |
|---|
| 9 | src/OWSLib |
|---|
| 10 | |
|---|
| 11 | [python-2.4] |
|---|
| 12 | recipe = hexagonit.recipe.cmmi |
|---|
| 13 | url = http://www.python.org/ftp/python/2.4.4/Python-2.4.4.tgz |
|---|
| 14 | configure-options = |
|---|
| 15 | --with-threads |
|---|
| 16 | --with-readline |
|---|
| 17 | |
|---|
| 18 | [python-2.5] |
|---|
| 19 | recipe = hexagonit.recipe.cmmi |
|---|
| 20 | url = http://www.python.org/ftp/python/2.5.1/Python-2.5.1.tgz |
|---|
| 21 | configure-options = |
|---|
| 22 | --with-threads |
|---|
| 23 | --with-readline |
|---|
| 24 | |
|---|
| 25 | [custom-python] |
|---|
| 26 | executable = ${python-2.4:location}/bin/python |
|---|
| 27 | |
|---|
| 28 | [interpreter] |
|---|
| 29 | recipe = zc.recipe.egg |
|---|
| 30 | eggs = |
|---|
| 31 | OWSLib |
|---|
| 32 | elementtree |
|---|
| 33 | interpreter = python |
|---|
| 34 | |
|---|
| 35 | |
|---|
| 36 | [test] |
|---|
| 37 | recipe = zc.recipe.testrunner |
|---|
| 38 | eggs = |
|---|
| 39 | OWSLib |
|---|
| 40 | elementtree |
|---|
| 41 | defaults = [ '--auto-color', '-v'] |
|---|