pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/news news: align variable assignments



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5e4a64f69190
branches:  trunk
changeset: 417138:5e4a64f69190
user:      rillig <rillig%pkgsrc.org@localhost>
date:      Mon Nov 04 19:17:10 2019 +0000

description:
news: align variable assignments

pkglint -Wall -F --only aligned --only indent -r

No manual corrections.

diffstat:

 news/flnews/options.mk |  10 +++++-----
 news/hellanzb/Makefile |   4 ++--
 news/inn/Makefile      |   6 +++---
 news/inn/options.mk    |   4 ++--
 news/lottanzb/Makefile |   4 ++--
 news/nn/Makefile       |   8 ++++----
 news/nntpclnt/Makefile |  16 ++++++++--------
 news/suck/options.mk   |   4 ++--
 news/tin/Makefile      |   6 +++---
 news/trn/options.mk    |   6 +++---
 news/xrn/Makefile      |   4 ++--
 11 files changed, 36 insertions(+), 36 deletions(-)

diffs (237 lines):

diff -r a64c6a9872a7 -r 5e4a64f69190 news/flnews/options.mk
--- a/news/flnews/options.mk    Mon Nov 04 19:05:18 2019 +0000
+++ b/news/flnews/options.mk    Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.2 2019/01/21 12:03:41 wiz Exp $
+# $NetBSD: options.mk,v 1.3 2019/11/04 19:17:10 rillig Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.flnews
 PKG_SUPPORTED_OPTIONS= inet6 nls xdbe xdg-utils
@@ -21,12 +21,12 @@
 # nls: Optional support for National Language Support (NLS)
 # Requires an OS with X/Open XSI extension API (SUSv2) and the gencat utility
 # Note: Only locales with UTF-8, ISO-8859-1 or US-ASCII codeset are supported!
-PLIST_VARS+=   nls
+PLIST_VARS+=           nls
 .if !empty(PKG_OPTIONS:Mnls)
-PLIST.nls=     yes
-FLNEWS_OPT_DISABLE_NLS=                0
+PLIST.nls=             yes
+FLNEWS_OPT_DISABLE_NLS=        0
 .else
-FLNEWS_OPT_DISABLE_NLS=                1
+FLNEWS_OPT_DISABLE_NLS=        1
 .endif
 
 # xdbe: Optional support for X11 Double Buffer Extension (XDBE)
diff -r a64c6a9872a7 -r 5e4a64f69190 news/hellanzb/Makefile
--- a/news/hellanzb/Makefile    Mon Nov 04 19:05:18 2019 +0000
+++ b/news/hellanzb/Makefile    Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2019/09/02 13:20:10 adam Exp $
+# $NetBSD: Makefile,v 1.21 2019/11/04 19:17:10 rillig Exp $
 #
 .include "../../news/hellanzb/Makefile.version"
 
@@ -18,7 +18,7 @@
 DEPENDS+=      par2>=0.4:../../archivers/par2
 DEPENDS+=      unrar>=3.5.4:../../archivers/unrar
 
-PYTHON_VERSIONS_ACCEPTED=       27 # as of 0.14
+PYTHON_VERSIONS_ACCEPTED=      27 # as of 0.14
 
 USE_LANGUAGES= #none
 
diff -r a64c6a9872a7 -r 5e4a64f69190 news/inn/Makefile
--- a/news/inn/Makefile Mon Nov 04 19:05:18 2019 +0000
+++ b/news/inn/Makefile Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.128 2019/08/11 13:22:33 wiz Exp $
+# $NetBSD: Makefile,v 1.129 2019/11/04 19:17:10 rillig Exp $
 
 DISTNAME=              inn-2.6.1
 PKGREVISION=           3
@@ -58,7 +58,7 @@
 CONFIGURE_ENV+=                GZIP=${TOOLS_GZIP_CMD}
 USE_TOOLS+=            awk egrep gzip perl:run sed sh sort yacc
 
-LDFLAGS.SunOS+= -lsocket -lnsl
+LDFLAGS.SunOS+=        -lsocket -lnsl
 
 DEPENDS+=              p5-MIME-tools-[0-9]*:../../mail/p5-MIME-tools
 DEPENDS+=              p5-GD-[0-9]*:../../graphics/p5-GD
@@ -166,7 +166,7 @@
 
 .include "options.mk"
 
-TEST_TARGET=    tests
+TEST_TARGET=   tests
 
 pre-install:
 .for file in ${CFILES} active.minimal newsgroups.minimal
diff -r a64c6a9872a7 -r 5e4a64f69190 news/inn/options.mk
--- a/news/inn/options.mk       Mon Nov 04 19:05:18 2019 +0000
+++ b/news/inn/options.mk       Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.6 2010/04/13 21:18:00 spz Exp $
+# $NetBSD: options.mk,v 1.7 2019/11/04 19:17:10 rillig Exp $
 
 PKG_OPTIONS_VAR=       PKG_OPTIONS.inn
 PKG_SUPPORTED_OPTIONS= inet6 perl python uucp
@@ -18,7 +18,7 @@
 ###
 .if !empty(PKG_OPTIONS:Muucp)
 CONFIGURE_ARGS+=       --enable-uucp-rnews
-PKG_GROUPS+= uucp
+PKG_GROUPS+=           uucp
 .else
 CONFIGURE_ARGS+=       --disable-uucp-rnews
 .endif
diff -r a64c6a9872a7 -r 5e4a64f69190 news/lottanzb/Makefile
--- a/news/lottanzb/Makefile    Mon Nov 04 19:05:18 2019 +0000
+++ b/news/lottanzb/Makefile    Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2019/09/02 13:20:10 adam Exp $
+# $NetBSD: Makefile,v 1.30 2019/11/04 19:17:11 rillig Exp $
 
 DISTNAME=      lottanzb-0.4.1
 PKGREVISION=   2
@@ -18,7 +18,7 @@
 USE_TOOLS+=            intltool msgfmt
 
 REPLACE_PYTHON=        lottanzb/postprocessor.py
-PYTHON_VERSIONS_ACCEPTED=       27 # py-gtk2 via py-kiwi
+PYTHON_VERSIONS_ACCEPTED= 27 # py-gtk2 via py-kiwi
 
 SUBST_CLASSES+=                localedir
 SUBST_STAGE.localedir= pre-configure
diff -r a64c6a9872a7 -r 5e4a64f69190 news/nn/Makefile
--- a/news/nn/Makefile  Mon Nov 04 19:05:18 2019 +0000
+++ b/news/nn/Makefile  Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.49 2017/01/04 22:34:47 roy Exp $
+# $NetBSD: Makefile,v 1.50 2019/11/04 19:17:11 rillig Exp $
 
 DISTNAME=      nn-6.7.3
 PKGREVISION=   5
@@ -24,11 +24,11 @@
 .include "../../mk/bsd.prefs.mk"
 
 .if ${MACHINE_ARCH} == "i386"
-MFILE=         m-i80386.h
+MFILE= m-i80386.h
 .elif ${MACHINE_ARCH} == "mipseb"
-MFILE=         m-mipsel.h
+MFILE= m-mipsel.h
 .else
-MFILE=         m-${MACHINE_ARCH}.h
+MFILE= m-${MACHINE_ARCH}.h
 .endif
 
 INSTALLATION_DIRS=     bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man8
diff -r a64c6a9872a7 -r 5e4a64f69190 news/nntpclnt/Makefile
--- a/news/nntpclnt/Makefile    Mon Nov 04 19:05:18 2019 +0000
+++ b/news/nntpclnt/Makefile    Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.39 2016/04/24 10:34:44 wiz Exp $
+# $NetBSD: Makefile,v 1.40 2019/11/04 19:17:11 rillig Exp $
 
 DISTNAME=      nntpclnt-1.6.1
 PKGREVISION=   6
@@ -9,23 +9,23 @@
 COMMENT=       NNTP client library and inews client posting program
 LICENSE=       nntpclnt-license
 
-RESTRICTED=    Do not sell, rent, trade, market, or use for monetary profit
+RESTRICTED=            Do not sell, rent, trade, market, or use for monetary profit
 # No permission granted for derivative works.
-NO_BIN_ON_FTP= ${RESTRICTED}
-NO_SRC_ON_CDROM=${RESTRICTED}
-NO_BIN_ON_CDROM=${RESTRICTED}
+NO_BIN_ON_FTP=         ${RESTRICTED}
+NO_SRC_ON_CDROM=       ${RESTRICTED}
+NO_BIN_ON_CDROM=       ${RESTRICTED}
 
 CONFLICTS+=    inn-[0-9]*
 
-BUILD_TARGET=  inews
-PKG_GROUPS=    news
+BUILD_TARGET=          inews
+PKG_GROUPS=            news
 PKG_SYSCONFSUBDIR=     nntp
 
 PLIST_SUBST+=  PKG_SYSCONFDIR=${PKG_SYSCONFDIR:Q}
 
 .include "../../mk/bsd.prefs.mk"
 
-CONFIG_SH=     ${FILESDIR}/config.${OPSYS}.sh
+CONFIG_SH=                     ${FILESDIR}/config.${OPSYS}.sh
 BROKEN_EXCEPT_ON_PLATFORM=     NetBSD-*-* DragonFly-*-* \
                                SunOS-*-* Linux-*-* Darwin-*-*
 
diff -r a64c6a9872a7 -r 5e4a64f69190 news/suck/options.mk
--- a/news/suck/options.mk      Mon Nov 04 19:05:18 2019 +0000
+++ b/news/suck/options.mk      Mon Nov 04 19:17:10 2019 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: options.mk,v 1.2 2015/09/30 08:25:37 tnn Exp $
+# $NetBSD: options.mk,v 1.3 2019/11/04 19:17:11 rillig Exp $
 
-PKG_OPTIONS_VAR=       PKG_OPTIONS.suck
+PKG_OPTIONS_VAR=               PKG_OPTIONS.suck
 PKG_OPTIONS_OPTIONAL_GROUPS+=  socks
 PKG_OPTIONS_GROUP.socks=       socks4 dante
 
diff -r a64c6a9872a7 -r 5e4a64f69190 news/tin/Makefile
--- a/news/tin/Makefile Mon Nov 04 19:05:18 2019 +0000
+++ b/news/tin/Makefile Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.85 2019/08/11 13:22:33 wiz Exp $
+# $NetBSD: Makefile,v 1.86 2019/11/04 19:17:11 rillig Exp $
 
 DISTNAME=      tin-2.4.3
 PKGREVISION=   2
@@ -20,8 +20,8 @@
 NO_BIN_ON_CDROM=       ${RESTRICTED}
 NO_SRC_ON_CDROM=       ${RESTRICTED}
 
-GNU_CONFIGURE= yes
-USE_PKGLOCALEDIR=yes
+GNU_CONFIGURE=         yes
+USE_PKGLOCALEDIR=      yes
 
 INSTALLATION_DIRS=     share/doc/tin
 
diff -r a64c6a9872a7 -r 5e4a64f69190 news/trn/options.mk
--- a/news/trn/options.mk       Mon Nov 04 19:05:18 2019 +0000
+++ b/news/trn/options.mk       Mon Nov 04 19:17:10 2019 +0000
@@ -1,9 +1,9 @@
-# $NetBSD: options.mk,v 1.4 2011/01/14 16:58:26 asau Exp $
+# $NetBSD: options.mk,v 1.5 2019/11/04 19:17:11 rillig Exp $
 
-PKG_OPTIONS_VAR=       PKG_OPTIONS.trn
+PKG_OPTIONS_VAR=               PKG_OPTIONS.trn
 PKG_OPTIONS_REQUIRED_GROUPS=   nntpclient
 PKG_OPTIONS_GROUP.nntpclient=  trn-inn trn-nntpclnt
-PKG_SUGGESTED_OPTIONS+=        trn-nntpclnt
+PKG_SUGGESTED_OPTIONS+=                trn-nntpclnt
 
 .include "../../mk/bsd.options.mk"
 
diff -r a64c6a9872a7 -r 5e4a64f69190 news/xrn/Makefile
--- a/news/xrn/Makefile Mon Nov 04 19:05:18 2019 +0000
+++ b/news/xrn/Makefile Mon Nov 04 19:17:10 2019 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.20 2018/11/10 20:03:40 wiz Exp $
+# $NetBSD: Makefile,v 1.21 2019/11/04 19:17:11 rillig Exp $
 
 DISTNAME=      xrn-10.11
 CATEGORIES=    news
@@ -13,7 +13,7 @@
 # Note for gmake: Recent NetBSD make should work too, bmake-20150505 fails
 USE_TOOLS+=    gmake lex pkg-config yacc
 
-DOCDIR=                share/doc/xrn
+DOCDIR=                        share/doc/xrn
 INSTALLATION_DIRS+=    ${DOCDIR}
 INSTALLATION_DIRS+=    lib/X11/app-defaults
 



Home | Main Index | Thread Index | Old Index