From owner-svn-ports-all@freebsd.org Thu Jul 26 09:34:16 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 E0ACB10493A2; Thu, 26 Jul 2018 09:34:16 +0000 (UTC) (envelope-from fluffy@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 9615F8725D; Thu, 26 Jul 2018 09:34:16 +0000 (UTC) (envelope-from fluffy@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 78ADB273BC; Thu, 26 Jul 2018 09:34:16 +0000 (UTC) (envelope-from fluffy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w6Q9YGYb002569; Thu, 26 Jul 2018 09:34:16 GMT (envelope-from fluffy@FreeBSD.org) Received: (from fluffy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w6Q9YGxw002568; Thu, 26 Jul 2018 09:34:16 GMT (envelope-from fluffy@FreeBSD.org) Message-Id: <201807260934.w6Q9YGxw002568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: fluffy set sender to fluffy@FreeBSD.org using -f From: Dima Panov Date: Thu, 26 Jul 2018 09:34:16 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r475357 - branches/2018Q3/net-p2p/verlihub-plugins-luascript X-SVN-Group: ports-branches X-SVN-Commit-Author: fluffy X-SVN-Commit-Paths: branches/2018Q3/net-p2p/verlihub-plugins-luascript X-SVN-Commit-Revision: 475357 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 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: Thu, 26 Jul 2018 09:34:17 -0000 Author: fluffy Date: Thu Jul 26 09:34:16 2018 New Revision: 475357 URL: https://svnweb.freebsd.org/changeset/ports/475357 Log: MFH: r475345 - Use corresponded luasocket while SOCKET option enabled No PORTREVISION bump 'cause option was always broken due to lua52 is default PR: 229685 Submitted by: fluffy Approved by: maintainer timeout (2 weeks) Approved by: portmgr (miwi) Modified: branches/2018Q3/net-p2p/verlihub-plugins-luascript/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/net-p2p/verlihub-plugins-luascript/Makefile ============================================================================== --- branches/2018Q3/net-p2p/verlihub-plugins-luascript/Makefile Thu Jul 26 09:31:36 2018 (r475356) +++ branches/2018Q3/net-p2p/verlihub-plugins-luascript/Makefile Thu Jul 26 09:34:16 2018 (r475357) @@ -31,8 +31,8 @@ SOCKET_DESC= Build with LuaSocket support .include .if ${PORT_OPTIONS:MSOCKET} -BUILD_DEPENDS+= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket -RUN_DEPENDS+= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket +BUILD_DEPENDS+= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket-51 +RUN_DEPENDS+= ${LUA_MODLIBDIR}/socket/core.so:net/luasocket-51 CONFIGURE_ARGS+= --with-luasocket .endif