ivykis: add new package#27717
Merged
BKPepe merged 1 commit intoopenwrt:masterfrom Oct 28, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR adds a new package for libivykis, an asynchronous I/O readiness notification library required by syslog-ng. The package includes standard OpenWrt build configurations with support for both shared and static libraries.
Key Changes:
- Adds ivykis version 0.43.2 as a new library package
- Configures build system with autoreconf, shared/static libraries, and PIC support
- Implements standard OpenWrt installation targets for development headers and runtime libraries
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
dea96a9 to
6081718
Compare
1715173329
reviewed
Oct 28, 2025
Comment on lines
+39
to
+45
| --with-pic | ||
|
|
||
| ifdef CONFIG_KERNEL_IO_URING | ||
| CONFIGURE_ARGS += --enable-io-uring=yes | ||
| else | ||
| CONFIGURE_ARGS += --enable-io-uring=no | ||
| endif |
Member
There was a problem hiding this comment.
can this be simplified with
Suggested change
| --with-pic | |
| ifdef CONFIG_KERNEL_IO_URING | |
| CONFIGURE_ARGS += --enable-io-uring=yes | |
| else | |
| CONFIGURE_ARGS += --enable-io-uring=no | |
| endif | |
| --with-pic \ | |
| --enable-io-uring=$(if $(CONFIG_KERNEL_IO_URING),yes,no) |
Member
Author
There was a problem hiding this comment.
Ha, much better! Thanks! 😊
Libivykis, an asynchronous I/O readiness notification library. This library is required by syslog-ng and potentially other packages that need event-driven I/O handling. Signed-off-by: Josef Schlehofer <pepe.schlehofer@gmail.com>
6081718 to
64ae51c
Compare
1715173329
approved these changes
Oct 28, 2025
neheb
approved these changes
Oct 28, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📦 Package Details
Maintainer: @BKPepe
Description:
Libivykis, an asynchronous I/O readiness notification library. This library is required by syslog-ng and potentially other packages that need event-driven I/O handling.
It is required for #27590
cc: @neheb
🧪 Run Testing Details
✅ Formalities