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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kirill Smelkov
slapos.buildout
Commits
dda4367a
Commit
dda4367a
authored
Feb 26, 2017
by
Jim Fulton
Committed by
GitHub
Feb 26, 2017
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #353 from buildout/leorochael-moar-fetch-logging
easy_install: moar loggin' for fetchin'
parents
c1ce25ce
e7803d9d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
0 deletions
+6
-0
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+2
-0
src/zc/buildout/easy_install.txt
src/zc/buildout/easy_install.txt
+4
-0
No files found.
src/zc/buildout/easy_install.py
View file @
dda4367a
...
...
@@ -466,8 +466,10 @@ class Installer:
if
(
download_cache
and
(
realpath
(
os
.
path
.
dirname
(
dist
.
location
))
==
download_cache
)
):
logger
.
debug
(
"Download cache has %s at: %s"
,
dist
,
dist
.
location
)
return
dist
logger
.
debug
(
"Fetching %s from: %s"
,
dist
,
dist
.
location
)
new_location
=
self
.
_index
.
download
(
dist
.
location
,
tmp
)
if
(
download_cache
and
(
realpath
(
new_location
)
==
realpath
(
dist
.
location
))
...
...
src/zc/buildout/easy_install.txt
View file @
dda4367a
...
...
@@ -266,6 +266,8 @@ reporting that a version was picked automatically:
Installing 'demo'.
zc.buildout.easy_install INFO
Getting distribution for 'demo'.
zc.buildout.easy_install DEBUG
Fetching demo 0.3 from: http://.../demo-0.3-pyN.N.egg
zc.buildout.easy_install INFO
Got demo 0.3.
zc.buildout.easy_install DEBUG
...
...
@@ -276,6 +278,8 @@ reporting that a version was picked automatically:
required by demo 0.3.
zc.buildout.easy_install INFO
Getting distribution for 'demoneeded'.
zc.buildout.easy_install DEBUG
Fetching demoneeded 1.1 from: http://.../demoneeded-1.1.zip
zc.buildout.easy_install DEBUG
Running easy_install:...
zc.buildout.easy_install INFO
...
...
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