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
Thomas Leymonerie
slapos.buildout
Commits
9fb429eb
Commit
9fb429eb
authored
Nov 04, 2014
by
Alex Clark ☺
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #201 from reinout/reinout-fix-193-again
Fix for the #198 fix
parents
a5950d64
3561f2a9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
14 deletions
+40
-14
CHANGES.rst
CHANGES.rst
+18
-0
setup.py
setup.py
+1
-2
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+21
-12
No files found.
CHANGES.rst
View file @
9fb429eb
Change History
**************
2.2.5 (unreleased)
==================
- Improved fix for #198: when bootstrapping with an extension, buildout was
too strict on itself, resulting in an inability to upgrade or downgrade its
own version.
[reinout]
- Setuptools must be at 3.3 or higher now. If you use the latest bootstrap
from http://downloads.buildout.org/2/bootstrap.py you're all set.
[reinout]
- Installing *recipes* that themselves have dependencies used to fail with a
VersionConflict if such a dependency was installed globally with a lower
version. Buildout now ignores the version conflict in those cases and simply
installs the correct version.
[reinout]
2.2.4 (2014-11-01)
==================
...
...
setup.py
View file @
9fb429eb
...
...
@@ -88,7 +88,7 @@ setup(
package_dir
=
{
''
:
'src'
},
namespace_packages
=
[
'zc'
],
install_requires
=
[
'setuptools>=
0.7
'
,
'setuptools>=
3.3
'
,
],
include_package_data
=
True
,
entry_points
=
entry_points
,
...
...
@@ -108,4 +108,3 @@ setup(
'Topic :: Software Development :: Libraries :: Python Modules'
,
],
)
src/zc/buildout/easy_install.py
View file @
9fb429eb
...
...
@@ -465,8 +465,7 @@ class Installer:
return
dist
.
clone
(
location
=
new_location
)
def
_get_dist
(
self
,
requirement
,
ws
):
def
_get_dist
(
self
,
requirement
,
ws
,
for_buildout_run
=
False
):
__doing__
=
'Getting distribution for %r.'
,
str
(
requirement
)
# Maybe an existing dist is already the best dist that satisfies the
...
...
@@ -513,8 +512,6 @@ class Installer:
# obtained locally. Just copy it.
shutil
.
copytree
(
dist
.
location
,
newloc
)
else
:
setuptools
.
archive_util
.
unpack_archive
(
dist
.
location
,
newloc
)
...
...
@@ -532,6 +529,13 @@ class Installer:
dist
.
location
,
ws
,
self
.
_dest
,
dist
)
for
dist
in
dists
:
redo_pyc
(
dist
.
location
)
if
for_buildout_run
:
# ws is the global working set and we're
# installing buildout, setuptools, extensions or
# recipes. Make sure that whatever correct version
# we've just installed is the active version,
# hence the ``replace=True``.
ws
.
add
(
dist
,
replace
=
True
)
finally
:
if
tmp
!=
self
.
_download_cache
:
...
...
@@ -608,6 +612,7 @@ class Installer:
logger
.
debug
(
'Installing %s.'
,
repr
(
specs
)[
1
:
-
1
])
for_buildout_run
=
bool
(
working_set
)
path
=
self
.
_path
dest
=
self
.
_dest
if
dest
is
not
None
and
dest
not
in
path
:
...
...
@@ -622,7 +627,8 @@ class Installer:
ws
=
working_set
for
requirement
in
requirements
:
for
dist
in
self
.
_get_dist
(
requirement
,
ws
):
for
dist
in
self
.
_get_dist
(
requirement
,
ws
,
for_buildout_run
=
for_buildout_run
):
ws
.
add
(
dist
)
self
.
_maybe_add_setuptools
(
ws
,
dist
)
...
...
@@ -640,6 +646,7 @@ class Installer:
# to look for new eggs unless what we have is the best that
# matches the requirement.
env
=
pkg_resources
.
Environment
(
ws
.
entries
)
while
requirements
:
# Process dependencies breadth-first.
current_requirement
=
requirements
.
pop
(
0
)
...
...
@@ -656,12 +663,13 @@ class Installer:
"Version conflict while processing requirement %s "
"(constrained to %s)"
,
current_requirement
,
req
)
# When bootstrapping zc.buildout, we might be doing it
# with a different version than the one we specified in
# our versions list. Reason: the bootstrap grabs the
# latest buildout. Same with setuptools.
# So ignore the version conflict for those two packages.
if
req
.
key
not
in
[
'zc.buildout'
,
'setuptools'
]:
# Installing buildout itself and its extensions and
# recipes requires the global
# ``pkg_resources.working_set`` to be active, which also
# includes all system packages. So there might be
# conflicts, which are fine to ignore. We'll grab the
# correct version a few lines down.
if
not
for_buildout_run
:
raise
VersionConflict
(
err
,
ws
)
if
dist
is
None
:
if
dest
:
...
...
@@ -669,7 +677,8 @@ class Installer:
else
:
logger
.
debug
(
'Adding required %r'
,
str
(
req
))
_log_requirement
(
ws
,
req
)
for
dist
in
self
.
_get_dist
(
req
,
ws
,):
for
dist
in
self
.
_get_dist
(
req
,
ws
,
for_buildout_run
=
for_buildout_run
):
ws
.
add
(
dist
)
self
.
_maybe_add_setuptools
(
ws
,
dist
)
if
dist
not
in
req
:
...
...
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