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
Nicolas Wavrant
slapos.buildout
Commits
41b6a9ea
Commit
41b6a9ea
authored
Oct 18, 2015
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Give the same permission but write as owner to group and other.
parent
835780f3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
1 deletion
+16
-1
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+16
-1
No files found.
src/zc/buildout/easy_install.py
View file @
41b6a9ea
...
@@ -31,6 +31,7 @@ import setuptools.command.easy_install
...
@@ -31,6 +31,7 @@ import setuptools.command.easy_install
import
setuptools.command.setopt
import
setuptools.command.setopt
import
setuptools.package_index
import
setuptools.package_index
import
shutil
import
shutil
import
stat
import
subprocess
import
subprocess
import
sys
import
sys
import
tempfile
import
tempfile
...
@@ -1669,14 +1670,28 @@ def _fix_file_links(links):
...
@@ -1669,14 +1670,28 @@ def _fix_file_links(links):
def
_final_version
(
parsed_version
):
def
_final_version
(
parsed_version
):
return
not
parsed_version
.
is_prerelease
return
not
parsed_version
.
is_prerelease
def
chmod
(
path
):
if
os
.
path
.
islink
(
path
)
or
not
os
.
path
.
exists
(
path
):
return
# give the same permission but write as owner to group and other.
current_perm
=
os
.
stat
(
path
).
st_mode
&
\
(
stat
.
S_IRWXU
+
stat
.
S_IRWXG
+
stat
.
S_IRWXO
)
owner_perm
=
current_perm
&
stat
.
S_IRWXU
new_perm
=
(
owner_perm
+
owner_perm
//
0o010
+
owner_perm
//
0o100
)
&
\
(
~
0o022
)
if
new_perm
!=
current_perm
:
os
.
chmod
(
path
,
new_perm
)
def
redo_pyc
(
egg
):
def
redo_pyc
(
egg
):
if
not
os
.
path
.
isdir
(
egg
):
if
not
os
.
path
.
isdir
(
egg
):
return
return
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
egg
):
for
dirpath
,
dirnames
,
filenames
in
os
.
walk
(
egg
):
chmod
(
dirpath
)
for
filename
in
filenames
:
for
filename
in
filenames
:
filepath
=
os
.
path
.
join
(
dirpath
,
filename
)
chmod
(
filepath
)
if
not
filename
.
endswith
(
'.py'
):
if
not
filename
.
endswith
(
'.py'
):
continue
continue
filepath
=
os
.
path
.
join
(
dirpath
,
filename
)
if
not
(
os
.
path
.
exists
(
filepath
+
'c'
)
if
not
(
os
.
path
.
exists
(
filepath
+
'c'
)
or
os
.
path
.
exists
(
filepath
+
'o'
)):
or
os
.
path
.
exists
(
filepath
+
'o'
)):
# If it wasn't compiled, it may not be compilable
# If it wasn't compiled, it may not be compilable
...
...
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