Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
slapos.buildout
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Xavier Thompson
slapos.buildout
Commits
ec4b9404
Commit
ec4b9404
authored
Oct 25, 2016
by
Julien Muchembled
Committed by
Xavier Thompson
Oct 31, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add support for escaping $ with $$
parent
ecc8b664
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
84 additions
and
13 deletions
+84
-13
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+16
-13
src/zc/buildout/tests.py
src/zc/buildout/tests.py
+68
-0
No files found.
src/zc/buildout/buildout.py
View file @
ec4b9404
...
@@ -652,7 +652,7 @@ class Buildout(DictMixin):
...
@@ -652,7 +652,7 @@ class Buildout(DictMixin):
if
part
in
install_parts
:
if
part
in
install_parts
:
old_options
=
installed_part_options
[
part
].
copy
()
old_options
=
installed_part_options
[
part
].
copy
()
installed_files
=
old_options
.
pop
(
'__buildout_installed__'
)
installed_files
=
old_options
.
pop
(
'__buildout_installed__'
)
new_options
=
self
.
get
(
part
)
new_options
=
self
.
get
(
part
)
.
copy
()
if
old_options
==
new_options
:
if
old_options
==
new_options
:
# The options are the same, but are all of the
# The options are the same, but are all of the
# installed files still there? If not, we should
# installed files still there? If not, we should
...
@@ -1341,12 +1341,16 @@ class Options(DictMixin):
...
@@ -1341,12 +1341,16 @@ class Options(DictMixin):
def
_dosub
(
self
,
option
,
v
):
def
_dosub
(
self
,
option
,
v
):
__doing__
=
'Getting option %s:%s.'
,
self
.
name
,
option
__doing__
=
'Getting option %s:%s.'
,
self
.
name
,
option
seen
=
[(
self
.
name
,
option
)]
seen
=
[(
self
.
name
,
option
)]
v
=
'$$'
.
join
([
self
.
_sub
(
s
,
seen
)
for
s
in
v
.
split
(
'$$'
)])
v
=
'$$'
.
join
([
self
.
_sub
(
s
,
seen
,
last
=
False
)
for
s
in
v
.
split
(
'$$'
)])
self
.
_cooked
[
option
]
=
v
self
.
_cooked
[
option
]
=
v
def
get
(
self
,
option
,
default
=
None
,
seen
=
None
):
def
get
(
self
,
option
,
default
=
None
,
seen
=
None
,
last
=
True
):
try
:
try
:
return
self
.
_data
[
option
]
if
last
:
return
self
.
_data
[
option
].
replace
(
'$${'
,
'${'
)
else
:
return
self
.
_data
[
option
]
except
KeyError
:
except
KeyError
:
pass
pass
...
@@ -1368,16 +1372,20 @@ class Options(DictMixin):
...
@@ -1368,16 +1372,20 @@ class Options(DictMixin):
)
)
else
:
else
:
seen
.
append
(
key
)
seen
.
append
(
key
)
v
=
'$$'
.
join
([
self
.
_sub
(
s
,
seen
)
for
s
in
v
.
split
(
'$$'
)])
v
=
'$$'
.
join
([
self
.
_sub
(
s
,
seen
,
last
=
False
)
for
s
in
v
.
split
(
'$$'
)])
seen
.
pop
()
seen
.
pop
()
self
.
_data
[
option
]
=
v
self
.
_data
[
option
]
=
v
return
v
if
last
:
return
v
.
replace
(
'$${'
,
'${'
)
else
:
return
v
_template_split
=
re
.
compile
(
'([$]{[^}]*})'
).
split
_template_split
=
re
.
compile
(
'([$]{[^}]*})'
).
split
_simple
=
re
.
compile
(
'[-a-zA-Z0-9 ._]+$'
).
match
_simple
=
re
.
compile
(
'[-a-zA-Z0-9 ._]+$'
).
match
_valid
=
re
.
compile
(
'
\
${[-
a
-zA-Z0-9 ._]*:[-a-zA-Z0-9 ._]+}$'
).
match
_valid
=
re
.
compile
(
'
\
${[-
a
-zA-Z0-9 ._]*:[-a-zA-Z0-9 ._]+}$'
).
match
def
_sub
(
self
,
template
,
seen
):
def
_sub
(
self
,
template
,
seen
,
last
=
True
):
value
=
self
.
_template_split
(
template
)
value
=
self
.
_template_split
(
template
)
subs
=
[]
subs
=
[]
for
ref
in
value
[
1
::
2
]:
for
ref
in
value
[
1
::
2
]:
...
@@ -1405,7 +1413,7 @@ class Options(DictMixin):
...
@@ -1405,7 +1413,7 @@ class Options(DictMixin):
section
,
option
=
s
section
,
option
=
s
if
not
section
:
if
not
section
:
section
=
self
.
name
section
=
self
.
name
v
=
self
.
buildout
[
section
].
get
(
option
,
None
,
seen
)
v
=
self
.
buildout
[
section
].
get
(
option
,
None
,
seen
,
last
=
last
)
if
v
is
None
:
if
v
is
None
:
if
option
==
'_buildout_section_name_'
:
if
option
==
'_buildout_section_name_'
:
v
=
self
.
name
v
=
self
.
name
...
@@ -1418,11 +1426,6 @@ class Options(DictMixin):
...
@@ -1418,11 +1426,6 @@ class Options(DictMixin):
return
''
.
join
([
''
.
join
(
v
)
for
v
in
zip
(
value
[::
2
],
subs
)])
return
''
.
join
([
''
.
join
(
v
)
for
v
in
zip
(
value
[::
2
],
subs
)])
def
__getitem__
(
self
,
key
):
def
__getitem__
(
self
,
key
):
try
:
return
self
.
_data
[
key
]
except
KeyError
:
pass
v
=
self
.
get
(
key
)
v
=
self
.
get
(
key
)
if
v
is
None
:
if
v
is
None
:
raise
MissingOption
(
"Missing option: %s:%s"
%
(
self
.
name
,
key
))
raise
MissingOption
(
"Missing option: %s:%s"
%
(
self
.
name
,
key
))
...
...
src/zc/buildout/tests.py
View file @
ec4b9404
...
@@ -1016,6 +1016,7 @@ Uninstall recipes need to be called when a part is removed too:
...
@@ -1016,6 +1016,7 @@ Uninstall recipes need to be called when a part is removed too:
uninstalling
uninstalling
Installing demo.
Installing demo.
installing
installing
Unused options for demo: 'x'.
>>> write('buildout.cfg', '''
>>> write('buildout.cfg', '''
...
@@ -2753,6 +2754,73 @@ def increment_on_command_line():
...
@@ -2753,6 +2754,73 @@ def increment_on_command_line():
recipe='zc.buildout:debug'
recipe='zc.buildout:debug'
"""
"""
def
bug_664539_simple_buildout
():
r"""
>>> write('buildout.cfg', '''
... [buildout]
... parts = escape
...
... [escape]
... recipe = zc.buildout:debug
... foo = $${nonexistent:option}
... ''')
>>> print_(system(buildout), end='')
Installing escape.
foo='${nonexistent:option}'
recipe='zc.buildout:debug'
"""
def
bug_664539_reference
():
r"""
>>> write('buildout.cfg', '''
... [buildout]
... parts = escape
...
... [escape]
... recipe = zc.buildout:debug
... foo = ${:bar}
... bar = $${nonexistent:option}
... ''')
>>> print_(system(buildout), end='')
Installing escape.
bar='${nonexistent:option}'
foo='${nonexistent:option}'
recipe='zc.buildout:debug'
"""
def
bug_664539_complex_buildout
():
r"""
>>> write('buildout.cfg', '''
... [buildout]
... parts = escape
...
... [escape]
... recipe = zc.buildout:debug
... foo = ${level1:foo}
...
... [level1]
... recipe = zc.buildout:debug
... foo = ${level2:foo}
...
... [level2]
... recipe = zc.buildout:debug
... foo = $${nonexistent:option}
... ''')
>>> print_(system(buildout), end='')
Installing level2.
foo='${nonexistent:option}'
recipe='zc.buildout:debug'
Installing level1.
foo='${nonexistent:option}'
recipe='zc.buildout:debug'
Installing escape.
foo='${nonexistent:option}'
recipe='zc.buildout:debug'
"""
def
test_constrained_requirement
():
def
test_constrained_requirement
():
"""
"""
zc.buildout.easy_install._constrained_requirement(constraint, requirement)
zc.buildout.easy_install._constrained_requirement(constraint, requirement)
...
...
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