git: eabd731c003d - main - devel/rubygem-oj-introspect: update to 0.7.2
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 18 Feb 2023 11:06:48 UTC
The branch main has been updated by mfechner: URL: https://cgit.FreeBSD.org/ports/commit/?id=eabd731c003d7b922b6ec0b115696bb8883ba96f commit eabd731c003d7b922b6ec0b115696bb8883ba96f Author: Matthias Fechner <mfechner@FreeBSD.org> AuthorDate: 2023-02-18 09:36:46 +0000 Commit: Matthias Fechner <mfechner@FreeBSD.org> CommitDate: 2023-02-18 11:06:14 +0000 devel/rubygem-oj-introspect: update to 0.7.2 Changelog: https://github.com/meinac/oj-introspect/compare/v0.7.1...v0.7.2 --- devel/rubygem-oj-introspect/Makefile | 4 ++-- devel/rubygem-oj-introspect/distinfo | 6 +++--- .../files/patch-ext_oj-introspect_extconf.rb | 25 ---------------------- 3 files changed, 5 insertions(+), 30 deletions(-) diff --git a/devel/rubygem-oj-introspect/Makefile b/devel/rubygem-oj-introspect/Makefile index 02807a71ef00..23fedb4cb39e 100644 --- a/devel/rubygem-oj-introspect/Makefile +++ b/devel/rubygem-oj-introspect/Makefile @@ -1,5 +1,5 @@ PORTNAME= oj-introspect -PORTVERSION= 0.7.1 +PORTVERSION= 0.7.2 CATEGORIES= devel rubygems MASTER_SITES= RG @@ -10,7 +10,7 @@ WWW= https://github.com/meinac/oj-introspect LICENSE= MIT LICENSE_FILE= ${WRKSRC}/LICENSE.txt -MY_DEPENDS= rubygem-oj>=3.13.23_2<3.14:devel/rubygem-oj +MY_DEPENDS= rubygem-oj>=3.13.23_2:devel/rubygem-oj BUILD_DEPENDS= ${MY_DEPENDS} RUN_DEPENDS= ${MY_DEPENDS} diff --git a/devel/rubygem-oj-introspect/distinfo b/devel/rubygem-oj-introspect/distinfo index 0b321b9824e9..b00153a33167 100644 --- a/devel/rubygem-oj-introspect/distinfo +++ b/devel/rubygem-oj-introspect/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1669455749 -SHA256 (rubygem/oj-introspect-0.7.1.gem) = ea584e78495a62d5356aece7242bb55455d623ad3deb3cd778e623dd19e050c0 -SIZE (rubygem/oj-introspect-0.7.1.gem) = 12288 +TIMESTAMP = 1676712947 +SHA256 (rubygem/oj-introspect-0.7.2.gem) = c415a44567ed2870d8e963a69421d9322128e194fab7867e37e54d5a25d5333d +SIZE (rubygem/oj-introspect-0.7.2.gem) = 12288 diff --git a/devel/rubygem-oj-introspect/files/patch-ext_oj-introspect_extconf.rb b/devel/rubygem-oj-introspect/files/patch-ext_oj-introspect_extconf.rb deleted file mode 100644 index 11cdf262eeb3..000000000000 --- a/devel/rubygem-oj-introspect/files/patch-ext_oj-introspect_extconf.rb +++ /dev/null @@ -1,25 +0,0 @@ ---- ext/oj-introspect/extconf.rb.orig 2023-01-10 13:31:58 UTC -+++ ext/oj-introspect/extconf.rb -@@ -7,22 +7,6 @@ oj_version_file_path = Pathname.new(oj_version_file) - - OJ_HEADERS = oj_version_file_path.join('..', '..', '..', 'ext', 'oj').to_s - --cc_version = `#{RbConfig.expand("$(CC) --version".dup)}` --if cc_version.match?(/clang/i) -- # Ignore symbols loaded from Oj in case Ruby is compiled without -- # "-Wl,-undefined,dynamic_lookup" (related to https://bugs.ruby-lang.org/issues/19005) -- symfile = File.join(__dir__, 'oj.sym') -- dynamic_symbols = File.readlines(symfile) -- dynamic_symbols.each do |sym| -- $DLDFLAGS << " -Wl,-U,#{sym.strip}" -- end -- -- # Needed for Ruby 3.2 ABI check: https://github.com/ruby/ruby/pull/5474 -- if RUBY_VERSION >= "3.2" -- $LDFLAGS << " -Wl,-exported_symbol,_ruby_abi_version" -- end --end -- - dir_config('oj', [OJ_HEADERS], []) - - create_makefile("oj/introspect/introspect_ext")