Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.recipe.cmmi
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.recipe.cmmi
Commits
28d34d53
Commit
28d34d53
authored
Sep 19, 2009
by
Kai Lautaportti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Updated to latest changes in hexagonit.recipe.download.
parent
c5c5a6fe
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
7 deletions
+3
-7
hexagonit/recipe/cmmi/README.txt
hexagonit/recipe/cmmi/README.txt
+1
-5
hexagonit/recipe/cmmi/__init__.py
hexagonit/recipe/cmmi/__init__.py
+2
-2
No files found.
hexagonit/recipe/cmmi/README.txt
View file @
28d34d53
...
@@ -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!
...
...
hexagonit/recipe/cmmi/__init__.py
View file @
28d34d53
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment