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
5a7fea6d
Commit
5a7fea6d
authored
8 years ago
by
Jason Madden
Committed by
GitHub
8 years ago
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #860 from amitsaha/make-manylinux-fixes
Make manylinux fixes
parents
eef54f46
b09f79b0
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 @
5a7fea6d
...
...
@@ -7,19 +7,18 @@ export PYTHONDONTWRITEBYTECODE=1
if
[
-d
/gevent
-a
-d
/opt/python
]
;
then
# Running inside docker
yum
-y
install
libffi-devel
cd
/gevent
rm
-rf
wheelhouse
# Make sure we have a new-enough auditwheel to repair the tag names
/opt/python/3.5.1m/bin/pip
install
-U
auditwheel
for
variant
in
/opt/python/3
*
;
do
for
variant
in
`
ls
-d
/opt/python/cp
{
27,3
}
*
`
;
do
rm
-rf
dist build
*
.egg-info
make clean
$variant
/bin/pip
install
-U
cython cffi setuptools greenlet wheel
make clean
$variant
/bin/pip
install
-U
cython cffi setuptools greenlet 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
rm
-rf
dist build
*
.egg-info
exit
0
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
)
This diff is collapsed.
Click to expand it.
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