NetBSD.se

CVS log for pkgsrc/devel/p5-File-ChangeNotify/Makefile

[BACK] Up to [NetBSD + pkgsrc-wip] / pkgsrc / devel / p5-File-ChangeNotify

Request diff between arbitrary revisions - Display revisions graphically


Keyword substitution: kv
Default branch: MAIN


Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Aug 23 09:17:16 2011 UTC (8 months, 4 weeks ago) by abs
Branches: MAIN
CVS tags: pkgsrc-2012Q1-base, pkgsrc-2012Q1, pkgsrc-2011Q4-base, pkgsrc-2011Q4, pkgsrc-2011Q3-base, pkgsrc-2011Q3, HEAD
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -3 lines
p5-Moose ate p5-Class-MOP - update depends & bump PKGREVISION

Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Aug 16 09:31:55 2011 UTC (9 months ago) by obache
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +1 -2 lines
Drop Module::Build requirements, default dependency is sufficient.

Revision 1.12: download - view: text, markup, annotated - select for diffs
Tue Aug 16 09:17:25 2011 UTC (9 months ago) by obache
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +2 -2 lines
In pkgsrc, additional 0 suffix for version of p5-Module-Build.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Tue Aug 16 09:13:49 2011 UTC (9 months ago) by obache
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2 lines
Let not to require external Module::Build for perl>=5.12.1.

Revision 1.10: download - view: text, markup, annotated - select for diffs
Fri Aug 12 19:09:06 2011 UTC (9 months, 1 week ago) by adam
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +2 -4 lines
Changes 0.20:
* The KQueue watcher checks that a file has a file descriptor to avoid
  watching closed files

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sat Aug 21 16:33:42 2010 UTC (21 months ago) by seb
Branches: MAIN
CVS tags: pkgsrc-2011Q2-base, pkgsrc-2011Q2, pkgsrc-2011Q1-base, pkgsrc-2011Q1, pkgsrc-2010Q4-base, pkgsrc-2010Q4, pkgsrc-2010Q3-base, pkgsrc-2010Q3
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
Bump the PKGREVISION for all packages which depend directly on perl,
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!

Revision 1.8: download - view: text, markup, annotated - select for diffs
Tue Jul 27 15:12:59 2010 UTC (21 months, 3 weeks ago) by seb
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +6 -5 lines
Update p5-File-ChangeNotify from version 0.13 to version 0.16.

Pkgsrc changes:
- adjust dependencies
- adjust LICENSE

Upstream changes:
0.16   2010-07-12
- Changes to avoid a warning about a useless coercion from future versions of
  Moose.

0.15   2010-07-09
- Add a missing prereq, namespace::autoclean.

0.14   2010-07-08
- Running the tests left behind a lot of temp directories that should have
  been cleaned up, but weren't. Reported by Peter Edwards. RT #59125.
- License is now Artistic 2.0

Revision 1.7: download - view: text, markup, annotated - select for diffs
Sun Apr 25 13:19:20 2010 UTC (2 years ago) by seb
Branches: MAIN
CVS tags: pkgsrc-2010Q2-base, pkgsrc-2010Q2
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +2 -2 lines
Update p5-File-ChangeNotify from version 0.12 to version 0.13.

Upstream changes:
0.13   2010-03-28

- Circular symlinks would cause instantiating a watcher to die with an error
  from File::Find. These are now ignored. Reported by Jon Schutz. RT #55883.

- Fixed misspelling of IO::KQueue in auto features. Reported by Jens
  Rehsack. RT #54905.

Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Feb 23 14:12:18 2010 UTC (2 years, 2 months ago) by sno
Branches: MAIN
CVS tags: pkgsrc-2010Q1-base, pkgsrc-2010Q1
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +13 -3 lines
Updating devel/p5-File-ChangeNotify from 0.07nb1 to 0.12

pkgsrc changes:
- Adjust dependencies
- Add system dependent optional (but recommended) dependencies

Upstream changes:
0.12   2010-01-28
- Added auto_features to the Build.PL, which will give hints on what modules
  to install for KQueue and Inotify support.
- Require Linux::Inotify 1.2+, since 1.1 apparently doesn't work with this
  module. Reported by Michael Grondin. RT #54069.

0.11   2009-12-07
- A test attempted to use Test::Without::Module but this wasn't in the prereq
  list. I've made the test check for the module and skip its tests if the
  module isn't present. Reported by Leon Brocard. RT #52539.

0.10   2009-12-06
- Attempting to instantiate more than one watcher failed if you were on a
  system where one of the watcher subclasses could not be loaded (which is
  basically every system because no system has both inotify and kqueue). Patch
  by Mark Grimes. RT #52477.

0.09   2009-11-09
- This release fixes the excluded-dirs.t under Windows. There are no other
  changes in this release, so there's no need to upgrade if you have 0.08
  installed. Patch by Taro Nishino. RT #51161.

0.08   2009-11-05
- Added a new exclude feature that allows you to excludes files or directories
  outright. Implemented by Dan Thomas. RT #51062.
- Added a KQueue-based watcher written by Dan Thomas. I have no idea if this
  works, as I don't have BSD, but we'll assume he ran the tests on his system
  ;) RT #51062.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Thu Sep 24 06:50:12 2009 UTC (2 years, 7 months ago) by sno
Branches: MAIN
CVS tags: pkgsrc-2009Q4-base, pkgsrc-2009Q4, pkgsrc-2009Q3-base, pkgsrc-2009Q3
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +2 -1 lines
Bumping revision of packages which depend direct or indirect on
devel/p5-Class-MOP. A late detected incompible change forced it.

Revision 1.4: download - view: text, markup, annotated - select for diffs
Wed Jul 8 08:14:40 2009 UTC (2 years, 10 months ago) by sno
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
Updating package for p5 module File::ChangeNotify from 0.06 to 0.07

Upstream changes:
0.07   2009-06-29

- Fixed a typo in File::ChangeNotify::Watcher that causes a warning
  with newer versions of Moose. Reported by David Raab. Fixes RT
  #47431.

Revision 1.3: download - view: text, markup, annotated - select for diffs
Mon Jun 15 21:20:22 2009 UTC (2 years, 11 months ago) by sno
Branches: MAIN
CVS tags: pkgsrc-2009Q2-base, pkgsrc-2009Q2
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +3 -3 lines
pkgsrc changes:
  - Updating package of p5 module File::ChangeNotify from 0.05 to 0.06
  - Adjusting license according to META.yaml

Upstream changes:
0.06   2009-06-03
  - Created a Makefile.PL from the Build.PL.

Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue May 19 22:22:34 2009 UTC (3 years ago) by sno
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -1 lines
Add forgotten module type to use Module::Build

Revision 1.1.1.1 (vendor branch): download - view: text, markup, annotated - select for diffs
Tue May 19 22:16:00 2009 UTC (3 years ago) by sno
Branches: TNF
CVS tags: pkgsrc-base
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +0 -0 lines
Importing package for p5 File::ChangeNotify 0.05 modules as dependency for
the scheduled p5-Catalyst-Devel update.

A File::ChangeNotify::Watcher class monitors a directory for changes made to
any file. A regular expression can be provided to filter out interesting
files.  It handles the addition of new subdirectories by adding them to the
watch list.


Revision 1.1: download - view: text, markup, annotated - select for diffs
Tue May 19 22:16:00 2009 UTC (3 years ago) by sno
Branches: MAIN
Initial revision

Diff request

This form allows you to request diffs 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.

Log view options

NetBSD-CVSweb <admin[at]NetBSD[dot]se>