diff options
author | rillig <rillig@pkgsrc.org> | 2018-01-14 17:33:57 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2018-01-14 17:33:57 +0000 |
commit | 904a25fda7d7546bedd711a7d1e0dd68c30d76d4 (patch) | |
tree | 49e293d5d611e1696ab2df5f03263604786e9039 /games/pysolfc | |
parent | a622980cbc27a30010661e906c36033f2028f6d1 (diff) | |
download | pkgsrc-904a25fda7d7546bedd711a7d1e0dd68c30d76d4.tar.gz |
games/*: fix alignment of variable values
pkglint -Wall -r --autofix --only aligned
After running the above command, three packages had to be adjusted
manually:
In maelstrom-x11, pkglint didn't see that a commented variable
assignment should have been re-aligned as well.
In netmaze, there was a single line that didn't align well with all the
others, but pkglint decided to adjust the whole paragraph to this single
line. The result would have been ok, but not good.
In tscp, there was a paragraph where some of the lines were indented
one space more than the others. This rule is useful when one variable
name is very long compared to the others, but not in this case.
Diffstat (limited to 'games/pysolfc')
-rw-r--r-- | games/pysolfc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/pysolfc/Makefile b/games/pysolfc/Makefile index 8e243fea817..1e89b7941be 100644 --- a/games/pysolfc/Makefile +++ b/games/pysolfc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2017/01/01 14:43:41 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2018/01/14 17:34:01 rillig Exp $ DISTNAME= PySolFC-2.0 PKGNAME= ${DISTNAME:tl} @@ -12,7 +12,7 @@ HOMEPAGE= http://pysolfc.sourceforge.net/ COMMENT= Over 1000 solitaire games LICENSE= gnu-gpl-v3 -PYDISTUTILSPKG= yes +PYDISTUTILSPKG= yes PYTHON_VERSIONS_INCOMPATIBLE= 34 35 36 # py-imaging REPLACE_PYTHON+= \ |