svn commit: r485516 - head/security/openssl111

Mathieu Arnold mat at FreeBSD.org
Wed Nov 21 13:51:01 UTC 2018


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/


More information about the svn-ports-all mailing list