svn commit: r500365 - head/sysutils/etc_os-release

Tobias C. Berner tcberner at FreeBSD.org
Sun Apr 28 19:44:51 UTC 2019


Author: tcberner
Date: Sun Apr 28 19:44:50 2019
New Revision: 500365
URL: https://svnweb.freebsd.org/changeset/ports/500365

Log:
  sysutils/etc_os-release: fix mixup between VERSION_ID and ID

Modified:
  head/sysutils/etc_os-release/Makefile

Modified: head/sysutils/etc_os-release/Makefile
==============================================================================
--- head/sysutils/etc_os-release/Makefile	Sun Apr 28 19:24:17 2019	(r500364)
+++ head/sysutils/etc_os-release/Makefile	Sun Apr 28 19:44:50 2019	(r500365)
@@ -2,6 +2,7 @@
 
 PORTNAME=	etc_os-release
 PORTVERSION=	0.1
+PORTREVISION=	1
 CATEGORIES=	sysutils kde gnome
 MASTER_SITES=	#
 DISTFILES=	#
@@ -19,8 +20,8 @@ VERSION_ID=	${VERSION:C/^([0-9\.]+).*/\1/}
 
 CONTENTS=	'NAME=FreeBSD\0'$\
 		'VERSION=${VERSION}\0'$\
-		'ID=${VERSION_ID}\0'$\
-		'VERSION_ID=freebsd\0'$\
+		'VERSION_ID=${VERSION_ID}\0'$\
+		'ID=freebsd\0'$\
 		'ANSI_COLIR="0;31"\0'$\
 		'PRETTY_NAME="FreeBSD ${VERSION}"\0'$\
 		'CPE_NAME=cpe:/o:freebsd:freebsd:${VERSION_ID}\0'$\


More information about the svn-ports-all mailing list