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.build
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
Thomas Leymonerie
slapos.recipe.build
Commits
3623aa8c
Commit
3623aa8c
authored
Jun 07, 2012
by
Cédric de Saint Martin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert accidental commit about experimental work
parent
1b516813
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
27 deletions
+24
-27
slapos/recipe/build.py
slapos/recipe/build.py
+24
-27
No files found.
slapos/recipe/build.py
View file @
3623aa8c
...
@@ -382,7 +382,29 @@ class Cmmi(Script):
...
@@ -382,7 +382,29 @@ class Cmmi(Script):
Compatibility on parameter level"""
Compatibility on parameter level"""
script
=
"""
script
=
"""
self._install()
if self.options['url']:
url = self.download(self.options['url'], self.options.get('md5sum'))
extract_dir = self.extract(url)
workdir = guessworkdir(extract_dir)
else:
workdir = self.options['path']
configure_command = self.options.get('configure-command')
if configure_command is None or configure_command.lower() == 'None':
configure_command = ["./configure", "--prefix=%(location)s"] + %(configure-options)r.split()
else:
configure_command = configure_command.split()
self.logger.info('Configuring with: %%r' %% ' '.join(configure_command))
self.applyPatchList(self.options.get('patches'), self.options.get('patch-options'), self.options.get('patch-binary'), workdir)
call(configure_command, cwd=workdir, env=env)
make_command = [self.options.get('make-binary', "make")]
make_options = self.options.get('make-options')
if make_options is not None:
make_command.extend(make_options.split())
self.logger.info('Building with %%r' %% ' '.join(make_command))
call(make_command, cwd=workdir, env=env)
make_command.append('install')
self.logger.info('Installing with %%r' %% ' '.join(make_command))
call(make_command + ['install'], cwd=workdir, env=env)
"""
"""
def
__init__
(
self
,
buildout
,
name
,
options
):
def
__init__
(
self
,
buildout
,
name
,
options
):
...
@@ -392,29 +414,4 @@ self._install()
...
@@ -392,29 +414,4 @@ self._install()
if
options
[
'url'
]
and
options
[
'path'
]:
if
options
[
'url'
]
and
options
[
'path'
]:
raise
zc
.
buildout
.
UserError
(
'You must use either "url" or "path", not both!'
)
raise
zc
.
buildout
.
UserError
(
'You must use either "url" or "path", not both!'
)
if
not
(
options
[
'url'
]
or
options
[
'path'
]):
if
not
(
options
[
'url'
]
or
options
[
'path'
]):
raise
zc
.
buildout
.
UserError
(
'You must provide either "url" or "path".'
)
raise
zc
.
buildout
.
UserError
(
'You must provide either "url" or "path".'
)
\ No newline at end of file
def
_install
(
self
):
if
self
.
options
[
'url'
]:
url
=
self
.
download
(
self
.
options
[
'url'
],
self
.
options
.
get
(
'md5sum'
))
extract_dir
=
self
.
extract
(
url
)
workdir
=
guessworkdir
(
extract_dir
)
else
:
workdir
=
self
.
options
[
'path'
]
configure_command
=
self
.
options
.
get
(
'configure-command'
)
if
configure_command
is
None
or
configure_command
.
lower
()
==
'None'
:
configure_command
=
[
"./configure"
,
"--prefix=%(location)s"
]
+
%
(
configure
-
options
)
r
.
split
()
else
:
configure_command
=
configure_command
.
split
()
self
.
logger
.
info
(
'Configuring with: %%r'
%%
' '
.
join
(
configure_command
))
self
.
applyPatchList
(
self
.
options
.
get
(
'patches'
),
self
.
options
.
get
(
'patch-options'
),
self
.
options
.
get
(
'patch-binary'
),
workdir
)
call
(
configure_command
,
cwd
=
workdir
,
env
=
env
)
make_command
=
[
self
.
options
.
get
(
'make-binary'
,
"make"
)]
make_options
=
self
.
options
.
get
(
'make-options'
)
if
make_options
is
not
None
:
make_command
.
extend
(
make_options
.
split
())
self
.
logger
.
info
(
'Building with %%r'
%%
' '
.
join
(
make_command
))
call
(
make_command
,
cwd
=
workdir
,
env
=
env
)
make_command
.
append
(
'install'
)
self
.
logger
.
info
(
'Installing with %%r'
%%
' '
.
join
(
make_command
))
call
(
make_command
+
[
'install'
],
cwd
=
workdir
,
env
=
env
)
\ No newline at end of file
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