Skip to content

Commit

Permalink
textproc/rubygem-prism: Update to 0.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sunpoet committed Apr 8, 2024
1 parent f5caf18 commit c89018c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion textproc/rubygem-prism/Makefile
@@ -1,5 +1,5 @@
PORTNAME= prism
PORTVERSION= 0.24.0
PORTVERSION= 0.25.0
CATEGORIES= textproc rubygems
MASTER_SITES= RG

Expand Down
6 changes: 3 additions & 3 deletions textproc/rubygem-prism/distinfo
@@ -1,3 +1,3 @@
TIMESTAMP = 1708450600
SHA256 (rubygem/prism-0.24.0.gem) = 5122f9a2259dc845804044ca081066d8927c05279c947cc1854b16909e7dfd5d
SIZE (rubygem/prism-0.24.0.gem) = 461312
TIMESTAMP = 1712427994
SHA256 (rubygem/prism-0.25.0.gem) = c3f65fc10ffd07a5bef79bf16fb251b6b55e6ce4074770bbac88db92e0dd5d2e
SIZE (rubygem/prism-0.25.0.gem) = 552960
8 changes: 4 additions & 4 deletions textproc/rubygem-prism/files/patch-ext-prism-extconf.rb
@@ -1,11 +1,11 @@
--- ext/prism/extconf.rb.orig 2023-12-17 17:31:53 UTC
--- ext/prism/extconf.rb.orig 2024-04-06 20:48:24 UTC
+++ ext/prism/extconf.rb
@@ -38,7 +38,7 @@ end
@@ -45,7 +45,7 @@ def make(target)
# by this script.`
def make(target)
Dir.chdir(File.expand_path("../..", __dir__)) do
- system("make", target, exception: true)
+ system("gmake", target, exception: true)
- system(RUBY_PLATFORM.include?("openbsd") ? "gmake" : "make", target, exception: true)
+ system((RUBY_PLATFORM.include?("freebsd") || RUBY_PLATFORM.include?("openbsd")) ? "gmake" : "make", target, exception: true)
end
end

0 comments on commit c89018c

Please sign in to comment.