Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 3 Jul 2019 20:41:51 +0000 (UTC)
From:      Matthias Fechner <mfechner@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r505792 - head/www/rubygem-selenium-webdriver
Message-ID:  <201907032041.x63Kfppa004309@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mfechner
Date: Wed Jul  3 20:41:51 2019
New Revision: 505792
URL: https://svnweb.freebsd.org/changeset/ports/505792

Log:
  Do not strip the libs as this breaks the build of this package.
  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

Modified:
  head/www/rubygem-selenium-webdriver/Makefile

Modified: head/www/rubygem-selenium-webdriver/Makefile
==============================================================================
--- head/www/rubygem-selenium-webdriver/Makefile	Wed Jul  3 20:41:09 2019	(r505791)
+++ head/www/rubygem-selenium-webdriver/Makefile	Wed Jul  3 20:41:51 2019	(r505792)
@@ -3,6 +3,7 @@
 
 PORTNAME=	selenium-webdriver
 PORTVERSION=	3.14.1
+PORTREVISION=	1
 CATEGORIES=	www rubygems
 MASTER_SITES=	RG
 
@@ -17,5 +18,8 @@ RUN_DEPENDS=	rubygem-childprocess>=0.5:devel/rubygem-c
 
 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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201907032041.x63Kfppa004309>