diff options
author | Johannes Jost Meixner <xmj@FreeBSD.org> | 2015-03-29 21:29:29 +0000 |
---|---|---|
committer | Johannes Jost Meixner <xmj@FreeBSD.org> | 2015-03-29 21:29:29 +0000 |
commit | 5a2daa08af19f5a4635901661a5a9f67c7ad2c1f (patch) | |
tree | 8369465918ef6a19606148b6589cab55660d45db | |
parent | devel/dcmtk: add EGD conditional to fix build with LibreSSL (diff) |
devel/rubygem-ffi: update to 1.9.8
PR: 199007
Submitted by: Michael Moll <kvedulv@kvedulv.de>
Approved by: mentors (implicit)
Notes
Notes:
svn path=/head/; revision=382627
-rw-r--r-- | devel/rubygem-ffi/Makefile | 3 | ||||
-rw-r--r-- | devel/rubygem-ffi/distinfo | 4 | ||||
-rw-r--r-- | devel/rubygem-ffi/files/patch-lib__ffi__library.rb | 15 |
3 files changed, 3 insertions, 19 deletions
diff --git a/devel/rubygem-ffi/Makefile b/devel/rubygem-ffi/Makefile index 3bf01f50d4c0..ae2b930582a0 100644 --- a/devel/rubygem-ffi/Makefile +++ b/devel/rubygem-ffi/Makefile @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ffi -PORTVERSION= 1.9.3 -PORTREVISION= 1 +PORTVERSION= 1.9.8 CATEGORIES= devel rubygems MASTER_SITES= RG diff --git a/devel/rubygem-ffi/distinfo b/devel/rubygem-ffi/distinfo index 7239c2d354ef..2b1ca50e5601 100644 --- a/devel/rubygem-ffi/distinfo +++ b/devel/rubygem-ffi/distinfo @@ -1,2 +1,2 @@ -SHA256 (rubygem/ffi-1.9.3.gem) = 57977d095c1c324ac1cb134863180b34d5743fed2b6d7528adc5ec71a581e320 -SIZE (rubygem/ffi-1.9.3.gem) = 865280 +SHA256 (rubygem/ffi-1.9.8.gem) = e9a01a41814ea6781750177d7d50209b8867c9e250d86c282f368bb4174a005e +SIZE (rubygem/ffi-1.9.8.gem) = 881152 diff --git a/devel/rubygem-ffi/files/patch-lib__ffi__library.rb b/devel/rubygem-ffi/files/patch-lib__ffi__library.rb deleted file mode 100644 index 33a8adfc2952..000000000000 --- a/devel/rubygem-ffi/files/patch-lib__ffi__library.rb +++ /dev/null @@ -1,15 +0,0 @@ ---- ./lib/ffi/library.rb.orig 2014-08-22 21:57:09.968099978 +0000 -+++ ./lib/ffi/library.rb 2014-08-22 21:57:30.351098318 +0000 -@@ -114,9 +114,9 @@ - - rescue Exception => ex - ldscript = false -- if ex.message =~ /(([^ \t()])+\.so([^ \t:()])*):([ \t])*invalid ELF header/ -- if File.read($1) =~ /GROUP *\( *([^ \)]+) *\)/ -- libname = $1 -+ if ex.message =~ /(([^ \t()])+\.so([^ \t:()])*):([ \t])*(invalid ELF header|file too short|invalid file format)/ -+ if File.read($1) =~ /(?:GROUP|INPUT) *\( *([^\)]+)/ -+ libname = $1.split(' ')[0] - ldscript = true - end - end |