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
Łukasz Nowak
slapos.buildout
Commits
01c6e19e
Commit
01c6e19e
authored
Mar 09, 2007
by
Jim Fulton
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Print warnings of unused options in the buildout and installed-part
sections.
parent
b0ec0009
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
100 additions
and
18 deletions
+100
-18
CHANGES.txt
CHANGES.txt
+6
-0
src/zc/buildout/buildout.py
src/zc/buildout/buildout.py
+49
-17
src/zc/buildout/tests.py
src/zc/buildout/tests.py
+45
-1
No files found.
CHANGES.txt
View file @
01c6e19e
...
...
@@ -23,6 +23,8 @@ Change History
Feature Changes
---------------
Improved error reporting and debugging support:
- Added "logical tracebacks" that show functionally what the buildout
was doing when an error occurs. Don't show a Python traceback
unless the -D option is used.
...
...
@@ -30,6 +32,10 @@ Feature Changes
- Added a -D option that causes the buildout to print a traceback and
start the pdb post-mortem debugger when an error occurs.
- Warnings are printed for unused options in the buildout section and
installed-part sections. This should make it easier to catch option
misspellings.
1.0.0b21 (2007-03-06)
=====================
...
...
src/zc/buildout/buildout.py
View file @
01c6e19e
...
...
@@ -56,6 +56,17 @@ class MissingSection(zc.buildout.UserError, KeyError):
def
__str__
(
self
):
return
"The referenced section, %r, was not defined."
%
self
[
0
]
_buildout_default_options
=
{
'eggs-directory'
:
'eggs'
,
'develop-eggs-directory'
:
'develop-eggs'
,
'bin-directory'
:
'bin'
,
'parts-directory'
:
'parts'
,
'installed'
:
'.installed.cfg'
,
'python'
:
'buildout'
,
'executable'
:
sys
.
executable
,
'log-level'
:
'INFO'
,
'log-format'
:
'%(name)s: %(message)s'
,
}
class
Buildout
(
UserDict
.
DictMixin
):
...
...
@@ -67,17 +78,7 @@ class Buildout(UserDict.DictMixin):
self
.
__windows_restart
=
windows_restart
# default options
data
=
dict
(
buildout
=
{
'eggs-directory'
:
'eggs'
,
'develop-eggs-directory'
:
'develop-eggs'
,
'bin-directory'
:
'bin'
,
'parts-directory'
:
'parts'
,
'installed'
:
'.installed.cfg'
,
'python'
:
'buildout'
,
'executable'
:
sys
.
executable
,
'log-level'
:
'INFO'
,
'log-format'
:
'%(name)s: %(message)s'
,
})
data
=
dict
(
buildout
=
_buildout_default_options
.
copy
())
if
not
_isurl
(
config_file
):
config_file
=
os
.
path
.
abspath
(
config_file
)
...
...
@@ -108,7 +109,6 @@ class Buildout(UserDict.DictMixin):
options
[
option
]
=
value
# The egg dire
self
.
_raw
=
data
self
.
_data
=
{}
self
.
_parts
=
[]
...
...
@@ -149,6 +149,10 @@ class Buildout(UserDict.DictMixin):
if
versions
:
zc
.
buildout
.
easy_install
.
default_versions
(
dict
(
self
[
versions
]))
# "Use" each of the defaults so they aren't reported as unused options.
for
name
in
_buildout_default_options
:
options
[
name
]
def
_buildout_path
(
self
,
*
names
):
return
os
.
path
.
join
(
self
.
_buildout_dir
,
*
names
)
...
...
@@ -281,6 +285,9 @@ class Buildout(UserDict.DictMixin):
self
.
_uninstall_part
(
part
,
installed_part_options
)
installed_parts
=
[
p
for
p
in
installed_parts
if
p
!=
part
]
# Check for unused buildout options:
_check_for_unused_options_in_section
(
self
,
'buildout'
)
# install new parts
for
part
in
install_parts
:
signature
=
self
[
part
].
pop
(
'__buildout_signature__'
)
...
...
@@ -340,6 +347,7 @@ class Buildout(UserDict.DictMixin):
installed_parts
=
[
p
for
p
in
installed_parts
if
p
!=
part
]
installed_parts
.
append
(
part
)
_check_for_unused_options_in_section
(
self
,
part
)
finally
:
installed_part_options
[
'buildout'
][
'parts'
]
=
(
...
...
@@ -720,14 +728,17 @@ class Options(UserDict.DictMixin):
self
.
buildout
=
buildout
self
.
name
=
section
self
.
_raw
=
data
self
.
_cooked
=
{}
self
.
_data
=
{}
def
_initialize
(
self
):
name
=
self
.
name
__doing__
=
'Initializing section %s'
,
name
# force substitutions
for
k
in
self
.
_raw
:
self
.
get
(
k
)
for
k
,
v
in
self
.
_raw
.
items
():
if
'${'
in
v
:
self
.
_dosub
(
k
,
v
)
recipe
=
self
.
get
(
'recipe'
)
if
not
recipe
:
...
...
@@ -741,12 +752,20 @@ class Options(UserDict.DictMixin):
self
.
recipe
=
recipe_class
(
buildout
,
name
,
self
)
buildout
.
_parts
.
append
(
name
)
def
_dosub
(
self
,
option
,
v
):
__doing__
=
'Getting option %s:%s'
,
self
.
name
,
option
seen
=
[(
self
.
name
,
option
)]
v
=
'$$'
.
join
([
self
.
_sub
(
s
,
seen
)
for
s
in
v
.
split
(
'$$'
)])
self
.
_cooked
[
option
]
=
v
def
get
(
self
,
option
,
default
=
None
,
seen
=
None
):
try
:
return
self
.
_data
[
option
]
except
KeyError
:
pass
v
=
self
.
_cooked
.
get
(
option
)
if
v
is
None
:
v
=
self
.
_raw
.
get
(
option
)
if
v
is
None
:
return
default
...
...
@@ -826,6 +845,8 @@ class Options(UserDict.DictMixin):
del
self
.
_raw
[
key
]
if
key
in
self
.
_data
:
del
self
.
_data
[
key
]
if
key
in
self
.
_cooked
:
del
self
.
_cooked
[
key
]
elif
key
in
self
.
_data
:
del
self
.
_data
[
key
]
else
:
...
...
@@ -836,7 +857,10 @@ class Options(UserDict.DictMixin):
return
list
(
self
.
_raw
)
+
[
k
for
k
in
self
.
_data
if
k
not
in
raw
]
def
copy
(
self
):
return
dict
([(
k
,
self
[
k
])
for
k
in
self
.
keys
()])
result
=
self
.
_raw
.
copy
()
result
.
update
(
self
.
_cooked
)
result
.
update
(
self
.
_data
)
return
result
_spacey_nl
=
re
.
compile
(
'[
\
t
\
r
\
f
\
v
]*
\
n
[
\
t
\
r
\
f
\
v
\
n
]*'
'|'
...
...
@@ -1006,6 +1030,14 @@ recipe being used:
%s
"""
def
_check_for_unused_options_in_section
(
buildout
,
section
):
options
=
buildout
[
section
]
unused
=
[
option
for
option
in
options
.
_raw
if
option
not
in
options
.
_data
]
if
unused
:
buildout
.
_logger
.
warn
(
"Unused options for %s: %s"
%
(
section
,
' '
.
join
(
map
(
repr
,
unused
)))
)
def
_internal_error
(
v
):
sys
.
stderr
.
write
(
_internal_error_template
%
(
v
.
__class__
.
__name__
,
v
))
...
...
src/zc/buildout/tests.py
View file @
01c6e19e
...
...
@@ -1341,6 +1341,50 @@ def download_errors():
Error: Download error...
"""
def
whine_about_unused_options
():
'''
>>> write('foo.py',
... """
... class Foo:
...
... def __init__(self, buildout, name, options):
... self.name, self.options = name, options
... options['x']
...
... def install(self):
... self.options['y']
... return ()
... """)
>>> write('setup.py',
... """
... from setuptools import setup
... setup(name = "foo",
... entry_points = {'zc.buildout': ['default = foo:Foo']},
... )
... """)
>>> write('buildout.cfg',
... """
... [buildout]
... develop = .
... parts = foo
... a = 1
...
... [foo]
... recipe = foo
... x = 1
... y = 1
... z = 1
... """)
>>> print system(buildout),
buildout: Develop: /tmp/tmpsueWpG/_TEST_/sample-buildout/.
buildout: Unused options for buildout: 'a'
buildout: Installing foo
buildout: Unused options for foo: 'z'
'''
######################################################################
...
...
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