Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gevent
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
Kirill Smelkov
gevent
Commits
b09f79b0
Commit
b09f79b0
authored
Sep 13, 2016
by
Amit Saha
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make manylinux script fixes
parent
e2eb3e09
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
7 deletions
+6
-7
scripts/releases/make-manylinux
scripts/releases/make-manylinux
+6
-7
No files found.
scripts/releases/make-manylinux
View file @
b09f79b0
...
@@ -7,19 +7,18 @@ export PYTHONDONTWRITEBYTECODE=1
...
@@ -7,19 +7,18 @@ export PYTHONDONTWRITEBYTECODE=1
if
[
-d
/gevent
-a
-d
/opt/python
]
;
then
if
[
-d
/gevent
-a
-d
/opt/python
]
;
then
# Running inside docker
# Running inside docker
yum
-y
install
libffi-devel
cd
/gevent
cd
/gevent
rm
-rf
wheelhouse
rm
-rf
wheelhouse
# Make sure we have a new-enough auditwheel to repair the tag names
for
variant
in
`
ls
-d
/opt/python/cp
{
27,3
}
*
`
;
do
/opt/python/3.5.1m/bin/pip
install
-U
auditwheel
for
variant
in
/opt/python/3
*
;
do
rm
-rf
dist build
*
.egg-info
rm
-rf
dist build
*
.egg-info
make clean
make clean
$variant
/bin/pip
install
-U
cython cffi setuptools greenlet wheel
$variant
/bin/pip
install
-U
cython cffi setuptools greenlet wheel
PATH
=
$variant
/bin:
$PATH
$variant
/bin/python setup.py bdist_wheel
PATH
=
$variant
/bin:
$PATH
$variant
/bin/python setup.py bdist_wheel
/opt/python/3.5.1m/bin/
auditwheel repair dist/
*
.whl
auditwheel repair dist/
*
.whl
done
done
rm
-rf
dist build
*
.egg-info
rm
-rf
dist build
*
.egg-info
exit
0
exit
0
fi
fi
docker run
--rm
-ti
-v
"
$(
pwd
)
:/gevent"
quay.io/pypa/manylinux1_x86_64 /gevent/
$(
basename
$0
)
docker run
--rm
-ti
-v
"
$(
pwd
)
:/gevent"
quay.io/pypa/manylinux1_x86_64 /gevent/
scripts/releases/
$(
basename
$0
)
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