The NetBSD Project

CVS log for pkgsrc/pkgtools/lintpkgsrc/Makefile

[BACK] Up to [cvs.NetBSD.org] / pkgsrc / pkgtools / lintpkgsrc

Request diff between arbitrary revisions


Default branch: MAIN
Current tag: MAIN


Revision 1.56 / (download) - annotate - [select for diffs], Thu Sep 29 21:26:23 2022 UTC (18 months, 2 weeks ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2024Q1-base, pkgsrc-2024Q1, pkgsrc-2023Q4-base, pkgsrc-2023Q4, pkgsrc-2023Q3-base, pkgsrc-2023Q3, pkgsrc-2023Q2-base, pkgsrc-2023Q2, pkgsrc-2023Q1-base, pkgsrc-2023Q1, pkgsrc-2022Q4-base, pkgsrc-2022Q4, HEAD
Changes since 1.55: +3 -3 lines
Diff to previous 1.55 (colored)

lintpkgsrc: fix search path for mk.conf

The variable MAKECONF has the highest precedence, not the lowest one.

Bump version.

Revision 1.55 / (download) - annotate - [select for diffs], Wed Sep 14 04:03:51 2022 UTC (19 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2022Q3-base, pkgsrc-2022Q3
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored)

pkgtools/lintpkgsrc: ignore exit status from running pkg_info

In case of multi-versioned packages like Python modules, lintpkgsrc
queries the wrong installed packages.

Bump version.

https://mail-index.netbsd.org/pkgsrc-users/2022/09/13/msg036186.html

Revision 1.54 / (download) - annotate - [select for diffs], Fri Aug 19 18:23:41 2022 UTC (19 months, 4 weeks ago) by rillig
Branch: MAIN
Changes since 1.53: +18 -2 lines
Diff to previous 1.53 (colored)

lintpkgsrc: fix location of mk.conf

The effective location of mk.conf is not stored in a variable, and there
are several locations where it could be. Noticed by adam@.

Revision 1.53 / (download) - annotate - [select for diffs], Sun Aug 14 13:13:52 2022 UTC (20 months ago) by rillig
Branch: MAIN
Changes since 1.52: +2 -11 lines
Diff to previous 1.52 (colored)

lintpkgsrc: remove preformatted manual page

Having the preformatted manual page checked in into version control
doesn't make sense. Replacing the placeholders is an ugly hack and leads
to ugly line breaks. If the preformatted manual page is needed, the
better approach is to render it at build time, after the placeholders
have been replaced.

Revision 1.52 / (download) - annotate - [select for diffs], Sat Aug 13 12:30:00 2022 UTC (20 months ago) by rillig
Branch: MAIN
Changes since 1.51: +2 -2 lines
Diff to previous 1.51 (colored)

lintpkgsrc: update to 2022.08.13

Changes since 2022.08.12:

In package makefiles, the ':U' modifier is evaluated more correctly than
before, handling the values '' and '0' correctly.

Running 'lintpkgsrc --help' produces a clean usage message.

Distinfo files are checked more strictly than before.

Running 'lintpkgsrc -D .' does not produce Perl warnings anymore when
falling back to running bmake to determine the PKGNAME.

When parsing package makefiles, the debug log for evaluating
conditionals is easier to read.

Revision 1.51 / (download) - annotate - [select for diffs], Fri Aug 12 22:51:59 2022 UTC (20 months ago) by rillig
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

lintpkgsrc: update to 2022.08.13

Changes since 2022.08.10:

Improve parsing of conditions, continuation lines, comments in
makefiles.

Replace hard-coded paths to /etc/mk.conf and /usr/pkg with the proper
paths that correspond to the pkgsrc installation.

If pkglint is run with unknown or invalid options, exit with an error
status.

Revision 1.50 / (download) - annotate - [select for diffs], Thu Aug 11 07:20:52 2022 UTC (20 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.49: +1 -2 lines
Diff to previous 1.49 (colored)

lintpkgsrc: cleanup: remove unused conf_sysconfdir

It has been replaced with conf_makeconf.

Revision 1.49 / (download) - annotate - [select for diffs], Wed Aug 10 22:43:54 2022 UTC (20 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.48: +7 -2 lines
Diff to previous 1.48 (colored)

lintpkgsrc: fix hardcoded paths

No matter whether lintpkgsrc is built in batch mode, its PREFIX must
always be the actual prefix, not the hardcoded /usr/pkg, as there may
also be bulk builds with --prefix=/opt/pkg. Same for mk.conf.

Revision 1.48 / (download) - annotate - [select for diffs], Wed Aug 10 20:16:55 2022 UTC (20 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.47: +3 -2 lines
Diff to previous 1.47 (colored)

lintpkgsrc: update to Perl 5.36

Bump version.

Revision 1.47 / (download) - annotate - [select for diffs], Tue Aug 9 18:14:22 2022 UTC (20 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.46: +2 -3 lines
Diff to previous 1.46 (colored)

lintpkgsrc: fix conversion of glob pattern to regular expression

It is used for evaluating expression modifiers of the form
':S,from,to,'.

Bump version.

Revision 1.46 / (download) - annotate - [select for diffs], Thu Aug 4 21:55:57 2022 UTC (20 months, 1 week ago) by rillig
Branch: MAIN
Changes since 1.45: +1 -2 lines
Diff to previous 1.45 (colored)

lintpkgsrc: cleanup: merge 'store' subroutines

With small changes, the subroutine for storing the cache can be
restricted to the public API of the types PkgDb, Pkgs and PkgVer. This
way, the 'store' subroutines no longer need to be part of the classes.
Implementing the code in a single external subroutine saves a few lines
of code.

The order of the PkgVer entries in the cache file changes, everything
else is as before.

Revision 1.45 / (download) - annotate - [select for diffs], Wed Aug 3 22:03:43 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.44: +2 -1 lines
Diff to previous 1.44 (colored)

lintpkgsrc: fix parsing of version numbers that include letters

Revision 1.44 / (download) - annotate - [select for diffs], Wed Aug 3 16:15:49 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.43: +3 -1 lines
Diff to previous 1.43 (colored)

lintpkgsrc: test parsing of package makefiles

Revision 1.43 / (download) - annotate - [select for diffs], Sat Jul 30 16:20:18 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.42: +2 -1 lines
Diff to previous 1.42 (colored)

lintpkgsrc: test code for storing package data

Revision 1.42 / (download) - annotate - [select for diffs], Sat Jul 30 14:55:51 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.41: +2 -2 lines
Diff to previous 1.41 (colored)

lintpkgsrc: update homepage URL

Revision 1.41 / (download) - annotate - [select for diffs], Sat Jul 30 11:33:23 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.40: +2 -3 lines
Diff to previous 1.40 (colored)

lintpkgsrc: use plain text cache format

Previously, the cache format was Perl code. Now it is a list of lines,
each line containing tab-separated data.

The new format reduces the storage needs by around 50%. It also ensures
that only well-formed data is written to the cache.

The previous format contained lots of IO requests, which made loading
the cache incredibly slow.

Bump version.

Revision 1.40 / (download) - annotate - [select for diffs], Sat Jul 30 10:11:45 2022 UTC (20 months, 2 weeks ago) by rillig
Branch: MAIN
Changes since 1.39: +12 -8 lines
Diff to previous 1.39 (colored)

lintpkgsrc: add automatic tests

Not sure whether this form of running tests is the idiomatic one, as
lintpkgsrc is not a Perl module but a Perl program, but it works.

The number of planned tests (5 for now) seems to be ignored, no idea
why.

Revision 1.39 / (download) - annotate - [select for diffs], Tue Jun 28 11:35:24 2022 UTC (21 months, 2 weeks ago) by wiz
Branch: MAIN
Changes since 1.38: +2 -1 lines
Diff to previous 1.38 (colored)

*: recursive bump for perl 5.36

Revision 1.38 / (download) - annotate - [select for diffs], Wed Apr 27 22:25:22 2022 UTC (23 months, 3 weeks ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2022Q2-base, pkgsrc-2022Q2
Changes since 1.37: +2 -2 lines
Diff to previous 1.37 (colored)

lintpkgsrc: fix Perl warning when parsing variable expressions

When parse-guessing a package Makefile, lintpkgsrc tries to evaluate
variable expressions such as ${VAR:S,from,to,} by passing them through
Perl's eval function.

In a variable expression of the form ${VAR:S,@exec@,${exec},}, this
produced Perl warnings due to the unescaped '@':

	Possible unintended interpolation of @exec in string at
	(eval 63841) line 1.

As a quick fix, skip ':S' modifiers that contain the character '@' for
now.  A proper fix will follow.

Revision 1.37 / (download) - annotate - [select for diffs], Sat Jan 1 13:27:37 2022 UTC (2 years, 3 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2022Q1-base, pkgsrc-2022Q1
Changes since 1.36: +2 -3 lines
Diff to previous 1.36 (colored)

lintpkgsrc: fix bogus warning for devel/lua-moses

The warning was:

	Bogus: -${DISTNAME:tl:S/-1$//1}
	    (from /.../devel/lua-moses/Makefile)

Previously, lintpkgsrc searched for the package name and version by
looking for '-' followed by a digit.  This was too naive, as in the
above expression, the '-1' does not mark the beginning of the version
number.  Fix this by resorting to 'make show-vars' in all cases in which
the PKGNAME still contains a '$'.

When running 'lintpkgsrc -Dp devel/lua-moses' with a relative directory
as argument, lintpkgsrc tried 'cd /lua-moses' and ignored the failure,
running 'make show-vars' in the current directory instead, which in my
case was the top-level pkgsrc directory.

Bump version.

Revision 1.36 / (download) - annotate - [select for diffs], Mon May 24 19:53:41 2021 UTC (2 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2021Q4-base, pkgsrc-2021Q4, pkgsrc-2021Q3-base, pkgsrc-2021Q3, pkgsrc-2021Q2-base, pkgsrc-2021Q2
Changes since 1.35: +2 -1 lines
Diff to previous 1.35 (colored)

*: recursive bump for perl 5.34

Revision 1.35 / (download) - annotate - [select for diffs], Thu Dec 17 16:17:44 2020 UTC (3 years, 4 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2021Q1-base, pkgsrc-2021Q1, pkgsrc-2020Q4-base, pkgsrc-2020Q4
Changes since 1.34: +2 -3 lines
Diff to previous 1.34 (colored)

pkgtools/lintpkgsrc: update to 4.96

Changes since 4.95:

Do not complain about "Bogus: ${_SVN_PKGREVISION:...}" that are
generated by wip/mk/*-package.mk.  Using PKGREVISION to track the
current date of the package is the wrong approach; PKGVERSION_NOREV
should be used instead.  Anyway, this is nothing the average pkgsrc user
should be worried about, so shut up the warning for now.

https://mail-index.netbsd.org/pkgsrc-users/2020/12/16/msg032884.html

Revision 1.34 / (download) - annotate - [select for diffs], Mon Aug 31 18:10:58 2020 UTC (3 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2020Q3-base, pkgsrc-2020Q3
Changes since 1.33: +2 -1 lines
Diff to previous 1.33 (colored)

*: bump PKGREVISION for perl-5.32.

Revision 1.33 / (download) - annotate - [select for diffs], Mon Aug 17 02:38:54 2020 UTC (3 years, 8 months ago) by tnn
Branch: MAIN
Changes since 1.32: +2 -3 lines
Diff to previous 1.32 (colored)

lintpkgsrc: update to 4.95

Use xargs when executing digest for -m.
PR pkg/48335: error when using -m and too many files in DISTDIR

Revision 1.32 / (download) - annotate - [select for diffs], Sat Jan 18 23:33:26 2020 UTC (4 years, 2 months ago) by rillig
Branch: MAIN
CVS Tags: pkgsrc-2020Q2-base, pkgsrc-2020Q2, pkgsrc-2020Q1-base, pkgsrc-2020Q1
Changes since 1.31: +2 -2 lines
Diff to previous 1.31 (colored)

all: migrate several HOMEPAGEs to https

pkglint --only "https instead of http" -r -F

With manual adjustments afterwards since pkglint 19.4.4 fixed a few
indentations in unrelated lines.

This mainly affects projects hosted at SourceForce, as well as
freedesktop.org, CTAN and GNU.

Revision 1.31 / (download) - annotate - [select for diffs], Sun Aug 11 13:22:35 2019 UTC (4 years, 8 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q4-base, pkgsrc-2019Q4, pkgsrc-2019Q3-base, pkgsrc-2019Q3
Changes since 1.30: +2 -2 lines
Diff to previous 1.30 (colored)

Bump PKGREVISIONs for perl 5.30.0

Revision 1.30 / (download) - annotate - [select for diffs], Wed Aug 22 09:46:10 2018 UTC (5 years, 7 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2019Q2-base, pkgsrc-2019Q2, pkgsrc-2019Q1-base, pkgsrc-2019Q1, pkgsrc-2018Q4-base, pkgsrc-2018Q4, pkgsrc-2018Q3-base, pkgsrc-2018Q3
Changes since 1.29: +2 -1 lines
Diff to previous 1.29 (colored)

Recursive bump for perl5-5.28.0

Revision 1.29 / (download) - annotate - [select for diffs], Fri Dec 15 10:54:59 2017 UTC (6 years, 4 months ago) by adam
Branch: MAIN
CVS Tags: pkgsrc-2018Q2-base, pkgsrc-2018Q2, pkgsrc-2018Q1-base, pkgsrc-2018Q1, pkgsrc-2017Q4-base, pkgsrc-2017Q4
Changes since 1.28: +7 -7 lines
Diff to previous 1.28 (colored)

Fix for wrong interpreter

Revision 1.28 / (download) - annotate - [select for diffs], Fri Dec 15 09:17:04 2017 UTC (6 years, 4 months ago) by leot
Branch: MAIN
Changes since 1.27: +8 -7 lines
Diff to previous 1.27 (colored)

lintpkgsrc: Update pkgtools/lintpkgsrc to 4.94

pkgsrc changes:
 - Use SUBST_VARS instead of SUBST_SED to adjust the several variables in
   files/lintpkgsrc.pl and avoid some make contortionism in the remaining
   SUBST_SED

Changes:
 - PKG_SYSCONFDIR can be different to ${PREFIX}/etc, instruct lintpkgsrc
   about that to possibly pick mk.conf when an /etc/mk.conf file is not
   available

Discussed on pkgsrc-changes@ with <adam> and <jperkin>.
Thanks to both <adam> and <jperkin> for feedback, suggestions and review!

Revision 1.27 / (download) - annotate - [select for diffs], Thu Dec 14 14:11:40 2017 UTC (6 years, 4 months ago) by adam
Branch: MAIN
Changes since 1.26: +2 -3 lines
Diff to previous 1.26 (colored)

lintpkgsrc: updated to 4.93

4.93:
Allow alternative location of mk.conf: if /etc/mk.conf does not exist, try PREFIX/etc/mk.conf.

Revision 1.26 / (download) - annotate - [select for diffs], Thu Jun 22 06:11:25 2017 UTC (6 years, 9 months ago) by markd
Branch: MAIN
CVS Tags: pkgsrc-2017Q3-base, pkgsrc-2017Q3, pkgsrc-2017Q2-base, pkgsrc-2017Q2
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored)

Deal with perl 5.26.  Bump PKGREVISION

Revision 1.25 / (download) - annotate - [select for diffs], Sat Jul 9 06:38:48 2016 UTC (7 years, 9 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2017Q1-base, pkgsrc-2017Q1, pkgsrc-2016Q4-base, pkgsrc-2016Q4, pkgsrc-2016Q3-base, pkgsrc-2016Q3
Changes since 1.24: +2 -1 lines
Diff to previous 1.24 (colored)

Bump PKGREVISION for perl-5.24.0 for everything mentioning perl.

Revision 1.24 / (download) - annotate - [select for diffs], Sat Mar 12 09:05:22 2016 UTC (8 years, 1 month ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2016Q2-base, pkgsrc-2016Q2, pkgsrc-2016Q1-base, pkgsrc-2016Q1
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored)

Remove non-working -V option from lintpkgsrc. Bump version.

From Taylor Stearns <tstearns@pobox.com> in PR 42172.

Revision 1.23 / (download) - annotate - [select for diffs], Wed Nov 25 20:46:28 2015 UTC (8 years, 4 months ago) by leot
Branch: MAIN
CVS Tags: pkgsrc-2015Q4-base, pkgsrc-2015Q4
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

Use Cwd::realpath() for the -[KMP] flags.

Fixes PR pkg/50444 reported by dholland@ and also fixes various possible
problems when relative paths are used.

Revision 1.22 / (download) - annotate - [select for diffs], Mon Oct 5 13:12:12 2015 UTC (8 years, 6 months ago) by tnn
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored)

fix regexps for patch names: '+' and '_' are allowed characters

Fixes false checksum mismatch errors from lintpkgsrc -m.
Bump version to lintpkgsrc-4.90.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Jul 1 19:57:31 2015 UTC (8 years, 9 months ago) by tron
Branch: MAIN
CVS Tags: pkgsrc-2015Q3-base, pkgsrc-2015Q3
Changes since 1.20: +2 -3 lines
Diff to previous 1.20 (colored)

Update "lintpkgsrc" package to version 4.89:
- Fix warnings reported by Perl 5.22.

Revision 1.20 / (download) - annotate - [select for diffs], Fri Jun 12 10:50:55 2015 UTC (8 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q2-base, pkgsrc-2015Q2
Changes since 1.19: +2 -1 lines
Diff to previous 1.19 (colored)

Recursive PKGREVISION bump for all packages mentioning 'perl',
having a PKGNAME of p5-*, or depending such a package,
for perl-5.22.0.

Revision 1.19 / (download) - annotate - [select for diffs], Sat Jan 10 20:12:24 2015 UTC (9 years, 3 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2015Q1-base, pkgsrc-2015Q1
Changes since 1.18: +2 -2 lines
Diff to previous 1.18 (colored)

Improve variable expansion, in particular improving EMACS packages.
From J. Lewis Muir.

Bump version.

Revision 1.18 / (download) - annotate - [select for diffs], Mon Nov 24 09:41:25 2014 UTC (9 years, 4 months ago) by bsiegert
Branch: MAIN
CVS Tags: pkgsrc-2014Q4-base, pkgsrc-2014Q4
Changes since 1.17: +2 -3 lines
Diff to previous 1.17 (colored)

New lintpkgsrc release. It contains the -y and -z parameters provided by
Adrian Portelli ten years ago in PR pkg/25451.

Revision 1.17 / (download) - annotate - [select for diffs], Thu Oct 9 14:06:49 2014 UTC (9 years, 6 months ago) by wiz
Branch: MAIN
Changes since 1.16: +1 -3 lines
Diff to previous 1.16 (colored)

Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.

Revision 1.16 / (download) - annotate - [select for diffs], Thu May 29 23:37:14 2014 UTC (9 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2014Q3-base, pkgsrc-2014Q3, pkgsrc-2014Q2-base, pkgsrc-2014Q2
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored)

Bump for perl-5.20.0.
Do it for all packages that
* mention perl, or
* have a directory name starting with p5-*, or
* depend on a package starting with p5-
like last time, for 5.18, where this didn't lead to complaints.
Let me know if you have any this time.

Revision 1.15 / (download) - annotate - [select for diffs], Mon Mar 3 03:30:53 2014 UTC (10 years, 1 month ago) by obache
Branch: MAIN
CVS Tags: pkgsrc-2014Q1-base, pkgsrc-2014Q1
Changes since 1.14: +2 -4 lines
Diff to previous 1.14 (colored)

Just define PKGNAME and use it.

Revision 1.14 / (download) - annotate - [select for diffs], Thu Sep 12 11:18:40 2013 UTC (10 years, 7 months ago) by jperkin
Branch: MAIN
CVS Tags: pkgsrc-2013Q4-base, pkgsrc-2013Q4, pkgsrc-2013Q3-base, pkgsrc-2013Q3
Changes since 1.13: +5 -1 lines
Diff to previous 1.13 (colored)

Use CATMAN_SECTION_SUFFIX in packages which perform their own catman
page installation.

Revision 1.13 / (download) - annotate - [select for diffs], Fri May 31 12:41:46 2013 UTC (10 years, 10 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q2-base, pkgsrc-2013Q2
Changes since 1.12: +2 -1 lines
Diff to previous 1.12 (colored)

Bump all packages for perl-5.18, that
a) refer 'perl' in their Makefile, or
b) have a directory name of p5-*, or
c) have any dependency on any p5-* package

Like last time, where this caused no complaints.

Revision 1.12 / (download) - annotate - [select for diffs], Sun Feb 10 00:59:27 2013 UTC (11 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2013Q1-base, pkgsrc-2013Q1
Changes since 1.11: +2 -3 lines
Diff to previous 1.11 (colored)

Just increase version if the package belongs us.

Revision 1.11 / (download) - annotate - [select for diffs], Sun Feb 10 00:28:43 2013 UTC (11 years, 2 months ago) by mspo
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored)

bump pkgrevision after making some changes to the source

Revision 1.10 / (download) - annotate - [select for diffs], Wed Oct 3 21:57:14 2012 UTC (11 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: pkgsrc-2012Q4-base, pkgsrc-2012Q4
Changes since 1.9: +2 -1 lines
Diff to previous 1.9 (colored)

Bump all packages that use perl, or depend on a p5-* package, or
are called p5-*.

I hope that's all of them.

Revision 1.9 / (download) - annotate - [select for diffs], Tue Sep 11 23:19:35 2012 UTC (11 years, 7 months ago) by asau
Branch: MAIN
CVS Tags: pkgsrc-2012Q3-base, pkgsrc-2012Q3
Changes since 1.8: +1 -3 lines
Diff to previous 1.8 (colored)

"user-destdir" is default these days

Revision 1.8 / (download) - annotate - [select for diffs], Sun Sep 9 20:18:46 2012 UTC (11 years, 7 months ago) by dholland
Branch: MAIN
Changes since 1.7: +2 -2 lines
Diff to previous 1.7 (colored)

Bump version for mspo's file::find change.

Revision 1.7 / (download) - annotate - [select for diffs], Fri Jul 13 21:12:07 2012 UTC (11 years, 9 months ago) by abs
Branch: MAIN
Changes since 1.6: +3 -5 lines
Diff to previous 1.6 (colored)

Updated pkgtools/lintpkgsrc to 4.84

4.84:
- Misparse Makefiles a little better. Check for '.' in the left hand of :S and
  :C operations, and also handle :U
- Move files from pkglint/files to lintpkgrsc/files

Revision 1.6 / (download) - annotate - [select for diffs], Tue May 8 23:11:48 2012 UTC (11 years, 11 months ago) by sbd
Branch: MAIN
CVS Tags: pkgsrc-2012Q2-base, pkgsrc-2012Q2
Changes since 1.5: +2 -2 lines
Diff to previous 1.5 (colored)

In parse_makefile_vars() inprove the pattern used to remove comments so
that it doesn't match on backslash quoted hash characters. PR/46422

Bump PKGVERSION.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Feb 24 22:04:38 2010 UTC (14 years, 1 month ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3, pkgsrc-2010Q2-base, pkgsrc-2010Q2, pkgsrc-2010Q1-base, pkgsrc-2010Q1
Changes since 1.4: +2 -2 lines
Diff to previous 1.4 (colored)

Make sure that FILESDIR is a full path, so that the resulting +BUILD_INFO
is consistent.

Revision 1.4 / (download) - annotate - [select for diffs], Sun Jan 31 11:38:48 2010 UTC (14 years, 2 months ago) by obache
Branch: MAIN
Changes since 1.3: +3 -1 lines
Diff to previous 1.3 (colored)

Take care the case that MANINSTALL does not contain catinstall.
Fixes PR#42690.

Revision 1.3 / (download) - annotate - [select for diffs], Thu Apr 9 00:48:11 2009 UTC (15 years ago) by joerg
Branch: MAIN
CVS Tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3, pkgsrc-2009Q2-base, pkgsrc-2009Q2
Changes since 1.2: +1 -2 lines
Diff to previous 1.2 (colored)

Remove redundant NO_CHECKSUM and EXTRACT_ONLY definitions.

Revision 1.2 / (download) - annotate - [select for diffs], Fri Aug 29 15:33:01 2008 UTC (15 years, 7 months ago) by abs
Branch: MAIN
CVS Tags: pkgsrc-2009Q1-base, pkgsrc-2009Q1, pkgsrc-2008Q4-base, pkgsrc-2008Q4, pkgsrc-2008Q3-base, pkgsrc-2008Q3, cube-native-xorg-base, cube-native-xorg
Changes since 1.1: +6 -4 lines
Diff to previous 1.1 (colored)

PKG_DESTDIR_SUPPORT=user-destdir

Revision 1.1 / (download) - annotate - [select for diffs], Thu Jan 3 17:43:15 2008 UTC (16 years, 3 months ago) by rillig
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>