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

bump mysql client #109

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ jobs:

- run: brew test-bot --only-cleanup-before

- run: brew test-bot --only-setup || true
# - run: brew test-bot --only-setup || true

- run: brew test-bot --only-tap-syntax || true
# - run: brew test-bot --only-tap-syntax || true

- run: brew test-bot --only-formulae --skip-dependents
if: github.event_name == 'pull_request'
Expand Down
12 changes: 6 additions & 6 deletions Formula/mariadb-connector-c-static.rb
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
class MariadbConnectorCStatic < Formula
desc "MariaDB database connector for C applications"
homepage "https://mariadb.org/download/?tab=connector&prod=connector-c"
url "https://downloads.mariadb.com/Connectors/c/connector-c-3.3.4/mariadb-connector-c-3.3.4-src.tar.gz"
mirror "https://fossies.org/linux/misc/mariadb-connector-c-3.3.4-src.tar.gz/"
sha256 "486e5fdf976a8e7fadf583ae912128655e013ac575fa79b2d1af0fb8827a78ed"
url "https://archive.mariadb.org/connector-c-3.4.1/mariadb-connector-c-3.4.1-src.tar.gz"
mirror "https://fossies.org/linux/misc/mariadb-connector-c-3.4.1-src.tar.gz/"
sha256 "0a7f2522a44a7369c1dda89676e43485037596a7b1534898448175178aedeb4d"
license "LGPL-2.1-or-later"
head "https://github.com/mariadb-corporation/mariadb-connector-c.git", branch: "3.3"

Expand All @@ -15,14 +15,14 @@
end

depends_on "cmake" => :build
depends_on "openssl@1.1"
depends_on "openssl@3"

uses_from_macos "curl"
uses_from_macos "zlib"

conflicts_with "mariadb", because: "both install `mariadb_config`"

def install

Check warning on line 25 in Formula/mariadb-connector-c-static.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-13)

`brew install --verbose --formula --build-bottle autobrew/cran/mariadb-connector-c-static` failed on macOS Ventura (13)!

::error::autobrew/cran/mariadb-connector-c-static 3.4.1 did not build

Check warning on line 25 in Formula/mariadb-connector-c-static.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-14)

`brew install --verbose --formula --build-bottle autobrew/cran/mariadb-connector-c-static` failed on macOS Sonoma (14) on Apple Silicon!

https://github.com/autobrew/homebrew-cran/issues Error: autobrew/cran/mariadb-connector-c-static 3.4.1 did not build ::error::autobrew/cran/mariadb-connector-c-static 3.4.1 did not build Warning: Unable to query GitHub for recent issues on the tap GitHub API Error: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9847:2572A5:3420E47:3491469:66F28ED1. HOMEBREW_GITHUB_API_TOKEN may be invalid or expired; check: https://github.com/settings/tokens ::warning::Unable to query GitHub for recent issues on the tap%0AGitHub API Error: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 9847:2572A5:3420E47:3491469:66F28ED1.%0AHOMEBREW_GITHUB_API_TOKEN may be invalid or expired; check:%0A https://github.com/settings/tokens%0A

Check warning on line 25 in Formula/mariadb-connector-c-static.rb

View workflow job for this annotation

GitHub Actions / test-bot (macos-13-arm64)

`brew install --verbose --formula --build-bottle autobrew/cran/mariadb-connector-c-static` failed on macOS Ventura (13) on Apple Silicon!

https://github.com/autobrew/homebrew-cran/issues Error: autobrew/cran/mariadb-connector-c-static 3.4.1 did not build ::error::autobrew/cran/mariadb-connector-c-static 3.4.1 did not build Warning: Unable to query GitHub for recent issues on the tap GitHub API Error: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 8F60:1246:3C19058:3C93A9D:66F28EC9. HOMEBREW_GITHUB_API_TOKEN may be invalid or expired; check: https://github.com/settings/tokens ::warning::Unable to query GitHub for recent issues on the tap%0AGitHub API Error: You have exceeded a secondary rate limit. Please wait a few minutes before you try again. If you reach out to GitHub Support for help, please include the request ID 8F60:1246:3C19058:3C93A9D:66F28EC9.%0AHOMEBREW_GITHUB_API_TOKEN may be invalid or expired; check:%0A https://github.com/settings/tokens%0A
args = std_cmake_args
args << "-DWITH_MYSQLCOMPAT=OFF"
args << "-DCLIENT_PLUGIN_AUTH_GSSAPI_CLIENT=STATIC"
Expand All @@ -35,9 +35,9 @@
args << "-DCLIENT_PLUGIN_MYSQL_CLEAR_PASSWORD=STATIC"
args << "-DCLIENT_PLUGIN_MYSQL_OLD_PASSWORD=STATIC"
args << "-DCLIENT_PLUGIN_REMOTE_IO=OFF"
args << "-DWITH_OPENSSL=On"
args << "-DWITH_SSL=OPENSSL"
args << "-DWITH_EXTERNAL_ZLIB=On"
args << "-DOPENSSL_INCLUDE_DIR=#{Formula["openssl@1.1"].opt_include}"
args << "-DOPENSSL_INCLUDE_DIR=#{Formula["openssl@3"].opt_include}"
args << "-DINSTALL_MANDIR=#{share}"
args << "-DCOMPILATION_COMMENT=Homebrew"

Expand Down
Loading