Commit 28d34d53 authored by Kai Lautaportti's avatar Kai Lautaportti

Updated to latest changes in hexagonit.recipe.download.

parent c5c5a6fe
...@@ -160,7 +160,6 @@ default build options. ...@@ -160,7 +160,6 @@ default build options.
>>> print system(buildout) >>> print system(buildout)
Installing package. Installing package.
package: Creating download directory: /sample_buildout/downloads
package: Extracting package to /sample_buildout/parts/package__compile__ package: Extracting package to /sample_buildout/parts/package__compile__
configure --prefix=/sample_buildout/parts/package configure --prefix=/sample_buildout/parts/package
building package building package
...@@ -289,10 +288,8 @@ scripts are run. ...@@ -289,10 +288,8 @@ scripts are run.
>>> print system(buildout) >>> print system(buildout)
Uninstalling package. Uninstalling package.
Installing package. Installing package.
package: [ENV] LDFLAGS = -L/sw/lib -L/some/extra/lib
package: [ENV] CFLAGS = -I/sw/include package: [ENV] CFLAGS = -I/sw/include
package: Using a cached copy from /sample_buildout/downloads/package-0.0.0.tar.gz package: [ENV] LDFLAGS = -L/sw/lib -L/some/extra/lib
package: MD5 checksum OK
package: Extracting package to /sample_buildout/parts/package__compile__ package: Extracting package to /sample_buildout/parts/package__compile__
package: Applying patches package: Applying patches
patching file configure patching file configure
...@@ -366,7 +363,6 @@ and a new buildout to try it out ...@@ -366,7 +363,6 @@ and a new buildout to try it out
>>> print system(buildout) >>> print system(buildout)
Uninstalling package. Uninstalling package.
Installing package. Installing package.
package: Using a cached copy from /sample_buildout/downloads/package-0.0.0.tar.gz
package: Extracting package to /sample_buildout/parts/package__compile__ package: Extracting package to /sample_buildout/parts/package__compile__
package: Executing pre-configure-hook package: Executing pre-configure-hook
hook: This is pre-configure-hook! hook: This is pre-configure-hook!
......
...@@ -86,8 +86,8 @@ class Recipe(object): ...@@ -86,8 +86,8 @@ class Recipe(object):
patches = self.options.get('patches', '').split() patches = self.options.get('patches', '').split()
if self.environ: if self.environ:
for key, value in self.environ.items(): for key in sorted(self.environ.keys()):
log.info('[ENV] %s = %s', key, value) log.info('[ENV] %s = %s', key, self.environ[key])
os.environ.update(self.environ) os.environ.update(self.environ)
# Download the source using hexagonit.recipe.download # Download the source using hexagonit.recipe.download
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment