diff options
Diffstat (limited to 'tests/data/test.ini')
-rwxr-xr-x[-rw-r--r--] | tests/data/test.ini | 106 |
1 files changed, 53 insertions, 53 deletions
diff --git a/tests/data/test.ini b/tests/data/test.ini index bf8d904..b5f6cca 100644..100755 --- a/tests/data/test.ini +++ b/tests/data/test.ini @@ -1,53 +1,53 @@ -[cgi] -local_server: true -local_port: 8888 -local_sources: /srv/conda/sources -protocol: http -url: ${cgi:protocol}://localhost:${cgi:local_port} - -[package] -name: test -version: 1.0.0 -release: 1 - -[about] -home: http://example.com/${package:name} -license: GPL -summary: ${package:name} is a test package -readme: README.md - -[source] -fn: ${package:name}-${package:version}.tar.gz -url: ${cgi:url}/${fn} - -[build] -number: 1 - - -[build_ext] -prefix: /usr/local -win_prefix: c:\anaconda3\ - - -linux: - #find . -type f -name "*.py" -exec "sed -i 's|beep|bloop|g'" {} \; - for x in *.py - do - echo "$$x" - done - (./configure --prefix=${prefix} ; \ - make ; \ - make install ) - -darwin: - find . -type f -name "*.py" -exec "sed -i 's|blat|splat|g'" {} \; - ./configure --prefix=${prefix} - make - make install - -windows: - rem oh no, windows! - echo "ow it hurts" - nmake /D_PREFIX=${win_prefix} - - +[cbc_cgi]
+local_server: true
+local_port: 8888
+local_sources: /srv/conda/sources
+protocol: http
+url: ${cbc_cgi:protocol}://localhost:${cbc_cgi:local_port}
+
+[package]
+name: test
+version: 1.0.0
+release: 1
+
+[about]
+home: http://example.com/${package:name}
+license: GPL
+summary: ${package:name} is a test package
+readme: README.md
+
+[source]
+fn: ${package:name}-${package:version}.tar.gz
+url: ${cbc_cgi:url}/${fn}
+
+[build]
+number: 1
+
+
+[cbc_build]
+prefix: /usr/local
+win_prefix: c:\anaconda3\
+
+
+linux:
+ #find . -type f -name "*.py" -exec "sed -i 's|beep|bloop|g'" {} \;
+ for x in *.py
+ do
+ echo "$$x"
+ done
+ (./configure --prefix=${prefix} ; \
+ make ; \
+ make install )
+
+darwin:
+ find . -type f -name "*.py" -exec "sed -i 's|blat|splat|g'" {} \;
+ ./configure --prefix=${prefix}
+ make
+ make install
+
+windows:
+ rem oh no, windows!
+ echo "ow it hurts"
+ nmake /D_PREFIX=${win_prefix}
+
+
|