-
Notifications
You must be signed in to change notification settings - Fork 241
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16084 from wolfi-dev/feature/conda-deps-3
Add cli11, doctest, tl-expected, reproc, fmt and spdlog to build libm…
- Loading branch information
Showing
6 changed files
with
233 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package: | ||
name: cli11 | ||
version: 2.4.1 | ||
epoch: 0 | ||
description: command line parser for C++11 | ||
copyright: | ||
- license: BSD-3-Clause | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- build-base | ||
- busybox | ||
- ca-certificates-bundle | ||
- make | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
expected-commit: f4d0731cebb123ff0ace712c099dffbcd2c58e5a | ||
repository: https://github.com/CLIUtils/CLI11 | ||
tag: v${{package.version}} | ||
|
||
- uses: cmake/configure | ||
with: | ||
opts: | | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DBUILD_SHARED_LIBS=True \ | ||
- uses: cmake/build | ||
|
||
- uses: cmake/install | ||
|
||
- uses: strip | ||
|
||
update: | ||
enabled: true | ||
github: | ||
identifier: CLIUtils/CLI11 | ||
strip-prefix: v | ||
tag-filter: v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package: | ||
name: doctest | ||
version: 2.4.11 | ||
epoch: 0 | ||
description: C++11/14/17/20/23 single-header testing framework | ||
copyright: | ||
- license: MIT | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- build-base | ||
- busybox | ||
- ca-certificates-bundle | ||
- make | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
expected-commit: ae7a13539fb71f270b87eb2e874fbac80bc8dda2 | ||
repository: https://github.com/doctest/doctest | ||
tag: v${{package.version}} | ||
|
||
- uses: cmake/configure | ||
with: | ||
opts: | | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DBUILD_SHARED_LIBS=ON \ | ||
# unsure about this flag | ||
# -DOCTEST_WITH_MAIN_IN_STATIC_LIB=OFF \ | ||
- uses: cmake/build | ||
|
||
- uses: cmake/install | ||
|
||
- uses: strip | ||
|
||
update: | ||
enabled: true | ||
github: | ||
identifier: doctest/doctest | ||
strip-prefix: v | ||
tag-filter: v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package: | ||
name: fmt | ||
version: 10.2.1 | ||
epoch: 0 | ||
description: Modern formatting library | ||
copyright: | ||
- license: MIT | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- build-base | ||
- busybox | ||
- ca-certificates-bundle | ||
- make | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
expected-commit: e69e5f977d458f2650bb346dadf2ad30c5320281 | ||
repository: https://github.com/fmtlib/fmt | ||
tag: ${{package.version}} | ||
|
||
- uses: cmake/configure | ||
with: | ||
opts: | | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DBUILD_SHARED_LIBS=True \ | ||
- uses: cmake/build | ||
|
||
- uses: cmake/install | ||
|
||
- uses: strip | ||
|
||
subpackages: | ||
- name: ${{package.name}}-dev | ||
pipeline: | ||
- uses: split/dev | ||
|
||
update: | ||
enabled: true | ||
github: | ||
identifier: fmtlib/fmt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
package: | ||
name: spdlog | ||
version: 1.13.0 | ||
epoch: 0 | ||
description: Fast C++ logging library. | ||
copyright: | ||
- license: MIT | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- build-base | ||
- busybox | ||
- ca-certificates-bundle | ||
- fmt-dev | ||
- make | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
expected-commit: 7c02e204c92545f869e2f04edaab1f19fe8b19fd | ||
repository: https://github.com/gabime/spdlog | ||
tag: v${{package.version}} | ||
|
||
- uses: cmake/configure | ||
with: | ||
opts: | | ||
-DCMAKE_BUILD_TYPE=None \ | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DSPDLOG_BUILD_BENCH=OFF \ | ||
-DSPDLOG_BUILD_TESTS=OFF \ | ||
-DSPDLOG_SANITIZE_ADDRESS=OFF \ | ||
-DSPDLOG_FMT_EXTERNAL=ON \ | ||
-DSPDLOG_BUILD_SHARED=ON \ | ||
-DSPDLOG_BUILD_EXAMPLE=OFF \ | ||
# to verify if this is the right flag | ||
# -DSPDLOG_FMT_EXTERNAL_HO=ON \ | ||
- uses: cmake/build | ||
|
||
- uses: cmake/install | ||
|
||
- uses: strip | ||
|
||
subpackages: | ||
- name: ${{package.name}}-dev | ||
pipeline: | ||
- uses: split/dev | ||
|
||
update: | ||
enabled: true | ||
github: | ||
identifier: gabime/spdlog | ||
strip-prefix: v | ||
tag-filter: v |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
package: | ||
name: tl-expected | ||
version: 1.1.0 | ||
epoch: 0 | ||
description: C++11/14/17 std::expected with functional-style extensions | ||
copyright: | ||
- license: CC0-1.0 | ||
|
||
environment: | ||
contents: | ||
packages: | ||
- build-base | ||
- busybox | ||
- ca-certificates-bundle | ||
- make | ||
|
||
pipeline: | ||
- uses: git-checkout | ||
with: | ||
expected-commit: 292eff8bd8ee230a7df1d6a1c00c4ea0eb2f0362 | ||
repository: https://github.com/TartanLlama/expected | ||
tag: v${{package.version}} | ||
|
||
- uses: cmake/configure | ||
with: | ||
opts: | | ||
-DCMAKE_INSTALL_PREFIX=/usr \ | ||
-DCMAKE_INSTALL_LIBDIR=lib \ | ||
-DBUILD_SHARED_LIBS=True \ | ||
- uses: cmake/build | ||
|
||
- uses: cmake/install | ||
|
||
- uses: strip | ||
|
||
update: | ||
enabled: true | ||
github: | ||
identifier: TartanLlama/expected | ||
strip-prefix: v | ||
tag-filter: v |