forked from Lainports/freebsd-ports
Mostly just typos and assigning PORTREVISION multiple times. This commit doesn't fix up PORTREVISION between master-slave ports where the master port often overwrites PORTREVISION from the slaves which means the slaves don't actually get bumped. These probably just need PORTREVISION?= but care must be taken to not decrease the package versions of all the master-slave packages and to actually bump PORTREVISION as intended. For the record the currently visible broken master ports are: databases/libgda5 emulators/virtualbox-ose emulators/virtualbox-ose-legacy graphics/atril multimedia/mlt7 textproc/uim But all master ports should be looked at here and get an explicit PORTREVISION?= where it's currently missing to prevent this. Reported by: portscan
25 lines
474 B
Makefile
25 lines
474 B
Makefile
PORTNAME= docker-machine
|
|
PORTVERSION= 0.16.2
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Tool to create Docker hosts
|
|
|
|
LICENSE= APACHE20
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
PLIST_FILES= bin/docker-machine
|
|
|
|
USE_GITHUB= yes
|
|
|
|
USES= go
|
|
|
|
GH_ACCOUNT= docker
|
|
GH_PROJECT= machine
|
|
|
|
GO_PKGNAME= github.com/${GH_ACCOUNT}/${GH_PROJECT}
|
|
GO_TARGET= github.com/${GH_ACCOUNT}/${GH_PROJECT}/cmd/${PORTNAME}
|
|
|
|
.include <bsd.port.mk>
|