8af0a7012d
The build does not always fail, but I can reproduce the build with every second build by using poudriere: poudriere testport -j 120amd64 www/rubygem-selenium-webdriver The error message that is displayed is: strip: moving loadable section .note.gnu.build-id, is this intentional? strip: moving loadable section .hash, is this intentional? strip: moving loadable section .gnu.hash, is this intentional? strip: moving loadable section .dynsym, is this intentional? strip: moving loadable section .dynstr, is this intentional? strip: moving loadable section .gnu.version, is this intentional? strip: moving loadable section .gnu.version_r, is this intentional? strip: moving loadable section .rel.dyn, is this intentional? strip: moving loadable section .rel.plt, is this intentional? strip: moving loadable section .init, is this intentional? strip: moving loadable section .plt, is this intentional? strip: moving loadable section .text, is this intentional? strip: moving loadable section .fini, is this intentional? strip: moving loadable section .rodata, is this intentional? strip: moving loadable section .eh_frame, is this intentional? strip: elf_update() failed: Layout constraint violation *** Error code 1 PR: 220330 Reported by: vvelox at vvelox.net
25 lines
626 B
Makefile
25 lines
626 B
Makefile
# Created by: Steve Wills <swills@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= selenium-webdriver
|
|
PORTVERSION= 3.14.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= www rubygems
|
|
MASTER_SITES= RG
|
|
|
|
MAINTAINER= ruby@FreeBSD.org
|
|
COMMENT= Tool for writing automated tests of websites
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= rubygem-childprocess>=0.5:devel/rubygem-childprocess \
|
|
rubygem-rubyzip>=1.2.2:archivers/rubygem-rubyzip
|
|
|
|
USES= gem
|
|
USE_RUBY= yes
|
|
# do not strip files as this breaks the build of the port
|
|
# for more details: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=220330
|
|
STRIP_CMD= ${TRUE}
|
|
|
|
.include <bsd.port.mk>
|