1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-06 06:30:19 +00:00

Add port-index-uniquifier, which is a dummy port taking its version number

from ${OSVERSION}.  This should work around a bug in portsnap whereby the
"Fetching N metadata files" step will fail if the identical INDEX files
are generated for different major FreeBSD versions.
This commit is contained in:
Colin Percival 2016-10-10 23:37:42 +00:00
parent 2de3d3ccae
commit 2f25c41ccf
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=423733
3 changed files with 21 additions and 0 deletions

View File

@ -39,6 +39,7 @@
SUBDIR += pkgcompare
SUBDIR += pkgs_which
SUBDIR += port-authoring-tools
SUBDIR += port-index-uniquifier
SUBDIR += port-maintenance-tools
SUBDIR += portal
SUBDIR += portconf

View File

@ -0,0 +1,17 @@
# $FreeBSD$
PORTNAME= port-index-uniquifier
PORTVERSION= ${OSVERSION}
CATEGORIES= ports-mgmt
MASTER_SITES= # none
DISTFILES= # none
EXTRACT_ONLY= # none
MAINTAINER= cperciva@FreeBSD.org
COMMENT= Dummy port to ensure major versions have different INDEX files
NO_WRKSUBDIR= yes
NO_BUILD= yes
NO_INSTALL= yes
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
This is a dummy port which takes its version number from ${OSVERSION}, in
order to work around a bug in portsnap triggered by having identical INDEX
files on different major versions.