summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorrillig <rillig@pkgsrc.org>2018-09-05 17:01:03 +0000
committerrillig <rillig@pkgsrc.org>2018-09-05 17:01:03 +0000
commit187af5d81f2951efcb77813b3334c04b77e84366 (patch)
tree21ea375d2a2904b06086e72bc14e246616ee63a6 /pkgtools
parentf0bf309eb55157479ad4593be1975ab921b330b3 (diff)
downloadpkgsrc-187af5d81f2951efcb77813b3334c04b77e84366.tar.gz
pkgtools/pkglint: remove TODO file
In the next version, pkglint will report an error if a package has a README or a TODO file. The content of the current TODO file is still available at https://github.com/rillig/pkglint/blob/master/TODO.md.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkglint/TODO28
1 files changed, 0 insertions, 28 deletions
diff --git a/pkgtools/pkglint/TODO b/pkgtools/pkglint/TODO
deleted file mode 100644
index af556720868..00000000000
--- a/pkgtools/pkglint/TODO
+++ /dev/null
@@ -1,28 +0,0 @@
-$NetBSD: TODO,v 1.84 2016/01/31 17:18:54 rillig Exp $
-
-Please add your own entries at the bottom of this file. If possible,
-include the name of an example package where a warning should occur.
-
-* warn about the use of ${WRKDIR:=...}, as this construct should only
- be used with lists.
-* Of the user-defined variables, some may be used at load-time and some
- don't. Find out how pkglint can distinguish them.
-* Make sure that no variable is modified at load-time after it has been
- used once. This should at least flag BUILD_DEFS in bsd.pkg.mk.
-* ${MACHINE_ARCH}-${LOWER_OPSYS}elf in PLISTs etc. is a NetBSD config.guess
- problem ==> use of ${APPEND_ELF}
-* Packages including lang/python/extension.mk must follow the Python version
- scheme. Enforcing PYPKGPREFIX for those is most likely a good idea.
-* Check for parallel files/dirs whose names differ only in case.
-* If a dependency depends on an option (in options.mk), it should also
- depend on the same option in the buildlink3.mk file.
-* Complain about ${PKGSRC_COMPILER} == "sunpro", which should be
- !empty(PKGSRC_COMPILER:Msunpro).
-* don't complain about "procedure calls", like for pkg-build-options in
- the various buildlink3.mk files.
-* if package A conflicts with B, then B should also conflict with A.
-* When pkglint runs on a case-insensitive filesystem, it should still
- point out problems that only occur on case-sensitive filesystems. For
- example, devel/p5-Net-LDAP and devel/p5-Net-ldap should be considered
- different paths.
-* Warn about using REPLACE_PYTHON without including application.mk.