diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-05-27 18:49:00 +0800 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-05-27 18:49:00 +0800 |
commit | 9657c0c5d773ae8b0ed3cbaed6ee96df0f1e1ddf (patch) | |
tree | 586000e9f4a21b5638808e21edd532afd2d77d98 /ports-mgmt | |
parent | 4fcb6520abe8926b9c649e1ac58ef65be8e20633 (diff) | |
download | freebsd-ports-gnome-9657c0c5d773ae8b0ed3cbaed6ee96df0f1e1ddf.tar.gz freebsd-ports-gnome-9657c0c5d773ae8b0ed3cbaed6ee96df0f1e1ddf.tar.zst freebsd-ports-gnome-9657c0c5d773ae8b0ed3cbaed6ee96df0f1e1ddf.zip |
ports-mgmt/portfmt: Update to newest commit
Add preview of portclippy, a linter to check if variables are in
the correct order.
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portfmt/Makefile | 9 | ||||
-rw-r--r-- | ports-mgmt/portfmt/distinfo | 6 | ||||
-rw-r--r-- | ports-mgmt/portfmt/pkg-descr | 12 |
3 files changed, 18 insertions, 9 deletions
diff --git a/ports-mgmt/portfmt/Makefile b/ports-mgmt/portfmt/Makefile index 1bebecbfee25..e31e2e9709ae 100644 --- a/ports-mgmt/portfmt/Makefile +++ b/ports-mgmt/portfmt/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= portfmt -PORTVERSION= g20190506 +PORTVERSION= g20190527 CATEGORIES= ports-mgmt MAINTAINER= tobik@FreeBSD.org @@ -10,9 +10,11 @@ COMMENT= Format FreeBSD Ports Makefiles LICENSE= BSD2CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE +RUN_DEPENDS= colordiff:textproc/colordiff + USE_GITHUB= yes GH_ACCOUNT= t6 -GH_TAGNAME= 9927af0960c1fbff4eb105df042b1a9eb45086a4 +GH_TAGNAME= c8ac080432d2bcbca21a0e3019ad7a068ed698f HAS_CONFIGURE= yes CONFIGURE_ARGS= LDFLAGS="${LDFLAGS}" \ @@ -21,7 +23,8 @@ MAKE_ARGS= INSTALL_MAN="${INSTALL_MAN}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" TEST_TARGET= test -PLIST_FILES= bin/portedit \ +PLIST_FILES= bin/portclippy \ + bin/portedit \ bin/portfmt \ man/man1/portfmt.1.gz diff --git a/ports-mgmt/portfmt/distinfo b/ports-mgmt/portfmt/distinfo index f3cb9180ebce..de2649ce49e6 100644 --- a/ports-mgmt/portfmt/distinfo +++ b/ports-mgmt/portfmt/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1557121061 -SHA256 (t6-portfmt-g20190506-9927af0960c1fbff4eb105df042b1a9eb45086a4_GH0.tar.gz) = e2fae90df12f895fd3cd413c8d6da4982ada47d84442e57c23f2090e53945bd0 -SIZE (t6-portfmt-g20190506-9927af0960c1fbff4eb105df042b1a9eb45086a4_GH0.tar.gz) = 48417 +TIMESTAMP = 1558953595 +SHA256 (t6-portfmt-g20190527-c8ac080432d2bcbca21a0e3019ad7a068ed698f_GH0.tar.gz) = 149efe870441116519aa2f7999b48739c9ed56517c0b734ecf35e91908d9bd31 +SIZE (t6-portfmt-g20190527-c8ac080432d2bcbca21a0e3019ad7a068ed698f_GH0.tar.gz) = 59006 diff --git a/ports-mgmt/portfmt/pkg-descr b/ports-mgmt/portfmt/pkg-descr index 8c5a0fe2ff73..6696c8cef332 100644 --- a/ports-mgmt/portfmt/pkg-descr +++ b/ports-mgmt/portfmt/pkg-descr @@ -1,6 +1,12 @@ -Portfmt is a tool for formatting FreeBSD Ports Collection Makefiles. +Portfmt is a collection of tools for editing, formatting, and linting +FreeBSD Ports Collection Makefiles. -For the time being portfmt concentrates on formatting individual -variables as such it does not move variables to preferred positions. +It comes with several tools: + +- portfmt formats Makefiles +- portclippy is a linter that checks if variables are in the correct + order in a more comprehensive way than portlint +- portedit edits Makefiles. At the moment it only comes with a + bump-revision command WWW: https://github.com/t6/portfmt |