Skip to main content

Provide buildout variables with platform specific values.

Project description

Limitations:

The recipe currently only generates platform strings for darwin10 and darwin9. Due to the simplicity of the recipe itself, it should not be hard ta add further platform-prefixes. (Patches and other contributions are welcome).

Example usage

This recipe provides a way of defining buildout variables which can be referenced form other parts with platform specific values. It does not try being intelligent and guess what values it should set, but gives the user full control, with the drawback/advantage of keeping all settings in a single or multiple configuration sections.

But examples are probably a better explanation:

>>> write(sample_buildout, 'buildout.cfg',
... """
... [buildout]
... parts = debug
...
... [platform]
... recipe = collective.recipe.platform
... environment =
... darwin10-environment =
...     CC=gcc-4.0
... flags =
... darwin9-flags =
...     CPP=cpp-4.0
...
... [debug]
... recipe = zc.buildout:debug
... env = ${platform:environment}
... flags = ${platform:flags}
... plname = ${platform:platform}
... """)

Ok, we have a part called ‘debug’. This part just prints all given options to stdout. In our case it uses values referenced in the platform part.

The platform recipe looks for options starting with a platform prefix, taxes the remainder of the option name and replaces the value.

The result of a buildout running on OSX 10.6 (darwin10) is the following:

>>> print system(buildout)
Installing platform.
Unused options for platform: 'darwin9-flags'.
Installing debug.
  env='\nCC=gcc-4.0'
  flags=''
  plname='darwin10'
  recipe='zc.buildout:debug'

Changes:

0.1 (2009-10-13)

  • initial release

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

collective.recipe.platform-0.1.tar.gz (3.8 kB view details)

Uploaded Source

File details

Details for the file collective.recipe.platform-0.1.tar.gz.

File metadata

File hashes

Hashes for collective.recipe.platform-0.1.tar.gz
Algorithm Hash digest
SHA256 c2230d6538c18d2330a5d5e4a4e01cd7dafbbecdacc425f2656b78ddf6f26b3c
MD5 0a4391ff4826c341cca29e79bcf6a612
BLAKE2b-256 038a08ce043378e3aa027f74304a6eb07a9aad6288c08168ca232950152d8b25

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page