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
8
Merge Requests
8
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
slapos.buildout
Commits
5f157a64
Commit
5f157a64
authored
Mar 21, 2020
by
Julien Muchembled
Committed by
Xavier Thompson
May 20, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[fix] Do not install entry points if there's any missing extra
parent
ce63a668
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+6
-4
No files found.
src/zc/buildout/easy_install.py
View file @
5f157a64
...
@@ -1171,10 +1171,12 @@ def scripts(reqs, working_set, executable, dest=None,
...
@@ -1171,10 +1171,12 @@ def scripts(reqs, working_set, executable, dest=None,
req
=
pkg_resources
.
Requirement
.
parse
(
req
)
req
=
pkg_resources
.
Requirement
.
parse
(
req
)
if
req
.
marker
and
not
req
.
marker
.
evaluate
():
if
req
.
marker
and
not
req
.
marker
.
evaluate
():
continue
continue
has_extras
=
set
(
req
.
extras
).
issuperset
dist
=
working_set
.
find
(
req
)
dist
=
working_set
.
find
(
req
)
# regular console_scripts entry points
# regular console_scripts entry points
for
name
in
pkg_resources
.
get_entry_map
(
dist
,
'console_scripts'
):
for
name
in
pkg_resources
.
get_entry_map
(
dist
,
'console_scripts'
):
entry_point
=
dist
.
get_entry_info
(
'console_scripts'
,
name
)
entry_point
=
dist
.
get_entry_info
(
'console_scripts'
,
name
)
if
has_extras
(
entry_point
.
extras
):
entry_points
.
append
(
entry_points
.
append
(
(
name
,
entry_point
.
module_name
,
(
name
,
entry_point
.
module_name
,
'.'
.
join
(
entry_point
.
attrs
))
'.'
.
join
(
entry_point
.
attrs
))
...
...
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