From 93df78fbb51db267e708da92eb7479d3d42fcd5e Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Mon, 18 Nov 2024 17:26:51 -0500 Subject: [PATCH 1/4] raylib 5.5 autobump: add raylib Signed-off-by: Rui Chen --- .github/autobump.txt | 1 + Formula/r/raylib.rb | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/autobump.txt b/.github/autobump.txt index ecf443e530b9..487f193028b5 100644 --- a/.github/autobump.txt +++ b/.github/autobump.txt @@ -2442,6 +2442,7 @@ rattler-build rav1e raven raxml-ng +raylib rbtools rbw rclone diff --git a/Formula/r/raylib.rb b/Formula/r/raylib.rb index 914b3f5cbbcf..4cf0bfa65f09 100644 --- a/Formula/r/raylib.rb +++ b/Formula/r/raylib.rb @@ -1,8 +1,8 @@ class Raylib < Formula desc "Simple and easy-to-use library to learn videogames programming" homepage "https://www.raylib.com/" - url "https://github.com/raysan5/raylib/archive/refs/tags/5.0.tar.gz" - sha256 "98f049b9ea2a9c40a14e4e543eeea1a7ec3090ebdcd329c4ca2cf98bc9793482" + url "https://github.com/raysan5/raylib/archive/refs/tags/5.5.tar.gz" + sha256 "aea98ecf5bc5c5e0b789a76de0083a21a70457050ea4cc2aec7566935f5e258e" license "Zlib" head "https://github.com/raysan5/raylib.git", branch: "master" From c5080c2cf382437828072bba83e01abb15afb39a Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Tue, 19 Nov 2024 00:04:41 -0500 Subject: [PATCH 2/4] odin: revision bump (raylib 5.5) Signed-off-by: Rui Chen --- Formula/o/odin.rb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Formula/o/odin.rb b/Formula/o/odin.rb index e3345d441a85..7934a6495dd3 100644 --- a/Formula/o/odin.rb +++ b/Formula/o/odin.rb @@ -6,6 +6,7 @@ class Odin < Formula revision: "e6475fec4d2a3e34099b24a7a3bf890c7a3ef8d9" version "2024-11" license "BSD-3-Clause" + revision 1 head "https://github.com/odin-lang/Odin.git", branch: "master" bottle do @@ -64,8 +65,8 @@ def install ln_s Formula["glfw"].lib/"libglfw3.a", buildpath/glfw_installpath/"libglfw3.a" ln_s Formula["raylib"].lib/"libraylib.a", buildpath/raylib_installpath/"libraylib.a" - # This is actually raylib 5.0, but upstream had not incremented this number yet when it released. - ln_s Formula["raylib"].lib/shared_library("libraylib", "4.5.0"), + # In order to match the version 500 used in odin + ln_s Formula["raylib"].lib/shared_library("libraylib", "5.5.0"), buildpath/raylib_installpath/shared_library("libraylib", "500") resource("raygui").stage do From 08e276569c192f88d4953dd823bfc5c66128210e Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:40:07 +0000 Subject: [PATCH 3/4] odin: update 2024-11_1 bottle. --- Formula/o/odin.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/o/odin.rb b/Formula/o/odin.rb index 7934a6495dd3..2ff2a3b8339c 100644 --- a/Formula/o/odin.rb +++ b/Formula/o/odin.rb @@ -10,12 +10,12 @@ class Odin < Formula head "https://github.com/odin-lang/Odin.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "a91650f6f1f162e4f97edb3eb37ff405a4b3489879fea827b59d60de897f1611" - sha256 cellar: :any, arm64_sonoma: "e0e206de0cb654f640506f8c290a4cd9adbbc3b6dfe922514eaf001a38bbaecc" - sha256 cellar: :any, arm64_ventura: "b3aa71ba40266020de5094de62da209d8636c80ff468c236e0c6b5fe9e657284" - sha256 cellar: :any, sonoma: "6aaa0043560c7a7350b340dc84f98883536fbfd023a1a4d0ccd3f99a8e592105" - sha256 cellar: :any, ventura: "681e64950b8d627be9441afade8a93730ae9dcd2049d4dd56382cd95b331d3eb" - sha256 cellar: :any_skip_relocation, x86_64_linux: "5525674250061c026a799c4007e9e75a0ec4a72c46540464ca341874b3fe5ad6" + sha256 cellar: :any, arm64_sequoia: "31e940b62db1b555df91381d21b8c435774f6438239e47e124fcec7004cfc63e" + sha256 cellar: :any, arm64_sonoma: "189fe3a399760b5a44c5e42ccb57d07fb6d79d1516051cc6e69bb430b0d72f74" + sha256 cellar: :any, arm64_ventura: "548a349c0147afa70db136b3a5df3210ae48dbaf3473e5ef9a4bef26f1726dab" + sha256 cellar: :any, sonoma: "25f2095090821214a1ec0e8c61d6dd8c0d78ce74cfd6d483aa2a70f6ede4c51c" + sha256 cellar: :any, ventura: "ccd82ddf333eb27e715e62857646177129cc9a5a3ff0c9847d70ca8499f07272" + sha256 cellar: :any_skip_relocation, x86_64_linux: "11fc24e935cbf3e3828f9cb55ba45f8cf0a96ee7c1898be962e616474ec580b4" end depends_on "glfw" From dd8e2939017543dbaa0c8571e5d11527ea5d494f Mon Sep 17 00:00:00 2001 From: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com> Date: Tue, 19 Nov 2024 10:40:08 +0000 Subject: [PATCH 4/4] raylib: update 5.5 bottle. --- Formula/r/raylib.rb | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/Formula/r/raylib.rb b/Formula/r/raylib.rb index 4cf0bfa65f09..e24fa258582a 100644 --- a/Formula/r/raylib.rb +++ b/Formula/r/raylib.rb @@ -7,14 +7,12 @@ class Raylib < Formula head "https://github.com/raysan5/raylib.git", branch: "master" bottle do - sha256 cellar: :any, arm64_sequoia: "875ed8fbb499eef33984ddfe1bd4b611dbee0c340c34bc766348812a7c89ac92" - sha256 cellar: :any, arm64_sonoma: "df780cb94deb60db33809e7fed26dfb908f0e56b94ba9446b81feb81341429a4" - sha256 cellar: :any, arm64_ventura: "6dfeb82614799cbb5ad1acbf7d5bb6c9b49aca625589792453d490eff0f06acd" - sha256 cellar: :any, arm64_monterey: "fb4f24b408d7e9ff3288f1cad7faba81f649ebf271389fa81a2034175330c3ff" - sha256 cellar: :any, sonoma: "f5541a5c113575806fd5d0ecf0fa6a6ecccc5485745a7b3cf812003c8eea9914" - sha256 cellar: :any, ventura: "a855f2f9a4904451c9c1f70e4083869ba1927ac1e9093752467f4796e289ebd4" - sha256 cellar: :any, monterey: "c515bdd72672af2565897cb55c2d8d4adce5be582f7c0bb914f006d4471feeea" - sha256 cellar: :any_skip_relocation, x86_64_linux: "72ebd3844b3be772438ef23365d7e27dc2604b93e127560398bcc5dd568c4bd5" + sha256 cellar: :any, arm64_sequoia: "b2040d26e8f4ff8b35da7e9a6f68186fab5497979d67475314900de05b90f031" + sha256 cellar: :any, arm64_sonoma: "16b1195332aee21f29004fce9e281fc1a97a8ac678265f15a4735ee9a9e1f554" + sha256 cellar: :any, arm64_ventura: "b7dd5d1afd3c21145c7ca8e850f9acffb773a86ab05fa8b271d70fdc877874c0" + sha256 cellar: :any, sonoma: "27792cb3dacfecbebac27d0f131352dd83a8cfef788dc0c22eb981805a65bfda" + sha256 cellar: :any, ventura: "3e2398dfe727607adcb84c4f45144570235cdb97dba82eb0e01df188bf7776d0" + sha256 cellar: :any_skip_relocation, x86_64_linux: "401315b8abc27b4351ec647fc8add4bdd8213012fe6d3200f1981afd357f7d7e" end depends_on "cmake" => :build