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

[liburing] update liburing port to version 2.5 #35430

Merged
merged 1 commit into from
Dec 1, 2023
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
15 changes: 7 additions & 8 deletions ports/liburing/fix-configure.patch
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
diff --git a/configure b/configure
index 28f3eb0..b3ac6bc 100755
index 88b8ee7..bf9312f 100755
--- a/configure
+++ b/configure
@@ -36,7 +36,7 @@ for opt do
@@ -20,7 +20,7 @@ for opt do
;;
--mandir=*) mandir="$optarg"
;;
Expand All @@ -11,23 +11,22 @@ index 28f3eb0..b3ac6bc 100755
;;
--cc=*) cc="$optarg"
;;
@@ -44,10 +44,12 @@ for opt do
@@ -28,10 +28,12 @@ for opt do
;;
--nolibc) nolibc_deprecated
--use-libc) use_libc=yes
;;
+ --enable-shared) ENABLE_SHARED=1
+ ;;
+ --enable-static) ENABLE_SHARED=0
+ ;;
+ ;;
*)
- echo "ERROR: unknown option $opt"
echo "ERROR: unknown option $opt"
- echo "Try '$0 --help' for more information"
- exit 1
+ echo "WARNING: unknown option $opt"
;;
esac
done
@@ -146,6 +148,7 @@ echo "# Automatically generated by configure - do not modify" > $config_host_mak
@@ -130,6 +132,7 @@ echo "# Automatically generated by configure - do not modify" > $config_host_mak
printf "# Configured with:" >> $config_host_mak
printf " '%s'" "$0" "$@" >> $config_host_mak
echo >> $config_host_mak
Expand Down
2 changes: 1 addition & 1 deletion ports/liburing/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO axboe/liburing
REF "liburing-${VERSION}"
SHA512 8033f813262472b695d15ce20cc6cbe76a5577f16bfa7e8bc2f21c7925ec831b0f2eaf135af721e80cccce9ebe7f4431148dba2e66fa5f0278be457d9aca6535
SHA512 53742c23211de7194322874eb8186b942ccc1611c231d49f60fd1d8bc2bb93d231ed521af77802db68c30557d71fa5799ae40cbacfc24ba1db3d650c7ba8cc62
HEAD_REF master
PATCHES
fix-configure.patch # ignore unsupported options, handle ENABLE_SHARED
Expand Down
2 changes: 1 addition & 1 deletion ports/liburing/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "liburing",
"version": "2.4",
"version": "2.5",
"description": "Linux-native io_uring I/O access library",
"homepage": "https://github.com/axboe/liburing",
"license": "MIT OR LGPL-2.1 OR GPL-2.0",
Expand Down
2 changes: 1 addition & 1 deletion versions/baseline.json
Original file line number Diff line number Diff line change
Expand Up @@ -4957,7 +4957,7 @@
"port-version": 0
},
"liburing": {
"baseline": "2.4",
"baseline": "2.5",
"port-version": 0
},
"libusb": {
Expand Down
5 changes: 5 additions & 0 deletions versions/l-/liburing.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"versions": [
{
"git-tree": "b66acf8da313f79a9cdcc12ee6daf8f621e7bcce",
"version": "2.5",
"port-version": 0
},
{
"git-tree": "317cfa2c23f9e0e285b1c36140cdb54739ebf328",
"version": "2.4",
Expand Down
Loading