Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
CIBW_BEFORE_ALL_LINUX: >
dnf install -y gcc-toolset-13 perl-IPC-Cmd perl-Time-Piece libxml2-devel zlib-devel &&
source /opt/rh/gcc-toolset-13/enable &&
curl -L https://www.openssl.org/source/openssl-3.0.19.tar.gz | tar xz &&
cd openssl-3.0.19 &&
curl -L https://github.com/openssl/openssl/releases/download/openssl-3.5.5/openssl-3.5.5.tar.gz | tar xz &&
cd openssl-3.5.5 &&
./config --prefix=/usr/local/openssl3 --openssldir=/usr/local/openssl3 &&
make -j$(nproc) &&
make install_sw install_ssldirs &&
Expand Down
1 change: 0 additions & 1 deletion CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Python bindings for [libdigidocpp](https://github.com/open-eid/libdigidocpp) via
- **`ANDROID=TRUE` hack** in CMake — skips upstream `install(EXPORT)` which fails with static builds
- **Symlinks** (`etc/`, `cmake/`) created at configure time — upstream uses `CMAKE_SOURCE_DIR` which points to our root, not the submodule
- **SWIG `%rename` before `%include`** — order matters, upstream `.i` declares `%module(directors="1") digidoc`
- **`MACOSX_DEPLOYMENT_TARGET=15.0`** — required by Homebrew OpenSSL 3

## Test

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pydigidoc.terminate()
- CMake 3.20+
- SWIG 4.0+
- C++23 compiler (GCC 13+, Clang 16+, MSVC 2022+)
- OpenSSL 3.0+, libxml2, zlib, xmlsec1
- OpenSSL 3.5+, libxml2, zlib, xmlsec1

### Build

Expand Down
2 changes: 1 addition & 1 deletion RELINKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ you have the right to modify libdigidocpp and rebuild pydigidoc with your change
- CMake 3.20+
- SWIG 4.0+
- C++23 compiler (GCC 13+, Clang 16+, MSVC 2022+)
- OpenSSL 3.0+, libxml2, zlib, xmlsec1
- OpenSSL 3.5+, libxml2, zlib, xmlsec1

## Rebuilding from source distribution

Expand Down
Loading