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
Xavier Thompson
slapos.buildout
Commits
a2053433
Commit
a2053433
authored
Dec 01, 2017
by
Reinout van Rees
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed unused/deprecated wheel_to_egg() function
parent
f40fc8d7
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
50 deletions
+0
-50
src/zc/buildout/easy_install.py
src/zc/buildout/easy_install.py
+0
-3
src/zc/buildout/tests.py
src/zc/buildout/tests.py
+0
-47
No files found.
src/zc/buildout/easy_install.py
View file @
a2053433
...
...
@@ -89,9 +89,6 @@ setuptools_path = buildout_and_setuptools_path
FILE_SCHEME
=
re
.
compile
(
'file://'
,
re
.
I
).
match
DUNDER_FILE_PATTERN
=
re
.
compile
(
r"__file__ = '(?P<filename>.+)'$"
)
def
wheel_to_egg
(
dist
,
dest
):
raise
zc
.
buildout
.
UserError
(
"Wheels are not supported"
)
class
_Monkey
(
object
):
def
__init__
(
self
,
module
,
**
kw
):
mdict
=
self
.
_mdict
=
module
.
__dict__
...
...
src/zc/buildout/tests.py
View file @
a2053433
...
...
@@ -3144,53 +3144,6 @@ def test_buildout_doesnt_keep_adding_itself_to_versions():
if
sys
.
platform
==
'win32'
:
del
buildout_honors_umask
# umask on dohs is academic
class
UnitTests
(
unittest
.
TestCase
):
@
property
def
globs
(
self
):
return
self
.
__dict__
def
setUp
(
self
):
easy_install_SetUp
(
self
)
import
setuptools.package_index
setuptools
.
package_index
.
EXTENSIONS
.
append
(
'.whl'
)
import
zc.buildout.easy_install
self
.
orig_wheel_to_egg
=
zc
.
buildout
.
easy_install
.
wheel_to_egg
def
tearDown
(
self
):
import
zc.buildout.easy_install
zc
.
buildout
.
testing
.
buildoutTearDown
(
self
)
import
setuptools.package_index
setuptools
.
package_index
.
EXTENSIONS
.
remove
(
'.whl'
)
zc
.
buildout
.
easy_install
.
wheel_to_egg
=
self
.
orig_wheel_to_egg
def
test_wheel_to_egg
(
self
):
[
egg_name
]
=
[
n
for
n
in
os
.
listdir
(
self
.
sample_eggs
)
if
n
.
startswith
(
'demo-0.3-'
)]
path
=
os
.
path
.
join
(
self
.
sample_eggs
,
egg_name
)
os
.
rename
(
path
,
os
.
path
.
join
(
self
.
sample_eggs
,
'demo-0.3-py2.py3-none-any.whl'
))
import
zc.buildout.easy_install
installer
=
zc
.
buildout
.
easy_install
.
Installer
(
os
.
path
.
join
(
self
.
sample_buildout
,
'eggs'
),
index
=
self
.
sample_eggs
)
# Can't install because the original hook is in place:
with
self
.
assertRaises
(
zc
.
buildout
.
UserError
):
installer
.
install
([
'demo'
])
def
wheel_to_egg
(
dist
,
dest
):
newloc
=
os
.
path
.
join
(
dest
,
egg_name
)
shutil
.
copy
(
dist
.
location
,
newloc
)
return
pkg_resources
.
Distribution
.
from_filename
(
newloc
)
zc
.
buildout
.
easy_install
.
wheel_to_egg
=
wheel_to_egg
egg_dir
=
os
.
path
.
join
(
self
.
sample_buildout
,
'eggs'
)
self
.
assertFalse
(
egg_name
in
os
.
listdir
(
egg_dir
))
installer
.
install
([
'demo'
])
self
.
assertTrue
(
egg_name
in
os
.
listdir
(
egg_dir
))
######################################################################
def
create_sample_eggs
(
test
,
executable
=
sys
.
executable
):
...
...
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