diff options
author | Hans de Graaff <graaff@gentoo.org> | 2020-06-26 11:29:23 +0200 |
---|---|---|
committer | Hans de Graaff <graaff@gentoo.org> | 2020-06-26 11:29:31 +0200 |
commit | 39332659b3b8bf082b527dc67d32a1faf1753bb9 (patch) | |
tree | c9cc285b5cecacfc08e8039395bbd2bf2a1883e6 /dev-ruby/rubyzip/rubyzip-1.3.0.ebuild | |
parent | texlive-common.eclass: fix iteration options (diff) | |
download | gentoo-39332659b3b8bf082b527dc67d32a1faf1753bb9.tar.gz gentoo-39332659b3b8bf082b527dc67d32a1faf1753bb9.tar.bz2 gentoo-39332659b3b8bf082b527dc67d32a1faf1753bb9.zip |
dev-ruby/rubyzip: fix test on big-endian systems
Use the proper endian representation on all arches.
Closes: https://bugs.gentoo.org/729632
Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Hans de Graaff <graaff@gentoo.org>
Diffstat (limited to 'dev-ruby/rubyzip/rubyzip-1.3.0.ebuild')
-rw-r--r-- | dev-ruby/rubyzip/rubyzip-1.3.0.ebuild | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild b/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild index cc2a60650cc9..5193e0b87464 100644 --- a/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild +++ b/dev-ruby/rubyzip/rubyzip-1.3.0.ebuild @@ -46,4 +46,7 @@ all_ruby_prepare() { # Add missing requires sed -i -e '1irequire "forwardable"; require "pathname"' test/input_stream_test.rb || die + + # Fix broken test that uses native endian + sed -i -e '/pack/ s/LLS/VVv/' test/file_extract_test.rb || die } |