From owner-svn-ports-head@freebsd.org Tue Jul 18 10:16:00 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9A274CFE03F; Tue, 18 Jul 2017 10:16:00 +0000 (UTC) (envelope-from vd@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 mx1.freebsd.org (Postfix) with ESMTPS id 66CD568BC0; Tue, 18 Jul 2017 10:16:00 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v6IAFx97078127; Tue, 18 Jul 2017 10:15:59 GMT (envelope-from vd@FreeBSD.org) Received: (from vd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v6IAFx8Q078125; Tue, 18 Jul 2017 10:15:59 GMT (envelope-from vd@FreeBSD.org) Message-Id: <201707181015.v6IAFx8Q078125@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: vd set sender to vd@FreeBSD.org using -f From: Vasil Dimov Date: Tue, 18 Jul 2017 10:15:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r446133 - in head/databases: mysqlwsrep56-server mysqlwsrep57-server X-SVN-Group: ports-head X-SVN-Commit-Author: vd X-SVN-Commit-Paths: in head/databases: mysqlwsrep56-server mysqlwsrep57-server X-SVN-Commit-Revision: 446133 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 18 Jul 2017 10:16:00 -0000 Author: vd Date: Tue Jul 18 10:15:59 2017 New Revision: 446133 URL: https://svnweb.freebsd.org/changeset/ports/446133 Log: databases/mysqlwsrep5[67]-server: Hook a runtime dependency on bash The installed scripts in PREFIX/bin/wsrep_sst_* are bash scripts. Modified: head/databases/mysqlwsrep56-server/Makefile head/databases/mysqlwsrep57-server/Makefile Modified: head/databases/mysqlwsrep56-server/Makefile ============================================================================== --- head/databases/mysqlwsrep56-server/Makefile Tue Jul 18 10:13:56 2017 (r446132) +++ head/databases/mysqlwsrep56-server/Makefile Tue Jul 18 10:15:59 2017 (r446133) @@ -4,7 +4,7 @@ PORTNAME= mysqlwsrep PORTVERSION?= 5.6.36 DISTVERSIONSUFFIX?= -25.20 -PORTREVISION?= 1 +PORTREVISION?= 2 CATEGORIES= databases ipv6 PKGNAMESUFFIX= 56-server @@ -13,7 +13,11 @@ COMMENT= MySQL database enhanced with Galera replicati LICENSE= GPLv2 -RUN_DEPENDS= socat:net/socat lsof:sysutils/lsof netcat:net/netcat rsync:net/rsync +RUN_DEPENDS= bash:shells/bash \ + lsof:sysutils/lsof \ + netcat:net/netcat \ + rsync:net/rsync \ + socat:net/socat LIB_DEPENDS= libevent.so:devel/libevent liblz4.so:archivers/liblz4 BROKEN_powerpc64= Does not build Modified: head/databases/mysqlwsrep57-server/Makefile ============================================================================== --- head/databases/mysqlwsrep57-server/Makefile Tue Jul 18 10:13:56 2017 (r446132) +++ head/databases/mysqlwsrep57-server/Makefile Tue Jul 18 10:15:59 2017 (r446133) @@ -4,17 +4,22 @@ PORTNAME= mysqlwsrep PORTVERSION?= 5.7.18 DISTVERSIONSUFFIX?= -25.12 +PORTREVISION?= 1 CATEGORIES= databases ipv6 MASTER_SITES+= SF/boost/boost/1.59.0:boost -DISTFILES+= boost_1_59_0${EXTRACT_SUFX}:boost PKGNAMESUFFIX= 57-server +DISTFILES+= boost_1_59_0${EXTRACT_SUFX}:boost MAINTAINER= devel@galeracluster.com COMMENT= MySQL database enhanced with Galera replication (server package) LICENSE= GPLv2 -RUN_DEPENDS= socat:net/socat lsof:sysutils/lsof netcat:net/netcat rsync:net/rsync +RUN_DEPENDS= bash:shells/bash \ + lsof:sysutils/lsof \ + netcat:net/netcat \ + rsync:net/rsync \ + socat:net/socat LIB_DEPENDS= libevent.so:devel/libevent liblz4.so:archivers/liblz4 USES= bison \