* Ports that were pinned to a deprecated version of Go (1.23 or older) have been unpinned. * Ports that were pinned to a still-supported version of Go (1.24 or newer) have been converted to requesting that as their minimum Go version. * Ports that had been forcibly deprecated for pinning an expired Go version have been undeprecated.
26 lines
541 B
Makefile
26 lines
541 B
Makefile
PORTNAME= vacuum
|
|
DISTVERSIONPREFIX= v
|
|
DISTVERSION= 0.17.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
PKGNAMESUFFIX= -lint-tool
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= OpenAPI/Swagger linter and quality analysis tool
|
|
WWW= https://quobix.com/vacuum/ \
|
|
https://github.com/daveshanley/vacuum
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
USES= go:modules
|
|
|
|
GO_MODULE= github.com/daveshanley/vacuum
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-test:
|
|
${STAGEDIR}${PREFIX}/bin/${PORTNAME} lint ${WRKSRC}/model/test_files/petstorev3.json
|
|
|
|
.include <bsd.port.mk>
|