Skip to content

Commit 60ec979

Browse files
authored
Merge pull request #249976 from Homebrew/eye-d3-fix
eye-d3: fix error with python 3.14
2 parents b1cb340 + 77edbdf commit 60ec979

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Formula/e/eye-d3.rb

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ class EyeD3 < Formula
99
head "https://github.com/nicfit/eyeD3.git", branch: "0.9.x"
1010

1111
bottle do
12-
rebuild 1
13-
sha256 cellar: :any_skip_relocation, all: "ae16b3eff6a5254049a8ba9cac20ae0109417ee0c1daaba5de6ada9a6a8119df"
12+
rebuild 2
13+
sha256 cellar: :any_skip_relocation, all: "b5e7af9000a35d628bc1c9410be411d08b693c5a72e000b7c60da35f9755e049"
1414
end
1515

1616
depends_on "[email protected]"
@@ -31,6 +31,10 @@ class EyeD3 < Formula
3131
end
3232

3333
def install
34+
# Fix to error: SystemError: buffer overflow
35+
# Issue ref: https://github.com/nicfit/eyeD3/issues/680
36+
inreplace "eyed3/utils/console.py", "'\\0'", "b'\\\\0'"
37+
3438
virtualenv_install_with_resources
3539
doc.install Dir["docs/*"]
3640
end

0 commit comments

Comments
 (0)