Skip to content

Commit

Permalink
Merge branch 'master' into vim-python3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
carlocab committed Oct 22, 2024
2 parents cae4ed3 + 2a353fd commit 9be5d3a
Show file tree
Hide file tree
Showing 375 changed files with 2,291 additions and 1,898 deletions.
4 changes: 4 additions & 0 deletions .github/autobump.txt
Original file line number Diff line number Diff line change
Expand Up @@ -517,6 +517,7 @@ cosign
cotila
cotp
couchbase-shell
couchdb
countdown
counterfeiter
coursier
Expand Down Expand Up @@ -1265,6 +1266,7 @@ imap-backup
imapsync
imath
imessage-exporter
imgdiet
imgproxy
immich-cli
immortal
Expand Down Expand Up @@ -2065,6 +2067,7 @@ openldap
openlibm
openrct2
openrtsp
opensaml
opensc
opensearch
openshift-cli
Expand Down Expand Up @@ -2948,6 +2951,7 @@ virustotal-cli
vis
vite
vitess
viu
vivid
vlang
vnstat
Expand Down
1 change: 1 addition & 0 deletions Aliases/[email protected]
4 changes: 2 additions & 2 deletions Formula/a/aarch64-elf-gcc.rb
Original file line number Diff line number Diff line change
Expand Up @@ -56,14 +56,14 @@ def install
end

test do
(testpath/"test-c.c").write <<~EOS
(testpath/"test-c.c").write <<~C
int main(void)
{
int i=0;
while(i<10) i++;
return i;
}
EOS
C
system bin/"aarch64-elf-gcc", "-c", "-o", "test-c.o", "test-c.c"
assert_match "file format elf64-littleaarch64",
shell_output("#{Formula["aarch64-elf-binutils"].bin}/aarch64-elf-objdump -a test-c.o")
Expand Down
16 changes: 7 additions & 9 deletions Formula/a/abricate.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@ class Abricate < Formula
url "https://github.com/tseemann/abricate/archive/refs/tags/v1.0.1.tar.gz"
sha256 "5edc6b45a0ff73dcb4f1489a64cb3385d065a6f29185406197379522226a5d20"
license "GPL-2.0-only"
revision 2
revision 3
head "https://github.com/tseemann/abricate.git", branch: "master"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "b6b72078ed6855b2db59381b920405a5025e15ec92624637bfa3ed774f131e4a"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "4e05f6bc80f04e8706e082b21e944921b6de7811be3388f099dfb9df298825da"
sha256 cellar: :any_skip_relocation, arm64_ventura: "312093ac29b9f9c387d802172e05fbed5ea0cf0d0ef664718ecc1d7a520b2361"
sha256 cellar: :any_skip_relocation, arm64_monterey: "ff3521c9a86fbf51387785500f2006106a11362c5223923e00191db3d43c1d1f"
sha256 cellar: :any_skip_relocation, sonoma: "17a15ded172e09a0c28affc08139e8f63998fa83004ec234c18d391c85be3664"
sha256 cellar: :any_skip_relocation, ventura: "4db0a30d1cd363a5e26b12cece47161f817bf37374030ced0c343e1c3f462bb0"
sha256 cellar: :any_skip_relocation, monterey: "f658b5d10292077b2862e50d33dd7b4e1cffa40e69fbdda0ecf4841d3338710c"
sha256 cellar: :any_skip_relocation, x86_64_linux: "346086c1c023b982321bab45d20316d1c25e9f47437bf95350a026bc4fd71d6b"
sha256 cellar: :any_skip_relocation, arm64_sequoia: "2e7f6393112a6a35dce42b72269577f9a625cb161185fc24075afc326e057ad7"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "35e1dff52eb0bf1df021f9fa7cfe0e1a09df089e6bfc4af6c87e07a0f52db655"
sha256 cellar: :any_skip_relocation, arm64_ventura: "a1019399ae72e1e4b793e287b92c2b000b6680f44c60faa2aa63e61683fae70c"
sha256 cellar: :any_skip_relocation, sonoma: "f72cb3d2b9f6d42fe8ff2ff6c72d9dab66d5e7a5f867ae384ae06f2477c8e53c"
sha256 cellar: :any_skip_relocation, ventura: "e64a514eafd58745186e9302e4a5fa0d9da4eb9e686ff15ec3fa53c29b9b3a3b"
sha256 cellar: :any_skip_relocation, x86_64_linux: "7ccff5939400556b14677e73e48b33f8794781a62ed6df468bef9d240ecaffb4"
end

depends_on "bioperl"
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/acl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def install
other::r-x
EOS

(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <stdio.h>
#include <sys/acl.h>
Expand All @@ -64,7 +64,7 @@ def install
acl_free(acl_text);
return 0;
}
EOS
C
system ENV.cc, "test.c", "-o", "test", "-I#{include}", "-L#{lib}", "-lacl"
assert_equal <<~EOS, shell_output("./test").chomp
user::rwx
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/airspy.rb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <stdio.h>
#include <libairspy/airspy.h>
Expand All @@ -47,7 +47,7 @@ def install
return 0;
}
EOS
C

system ENV.cc, "test.c", "-L#{lib}", "-lairspy", "-o", "test"
assert_match version.to_s, shell_output("./test")
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/airspyhf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <libairspyhf/airspyhf.h>
int main() {
Expand All @@ -51,7 +51,7 @@ def install
return 1;
}
EOS
C

system ENV.cc, "test.c", "-o", "test", "-I#{include}", "-L#{lib}", "-lairspyhf", "-lm"
system "./test"
Expand Down
7 changes: 3 additions & 4 deletions Formula/a/allure.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Allure < Formula
desc "Flexible lightweight test report tool"
homepage "https://github.com/allure-framework/allure2"
url "https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2.30.0/allure-commandline-2.30.0.zip"
sha256 "2e3e9af0772796862da17d95007abd8d3df1176c13aca89ee2c79118fe4dd2f7"
url "https://repo.maven.apache.org/maven2/io/qameta/allure/allure-commandline/2.31.0/allure-commandline-2.31.0.zip"
sha256 "8f89bfe5e4b0a33c967ce3bb8bab92f23d89d0722fbb29b734f5b11fe6133d53"
license "Apache-2.0"

livecheck do
Expand All @@ -11,8 +11,7 @@ class Allure < Formula
end

bottle do
rebuild 1
sha256 cellar: :any_skip_relocation, all: "0b1f05a1263f29783b3ff0b9e48f9c8b97f4653f48ae2b33003307effa462d22"
sha256 cellar: :any_skip_relocation, all: "2602402b80c9d6cad871cc4edc8dcc8a8adb84a8e41bba93712f38158a2da45a"
end

depends_on "openjdk"
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/alsa-lib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <alsa/asoundlib.h>
int main(void)
{
snd_ctl_card_info_t *info;
snd_ctl_card_info_alloca(&info);
return 0;
}
EOS
C
system ENV.cc, "test.c", "-L#{lib}", "-lasound", "-o", "test"
system "./test"
end
Expand Down
101 changes: 101 additions & 0 deletions Formula/a/ansible-builder.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
class AnsibleBuilder < Formula
include Language::Python::Virtualenv

desc "CLI tool for building Ansible Execution Environments (Containers)"
homepage "https://ansible-builder.readthedocs.io/"
url "https://files.pythonhosted.org/packages/3c/d5/c94e86098107209a82de9401ec31413fabd4236af0be9427c57a5bdbf855/ansible_builder-3.1.0.tar.gz"
sha256 "d2dc573e26a7bd5095e98aeb37ee9b00bc9f5005abea7147d74229c0f3426fcb"
license "Apache-2.0"

bottle do
sha256 cellar: :any, arm64_sequoia: "579c9ad083782a2e50605b47820f573e1f7ae3d74f78ae7ef6fdfdb752581e22"
sha256 cellar: :any, arm64_sonoma: "c92bc3474f4736687413164573d5c0ac47ddaf1824634ec1e7877caab3877dea"
sha256 cellar: :any, arm64_ventura: "c6db94ad4366fdd83e81ea63d924905b1e2e3c3cccdd6fb00d1eebe69fe70480"
sha256 cellar: :any, sonoma: "5f40359c7bf70ef62925b8632fa7272a48f9943ff1766ac853a05002a8c137ee"
sha256 cellar: :any, ventura: "ccff1f1d43e692707c0c447f0b7ec919e219d4e00a1717831bdbf0f79f7d92fd"
sha256 cellar: :any_skip_relocation, x86_64_linux: "512ffc543e0e70b2aa4312be8d2704f36ec2cf436c025a3d56b3e5d830d89345"
end

depends_on "rust" => :build
depends_on "libyaml"
depends_on "[email protected]"

resource "attrs" do
url "https://files.pythonhosted.org/packages/fc/0f/aafca9af9315aee06a89ffde799a10a582fe8de76c563ee80bbcdc08b3fb/attrs-24.2.0.tar.gz"
sha256 "5cfb1b9148b5b086569baec03f20d7b6bf3bcacc9a42bebf87ffaaca362f6346"
end

resource "bindep" do
url "https://files.pythonhosted.org/packages/8e/89/689d7f17c559dea2849d27365f53bd40f134056392db9e88a2590eb3dc29/bindep-2.11.0.tar.gz"
sha256 "acb2f259bce1fd1508873479609bbde5b9aae508378476a68d6b6a19002e7e2f"
end

resource "distro" do
url "https://files.pythonhosted.org/packages/fc/f8/98eea607f65de6527f8a2e8885fc8015d3e6f5775df186e443e0964a11c3/distro-1.9.0.tar.gz"
sha256 "2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"
end

resource "jsonschema" do
url "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz"
sha256 "d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4"
end

resource "jsonschema-specifications" do
url "https://files.pythonhosted.org/packages/10/db/58f950c996c793472e336ff3655b13fbcf1e3b359dcf52dcf3ed3b52c352/jsonschema_specifications-2024.10.1.tar.gz"
sha256 "0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272"
end

resource "packaging" do
url "https://files.pythonhosted.org/packages/51/65/50db4dda066951078f0a96cf12f4b9ada6e4b811516bf0262c0f4f7064d4/packaging-24.1.tar.gz"
sha256 "026ed72c8ed3fcce5bf8950572258698927fd1dbda10a5e981cdf0ac37f4f002"
end

resource "parsley" do
url "https://files.pythonhosted.org/packages/06/52/cac2f9e78c26cff8bb518bdb4f2b5a0c7058dec7a62087ed48fe87478ef0/Parsley-1.3.tar.gz"
sha256 "9444278d47161d5f2be76a767809a3cbe6db4db822f46a4fd7481d4057208d41"
end

resource "pbr" do
url "https://files.pythonhosted.org/packages/b2/35/80cf8f6a4f34017a7fe28242dc45161a1baa55c41563c354d8147e8358b2/pbr-6.1.0.tar.gz"
sha256 "788183e382e3d1d7707db08978239965e8b9e4e5ed42669bf4758186734d5f24"
end

resource "pyyaml" do
url "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz"
sha256 "d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e"
end

resource "referencing" do
url "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz"
sha256 "25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c"
end

resource "rpds-py" do
url "https://files.pythonhosted.org/packages/55/64/b693f262791b818880d17268f3f8181ef799b0d187f6f731b1772e05a29a/rpds_py-0.20.0.tar.gz"
sha256 "d72a210824facfdaf8768cf2d7ca25a042c30320b3020de2fa04640920d4e121"
end

def install
virtualenv_install_with_resources
end

test do
test_tmp = testpath/"tmp"
(testpath/"execution-environment.yml").write <<~EOS
---
version: 3
images:
base_image:
name: quay.io/ansible/awx-ee:latest
options:
skip_ansible_check: True
EOS

system bin/"ansible-builder", "create", "-c", test_tmp,
"--output-filename", "Containerfile",
"--file", testpath/"execution-environment.yml"
assert_predicate test_tmp/"Containerfile", :exist?

assert_match version.to_s, shell_output("#{bin}/ansible-builder --version")
end
end
15 changes: 8 additions & 7 deletions Formula/a/apkleaks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ class Apkleaks < Formula
license "Apache-2.0"

bottle do
sha256 cellar: :any_skip_relocation, arm64_sequoia: "78bc0ac2003c663b918b7e66ff43c3b0859bab29798b04c455ca4d8567f0f839"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "f0cdb9b33a993b7522962766782cb18eae1e3e429bf39e39a60aed63de01d83c"
sha256 cellar: :any_skip_relocation, arm64_ventura: "213bf23d68874434ab0c4c7ebc55a0eb93f7f46c4a8a33abfa6d3d24c55a3a88"
sha256 cellar: :any_skip_relocation, sonoma: "73d3e2b34b92882ac21f178f62dcc72acb23fd96aa95f62fb851930404111cbc"
sha256 cellar: :any_skip_relocation, ventura: "d336edab793642ee6f909b7a47bcc2b060ddc18e7b3acda50ff27f7496f944f3"
sha256 cellar: :any_skip_relocation, x86_64_linux: "8c736d8059b1441e0bdf907ac464270726aa1498210ebe74f1068d919ce774fc"
rebuild 1
sha256 cellar: :any_skip_relocation, arm64_sequoia: "53409d176d6c3ea2efa1575ac9a466f74dd8a5a7426be952b02787780f4ff858"
sha256 cellar: :any_skip_relocation, arm64_sonoma: "b7377ef49f14020db31a4e72f6592c98af1ed270a530eb26e9e9de9cac21b72b"
sha256 cellar: :any_skip_relocation, arm64_ventura: "d1391422b4037f72e36b3b38901e0bc279e9c5770fc63cb00c674aff9dddc43a"
sha256 cellar: :any_skip_relocation, sonoma: "8b9948be0cb74507608a58e1b99a5bc62bb745dc3b4b2d3a88a4785c670d708f"
sha256 cellar: :any_skip_relocation, ventura: "2bc351029f9c9e53004fcf6cbdb2fc3a772c771dccc3052dd3a3dcedab122c59"
sha256 cellar: :any_skip_relocation, x86_64_linux: "63fdbb67007a469a23eb740eb1bfbc39e84abc92e04d706b79cf40b19d95dc95"
end

depends_on "jadx"
depends_on "python@3.12"
depends_on "python@3.13"

uses_from_macos "libxml2", since: :ventura
uses_from_macos "libxslt"
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/appstream-glib.rb
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <appstream-glib.h>
int main(int argc, char *argv[]) {
AsScreenshot *screen_shot = as_screenshot_new();
g_assert_nonnull(screen_shot);
return 0;
}
EOS
C
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/appstream.rb
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ def install
<name>Test App</name>
</component>
EOS
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include "appstream.h"
int main(int argc, char *argv[]) {
Expand All @@ -95,7 +95,7 @@ def install
g_clear_error (&error);
}
}
EOS
C
flags = shell_output("pkg-config --cflags --libs appstream").strip.split
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/apr.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,14 +49,14 @@ def install

test do
assert_match opt_prefix.to_s, shell_output("#{bin}/apr-#{version.major}-config --prefix")
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <stdio.h>
#include <apr-#{version.major}/apr_version.h>
int main() {
printf("%s", apr_version_string());
return 0;
}
EOS
C
system ENV.cc, "test.c", "-I#{include}", "-L#{lib}", "-lapr-#{version.major}", "-o", "test"
assert_equal version.to_s, shell_output("./test")
end
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/arb.rb
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <arb.h>
int main()
Expand All @@ -58,7 +58,7 @@ def install
arb_clear(x); arb_clear(y);
flint_cleanup();
}
EOS
C

system ENV.cc, "test.c", "-I#{include}", "-I#{Formula["flint"].opt_include}",
"-L#{lib}", "-L#{Formula["flint"].opt_lib}",
Expand Down
4 changes: 2 additions & 2 deletions Formula/a/argp-standalone.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,15 @@ def install
end

test do
(testpath/"test.c").write <<~EOS
(testpath/"test.c").write <<~C
#include <stdio.h>
#include <argp.h>
int main(int argc, char ** argv)
{
return argp_parse(0, argc, argv, 0, 0, 0);
}
EOS
C
system ENV.cc, "test.c", "-L#{lib}", "-largp", "-o", "test"
system "./test"
end
Expand Down
Loading

0 comments on commit 9be5d3a

Please sign in to comment.