From owner-svn-ports-all@freebsd.org Fri Mar 17 14:06:36 2017 Return-Path: Delivered-To: svn-ports-all@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 306D9D10AFC; Fri, 17 Mar 2017 14:06:36 +0000 (UTC) (envelope-from lifanov@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 EA56513D0; Fri, 17 Mar 2017 14:06:35 +0000 (UTC) (envelope-from lifanov@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v2HE6ZrL062775; Fri, 17 Mar 2017 14:06:35 GMT (envelope-from lifanov@FreeBSD.org) Received: (from lifanov@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v2HE6ZKp062774; Fri, 17 Mar 2017 14:06:35 GMT (envelope-from lifanov@FreeBSD.org) Message-Id: <201703171406.v2HE6ZKp062774@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: lifanov set sender to lifanov@FreeBSD.org using -f From: Nikolai Lifanov Date: Fri, 17 Mar 2017 14:06:34 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436340 - head/databases/phpliteadmin X-SVN-Group: ports-head 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.23 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: Fri, 17 Mar 2017 14:06:36 -0000 Author: lifanov Date: Fri Mar 17 14:06:34 2017 New Revision: 436340 URL: https://svnweb.freebsd.org/changeset/ports/436340 Log: use DISTVERSION correctly The DISTVERSION should be set to the version componet directly instead of substituting dots for dashes when deriving DISTNAME. Reported by: mat Differential Revision: https://reviews.freebsd.org/D10002 Modified: head/databases/phpliteadmin/Makefile Modified: head/databases/phpliteadmin/Makefile ============================================================================== --- head/databases/phpliteadmin/Makefile Fri Mar 17 14:03:43 2017 (r436339) +++ head/databases/phpliteadmin/Makefile Fri Mar 17 14:06:34 2017 (r436340) @@ -2,10 +2,10 @@ # $FreeBSD$ PORTNAME= phpLiteAdmin -DISTVERSION= 1.9.7.1 +DISTVERSION= 1-9-7-1 CATEGORIES= databases www MASTER_SITES= https://bitbucket.org/phpliteadmin/public/downloads/ -DISTNAME= ${PORTNAME}_v${DISTVERSION:S/./-/g} +DISTNAME= ${PORTNAME}_v${DISTVERSION} MAINTAINER= olevole@olevole.ru COMMENT= Web-based database management tool for Sqlite