Issues found with existing distfiles:
distfiles/eclipse-sourceBuild-srcIncluded-3.0.1.zip
distfiles/fortran-utils-1.1.tar.gz
distfiles/ivykis-0.39.tar.gz
distfiles/enum-1.11.tar.gz
distfiles/pvs-3.2-libraries.tgz
distfiles/pvs-3.2-linux.tgz
distfiles/pvs-3.2-solaris.tgz
distfiles/pvs-3.2-system.tgz
No changes made to these distinfo files.
Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden). All existing
SHA1 digests retained for now as an audit trail.
-------------------
0.16 2015-07-28 05:55:58Z
- no changes since trial release
0.15 2015-07-22 16:17:48Z (TRIAL RELEASE)
- restore the prototype of hook_parser_setup() for the C interface
- restore B::Hooks::Parser::Install::Files, lost since version 0.13
0.14 2015-07-22 02:16:31Z (TRIAL RELEASE)
- fix segfaults on clang by defining PERL_NO_GET_CONTEXT (thanks, Vincent
Pit! closes github #1, #2, RT#94463)
- Add Following line
+# for make test
+BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
(upstream)
- Update 0.12 to 0.13
-------------------
0.13 2015-06-06 20:54:32Z
- switch tooling off of Module::Install
{perl>=5.16.6,p5-ExtUtils-ParseXS>=3.15}:../../devel/p5-ExtUtils-ParseXS
since pkgsrc enforces the newest perl version anyway, so they
should always pick perl, but sometimes (pkg_add) don't due to the
design of the {,} syntax.
No effective change for the above reason.
Ok joerg
0.12 2013-05-11
* fix test that breaks in 5.17.4 (RT#80070, Father Chrysotomos)
* Require ExtUtils::Depends 0.302 for win32 support (RT#77311), Alexandr
Ciornii)
0.11 Mon, 18 Jun 2012 17:01:00 +0100
* Document get_lex_stuff and clear_lex_stuff.
* Document return type of C version of set_linestr.
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.
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.
devel/p5-B-Hooks-Parser from 0.09nb2 to 0.10.
Upstream changes:
0.10 Mon, 06 Feb 2012 13:10:00 +0000
* In the Perl API, don't be confused by NULs in the parser buffer.
* Fix off-by-one error in buffer length check for set_linestr.
* Jump through some hoops to avoid compiler warnings.
* Add MYMETA.{json,yml} to MANIFEST.SKIP and .gitignore.
* Note repository and bugtracker locations.
to trigger/signal a rebuild for the transition 5.10.1 -> 5.12.1.
The list of packages is computed by finding all packages which end
up having either of PERL5_USE_PACKLIST, BUILDLINK_API_DEPENDS.perl,
or PERL5_PACKLIST defined in their make setup (tested via
"make show-vars VARNAMES=..."), minus the packages updated after
the perl package update.
sno@ was right after all, obache@ kindly asked and he@ led the
way. Thanks!
- Updating package for p5 module B::Hooks::Parser from 0.08 to 0.09
- Adjusting dependencies according to META.yml
- Setting license according to META.yml
Upstream changes:
0.09 Wed, 03 Jun 2009 13:20:21 +0200
* Don't redefine various macros if they already exist.
* Add B::Hooks::Toke::skipspace function (Liu Kang-min).
This changes the buildlink3.mk files to use an include guard for the
recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS,
BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new
variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of
enter/exit marker, which can be used to reconstruct the tree and
to determine first level includes. Avoiding := for large variables
(BUILDLINK_ORDER) speeds up parse time as += has linear complexity.
The include guard reduces system time by avoiding reading files over and
over again. For complex packages this reduces both %user and %sys time to
half of the former time.