build dependency of scheduled import of devel/p5-MetaCPAN-API as dependency
of scheduled update of devel/p5-Git-CPAN-Patch.
This is a very simply Perl5 tool to mock external modules.
0.15 to 0.18.
pkgsrc changes:
- update fetch location (maintainer independent dist location on CPAN)
- adjust dependencies
Upstream changes:
0.18 2011-11-07
* Try to cope with broken smokers better by recording a Moose
prereq when it is used. (Chris Williams)
- see https://rt.cpan.org/Public/Bug/Display.html?id=72043
0.17 2011-09-16
* Better indicate that this module is dynamically configured.
- fixes [rt.cpan.org #70996]
0.16 2011-09-15
* If you have Moose installed you no longer get the Mouse dependency (rjbs, reported by andk)
Any::Moose has long had both runtime and test support for Moose
without Mouse, but the toolchain has not, until recently, been
good enough to handle alternatives. This change is designed
to affect very few people.
- fixes [rt.cpan.org #70597]
devel/p5-Git-Repository.
Git::Repository is an interface to Git for the Perl programming language,
for scripted interactions with repositories. It's a low-level interface
that allows calling any Git command, whether porcelain or plumbing,
including bidirectional commands such as git commit-tree.
A Git::Repository object simply provides context to the git commands being
run. It is possible to call the command() and run() methods against the
class itself, and the context (typically current working directory) will
be obtained from the options and environment.
language) 1.05 into pkgsrc/devel/p5-System-Command as dependency for
devel/p5-Git-CPAN-Patch update.
System::Command is a class that launches external system commands and
return an object representing them, allowing to interact with them through
their STDIN, STDOUT and STDERR handles.
Changes from previous:
0.55 (2010-03-27)
* Added a bunch of links to http://contributing.appspot.com/shipit
* Bunch of patches from the community all over the place... See
version control history, linked off the Contributing URL above.
(we should phase out this changelog, or make it just be the git
log....)
Changes from previous:
0.27 2011-05-19
- Fix 006-cooperative.t - this test requires MooseX::StrictConstructor
0.16+ to pass with Moose 2.00+. Reported by Alexandr Ciornii. RT
#67965. (Dave Rolsky)
0.26 2011-02-26
- This module will now work with Moose 1.9900+, but it still works with
older Moose as well. (Dave Rolsky)
- The test suite now uses Test::Fatal instead of Test::Exception. (Karen
Etheridge)
The BuildBot is a system to automate the compile/test cycle required by
most software projects to validate code changes. This package contains
the buildslave.
The BuildBot is a system to automate the compile/test cycle required by
most software projects to validate code changes. By automatically
rebuilding and testing the tree each time something has changed, build
problems are pinpointed quickly, before other developers are
inconvenienced by the failure. The guilty developer can be identified
and harassed without human intervention. By running the builds on a
variety of platforms, developers who do not have the facilities to test
their changes everywhere before checkin will at least know shortly
afterwards whether they have broken the build or not. Warning counts,
lint checks, image size, compile time, and other build parameters can
be tracked over time, are more visible, and are therefore easier to
improve.
The ``decorator'' module aims to simplify the usage of decorators
in Python code for the average programmer and to popularize decorators
by showing various non-trivial examples.
=== 3.11 / 2011/10-17
* Bug fixes
* Avoid parsing TAGS files included in gems. Issue #81 by Santiago Pastorino.
=== 3.10 / 2011-10-08
* Major enhancements
* RDoc HTML output has been improved:
* The search from Vladimir Kolesnikov Sdoc has been integrated.
The search index generation is a reusable component through
RDoc::Generator::JsonIndex
* The table of contents is now a separate page and now shows links to
headings and sections inside a page or class.
* Class pages no longer show the namespace and no longer have file info
pages.
* HTML output is HTML 5.
* Static files can be copied into RDoc using --copy-files
* RDoc supports additional documentation formats:
* TomDoc 1.0.0-rc1
* RD format
The default markup can be set via the <tt>--markup</tt> option.
The format of documentation in a particular file can be specified by the
+:markup:+ directive. If the +:markup:+ directive is in the first comment
it is used as the default for the entire file. For other comments it
overrides the default markup format.
The markup format can be set for rake tasks using RDoc::Task#markup
* RDoc can save and load an options file.
To create an options file that defaults to using TomDoc markup run:
rdoc --markup tomdoc --write-options
This will create a .rdoc_options file. Check it in to your VCS and
package it with your gem. RDoc will automatically load this file and
combine it with the user's options.
Some options are not saved. See RDoc::Options@Saved+Options for full
details.
* Minor enhancements
* RDoc autoloads everything. You only need to require 'rdoc' now.
* HTML headings now have ids matching their titles.
= Hello!
Is rendered as
<h1 id="label-Hello%21">Hello!</h1>
* Labels for classes or methods can be linked-to by adding an <tt>@</tt>
following the class or method reference. For example,
<tt>RDoc::Markup@Links</tt>
See RDoc::Markup@Links for further details.
* For HTML output RDoc uses +SomeClass.method_name+ and
+SomeClass#method_name+ for remote methods and attributes and
+::method_name+ and +#method_name+ for local methods.
* RDoc makes an effort to syntax-highlight ruby code in verbatim sections.
See RDoc::Markup@Paragraphs+and+Verbatim
* Added RDoc::TopLevel#text? and RDoc::Parser::Text to indicate a
parsed file contains no ruby constructs.
* Added <tt>rdoc-label</tt> link scheme which allows bidirectional links.
See RDoc::Markup for details.
* Added RDoc::Comment which encapsulates comment-handling functionality.
* Added RDoc::Markup::PreProcess::post_process to allow arbitrary comment
munging.
* RDoc::RDoc::current is set for the entire RDoc run.
* Split rdoc/markup/inline into individual files for its component classes.
* Moved token stream HTML markup out of RDoc::AnyMethod#markup_code into
RDoc::TokenStream::to_html
* "Top" link in section headers is no longer inside the heading element.
* RDoc avoids printing some warnings unless run with `rdoc --verbose`. For
Rails issue #1646.
* Finishing a paragraph with two or more spaces will result in a line break.
This feature is experimental and may be modified or removed.
* Bug fixes
* Performance of RDoc::RubyLex has been improved. Ruby Bug #5202 by Ryan
Melton.
* Clicking a link in the method description now works. Issue #61 by Alan
Hogan.
* Fixed RDoc::Markup::Parser for CRLF line endings. Issue #67 by Marvin
Gülker.
* Fixed lexing of percent strings like %r{#}. Issue #68 by eclectic923.
* The C parser now understands classes defined with
+rb_struct_define_without_accessor+ (like Range). Pull Request #73 by Dan
Bernier
* Fixed lexing of <code>a b <<-HEREDOC</code>. Issue #75 by John Mair.
* Added LEGAL.rdoc with references to licenses in other files. Issue #78 by
Dmitry Jemerov.
* Block parameters are displayed in Darkfish output again. Issue #76 by
Andrea Singh.
* The method parameter coverage report no longer includes parameter default
values. Issue #77 by Jake Goulding.
* The module for an include is not looked up until parsed all the files are
parsed. Unless your project includes nonexistent modules this avoids
worst-case behavior (<tt>O(n!)</tt>) of RDoc::Include#module.
to update textproc/p5-Text-Sass
This module provides a number of list utility functions, all of which
take an initial code block to control their behaviour. They are
variations on similar core perl or "List::Util" functions of similar
names, but which use the block to control their behaviour.
This module is required to update www/p5-HTML-FormFu.
MooseX::ChainedAccessors is a Moose Trait which allows for method
chaining on accessors by returning $self on write/set operations.
which is required to update misc/p5-Locale-US.
This module is a simpler version of the excellent Data::Section. If
you want more functionalities such as merging data sections or
changing header patterns, use Data::Section instead.
XXX Set MAKE_JOBS_SAFE=no for now. Should investigate why it fails
without it as it prolongs build time significantly.
Upstream changes:
Add-ons installed by third party programs are now disabled by default
Added a one-time add-on selection dialog to manage previously installed add-ons
Added Twitter to the search bar for select locales. Additional locale support
will be added in the future
Added a preference to load tabs on demand, improving start-up time when
windows are restored
Improved performance and memory handling when using <audio> and <video>
elements
Added CORS support for cross-domain textures in WebGL
Added support for HTML5 context menus
Added support for insertAdjacentHTML
Improved CSS hyphen support for many languages
Improved WebSocket support
Fixed several stability issues
Fixed several security issues
Changes from previous:
3.84 Tue Oct 11 22:42:26 2011
- Fixed bug in string dump of objects
3.83 Thu Oct 6 23:53:04 2011
- Fix bug with NOT_SHARED in threads::shared app
- Document error caused by returning non-shared objects from threads
3.82 Tue Sep 27 23:28:33 2011
- Fix obj ID reuse for shared objects in threaded app
- Documented limitation regarding removing shared internal objects
3.81 Tue Mar 22 02:20:49 2011
- Faster initialization (from O(n^3) to O(n))
3.79 Fri Dec 24 18:06:02 2010
- Bundle update
3.78 Fri Dec 24 15:35:25 2010
- POD update
3.77 Tue Dec 21 14:29:37 2010
- Test fixes for $@ changes
- Test change for ??? syntax error
3.76 Mon Nov 15 00:01:50 2010
- Skip some more shared tests under 5.8.8 and prior
3.75 Tue Nov 9 15:01:06 2010
- Skip some shared tests under 5.8.8 and prior
3.74 Tue Nov 9 02:16:45 2010
- threads::shared version number in test
3.73 Mon Nov 8 18:53:00 2010
- Fix obj ID handling for shared objects in threaded app
3.72 Mon Oct 18 21:15:53 2010
- Fix obj ID handling for non-shared objects in threaded app
3.71 Wed Oct 13 18:25:20 2010
- Fixed a memory leak
3.69 Tue Sep 28 20:38:53 2010
- Fix test counts in t/27-exception.t
3.68 Thu Sep 23 17:09:21 2010
- POD note to 'use threads' in DBI applications [bug #58394]
- Allow warnings for unhandled args
Changes from previous:
0.05 2011-02-26
- In Moose 1.9900+, attributes from roles no longer acquire the consuming
class's attribute traits. However, you can apply attribute traits like this
one to attributes in roles, and that trait is preserved when the role is
applied to a class.
See the documentation for more details.
Changes from previous:
Version 1.02 2011-06-23
Added 'width' method.
Updated some tests which did not run correctly with perl 5.015. Renee Baecker
Version 1.03 2011-06-28
Missed one of the tests that fail with perl 5.015.
This package is required to update databases/p5-DBIx-Class-Schema-Loader.
MooseX::MarkAsMethods allows one to easily mark certain functions as
Moose methods. This will allow other packages such as
namespace::autoclean to operate without blowing away your overloads.
After using MooseX::MarkAsMethods your overloads will be recognized by
Class::MOP as being methods, and class extension as well as
composition from roles with overloads will "just work".
Changes from previous:
0.17 Wed Oct 26 08:34:17 EST 2011
* Warnings avoidance for reloading a module not in %INC
* Updated inc/ and META.yml
0.16 Fri Apr 15 15:03:21 EST 2011
* SIGNATURE file bug
0.15 Fri Apr 15 15:00:15 EST 2011
* No functional changes. Added missing test dependencies. Thanks to JQUELIN & Paul at City Fan
0.14 Tue Apr 12 18:07:44 EST 2011
* Actually remove subroutines from the symbol table, Thanks to DOY.
to update databases/p5-DBIx-Class-EncodedColumn.
Module::Install::ReadmeFromPod is a Module::Install extension that
generates a "README" file automatically from an indicated file
containing POD, whenever the author runs "Makefile.PL".
module IO::Compress for the Perl programming language up to date.
Upstream changes:
2.040 28 October 2011
* t/105oneshot-zip-only.t
- CanonicalName test failure on Windows
[RT# 68926]
* IO::Compress::Zip
- ExtAttr now populates MSDOS attributes
2.039 28 October 2011
* IO::Compress::Zip
- Added CanonicalName option.
Note this option is set to true by default.
- Added FilterName option
* IO::Unompress::Base
- Fixed issue where setting $\ would corrupt the uncompressed data.
Thanks to Steffen Goeldner for reporting the issue.
* t/050interop-*.t
- Handle case when external command contains a whitespace
RT #71335
low level programing interface to bzip2 from the Perl programming language
as requirement for the update of devel/p5-IO-Compress to 2.040.
Upstream changes:
2.040 28 October 2011
* No Changes
2.039 28 October 2011
* croak if attempt to freeze/thaw compression object
[RT #69985]
It's a requirement for update of devel/p5-IO-Compress to 2.040.
Upstream changes:
2.040 28 October 2011
* No Changes
2.039 28 October 2011
* croak if attempt to freeze/thaw compression object
[RT #69985]
Changes from previous:
0.30 2011-09-17
- Fix a bug in the tests that caused failures with Moose HEAD. (doy)
0.29 2011-08-20
- Require namespace::clean 0.19. Tests fail with 0.18. Reported by
Ruslan Zakirov. RT #67923.
0.28 2011-08-02
- Fixed git and bug tracking info in META.{yml,json}. Reported by
Petter Rabbitson. (Dave Rolsky)
0.27 2011-06-06
- A better fix for type constraint changes in Moose 2.0100. (doy)
0.26 2011-06-05
- Small changes for forward compatibility with Moose 2.0100, when it
is released. (Dave Rolsky)
- Some small doc cleanup and improvements. (Dave Rolsky)
0.25 2010-11-30
- The test suite now uses Test::Fatal instead of Test::Exception
(Karen Etheridge).
- Modernized tests to use Test::Requires and done_testing. (Dave
Rolsky)
- MooseX::Types::Combine is a little more efficient, and only tries to
load the libraries it's combining when that list is set. It also
checks that each lib in the list actually provides types. (Dave
Rolsky).
- The MooseX::Types docs now contain a pointer to
MooseX::Types::Combine. (Dave Rolsky)
Changes from previous:
Changes for 0.22 Tue Oct 4 21:44:32 2011
============================================
* Resolve possible security problem [http://goo.gl/YzHRU]
where a '::' prefixed module can 'jump' out of @INC
Changes for 0.20 Mon Aug 1 19:13:44 2011
============================================
* Resolve [rt #69886] reported by Laurent Dami,
trailing '::' silently ignored
Changes for 0.18 Tue Mar 2 15:54:30 2010
============================================
* Documentation fix from Michael Schwern RT #55123
Changes from previous:
0.19 Sat, 10 Sep 2011 20:10:00 +0100
* Fix hooking protocol, which was broken in a way that could result in losing
checkers hooked in by other modules.
* Add MYMETA.{json,yml} to MANIFEST.SKIP and .gitignore.
* New repository location for release by Zefram.
Changes from previous:
0.42 2011-10-19 20:00:07
- Remove cc_inc_paths, which is already defined in M::I
(thanks to @shohex)
0.41 2011-10-04 12:05:54
- Complete support for requires_cplusplus()
0.40 2011-09-24 00:56:33
- ExtUtils::ParseXS is now configure_requires, instead of
build_requires (xaicron++)
0.39 2011-08-22 11:28:15
- Add cc_inc_paths() as an alias to cc_include_paths()
- Add requires_cplusplus() as an experimental feature;
currently it chnages only warnings flags
0.38 2011-06-22 15:15:37
- Workaround MacOSX's system perl failure caused by multiple -arch
for gcc (thanks to @kazuho)
0.37 2011-05-16 23:33:49
- Makefile.PL -g implices "-g -ggdb -g3" for gcc (EXPERIMENTAL)
- PERL_ONLY=1 means --pp for modules with XS/PP dual backends
0.36 Thu Oct 7 16:49:04 2010
- Resolve RT #61660 (SREZIC): Support for ccache missing
- Resolve RT #61770 (bokutin): A typo in SYNOPSIS
0.35 Wed Sep 29 23:46:17 2010
- Checks C99 specification more strictly
- Add some macros to xshelper.h
0.34 Sun Sep 26 12:18:18 2010
- Oops! The change in 0.33 did not work.
Changelog:
== 1.6.5
* HighLine#list() now correctly handles empty lists (fix by Lachlan Dowding).
* HighLine#list() now supports <tt>:uneven_columns_across</tt> and
<tt>:uneven_columns_down</tt> modes.
== 1.6.4
* Add introspection methods to color_scheme: definition, keys, to_hash.
* Add tests for new methods.
== 1.6.3
* Add color NONE.
* Add RGB color capability.
* Made 'color' available as a class or instance method of HighLine, for
instance: HighLine.color("foo", :blue)) or highline_obj.color("foo", :blue)
are now both possible and equivalent.
* Add HighLine::String class with convenience methods: #color (alias
#foreground), #on (alias #background), colors, and styles. See
lib/string_extensions.rb.
* Add (optional) ability to extend String with the same convenience methods from
HighLine::String, using Highline.colorize_strings.