Date: Fri, 17 Mar 2017 14:06:34 +0000 (UTC) From: Nikolai Lifanov <lifanov@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r436340 - head/databases/phpliteadmin Message-ID: <201703171406.v2HE6ZKp062774@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201703171406.v2HE6ZKp062774>