Skip to content

Commit

Permalink
Upgrade to v1.5.0
Browse files Browse the repository at this point in the history
Replace MySQL stuff with MariaDB.
  • Loading branch information
theory committed Jan 8, 2025
1 parent c3d7227 commit 45dfd0f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Tap
run: |-
mkdir -p $(brew --repo)/Library/Taps/citest
Expand Down
8 changes: 4 additions & 4 deletions Formula/sqitch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
class Sqitch < Formula
desc "Sensible database change management"
homepage "https://sqitch.org/"
url "https://www.cpan.org/authors/id/D/DW/DWHEELER/App-Sqitch-v1.4.1.tar.gz"
sha256 "caf31cc8f772e3a4c9d4b3ff3a8f684a6eb5b1b3c261f4ddc0f90a88c36007c6"
url "https://www.cpan.org/authors/id/D/DW/DWHEELER/App-Sqitch-v1.5.0.tar.gz"
sha256 "a158871693edf1e9ffe3ad03e798b56500737b801c0a288c63f811ef9a140184"
license "MIT"
head "https://github.com/sqitchers/sqitch.git", branch: "develop"

Expand All @@ -22,10 +22,11 @@ class Sqitch < Formula
option "with-snowflake-support", "Support for managing Snowflake databases"
option "with-std-env", "Build against custom non-Homebrew dependencies"

depends_on "openssl@3"
depends_on "cpm" => :build
depends_on FirebirdReq if build.with? "firebird-support"
depends_on "libpq" if build.with? "postgres-support"
depends_on "mysql-client" if build.with? "mysql-support"
depends_on "mariadb" if build.with? "mysql-support"
depends_on OracleReq if build.with? "oracle-support"
depends_on "perl"
depends_on "sqlite" if build.with? "sqlite-support"
Expand All @@ -34,7 +35,6 @@ class Sqitch < Formula

if build.head?
depends_on "gettext" => :build
depends_on "openssl@3" => :build
end

if build.with? "vertica-support"
Expand Down
9 changes: 5 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,11 @@ client at runtime.
brew install sqitch --with-mysql-support
```

Support for managing [MySQL](https://www.mysql.com) databases. This feature
optionally depends on the Homebrew `mysql-client` formula, both to build the
necessary database driver at build time, and to use the `mysql` client to
manage databases at runtime. It does not install the Homebrew MySQL server.
Support for managing [MySQL](https://www.mysql.com) and
[MariaDB](https://mariadb.com) databases. This feature optionally depends on
the Homebrew `mariadb` formula to build the necessary database driver at build
time and to use the `mysql` client to manage databases at runtime. It does not
install the Homebrew MySQL server.

### `--with-firebird-support`

Expand Down

0 comments on commit 45dfd0f

Please sign in to comment.