Skip to content

Commit

Permalink
Merge branch 'main' of github.com:bjia56/armv7l-wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
bjia56 committed Oct 4, 2023
2 parents a295430 + e53f85a commit 006f4eb
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 19 deletions.
1 change: 0 additions & 1 deletion packages/cmake/build.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
strategy: pypi
disable: true

python:
versions:
Expand Down
14 changes: 10 additions & 4 deletions packages/numpy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,17 @@ ARG VERSION
ARG OUTPUT_DIR

RUN yum install -y blas-devel
WORKDIR /
RUN wget https://github.com/OpenMathLib/OpenBLAS/releases/download/v0.3.23/OpenBLAS-0.3.23.tar.gz && \
tar xf OpenBLAS-0.3.23.tar.gz && \
cd OpenBLAS-0.3.23 && \
mkdir -p /tmp/vendor && \
make PREFIX=/tmp/vendor TARGET=ARMV7

ENV CFLAGS='-I/usr/local/ssl/include'
ENV LDFLAGS='-L/usr/local/ssl/lib'
ENV LD_LIBRARY_PATH=/usr/local/ssl/lib:$LD_LIBRARY_PATH
ENV PKG_CONFIG_PATH=/usr/local/ssl/lib/pkgconfig
ENV CFLAGS='-I/usr/local/ssl/include -I/tmp/vendor/include'
ENV LDFLAGS='-L/usr/local/ssl/lib -L/tmp/vendor/lib'
ENV LD_LIBRARY_PATH=/tmp/vendor/lib:/usr/local/ssl/lib:$LD_LIBRARY_PATH
ENV PKG_CONFIG_PATH=/tmp/vendor/lib/pkgconfig:/usr/local/ssl/lib/pkgconfig

ENV CC=/opt/rh/devtoolset-10/root/usr/bin/gcc
ENV FC=/opt/rh/devtoolset-10/root/usr/bin/gfortran5
Expand Down
33 changes: 19 additions & 14 deletions pypi/curl-cffi/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@
<title>
PyPI - Python Wheels for armv7l
</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.4/jquery.min.js">
</script>
<script>
function annotateDownloadCount(releaseTag, anchorElement) {
function annotateDownloadCount(releaseTag, anchorElement) {
fetch("https://api.github.com/repos/bjia56/armv7l-wheels/releases/tags/" + releaseTag)
.then(async resp => {
let release = await resp.json();
Expand All @@ -52,17 +53,21 @@
$(document).ready(annotateAll);
</script>
</head>
<body>
<div class="container">
<section class="header">
curl_cffi
</section>
<pre><code>pip install curl_cffi --extra-index-url https://bjia56.github.io/armv7l-wheels/</code></pre>
<br/>
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/curl_cffi-0.5.7-cpython3.9/curl_cffi-0.5.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl">
curl_cffi-0.5.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
</a>
<hr/>
<body>
<div class="container">
<section class="header">
curl_cffi
</section>
<pre><code>pip install curl_cffi --extra-index-url https://bjia56.github.io/armv7l-wheels/</code></pre>
<br/>
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/curl_cffi-0.5.7-cpython3.9/curl_cffi-0.5.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl">
curl_cffi-0.5.7-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
</a>
<br/>
<a href="https://github.com/bjia56/armv7l-wheels/releases/download/curl_cffi-0.5.9-cpython3.9/curl_cffi-0.5.9-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl">
curl_cffi-0.5.9-cp37-abi3-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
</a>
<hr/>
</div>
</body>
</html>
</html>

0 comments on commit 006f4eb

Please sign in to comment.