From owner-svn-ports-all@freebsd.org Wed Sep 5 04:41:38 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 BEE5EFE2C3C; Wed, 5 Sep 2018 04:41:37 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) (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 70BDA706D8; Wed, 5 Sep 2018 04:41:37 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id D1E1E20E69; Wed, 5 Sep 2018 00:41:36 -0400 (EDT) Received: from web3 ([10.202.2.213]) by compute4.internal (MEProxy); Wed, 05 Sep 2018 00:41:36 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=zqHTGA jDQpise1l5QkhI2OD7hGP1cfkmYWXjWvjtKmQ=; b=lIgMX7VJUwG33lfGeBfG2y 5KIXAhU8R8xwhd23aos9gtjXHykJ7BYMgwXeVk7wbYvDMkLKjErG7klB1unTlTnT 0LlxSAqECJbzrE2SzXs86T4K/ZJqZGCRgstB96CEbfX8ulud4uH9JjU41/bhCJtJ H7S4uueD98RYALCLF0YSh+v2aYbxfmhVYSS37WNw5c4V7fptWRSGGaNIMot0rXYU TbpycHJdB3Aka8Yo5sTzfsG9L72va2GPcUKziAQS7XMdXsuUC7sQ+TcjRdbfedjK LJAmAe+KlKjhLfPUvSoVvwPomL5cB83uMuTWp9i9WRKei7hXL4XYZbUofmIhzswg == X-ME-Proxy: X-ME-Sender: Received: by mailuser.nyi.internal (Postfix, from userid 99) id 4F5A39E4A3; Wed, 5 Sep 2018 00:41:36 -0400 (EDT) Message-Id: <1536122496.4095331.1497109224.6DA97E49@webmail.messagingengine.com> From: Tobias Kortkamp To: Steve Wills , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Cc: ndowens@yahoo.com MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="utf-8" X-Mailer: MessagingEngine.com Webmail Interface - ajax-1234af23 In-Reply-To: <201809050423.w854N9EE055951@repo.freebsd.org> Date: Wed, 05 Sep 2018 06:41:36 +0200 References: <201809050423.w854N9EE055951@repo.freebsd.org> Subject: Re: svn commit: r479009 - head/net/ss5 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: Wed, 05 Sep 2018 04:41:38 -0000 On Wed, Sep 5, 2018, at 06:23, Steve Wills wrote: > Author: swills > Date: Wed Sep 5 04:23:09 2018 > New Revision: 479009 > URL: https://svnweb.freebsd.org/changeset/ports/479009 > > Log: > net/ss5: Update to 3.8.9 > > PR: 230556 > Submitted by: Nathan > Approved by: maintainer timeout (raffaele.delorenzo@libero.it, >3 weeks) > > Modified: > head/net/ss5/Makefile (contents, props changed) > head/net/ss5/distinfo (contents, props changed) > head/net/ss5/pkg-plist (contents, props changed) > > Modified: head/net/ss5/Makefile > ============================================================================== > --- head/net/ss5/Makefile Wed Sep 5 03:45:53 2018 (r479008) > +++ head/net/ss5/Makefile Wed Sep 5 04:23:09 2018 (r479009) > @@ -2,17 +2,20 @@ > # $FreeBSD$ > > PORTNAME= ss5 > -PORTVERSION= 3.8.5 > -DISTVERSIONSUFFIX= -1 > -PORTREVISION= 3 > +PORTVERSION= 3.8.9 > +DISTVERSIONSUFFIX= -8 The suffix appears to actually be part of the version. There is a 3.8.9-7, 3.8.9-6, etc. too if you look at: https://sourceforge.net/projects/ss5/files/ss5/ > Modified: head/net/ss5/pkg-plist > ============================================================================== > --- head/net/ss5/pkg-plist Wed Sep 5 03:45:53 2018 (r479008) > +++ head/net/ss5/pkg-plist Wed Sep 5 04:23:09 2018 (r479009) > @@ -1,6 +1,9 @@ > -@sample etc/ss5/ss5.ha.sample > -@sample etc/ss5/ss5.conf.sample > -@sample etc/ss5/ss5.passwd.sample > +%%ETCDIR%%/ss5.conf > +%%ETCDIR%%/ss5.conf.sample > +%%ETCDIR%%/ss5.ha > +%%ETCDIR%%/ss5.ha.sample > +%%ETCDIR%%/ss5.passwd > +%%ETCDIR%%/ss5.passwd.sample This looks wrong and will overwrite existing configuration files when upgrading the port. Why not keep using @sample?