aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Erdmann <dywi@mailerd.de>2013-07-23 16:31:13 +0200
committerAndré Erdmann <dywi@mailerd.de>2013-07-23 16:31:13 +0200
commit2bb8221892c3f07a54e4947afed9094987969e8d (patch)
tree4d955e19f7cfcef5d358d0b2cda8023826f63e84
parentdoc/html: "fix" example 3 in dependency rules (diff)
downloadR_overlay-2bb8221892c3f07a54e4947afed9094987969e8d.tar.gz
R_overlay-2bb8221892c3f07a54e4947afed9094987969e8d.tar.bz2
R_overlay-2bb8221892c3f07a54e4947afed9094987969e8d.zip
tests/: update depres data
-rw-r--r--tests/static/depres.py51
1 files changed, 25 insertions, 26 deletions
diff --git a/tests/static/depres.py b/tests/static/depres.py
index d91b012..5b8c98e 100644
--- a/tests/static/depres.py
+++ b/tests/static/depres.py
@@ -41,6 +41,23 @@ DEPRES_DATA = {
'selfdeps': (
),
+ 'and-split' : (
+ ( "GDAL >= 1.3.1", ">=sci-libs/gdal-1.3.1" ),
+ ( "PROJ.4 (>= 4.4.9)", ">=sci-libs/proj-4.4.9" ),
+
+ (
+ 'for building from source: GDAL >= 1.3.1 && GDAL < 1.6.0 '
+ '(until tested) library and PROJ.4 (proj >= 4.4.9)',
+ None
+ ),
+ (
+ 'for building from source: GDAL >= 1.3.1 '
+ 'library and PROJ.4 (>= 4.4.9)',
+ ( ">=sci-libs/gdal-1.3.1", ">=sci-libs/proj-4.4.9" ),
+ ),
+ ),
+
+
'empty': DONT_RESOLVE_TUPLE ( "fftw", ),
# examples from doc/rst/usage.rst
@@ -58,27 +75,7 @@ DEPRES_DATA = {
DONT_RESOLVE ( 'zoo 5' ),
),
'example3': (
- (
- 'for building from source: GDAL >= 1.3.1 && GDAL < 1.6.0 '
- '(until tested) library and PROJ.4 (proj >= 4.4.9)',
- '( sci-libs/gdal sci-libs/proj )'
- ),
- (
- 'for building from source: GDAL >= 1.3.1 library '
- 'and PROJ.4 (proj >= 4.4.9)',
- '( sci-libs/gdal sci-libs/proj )'
- ),
- (
- 'for building from source: GDAL >= 1.3.1 library '
- 'and PROJ.4(proj >= 4.4.9)',
- '( sci-libs/gdal sci-libs/proj )'
- ),
- (
- 'for building from source: GDAL >= 1.6.0 library '
- 'and PROJ.4(proj >= 4.4.9)',
- '( sci-libs/gdal sci-libs/proj )'
- ),
- DONT_RESOLVE ( "for building from source: GDAL AND PROJ" ),
+ ( 'BLAS/LAPACK libraries', '( virtual/blas virtual/lapack )' ),
),
'example4': (
RESOLVE_AS_IGNORED ( "see README" ),
@@ -143,6 +140,11 @@ DEPRES_RULES = {
'@selfdep', '~other-cat/pkg :: zoo',
),
+ 'and-split': (
+ '~sci-libs/gdal :: gdal',
+ '~sci-libs/proj {', 'proj', 'proj.4', '}',
+ ),
+
'empty': (),
# examples from doc/rst/usage.rst
@@ -153,11 +155,8 @@ DEPRES_RULES = {
'zoo',
),
'example3': (
- '( sci-libs/gdal sci-libs/proj ) {',
- 'for building from source: GDAL >= 1.3.1 && GDAL < 1.6.0 (until tested) library and PROJ.4 (proj >= 4.4.9)',
- 'for building from source: GDAL >= 1.3.1 library and PROJ.4 (proj >= 4.4.9)',
- 'for building from source: GDAL >= 1.3.1 library and PROJ.4(proj >= 4.4.9)',
- 'for building from source: GDAL >= 1.6.0 library and PROJ.4(proj >= 4.4.9)',
+ '( virtual/blas virtual/lapack ) {',
+ 'BLAS/LAPACK libraries',
'}',
),
'example4': (