Skip to content

Commit

Permalink
Prep for v1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
theory committed Jan 4, 2025
1 parent c3d7227 commit 544852c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 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
7 changes: 5 additions & 2 deletions Formula/sqitch.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,22 @@ 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 OracleReq if build.with? "oracle-support"
depends_on "perl"
depends_on "sqlite" if build.with? "sqlite-support"
if build.with? "mysql-support"
depends_on "mariadb-connector-c"
depends_on "mysql-client"
end

env :std if build.with? "std-env"

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

if build.with? "vertica-support"
Expand Down
10 changes: 6 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,12 @@ 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-connector-c` and `mysql-client` formulas, the former to
build the necessary database driver at build time, and the latter to use the
`mysql` client to manage databases at runtime. It does not install the
Homebrew MySQL or MaraiDB servers.

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

Expand Down

0 comments on commit 544852c

Please sign in to comment.