-
Notifications
You must be signed in to change notification settings - Fork 1k
V3.0.2 add new distros #5017
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
Draft
mirostauder
wants to merge
12
commits into
v3.0
Choose a base branch
from
v3.0.2-add_new_distros
base: v3.0
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
V3.0.2 add new distros #5017
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
d81aaa3
add fedora42
mirostauder 4ab0ad9
update deps and fix issues
mirostauder 5bb5d87
replace sed actions with patch files
mirostauder 9e761f0
cleanups
mirostauder 52a3418
fix almalinux8
mirostauder 6b14554
fix ubuntu22-tap builds, cleanups
mirostauder 306b70b
add centos10
mirostauder c919529
add almalinux10
mirostauder 5af4304
Merge branch 'v3.0-add_fedora42_builds' into v3.0.2-add_new_distros
mirostauder 6eaf124
Merge branch 'v3.0-add_centos10_builds' into v3.0.2-add_new_distros
mirostauder 0c98b14
add support for debian13
mirostauder a0780ac
Merge branch 'v3.0-add_debian13_builds' into v3.0.2-add_new_distros
mirostauder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
clickhouse-cpp-2.3.0 | ||
clickhouse-cpp-2.5.1/ |
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
diff -rau clickhouse-cpp-2.5.1.O/contrib/absl/absl/base/options.h clickhouse-cpp-2.5.1/contrib/absl/absl/base/options.h | ||
--- contrib/absl/absl/base/options.h 2023-09-30 00:53:54.000000000 +0000 | ||
+++ contrib/absl/absl/base/options.h 2025-05-27 09:27:52.020638618 +0000 | ||
@@ -70,7 +70,11 @@ | ||
// Include a standard library header to allow configuration based on the | ||
// standard library in use. | ||
#ifdef __cplusplus | ||
-#include <ciso646> | ||
+#if __has_include(<version>) | ||
+#include <version> | ||
+#else | ||
+#include <ciso646> | ||
+#endif | ||
#endif | ||
|
||
// ----------------------------------------------------------------------------- |
Binary file not shown.
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
libconfig-1.7.3 | ||
libconfig-1.8/ |
Binary file not shown.
Binary file not shown.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- include/ma_global.h 2023-11-01 10:28:04.000000000 +0000 | ||
+++ include/ma_global.h 2025-05-27 08:50:58.456939147 +0000 | ||
@@ -684,7 +684,7 @@ | ||
typedef char my_bool; /* Small bool */ | ||
typedef unsigned long long my_ulonglong; | ||
#if !defined(bool) && !defined(bool_defined) && (!defined(HAVE_BOOL) || !defined(__cplusplus)) | ||
-typedef char bool; /* Ordinary boolean values 0 1 */ | ||
+typedef char bbool; /* Ordinary boolean values 0 1 */ | ||
#endif | ||
/* Macros for converting *constants* to the right type */ | ||
#define INT8(v) (int8) (v) | ||
--- unittest/libmariadb/ssl.c 2023-11-01 10:28:04.000000000 +0000 | ||
+++ unittest/libmariadb/ssl.c 2025-05-27 08:50:58.459166509 +0000 | ||
@@ -1238,7 +1238,7 @@ | ||
static int test_mdev14101(MYSQL *my __attribute__((unused))) | ||
{ | ||
struct { | ||
- bool do_yassl; | ||
+ bbool do_yassl; | ||
const char *opt_tls_version; | ||
const char *expected; | ||
} combinations[]= { | ||
@@ -1251,9 +1251,9 @@ | ||
|
||
int i; | ||
#ifdef HAVE_SCHANNEL | ||
- bool skip_tlsv12= 1; | ||
+ bbool skip_tlsv12= 1; | ||
#else | ||
- bool skip_tlsv12= !have_openssl; | ||
+ bbool skip_tlsv12= !have_openssl; | ||
#endif | ||
|
||
#if defined(HAVE_OPENSSL) && defined(TLS1_3_VERSION) | ||
@@ -1264,7 +1264,7 @@ | ||
for (i=0; combinations[i].expected; i++) | ||
{ | ||
MYSQL *mysql; | ||
- bool val=1; | ||
+ bbool val=1; | ||
char *tls_version; | ||
|
||
if (!combinations[i].do_yassl && skip_tlsv12) |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
postgresql-16.3 | ||
postgresql-16.9/ |
Binary file renamed
BIN
+31.1 MB
deps/postgresql/postgresql-16.3.tar.gz → deps/postgresql/postgresql-16.9.tar.gz
Binary file not shown.
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The patch renames the
bool
type tobbool
to avoid conflicts. This change should be reflected consistently throughout the codebase where the originalbool
type was used.