From owner-svn-ports-all@freebsd.org Tue Jun 18 19:16:42 2019 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 8E16815C5F67; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 309A58A675; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@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 02151197FA; Tue, 18 Jun 2019 19:16:42 +0000 (UTC) (envelope-from kai@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x5IJGfOf034329; Tue, 18 Jun 2019 19:16:41 GMT (envelope-from kai@FreeBSD.org) Received: (from kai@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x5IJGfAG034327; Tue, 18 Jun 2019 19:16:41 GMT (envelope-from kai@FreeBSD.org) Message-Id: <201906181916.x5IJGfAG034327@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kai set sender to kai@FreeBSD.org using -f From: Kai Knoblich Date: Tue, 18 Jun 2019 19:16:41 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r504497 - head/net/shmux X-SVN-Group: ports-head X-SVN-Commit-Author: kai X-SVN-Commit-Paths: head/net/shmux X-SVN-Commit-Revision: 504497 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: 309A58A675 X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.95 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-1.000,0]; NEURAL_HAM_SHORT(-0.95)[-0.952,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] 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: Tue, 18 Jun 2019 19:16:42 -0000 Author: kai Date: Tue Jun 18 19:16:41 2019 New Revision: 504497 URL: https://svnweb.freebsd.org/changeset/ports/504497 Log: net/shmux: Update to 1.0.3 While I'm here: * Switch to GitHub and update the WWW field to avoid redirects. * Modernize the option knobs. * Update the license that has changed with the new release. * Add "localbase" to USES to fix a bug that has been there a long time if the PCRE option was enabled. Before that the configure script was able to find libpcre but used bogus paths for the -I and -L compiler flags which produced a binary that was never linked against libpcre. PR: 238618 Submitted by: Thomas Merkel Approved by: portmgr (blanket, unmaintained port) Modified: head/net/shmux/Makefile head/net/shmux/distinfo head/net/shmux/pkg-descr Modified: head/net/shmux/Makefile ============================================================================== --- head/net/shmux/Makefile Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/Makefile Tue Jun 18 19:16:41 2019 (r504497) @@ -2,18 +2,19 @@ # $FreeBSD$ PORTNAME= shmux -DISTVERSION= 1.0.2 -PORTREVISION= 3 +DISTVERSIONPREFIX= v +DISTVERSION= 1.0.3 CATEGORIES= net -MASTER_SITES= http://web.taranis.org/shmux/dist/ MAINTAINER= ports@FreeBSD.org COMMENT= Utility to run commands on multiple hosts using shell commands -LICENSE= BSD4CLAUSE +LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -USES= ncurses tar:tgz +USES= localbase ncurses +USE_GITHUB= yes + GNU_CONFIGURE= yes CONFIGURE_ARGS= --datadir=${PREFIX}/share/examples @@ -23,18 +24,9 @@ OPTIONS_DEFINE= FPING PCRE OPTIONS_DEFAULT= FPING FPING_DESC= Use fping utility -.include - -.if ${PORT_OPTIONS:MFPING} -RUN_DEPENDS+= fping:net/fping -.endif - -.if ${PORT_OPTIONS:MPCRE} -LIB_DEPENDS+= libpcre.so:devel/pcre -CONFIGURE_ARGS+= --with-pcre=${LOCALBASE}/lib -.else -CONFIGURE_ARGS+= --with-pcre=no -.endif +FPING_RUN_DEPENDS= fping:net/fping +PCRE_LIB_DEPENDS= libpcre.so:devel/pcre +PCRE_CONFIGURE_WITH= pcre=${LOCALBASE}/lib post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} Modified: head/net/shmux/distinfo ============================================================================== --- head/net/shmux/distinfo Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/distinfo Tue Jun 18 19:16:41 2019 (r504497) @@ -1,2 +1,3 @@ -SHA256 (shmux-1.0.2.tgz) = 0886aaca4936926d526988d85df403fa1679a60c355f1be8432bb4bc1e36580f -SIZE (shmux-1.0.2.tgz) = 110473 +TIMESTAMP = 1560860410 +SHA256 (shmux-shmux-v1.0.3_GH0.tar.gz) = c9f8863e2550e23e633cf5fc7a9c4c52d287059f424ef78aba6ecd98390fb9ab +SIZE (shmux-shmux-v1.0.3_GH0.tar.gz) = 116613 Modified: head/net/shmux/pkg-descr ============================================================================== --- head/net/shmux/pkg-descr Tue Jun 18 19:00:55 2019 (r504496) +++ head/net/shmux/pkg-descr Tue Jun 18 19:16:41 2019 (r504497) @@ -5,4 +5,4 @@ the children is received by shmux and either (optional user using an easy to read format, or written to files for later processing making it well suited for use in scripts. -WWW: http://web.taranis.org/shmux/ +WWW: https://github.com/shmux/shmux