Skip to content

Commit

Permalink
dev-lang/lua: keyword 5.1.5-r106 for ~riscv
Browse files Browse the repository at this point in the history
Certain string.format operations produce clearly wrong results, for
instance "string.format("%d", 2^63)" gives -9223372036854775808 on
amd64 yet 9223372036854775807 on riscv; This is the same as with 5.2 but
unlike the latter, it doesn't trigger a test failure here due to
much smaller test coverage of 5.1. However:
 - an upstream mailing-list discussion from 2011 [1] suggests
   string.format("%d") is known to be borked in Lua 5.1 for very large
   integers;
 - this is unlikely to have an effect on arithmetics because Lua numbers
   are floating-point (string formatting this is one of the few places
   in the interpreter where they get internally converted to integers)

Not to mention that this doesn't work correctly on several other arches
for which lua:5.1 has already not only been keyworded but actually
stabilised.

[1] http://lua-users.org/lists/lua-l/2011-07/msg00876.html

Signed-off-by: Marek Szuba <[email protected]>
  • Loading branch information
Marek Szuba committed Jul 9, 2021
1 parent ba971cf commit 082ff82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev-lang/lua/lua-5.1.5-r106.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ SRC_URI="https://www.lua.org/ftp/${P}.tar.gz"

LICENSE="MIT"
SLOT="5.1"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 -riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
IUSE="+deprecated readline"

COMMON_DEPEND="
Expand Down

0 comments on commit 082ff82

Please sign in to comment.