From owner-svn-ports-all@freebsd.org Sun Nov 4 10:36:20 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D1B7310FC534; Sun, 4 Nov 2018 10:36:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 5523384F1B; Sun, 4 Nov 2018 10:36:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3644027368; Sun, 4 Nov 2018 10:36:20 +0000 (UTC) (envelope-from jbeich@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id wA4AaK6T024160; Sun, 4 Nov 2018 10:36:20 GMT (envelope-from jbeich@FreeBSD.org) Received: (from jbeich@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id wA4AaJtC024157; Sun, 4 Nov 2018 10:36:19 GMT (envelope-from jbeich@FreeBSD.org) Message-Id: <201811041036.wA4AaJtC024157@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jbeich set sender to jbeich@FreeBSD.org using -f From: Jan Beich Date: Sun, 4 Nov 2018 10:36:19 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r483990 - in head/devel: efl libepoll-shim X-SVN-Group: ports-head X-SVN-Commit-Author: jbeich X-SVN-Commit-Paths: in head/devel: efl libepoll-shim X-SVN-Commit-Revision: 483990 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 5523384F1B X-Spamd-Result: default: False [0.32 / 200.00]; ARC_NA(0.00)[]; FROM_HAS_DN(0.00)[]; RCPT_COUNT_THREE(0.00)[3]; TO_MATCH_ENVRCPT_ALL(0.00)[]; NEURAL_SPAM_SHORT(0.43)[0.428,0]; MIME_GOOD(-0.10)[text/plain]; TO_DN_NONE(0.00)[]; HAS_XAW(0.00)[]; R_SPF_SOFTFAIL(0.00)[~all]; DMARC_NA(0.00)[FreeBSD.org]; RCVD_COUNT_THREE(0.00)[4]; MX_GOOD(-0.01)[cached: mx1.FreeBSD.org]; FROM_EQ_ENVFROM(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_TLS_LAST(0.00)[] X-Rspamd-Server: mx1.freebsd.org X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Nov 2018 10:36:21 -0000 Author: jbeich Date: Sun Nov 4 10:36:19 2018 New Revision: 483990 URL: https://svnweb.freebsd.org/changeset/ports/483990 Log: devel/libepoll-shim: fix underlinking configure:6453: cc -O2 -pipe -I/usr/local/include/libepoll-shim -DLIBICONV_PLUG -fstack-protector -fno-strict-aliasing -I/usr/local/include -DLIBICONV_PLUG -L/usr/local/lib -lepoll-shim -fstack-protector conftest.c >&5 /usr/local/lib/libepoll-shim.so: undefined reference to `timer_settime' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_delete' /usr/local/lib/libepoll-shim.so: undefined reference to `pthread_getthreadid_np' /usr/local/lib/libepoll-shim.so: undefined reference to `pthread_create' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_create' /usr/local/lib/libepoll-shim.so: undefined reference to `timer_getoverrun' cc: error: linker command failed with exit code 1 (use -v to see invocation) Obtained from: upstream Approved by: portmgr blanket Modified: head/devel/efl/Makefile (contents, props changed) head/devel/libepoll-shim/Makefile (contents, props changed) head/devel/libepoll-shim/distinfo (contents, props changed) Modified: head/devel/efl/Makefile ============================================================================== --- head/devel/efl/Makefile Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/efl/Makefile Sun Nov 4 10:36:19 2018 (r483990) @@ -85,7 +85,7 @@ PHYSICS_CONFIGURE_ENABLE= physics PULSEAUDIO_LIB_DEPENDS= libpulse.so:audio/pulseaudio PULSEAUDIO_CONFIGURE_ENABLE= pulseaudio -WAYLAND_BROKEN= WAYLAND option is broken: https://phab.enlightenment.org/T7116 +WAYLAND_BROKEN= ERROR: epoll_create() is deprecated, use epoll_create1(EPOLL_CLOEXEC). WAYLAND_BUILD_DEPENDS= wayland-protocols>=1.7:graphics/wayland-protocols WAYLAND_LIB_DEPENDS= libepoll-shim.so:devel/libepoll-shim \ libxkbcommon.so:x11/libxkbcommon \ Modified: head/devel/libepoll-shim/Makefile ============================================================================== --- head/devel/libepoll-shim/Makefile Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/libepoll-shim/Makefile Sun Nov 4 10:36:19 2018 (r483990) @@ -3,8 +3,12 @@ PORTNAME= libepoll-shim PORTVERSION= 0.0.20161220 +PORTREVISION= 1 CATEGORIES= devel +PATCH_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/commit/ +PATCHFILES= dbd89815cc3a.patch:-p1 dc10c10f11d6.patch:-p1 + MAINTAINER= x11@FreeBSD.org COMMENT= epoll shim implemented using kevent @@ -26,7 +30,7 @@ MAKE_ARGS= INCSDIR=${PREFIX}/include/libepoll-shim/sys post-patch: .if "${CHOSEN_COMPILER_TYPE}" == "gcc" @${REINPLACE_CMD} -e 's|Wno-missing-variable-declarations|Wno-missing-declarations|' \ - -e 's|-Wno-thread-safety-analysis||' -e 's|Weverything|Wall|' ${WRKSRC}/Makefile + -e 's|-Wno-thread-safety-analysis||' ${WRKSRC}/Makefile .endif pre-install: Modified: head/devel/libepoll-shim/distinfo ============================================================================== --- head/devel/libepoll-shim/distinfo Sun Nov 4 10:35:52 2018 (r483989) +++ head/devel/libepoll-shim/distinfo Sun Nov 4 10:36:19 2018 (r483990) @@ -1,3 +1,7 @@ TIMESTAMP = 1482268996 SHA256 (FreeBSDDesktop-epoll-shim-0.0.20161220-c04b26b_GH0.tar.gz) = ae644d6b21567e9bb5e3a145e6e8ce233de16dc6c93ca4a1facb24f1375f442a SIZE (FreeBSDDesktop-epoll-shim-0.0.20161220-c04b26b_GH0.tar.gz) = 7634 +SHA256 (dbd89815cc3a.patch) = acd75a9305d5465e8f7a6a5cc7cfa4fe41dac90a69120639ed1e25dd071fc0c3 +SIZE (dbd89815cc3a.patch) = 958 +SHA256 (dc10c10f11d6.patch) = 65e4c048236aafb1c1807a82cb85aa1ced225af5f13a31c54d1154888a75e0f5 +SIZE (dc10c10f11d6.patch) = 870