Skip to content
This repository was archived by the owner on Nov 19, 2025. It is now read-only.
Closed
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
2 changes: 1 addition & 1 deletion .devcontainer
Submodule .devcontainer updated 63 files
+8 −0 .gitattributes
+197 −0 .github/workflows/README.md
+124 −0 .github/workflows/build-linux.yml
+63 −0 .github/workflows/build-windows.yml
+277 −0 .github/workflows/release-from-build.yml
+0 −11 90-bpnet-perform.conf
+0 −106 README.md
+0 −13 check-bpnet-perform.sh
+1 −2 cmake/NodePath.cmake
+70 −0 cmake/README.md
+1 −1 cmake/cpack/README.md
+114 −0 cmake/deps.cmake
+40 −0 cmake/deps.dot
+ cmake/deps.png
+10 −0 cmake/macpro.cmake
+1 −1 cmake/presets/CMakePresets.json
+14 −4 cmake/presets/launchWorkflow.cmake
+0 −117 cmake/presets/xpLinuxMakefiles.json
+3 −15 cmake/presets/xpLinuxMakefilesRelease.json
+97 −10 cmake/presets/xpLinuxNinja.json
+0 −77 cmake/presets/xpLinuxNinjaRelease.json
+83 −16 cmake/presets/xpWindowsVs2019.json
+0 −58 cmake/presets/xpWindowsVs2019Package.json
+0 −78 cmake/presets/xpWindowsVs2019Release.json
+157 −0 cmake/presets/xpWindowsVs2022.json
+429 −103 cmake/pros.cmake
+14 −3 cmake/sync.cmake
+2 −2 cmake/sync.sh.in
+2 −0 cmake/xpcpack.cmake
+26 −13 cmake/xpfunmac.cmake
+0 −24 cmake/xpnode.cmake
+2 −7 cmake/xptoplevel.cmake
+1 −1 cmake/xpuse.cmake.in
+27 −20 cmake/xpweb.cmake
+3 −35 compose.bld.sh
+6 −2 compose.bld.yml
+6 −0 compose.ci.sh
+2 −0 compose.gpu.sh
+5 −3 compose.gpu.yml
+6 −0 compose.pro.sh
+0 −38 compose.pro.yml
+0 −60 compose.vantage.sh
+0 −105 compose.vantage.yml
+0 −9 dbinit/01-databases.sql
+57 −10 denv.sh
+15 −15 devcontainer.json
+0 −11 dockergen/bit.head.dockerfile
+0 −9 dockergen/bit.isrhub.dockerfile
+0 −8 dockergen/bit.run.dockerfile
+0 −2 dockergen/bit.tail.dockerfile
+0 −20 dockergen/bit.user.dockerfile
+0 −21 dockergen/dockergen.sh
+0 −21 dockergen/graph.dot
+ dockergen/graph.png
+82 −69 funcs.sh
+23 −0 graph/graph.dot
+ graph/graph.png
+8 −6 local.dockerfile
+0 −68 odbc.ini.test
+0 −86 offlineImage.sh
+0 −50 rocky85-dev.dockerfile
+0 −33 rocky85-pro.dockerfile
+0 −41 rocky85-run.dockerfile
23 changes: 23 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Build
on:
push:
branches: [ "dev" ]
pull_request:
branches: [ "dev" ]
workflow_dispatch:
jobs:
linux:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.04
with:
runon: ubuntu-latest
secrets: inherit
linux-arm64:
uses: externpro/externpro/.github/workflows/build-linux.yml@25.04
with:
runon: ubuntu-24.04-arm
secrets: inherit
windows:
uses: externpro/externpro/.github/workflows/build-windows.yml@25.04
with:
cmake-workflow-preset: WindowsRelease
secrets: inherit
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Release
on:
workflow_dispatch:
inputs:
workflow_run_url:
description: 'URL of the workflow run containing artifacts to upload (e.g., https://github.com/owner/repo/actions/runs/123456789)'
required: true
type: string
jobs:
# Upload build artifacts as release assets
release-from-build:
uses: externpro/externpro/.github/workflows/release-from-build.yml@25.04
with:
workflow_run_url: ${{ github.event.inputs.workflow_run_url }}
artifact_pattern: "*.tar.xz"
secrets: inherit
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.28)
cmake_minimum_required(VERSION 3.31)
set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_LIST_DIR}/.devcontainer/cmake)
project(externpro)
set(XP_DOWNLOAD_URL "https://github.com/smanders/externpro/releases/download")
Expand Down
2 changes: 1 addition & 1 deletion CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"version": 8,
"include": [
".devcontainer/cmake/presets/xpLinuxMakefilesRelease.json",
".devcontainer/cmake/presets/xpWindowsVs2019Package.json"
".devcontainer/cmake/presets/xpWindowsVs2022.json"
]
}
5 changes: 4 additions & 1 deletion CMakePresetsBase.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
"hidden": true,
"binaryDir": "${sourceDir}/_bld-${presetName}",
"cacheVariables": {
"XP_STEP": "build"
"XP_STEP": "build",
"XP_DEFAULT": "OFF",
"XP_PRO_BZIP2": "ON",
"XP_BUILD_DEBUG": "OFF"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.sh
2 changes: 1 addition & 1 deletion docker-compose.yml
38 changes: 0 additions & 38 deletions patches/node-addon-api.patch

This file was deleted.

15 changes: 0 additions & 15 deletions patches/nodejs.patch

This file was deleted.

20 changes: 3 additions & 17 deletions projects/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,6 @@
|[libzmq](https://zeromq.org/ 'ZeroMQ website')|[open](http://wiki.zeromq.org/area:licensing 'GNU LGPL plus static linking exception')|high-performance asynchronous messaging library|4.3.4|[repo](https://github.com/zeromq/libzmq 'zeromq/libzmq repo on github')|[diff](https://github.com/externpro/libzmq/compare/zeromq:v4.3.4...xp4.3.4 'patch/diff')|
|[LLVM](http://llvm.org/ 'LLVM website')|[open](https://releases.llvm.org/11.0.0/LICENSE.TXT 'Apache License v2.0 with LLVM Exceptions')|The LLVM Compiler Infrastructure|11.0.0|[repo](https://github.com/llvm/llvm-project 'llvm repo on github')|none|
|[Lua](http://www.lua.org/ 'Lua website')|[open](http://www.lua.org/license.html 'MIT license')|a powerful, fast, lightweight, embeddable scripting language|5.2.3|[repo](https://github.com/LuaDist/lua 'lua repo on github')|[diff](https://github.com/externpro/lua/compare/LuaDist:5.2.3...xp5.2.3 'patch/diff')|
|[nasm](https://www.nasm.us/ 'nasm website')|[BSD](https://www.nasm.us/ 'Simplified (2-clause) BSD license')|The Netwide Assembler - an 80x86 and x86-64 assembler|2.14.02|none|none|
|[node-addon-api](https://github.com/nodejs/node-addon-api 'node-addon-api on github')|[open](https://github.com/nodejs/node-addon-api/blob/3.0.2/LICENSE.md 'The MIT License - http://opensource.org/licenses/mit-license.php')|Module for using N-API from C++|3.0.2|[repo](https://github.com/nodejs/node-addon-api 'node-addon-api repo on github')|[diff](https://github.com/externpro/node-addon-api/compare/nodejs:3.0.2...xp3.0.2 'patch/diff')|
|[Node.js](http://nodejs.org 'Node.js website')|[open](https://raw.githubusercontent.com/nodejs/node/v14.17.6/LICENSE 'MIT license')|platform to build scalable network applications|14.17.6|[repo](https://github.com/nodejs/node 'node repo on github')|[diff](https://github.com/externpro/node/compare/nodejs:v14.17.6...xp14.17.6 'patch/diff')|
|[OpenH264](http://www.openh264.org/ 'OpenH264 website')|[open](http://www.openh264.org/faq.html 'Two-Clause BSD license')|a codec library which supports H.264 encoding and decoding|1.4.0|[repo](https://github.com/cisco/openh264 'openh264 repo on github')|[diff](https://github.com/externpro/openh264/compare/cisco:v1.4.0...xp1.4.0 'patch/diff')|
|[OpenSSL](http://www.openssl.org/ 'OpenSSL website')|[open](http://www.openssl.org/source/license.html 'OpenSSL, SSLeay License: BSD-style')|Cryptography and SSL/TLS Toolkit|1.1.1l|[repo](https://github.com/openssl/openssl 'openssl repo on github')|[diff](https://github.com/externpro/openssl/compare/openssl:OpenSSL_1_1_1l...xp_1_1_1l 'patch/diff')|
|[protobuf](https://developers.google.com/protocol-buffers/ 'Protocol Buffers website')|[open](https://github.com/protocolbuffers/protobuf/blob/v3.14.0/LICENSE '3-clause BSD license')|language-neutral, platform-neutral extensible mechanism for serializing structured data|3.14.0|[repo](https://github.com/protocolbuffers/protobuf 'protobuf repo on github')|[diff](https://github.com/externpro/protobuf/compare/protocolbuffers:v3.14.0...xp3.14.0 'patch/diff')|
Expand Down Expand Up @@ -75,10 +72,10 @@

## dependency graph

![deps.dot graph](https://g.gravizo.com/source/depgraph_c0d2d8c18f109be8c73c926f53b33875?https%3A%2F%2Fraw.githubusercontent.com%2Fsmanders%2Fexternpro%2Fdev%2Fprojects%2FREADME.md)
![deps.dot graph](https://g.gravizo.com/source/depgraph_2b9c3efa0f7bf9aa5d4919eaaf1ad243?https%3A%2F%2Fraw.githubusercontent.com%2Fsmanders%2Fexternpro%2Fdev%2Fprojects%2FREADME.md)
<details>
<summary></summary>
depgraph_c0d2d8c18f109be8c73c926f53b33875
depgraph_2b9c3efa0f7bf9aa5d4919eaaf1ad243
digraph GG {
node [fontsize=12];
activemqcpp [shape=diamond];
Expand All @@ -89,7 +86,6 @@ digraph GG {
azmq -> libzmq;
azmq -> boost;
boost [shape=diamond];
boost -> zlib;
boost -> bzip2;
bzip2 [shape=diamond];
cares [label="c-ares" shape=diamond];
Expand All @@ -116,37 +112,27 @@ digraph GG {
libgit2 [shape=diamond];
libgit2 -> libssh2;
libssh2 [shape=diamond];
libssh2 -> zlib;
libssh2 -> openssl;
libstrophe [shape=diamond];
libstrophe -> expat;
libstrophe -> openssl;
libzmq [shape=diamond];
libzmq -> sodium;
llvm [shape=box];
nasm [shape=box];
node_addon_api [label="node-addon-api" shape=diamond];
node_addon_api -> nodejs;
nodejs [shape=diamond];
nodejs -> nasm;
openh264 [shape=diamond];
openh264 -> yasm;
openssl [shape=diamond];
openssl -> opensslasm;
openssl -> nasm;
opensslasm [shape=diamond];
protobuf [shape=diamond];
protobuf -> zlib;
sodium [shape=diamond];
wx [shape=diamond];
wxinclude [shape=box];
wxinclude -> boost;
wxx [shape=diamond];
wxx -> wx;
yasm [shape=box];
zlib [shape=diamond];
zmqpp [shape=diamond];
zmqpp -> libzmq;
}
depgraph_c0d2d8c18f109be8c73c926f53b33875
depgraph_2b9c3efa0f7bf9aa5d4919eaaf1ad243
</details>
2 changes: 1 addition & 1 deletion projects/boost.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ set(PRO_BOOST
VER ${VER}
GIT_ORIGIN ${REPO}
GIT_TAG boost-${VER} # what to 'git checkout'
DLURL https://boostorg.jfrog.io/artifactory/main/release/${VER}/source/boost_${VER_}.tar.bz2
DLURL https://archives.boost.io/release/${VER}/source/boost_${VER_}.tar.bz2
DLMD5 33334dd7f862e8ac9fe1cc7c6584fb6d
DEPS_FUNC build_boost
SUBPRO boostbeast boostdll boostgil boostgraph boostinstall boostinterprocess boostprogram_options boostprogram_optionshpp boostregex boostunits
Expand Down
14 changes: 0 additions & 14 deletions projects/nasm.cmake

This file was deleted.

51 changes: 0 additions & 51 deletions projects/node-addon-api.cmake

This file was deleted.

Loading