|
1 | 1 | class Sqlboiler < Formula |
2 | 2 | desc "Generate a Go ORM tailored to your database schema" |
3 | 3 | homepage "https://github.com/volatiletech/sqlboiler" |
4 | | - url "https://github.com/volatiletech/sqlboiler/archive/refs/tags/v4.19.1.tar.gz" |
5 | | - sha256 "ba6fb59dcf9fc6ab14223a001c5d53156165563cb357521eff0e599eb61cef2a" |
| 4 | + url "https://github.com/volatiletech/sqlboiler/archive/refs/tags/v4.19.2.tar.gz" |
| 5 | + sha256 "27320df592ae8b143861baf4a93c0a5e142c1fdf61db62feeb98efcaeac8aa40" |
6 | 6 | license "BSD-3-Clause" |
7 | 7 | head "https://github.com/volatiletech/sqlboiler.git", branch: "master" |
8 | 8 |
|
9 | 9 | bottle do |
10 | | - sha256 cellar: :any_skip_relocation, arm64_sequoia: "08857ef511f690f8933d95b76105661e7649530a646684d723735191f57435c6" |
11 | | - sha256 cellar: :any_skip_relocation, arm64_sonoma: "08857ef511f690f8933d95b76105661e7649530a646684d723735191f57435c6" |
12 | | - sha256 cellar: :any_skip_relocation, arm64_ventura: "08857ef511f690f8933d95b76105661e7649530a646684d723735191f57435c6" |
13 | | - sha256 cellar: :any_skip_relocation, sonoma: "9c69916334c39d17e4021dcb5d934d83fea64991a77819bb58576296e2d3ebc0" |
14 | | - sha256 cellar: :any_skip_relocation, ventura: "9c69916334c39d17e4021dcb5d934d83fea64991a77819bb58576296e2d3ebc0" |
15 | | - sha256 cellar: :any_skip_relocation, x86_64_linux: "864792653086ae9530164a4e60696fde39cafbdd1111e048a51e6ca5ad119f08" |
| 10 | + sha256 cellar: :any_skip_relocation, arm64_sequoia: "9b4add434e7c891fa931251afed3a07c682f5fd25e1f87b744f3a2e851e5c2af" |
| 11 | + sha256 cellar: :any_skip_relocation, arm64_sonoma: "9b4add434e7c891fa931251afed3a07c682f5fd25e1f87b744f3a2e851e5c2af" |
| 12 | + sha256 cellar: :any_skip_relocation, arm64_ventura: "9b4add434e7c891fa931251afed3a07c682f5fd25e1f87b744f3a2e851e5c2af" |
| 13 | + sha256 cellar: :any_skip_relocation, sonoma: "76ca857d4f6e7247dded84268526b81f06e95b2d51c8146ea832d2f90bd3efb2" |
| 14 | + sha256 cellar: :any_skip_relocation, ventura: "76ca857d4f6e7247dded84268526b81f06e95b2d51c8146ea832d2f90bd3efb2" |
| 15 | + sha256 cellar: :any_skip_relocation, x86_64_linux: "c776177db9bc32682c923be3f363fcbb99129799e9f518088322ce14458b078d" |
16 | 16 | end |
17 | 17 |
|
18 | 18 | depends_on "go" => :build |
19 | 19 |
|
| 20 | + # version patch, upstream pr ref, https://github.com/aarondl/sqlboiler/pull/1454 |
| 21 | + patch do |
| 22 | + url "https://github.com/aarondl/sqlboiler/commit/6a39f792d9e8ee838697a63284a4bf999d02440d.patch?full_index=1" |
| 23 | + sha256 "c8f816926066ad16ed9cfd87f20be230b9751686b0519fe088d04011ede246b8" |
| 24 | + end |
| 25 | + |
20 | 26 | def install |
21 | 27 | %w[mssql mysql psql sqlite3].each do |driver| |
22 | 28 | f = "sqlboiler-#{driver}" |
|
0 commit comments