Skip to content

Commit 5d09370

Browse files
authored
Updates (#90)
* Upgrade to libssh 0.11.1 * Upgrade to OpenSSL 3.4.0 * Updated appveyor cfg and scripts * Updated manylinux builds and CI cfg
1 parent a62aaf2 commit 5d09370

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

102 files changed

+116480
-31248
lines changed

.appveyor.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ environment:
3232
PYTHON_DEF: "C:\\Python38-x64"
3333
PYTHON_VERSION: "3.8"
3434
# Python versions to build wheels for
35-
PYTHONVERS: C:\Python36-x64 C:\Python37-x64 C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64
35+
PYTHONVERS: C:\Python38-x64 C:\Python39-x64 C:\Python310-x64 C:\Python311-x64 C:\Python312-x64
3636
PYTHON_ARCH: "64"
3737

3838
install:
@@ -45,7 +45,7 @@ install:
4545
https://ci.appveyor.com/api/projects/$env:APPVEYOR_ACCOUNT_NAME/$env:APPVEYOR_PROJECT_SLUG/history?recordsNumber=50).builds | `
4646
Where-Object pullRequestId -eq $env:APPVEYOR_PULL_REQUEST_NUMBER)[0].buildNumber) { `
4747
throw "There are newer queued builds for this pull request, failing early." }
48-
- set OPENSSL_DIR="C:\OpenSSL-v11-Win%PYTHON_ARCH%"
48+
- set OPENSSL_DIR="C:\OpenSSL-v34-Win64"
4949
- set VCLIBDIR=%WINDIR%\System32
5050
- cp %VCLIBDIR%/vcruntime140.dll ssh/
5151
- cp %VCLIBDIR%/msvcr120.dll ssh/
@@ -65,10 +65,13 @@ install:
6565
# - msiexec /i kfw-4.1-amd64.msi /passive /qn
6666
# - ps: ls "C:\Program Files\MIT\Kerberos\"
6767
# - cp "C:\Program Files\MIT\Kerberos\*.dll" ssh/
68+
- ps: ls ssh/*.dll
6869
- ps: ls ssh
6970
- ps: ls
7071

7172
build_script:
73+
- for %%I in (%PYTHONVERS%) do cp %OPENSSL_DIR%/lib/VC/x64/MD/libcrypto.lib %%I/libs/libcrypto64MD.lib
74+
- for %%I in (%PYTHONVERS%) do cp %OPENSSL_DIR%/lib/VC/x64/MD/libssl.lib %%I/libs/libssl64MD.lib
7275
- ci\\appveyor\\build_zlib.bat
7376
- for %%I in (%PYTHONVERS%) do cp C:/zlib/lib/zlibstatic.lib %%I/libs/
7477
- for %%I in (%PYTHONVERS%) do ls %%I/libs/

.circleci/config.yml

+30-23
Original file line numberDiff line numberDiff line change
@@ -15,46 +15,56 @@
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1616
version: 2.1
1717

18-
orbs:
19-
python: circleci/[email protected]
2018

2119
jobs:
2220
python_test:
2321
parameters:
2422
python_ver:
2523
type: string
26-
default: "3.9"
24+
default: "3.10"
2725
docker:
2826
- image: cimg/python:<< parameters.python_ver >>
2927
steps:
3028
- checkout
31-
- python/install-packages:
32-
pip-dependency-file: requirements_dev.txt
33-
pkg-manager: pip
3429
- run:
3530
name: Deps
3631
command: |
3732
sudo apt-get update
3833
sudo apt-get install cmake openssh-server
34+
pip install -r requirements_dev.txt
3935
- run:
4036
command: |
37+
pip uninstall -y cython
4138
pip install -e .
4239
eval "$(ssh-agent -s)"
4340
name: Build
4441
- run:
4542
command: |
4643
set -x
47-
ls -lhtr ssh/
48-
pwd
49-
ldd -r ssh/session*.so
5044
pytest tests
45+
name: Test
46+
- run:
47+
command: |
48+
pytest ci/integration_tests
49+
name: Integration
50+
- run:
51+
command: |
5152
flake8 ssh
53+
name: Flake
54+
- run:
55+
command: |
5256
python setup.py sdist
53-
cd dist; pip install *; cd ..
57+
cd dist
58+
pip install *
59+
python -c 'from ssh.session import Session; Session()'
60+
cd ..
61+
name: Sdist Install
62+
- run:
63+
command: |
5464
cd doc
5565
make html
5666
cd ..
57-
name: Test
67+
name: Docs
5868

5969
osx:
6070
parameters:
@@ -71,6 +81,8 @@ jobs:
7181
name: deps
7282
command: |
7383
brew install cmake git-lfs krb5 python libssh
84+
brew link --force openssl
85+
brew link --force libssh2
7486
pip3 install twine
7587
which twine
7688
- run:
@@ -86,15 +98,9 @@ jobs:
8698
8799
manylinux-x86_64:
88100
machine:
89-
image: ubuntu-2004:202201-02
101+
image: ubuntu-2004:current
90102
steps: &manylinux-steps
91103
- checkout
92-
- run:
93-
name: sdist
94-
command: python setup.py sdist
95-
- python/install-packages:
96-
pip-dependency-file: requirements_dev.txt
97-
pkg-manager: pip
98104
- run:
99105
name: Git LFS
100106
command: |
@@ -106,7 +112,7 @@ jobs:
106112
name: Deps
107113
command: |
108114
sudo apt-get install python3-pip
109-
pip install -U pip
115+
pip install -U pip setuptools
110116
pip install twine
111117
which twine
112118
which python3
@@ -129,7 +135,7 @@ jobs:
129135
130136
manylinux-aarch64:
131137
machine:
132-
image: ubuntu-2004:202101-01
138+
image: ubuntu-2004:current
133139
resource_class: arm.medium
134140
steps: *manylinux-steps
135141

@@ -141,10 +147,10 @@ workflows:
141147
matrix:
142148
parameters:
143149
python_ver:
144-
- "3.6"
145150
- "3.8"
146-
- "3.9"
151+
- "3.10"
147152
- "3.11"
153+
- "3.12"
148154
filters:
149155
tags:
150156
ignore: /.*/
@@ -161,7 +167,8 @@ workflows:
161167
parameters:
162168
xcode_ver:
163169
- "14.0.0"
164-
- "13.1.0"
170+
- "15.0.0"
171+
- "16.0.0"
165172
context: Docker
166173
filters:
167174
tags:

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
*.rpm filter=lfs diff=lfs merge=lfs -text
33
*.zip filter=lfs diff=lfs merge=lfs -text
44
*.xz filter=lfs diff=lfs merge=lfs -text
5+
ssh/_version.py export-subst

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
libssh/compile_commands.json
1010
/wheelhouse
1111
/.idea
12-
/tests/unit_test_cert_key-cert.pub
12+
/ci/integration_tests/unit_test_cert_key-cert.pub
1313
/doc/_build

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
recursive-exclude docker *
2+
recursive-exclude ci *
23
include versioneer.py
34
include ssh/_version.py
45
exclude .travis.yml

_setup_libssh.py

+5-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,11 @@
1414
# License along with this library; if not, write to the Free Software
1515
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
1616
import os
17-
18-
from sys import stderr
19-
from subprocess import check_call
2017
from glob import glob
21-
from shutil import copy2
2218
from multiprocessing import cpu_count
19+
from shutil import copy2
20+
from subprocess import check_call
21+
from sys import stderr
2322

2423

2524
def build_ssh():
@@ -28,6 +27,8 @@ def build_ssh():
2827
return
2928
if os.path.exists('/usr/local/opt/openssl'):
3029
os.environ['OPENSSL_ROOT_DIR'] = '/usr/local/opt/openssl'
30+
if os.path.exists('/opt/homebrew/opt/openssl'):
31+
os.environ['OPENSSL_ROOT_DIR'] = '/opt/homebrew/opt/openssl'
3132

3233
if not os.path.exists('src'):
3334
os.mkdir('src')

ci/appveyor/build_ssh.bat

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ cmake ..\libssh ^
1313
-DOPENSSL_ROOT_DIR=%OPENSSL_DIR%
1414

1515

16-
cp %OPENSSL_DIR%\lib\VC\libcrypto%PYTHON_ARCH%MD.lib %APPVEYOR_BUILD_FOLDER%
17-
cp %OPENSSL_DIR%\lib\VC\libssl%PYTHON_ARCH%MD.lib %APPVEYOR_BUILD_FOLDER%
16+
dir %OPENSSL_DIR%\lib\VC\x64\MD\
17+
cp %OPENSSL_DIR%\lib\VC\x64\MD\libcrypto.lib %APPVEYOR_BUILD_FOLDER%\libcrypto64MD.lib
18+
cp %OPENSSL_DIR%\lib\VC\x64\MD\libssl.lib %APPVEYOR_BUILD_FOLDER%\libssl64MD.lib
1819

1920
cmake --build . --config Release
2021
cmake --install . --prefix ../local

ci/appveyor/fix_version.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,10 @@
44
import json
55
import sys
66

7+
78
def get_describe_tag():
8-
return subprocess.check_output(['git', 'describe', '--tags']).strip().decode('utf-8')
9+
return subprocess.check_output(['git', 'describe', '--tags']).strip().decode('utf-8').split('-')[0]
10+
911

1012
def make_version_file(basedir):
1113
rev = os.environ.get('APPVEYOR_REPO_COMMIT',

ci/build-manylinux.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ if [[ $(uname -m) == "aarch64" ]]; then
3636
fi
3737

3838
for docker_file in "${docker_files[@]}"; do
39-
if [[ ${docker_file} == "ci/docker/manylinux/Dockerfile_2014_x86_64" ]]; then
39+
if [[ ${docker_file} == "ci/docker/manylinux/Dockerfile.2014_x86_64" ]]; then
4040
docker_tag="${docker_repo}:2014_x86_64"
4141
elif [[ ${docker_file} == "ci/docker/manylinux/Dockerfile" ]]; then
4242
docker_tag="${docker_repo}:2010_x86_64"

ci/build-wheels.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@
1919
rm -rf /io/build
2020
# For testing
2121
#for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
22-
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython); do
22+
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp313t); do
23+
echo "Building for Python binary ${PYBIN}"
2324
"${PYBIN}/pip" wheel /io/ -w wheelhouse/
2425
done
2526

@@ -29,8 +30,10 @@ for whl in wheelhouse/*.whl; do
2930
done
3031

3132
# Install packages and test
32-
#for PYBIN in $(ls -1d /opt/python/cp310-cp310/bin | grep -v cpython); do
33-
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython); do
33+
for PYBIN in $(ls -1d /opt/python/*/bin | grep -v cpython | grep -v cp313t); do
34+
# for PYBIN in `ls -1d /opt/python/cp310-cp310/bin | grep -v cpython`; do
35+
echo "Installing for Python binary ${PYBIN}"
3436
"${PYBIN}/pip" install ssh-python --no-index -f /io/wheelhouse
35-
(cd "$HOME"; "${PYBIN}/python" -c 'from ssh.session import Session; Session()')
37+
(cd "$HOME"; "${PYBIN}/python" -c 'from ssh.session import Session; Session()' &&
38+
echo "Import sanity check succeeded.")
3639
done

ci/docker/manylinux/Dockerfile

+19-6
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,36 @@
11
FROM quay.io/pypa/manylinux2010_x86_64
22

3-
ENV OPENSSL openssl-1.1.1q
4-
ENV LIBSSH 0.10.4
5-
ENV KRB 1.18.4
3+
ENV OPENSSL openssl-3.4.0
4+
ENV LIBSSH 0.11.1
5+
ENV KRB 1.21.3
6+
ENV CMAKE 3.31.3
67
ENV SYSTEM_LIBSSH 1
78
ENV CFLAGS "-g0 -s"
89

9-
RUN yum install zlib-devel cmake3 -y
10+
RUN yum install zlib-devel cmake3 perl-IPC-Cmd -y
1011

1112
ADD libssh-${LIBSSH}.tar.xz libssh.tar.xz
1213
ADD https://www.openssl.org/source/${OPENSSL}.tar.gz ${OPENSSL}.tar.gz
1314
ADD krb5-${KRB}.tar.xz krb5-${KRB}.tar.xz
15+
ADD cmake-${CMAKE}.tar.xz cmake-${CMAKE}.tar.xz
1416

1517
RUN tar -xzf ${OPENSSL}.tar.gz
18+
1619
# Openssl
1720
RUN cd ${OPENSSL} && \
1821
./config --prefix=/usr --openssldir=/usr/openssl threads shared && \
1922
make -j6 && make install_sw
2023

24+
25+
# CMake - Krb dependency
26+
RUN cd cmake-${CMAKE}.tar.xz/cmake-${CMAKE} && \
27+
./bootstrap --prefix=/usr && \
28+
make && \
29+
make install
30+
31+
32+
RUN yum remove cmake3 -y
33+
2134
# Kerberos
2235
RUN cd krb5-${KRB}.tar.xz/krb5-${KRB}/src && \
2336
./configure && \
@@ -26,10 +39,10 @@ RUN cd krb5-${KRB}.tar.xz/krb5-${KRB}/src && \
2639

2740
# Libssh
2841
RUN mkdir -p build_libssh && cd build_libssh && \
29-
cmake3 ../libssh.tar.xz/libssh-${LIBSSH} -DCMAKE_BUILD_TYPE=Release \
42+
cmake ../libssh.tar.xz/libssh-${LIBSSH} -DCMAKE_BUILD_TYPE=Release \
3043
-DWITH_GSSAPI=ON -DWITH_EXAMPLES=OFF && \
3144
make -j6 install/strip
3245

33-
RUN rm -rf ${OPENSSL}* libssh build_libssh krb5-${KRB}.tar.xz
46+
RUN rm -rf ${OPENSSL}* libssh build_libssh krb5-${KRB}.tar.xz cmake-${CMAKE}.tar.xz
3447

3548
VOLUME /var/cache

ci/docker/manylinux/Dockerfile.2014_x86_64

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM quay.io/pypa/manylinux2014_x86_64
22

3-
ENV OPENSSL openssl-1.1.1q
4-
ENV LIBSSH 0.10.4
5-
ENV KRB 1.18.4
3+
ENV OPENSSL openssl-3.4.0
4+
ENV LIBSSH 0.11.1
5+
ENV KRB 1.21.3
66
ENV SYSTEM_LIBSSH 1
77
ENV CFLAGS "-g0 -s"
88

9-
RUN yum install zlib-devel cmake3 -y
9+
RUN yum install zlib-devel cmake3 perl-IPC-Cmd -y
1010

1111
ADD libssh-${LIBSSH}.tar.xz libssh.tar.xz
1212
ADD https://www.openssl.org/source/${OPENSSL}.tar.gz ${OPENSSL}.tar.gz

ci/docker/manylinux/Dockerfile.aarch64

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
FROM quay.io/pypa/manylinux2014_aarch64
22

3-
ENV OPENSSL openssl-1.1.1q
4-
ENV LIBSSH 0.10.4
5-
ENV KRB 1.18.4
3+
ENV OPENSSL openssl-3.4.0
4+
ENV LIBSSH 0.11.1
5+
ENV KRB 1.21.3
66
ENV SYSTEM_LIBSSH 1
77
ENV CFLAGS "-g0 -s"
88

9-
RUN yum install epel-release -y && yum install zlib-devel cmake3 -y
9+
RUN yum install epel-release -y && yum install zlib-devel cmake3 perl-IPC-Cmd -y
1010

1111
ADD libssh-${LIBSSH}.tar.xz libssh.tar.xz
1212
ADD https://www.openssl.org/source/${OPENSSL}.tar.gz ${OPENSSL}.tar.gz
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:8c978c8f15640b3858fa207226920a6c931d8318f7de6c7a040bfb163e694099
3+
size 8056928

ci/docker/manylinux/krb5-1.18.4.tar.xz

-3
This file was deleted.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:79f1c69f5f305033f87a88b3f0b48446f3a9476f8207fac2af739082efc47c6b
3+
size 6688044

ci/docker/manylinux/libssh-0.10.4.tar.xz

-3
This file was deleted.

ci/docker/manylinux/libssh-0.10.4.tar.xz.asc

-16
This file was deleted.
+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
version https://git-lfs.github.com/spec/v1
2+
oid sha256:14b7dcc72e91e08151c58b981a7b570ab2663f630e7d2837645d5a9c612c1b79
3+
size 621108

0 commit comments

Comments
 (0)