Date: Wed, 21 Nov 2018 13:50:59 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r485516 - head/security/openssl111 Message-ID: <201811211350.wALDoxSW047271@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Wed Nov 21 13:50:58 2018 New Revision: 485516 URL: https://svnweb.freebsd.org/changeset/ports/485516 Log: Fix version. DISTVERSION will make a PKGVERSION of 1.1.1.a, which goes backwards: $ pkg version -t openssl111-1.1.1 openssl111-1.1.1.a > Now, it goes forward: $ pkg version -t openssl111-1.1.1 openssl111-1.1.1a < Pointy hat: brnrd Modified: head/security/openssl111/Makefile (contents, props changed) Modified: head/security/openssl111/Makefile ============================================================================== --- head/security/openssl111/Makefile Wed Nov 21 13:50:55 2018 (r485515) +++ head/security/openssl111/Makefile Wed Nov 21 13:50:58 2018 (r485516) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= openssl -DISTVERSION= 1.1.1a +PORTVERSION= 1.1.1a CATEGORIES= security devel MASTER_SITES= https://www.openssl.org/source/ \ ftp://ftp.cert.dfn.de/pub/tools/net/openssl/source/
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811211350.wALDoxSW047271>