Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

re2: Fix ftbfs and uncomment pkgconf test #40475

Merged
merged 1 commit into from
Jan 24, 2025
Merged
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
14 changes: 9 additions & 5 deletions re2.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package:
name: re2
version: "2024.02.01" # Please enable the pkgconf test on update
epoch: 2
version: "2024.02.01" # On update, please check if -fdelete-null-pointer-checks is still required
epoch: 3
description: Efficient, principled regular expression library
copyright:
- license: BSD-3-Clause
Expand All @@ -22,6 +22,9 @@ environment:
- busybox
- ca-certificates-bundle
- icu-dev
environment:
# https://github.com/wolfi-dev/os/issues/34075
CMAKE_CXX_FLAGS: -fdelete-null-pointer-checks

pipeline:
- uses: fetch
Expand All @@ -33,6 +36,7 @@ pipeline:
with:
opts: |
-DBUILD_SHARED_LIBS=ON \
-DCMAKE_CXX_FLAGS="$CMAKE_CXX_FLAGS" \
-DRE2_USE_ICU=ON \
-DRE2_BUILD_TESTING="OFF"

Expand All @@ -43,9 +47,6 @@ pipeline:
- uses: strip

subpackages:
# test:
# pipeline:
# - uses: test/pkgconf:
- name: re2-dev
pipeline:
- uses: split/dev
Expand All @@ -54,6 +55,9 @@ subpackages:
runtime:
- abseil-cpp-dev
- icu-dev
test:
pipeline:
- uses: test/pkgconf

update:
enabled: true
Expand Down
Loading