<feed xmlns='http://www.w3.org/2005/Atom'>
<title>pkgsrc/devel/p5-Module-Dependency, branch pkgsrc_2012Q2</title>
<subtitle>[no description]</subtitle>
<id>https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2012Q2</id>
<link rel='self' href='https://git.osdyson.ru/mirror/pkgsrc/atom?h=pkgsrc_2012Q2'/>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/'/>
<updated>2011-08-14T12:26:04Z</updated>
<entry>
<title>Revision bump after updating perl5 to 5.14.1.</title>
<updated>2011-08-14T12:26:04Z</updated>
<author>
<name>obache</name>
<email>obache</email>
</author>
<published>2011-08-14T12:26:04Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=74a7e1147c88b8cfdc49ad6446607b426d49a46b'/>
<id>urn:sha1:74a7e1147c88b8cfdc49ad6446607b426d49a46b</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump the PKGREVISION for all packages which depend directly on perl,</title>
<updated>2010-08-21T16:32:42Z</updated>
<author>
<name>seb</name>
<email>seb</email>
</author>
<published>2010-08-21T16:32:42Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=2071bb5c54efeb5a369d623a737c040e30ff5a84'/>
<id>urn:sha1:2071bb5c54efeb5a369d623a737c040e30ff5a84</id>
<content type='text'>
to trigger/signal a rebuild for the transition 5.10.1 -&gt; 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!
</content>
</entry>
<entry>
<title>PkgSrc changes:</title>
<updated>2009-05-01T22:22:56Z</updated>
<author>
<name>sno</name>
<email>sno</email>
</author>
<published>2009-05-01T22:22:56Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=f29396e729fa39761c742e93bbbf9b3cd6c87cda'/>
<id>urn:sha1:f29396e729fa39761c742e93bbbf9b3cd6c87cda</id>
<content type='text'>
  - Updating package for p5 module Module::Dependency from 1.8 to 1.86
  - Setting license to gnu-gpl-v2
  - Adjusting dependencies

Upstream changes:
* Changes in Module::Dependency 1.86 (svn rev 6643),  12th July 2006

    No longer use umask(0) before creating dir for data file.
    Move db file store function from Indexer.pm to Info.pm
    Use $ENV{PERL_PMD_DB} to override location of data file.

* Changes in Module::Dependency 1.85 (svn rev 6642),  12th July 2006

    Fixed blank lines in output.
    Fixed parent to mean what item depends_on
        and child to mean what item is depended_on_by
    Added sorting of final top-level output order with -sort
    Added -Unique option (global version of -unique)
    Added -All option to dump everything using Data::Dumper
    Added != and !~ support to object selector patterns
    Non-scripts always have a / in the key and filename
        (./ is prepended if there's no / already)
    Improved duplicate file/package warning.
    The -h option doesn't remove indent, use -i='' for that.

* Changes in Module::Dependency 1.84 (svn rev 6633),  11th July 2006

    Replaced pmd_dumper.plx with much more flexible pmd_dump.pl
    Unresolved dependencies now get entries in allobjects,
        with their reverse dependencies listed so they can be queried.
    Because of that the grapher html output changed but the tests
        haven't yet been updated so they're skipped.
    All entries have a 'key' field matching the key of the allobjects hash.

* Changes in Module::Dependency 1.83 (svn rev 6569),  27th June 2006

    Fixed VERSION numbers.
    Simplified README docs, INSTALL and added my name to LICENCE.

* Changes in Module::Dependency 1.82 (svn rev 6568),  27th June 2006

    Stored data changes:
    - 'filename' is now a relative file path, not absolute.
    - the "key" name for scripts is now the relative file path not basename.
    - new 'filerootdir' holds absolute prefix of filename.
    - 'scripts' now holds relative file paths

    Ignore ~ and .bak files.
    Don't decend into ignored directories (.svn, .cpan etc)
    Attempt to recognise .t test files.
    Improve robustness of parsing.
    Give more, and more useful, warning messages.
    More compact output for pmd_dumper -a

* Changes in Module::Dependency 1.81,  30th May 2006

First release under new maintainer Tim Bunce.

    Fixed parsing of multi-line use statements.
    Fixed parsing of unusual =cut statements.
    Fixed tests to not depend on hash order.

    Renamed scripts to have a pmd_ prefix.
    Moved examples into new examples/ subdirectory.
    Moced pmd_cgidepend.plx and pmd_cgiform.html into examples.
    Unified script and module parsing code.

* Changes prior to version 1.81

Date: 2002/09/25 23:09:31

Fixed minor typoes and niggling things that should have been corrected
in the distribution - thanks to Mike Castle &amp; Ron Savage

Indexer.pm converts paths to absolute paths before running File::Find,
giving the correct, expected, behaviour when you try to index relative
folders

Added support for the 'base' pragma.

Added the 'relationship' method (and hence the -r option to dumper.plx)
which tells you how two items are related.

Improved POD-skipping algorithm - i.e. it now has one.

There should be no platform-specific code left, and in theory this will
run on any OS.

Added a little POD-only module called Module::Dependency.

We 'use' as little as possible and 'require' the rest.

The indexer can optionally (and does, by default) look at a file's #! line
to see if it's a perl program. .pl, .plx and .pm files are always indexed.

Added accessor routine for the 'check_shebang' switch.

cgidepend.plx, the CGI program, slightly tweaked to be even more
mod_perl friendly.

Some code and ideas kindly contributed by S Rezic, S Heffner and C Sampson,
among others.
</content>
</entry>
<entry>
<title>Bump the PKGREVISION for all packages which depend directly on perl,</title>
<updated>2008-10-19T19:17:40Z</updated>
<author>
<name>he</name>
<email>he</email>
</author>
<published>2008-10-19T19:17:40Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=5209d3b6614856d771465489fa3399121b800518'/>
<id>urn:sha1:5209d3b6614856d771465489fa3399121b800518</id>
<content type='text'>
to trigger/signal a rebuild for the transition 5.8.8 -&gt; 5.10.0.

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=...").
</content>
</entry>
<entry>
<title>Add DESTDIR support.</title>
<updated>2008-06-12T02:14:13Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2008-06-12T02:14:13Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=39d7fb93432416d872ed34e0025741cc93068c06'/>
<id>urn:sha1:39d7fb93432416d872ed34e0025741cc93068c06</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Remove empty PLISTs from pkgsrc since revision 1.33 of plist/plist.mk</title>
<updated>2007-10-25T16:54:26Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2007-10-25T16:54:26Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=5e1040eb4b3d5bdf7e0d465818a3ff084620adb3'/>
<id>urn:sha1:5e1040eb4b3d5bdf7e0d465818a3ff084620adb3</id>
<content type='text'>
can handle packages having no PLIST files.
</content>
</entry>
<entry>
<title>Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where no</title>
<updated>2006-03-04T21:28:51Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2006-03-04T21:28:51Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=48ff096d36ac47701672a4f682e7c4ebafea1eb9'/>
<id>urn:sha1:48ff096d36ac47701672a4f682e7c4ebafea1eb9</id>
<content type='text'>
developer is officially maintaining the package.

The rationale for changing this from "tech-pkg" to "pkgsrc-users" is
that it implies that any user can try to maintain the package (by
submitting patches to the mailing list).  Since the folks most likely
to care about the package are the folks that want to use it or are
already using it, this would leverage the energy of users who aren't
developers.
</content>
</entry>
<entry>
<title>Recursive revision bump / recommended bump for gettext ABI change.</title>
<updated>2006-02-05T23:08:03Z</updated>
<author>
<name>joerg</name>
<email>joerg</email>
</author>
<published>2006-02-05T23:08:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=93e3b9e04264b93620166058e19ea42c856505b0'/>
<id>urn:sha1:93e3b9e04264b93620166058e19ea42c856505b0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Bump the PKGREVISIONs of all (638) packages that hardcode the locations</title>
<updated>2005-08-06T06:19:03Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2005-08-06T06:19:03Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=604de5eda52e3686a2d4ae3dceebabd648c8beb2'/>
<id>urn:sha1:604de5eda52e3686a2d4ae3dceebabd648c8beb2</id>
<content type='text'>
of Perl files to deal with the perl-5.8.7 update that moved all
pkgsrc-installed Perl files into the "vendor" directories.
</content>
</entry>
<entry>
<title>Turn PERL5_PACKLIST into a relative path instead of an absolute path.</title>
<updated>2005-07-13T18:01:18Z</updated>
<author>
<name>jlam</name>
<email>jlam</email>
</author>
<published>2005-07-13T18:01:18Z</published>
<link rel='alternate' type='text/html' href='https://git.osdyson.ru/mirror/pkgsrc/commit/?id=d4ffd78b7485efe90299999629f0ca3d63736a00'/>
<id>urn:sha1:d4ffd78b7485efe90299999629f0ca3d63736a00</id>
<content type='text'>
These paths are now relative to PERL5_PACKLIST_DIR, which currently
defaults to ${PERL5_SITEARCH}.  There is no change to the binary
packages.
</content>
</entry>
</feed>
