3.03 to 3.05.
pkgsrc changes:
- adjust download location to distribution based directory (from author-based)
Upstream changes:
3.05 - Wed Oct 5 08:14:00 CET 2011
- No functional changes, promoted to stable release.
3.04_04 - Mon Sep 12 08:12:00 CET 2011
- Simplify generated XS code by emitting a compatibility version
of dVAR. [Nicholas Clark]
- Fixed "INCLUDE: $cmd |", CPAN RT #70213
3.04_03 - Sun Sep 4 18:49:00 CET 2011
- By #defining PERL_EUPXS_ALWAYS_EXPORT or
PERL_EUPXS_NEVER_EXPORT early in your XS code, you can
force ExtUtils::ParseXS to always or never export
XSUB symbols. This has no effect on boot_* symbols since
those must be exported.
3.04_02 - Sat Sep 3 15:28:00 CET 2011
- Don't put null characters into the generated source
file when -except is used; write the '\0' escape sequence
properly instead. [Stephen Bennett]
3.04_01 - Sun Aug 28 17:50:00 CET 2011
- The XSUB.h changes to make XS(name) use XS_INTERNAL(name)
by default (which were in the 5.15.2 dev release of perl)
have been reverted since too many CPAN modules expect to
be able to refer to XSUBs declared with XS(name).
Instead, ExtUtils::ParseXS will define a copy of the
XS_INTERNAL/XS_EXTERNAL macros as necessary going back to
perl 5.10.0 (which is the oldest perl I had for testing).
By default, ExtUtils::ParseXS will use XS_INTERNAL(name)
instead of XS(name).
3.04 - Thu Aug 25 08:20:00 CET 2011
- Stable release based on 3.03_03, no functional changes.
3.03_03 - Wed Aug 24 19:43:00 CET 2011
- Try to fix regression for input-typemap override in XS argument
list. (CPAN RT #70448)
- Explicit versions in submodules to fail early if something
goes wrong.
3.03_02 - Sun Aug 21 13:19:00 CET 2011
- Properly strip trailing semicolons form inputmaps. These could
trigger warnings (errors in strict C89 compilers) due to
additional semicolons being interpreted as empty statements.
[Torsten Schoenfeld, Jan Dubois, Steffen Mueller]
- Now detects and throws a warning if there is a CODE section using
RETVAL, but no OUTPUT section. [CPAN RT #69536]
- Uses the explicit XS_EXTERNAL macro (from perl 5.15.2 and newer)
for XSUBs that need to be exported. Defines XS_EXTERNAL to fall
back to XS where that is not available.
- Introduces new EXPORT_XSUB_SYMBOLS XS keyword that forces exported
XSUB symbols. It's a no-op on perls before 5.15.2.
Changes from previous:
1.58 Sat Jul 2 15:58:46 2011
* Added prereq on Path::Class (RT #68360).
* Doc fixes by Nicholas Bamber and Salvatore Bonaccorso (RT #68385).
1.57 Tue Apr 12 11:07:01 IDT 2011
* No functional changes.
* Removing English from unnecessary tests that confuse a tester.
1.56 Thu Apr 7 17:01:11 IDT 2011
* No functional changes, productionizing.
1.55_01 Fri Jun 11 16:56:00 IDT 2010
Special thanks goes to Andy Lester, who has been, still is and
will remain an inspiration to many programmers, myself included.
[ENHANCEMENTS]
Added hooks for distribution building in App. Thanks to brian d foy.
MANIFEST is now created via the proper builder.
Kept create_MANIFEST to act as hook.
Added Apache license by pfig.
* [RT #53539] Refactoring, adding hooks, described above.
(Patch provided by brian d. foy)
* [RT #27304] Minimal version of perl (5.006)
(Patch provided by Alexandr Ciornii)
* [RT #53339] ::Simple uses the builder to create the MANIFEST
* Moved repository to Github
* Some more refactoring in Simple::create_builder()
Changes from previous:
1.12 Fri Sep 4 19:00 2011
- Reclaim compatibility with the most recent versions of
ExtUtils::ParseXS.
- Explicit tests for wrong-type invocants.
0.006 to 0.008.
Upstream changes (since 0.006):
0.008 2011-11-06 21:10:14 America/New_York
no changes since 0.007
0.007 2011-10-31 23:22:47 America/New_York
revert the mistake by which 0.004 allowed blocks after "exception" as
well as "success"
to update www/p5-HTML-FormFu.
The MooseX::Aliases module will allow you to quickly alias methods in
Moose. It provides an alias parameter for has() to generate aliased
accessors as well as the standard ones. Attributes can also be
initialized in the constructor via their aliased names.
from 0.6.1 to 0.7.0.
pkgsrc changes:
- fix dependencies (see changelog of last commit - upstream dependencies
changed, adam@ forgot to adapt)
Upstream changes:
0.7.0 2011-11-12
[ENHANCEMENTS]
- 'git cpan-init' now accepts a '--vcs' argument
- new command 'git cpan-sources'
in devel/p5-Class-Load from 0.11nb1 to 0.12.
pkgsrc changes:
- adjust dependencies according to module information
Upstream changes:
0.12 2011-10-25
- Depend on Module::Runtime 0.011+. This fixes problems with Catalyst under
Perl 5.8 and 5.10.
in devel/p5-Module-Runtime from 0.010 to 0.011
Upstream changes:
version 0.011; 2011-10-24
* bugfix: in require_module() and use_module(), work around a Perl
core bug affecting Perl 5.8 and 5.10 that could pass the wrong
context to the file scope of a required file, which breaks some
modules; this bug would only rarely afflict the core's require()
in situations where it would afflict require_module()
in devel/p5-Params-Classify from 0.011nb1 to 0.013
Upstream changes:
version 0.013; 2010-11-16
* bugfix: avoid triggering a core assertion on debugging builds,
by using OP_NULL as a stalking-horse opcode instead of OP_PUSHMARK
(nothing actually broke apart from the assertion)
* provide reserve definition of Newx(), to allow compilation on
non-threaded Perls prior to 5.8.8
* avoid a compiler warning from the reserve implementation of the
ptr_table data structure
version 0.012; 2010-11-03
* generate custom ops for most functions, to avoid heavyweight function
calls at runtime
* change "please update me" messages to "please update Params::Classify"
for clarity
* use shared SVs for return values from scalar_class() and ref_type()
* allow is_able() and check_able() to be called with only one argument
* change message generated by check_strictly_blessed() when called
with only one argument, to be consistent between XS and pure Perl
* refactor some Perl version portability code
* in XS, declare "PROTOTYPES: DISABLE" to prevent automatic generation
of unintended prototypes
* jump through hoops to avoid compiler warnings
* in t/setup_pp.pl, avoid a warning that occurs if XSLoader::load()
is given no arguments, which is now a valid usage
devel/p5-Method-Signatures to let developers use new keywords func and
methods when writing scripts or modules for the Perl programming language.
This package is a dependency of scheduled update of devel/p5-Git-CPAN-Patch
to 0.7.0.
Method::Signatures provides two new keywords, func and method, so that you
can write subroutines with signatures instead of having to spell out my
$self = shift; my($thing) = @_
* func is like sub but takes a signature where the prototype would normally
go. This takes the place of my($foo, $bar) = @_ and does a whole lot more.
* method is like func but specifically for making methods. It will
automatically provide the invocant as $self. No more my $self = shift.
Also allows signatures, very similar to Perl 6 signatures.
Also does type checking, understanding all the types that Moose (or Mouse) would understand.
And it does all this with no source filters.
as dependency of scheduled import of devel/p5-Method-Signatures (required
for scheduled update of package for Git::CPAN::Patch Perl module).
Devel::BeginLift 'lifts' arbitrary sub calls to running at compile
time - sort of a souped up version of "use constant". It does this
via some slightly insane perlguts magic.
into devel/p5-B-Hooks-OP-Check-EntersubForCV, 'cause it's an indirect
dependency for scheduled update of Git-CPAN-Patch-0.7.0 (via
devel/p5-MetaCPAN-API).
B::Hooks::OP::Check::EntersubForCV - Invoke callbacks on construction of
entersub OPs for certain CVs
devel/p5-Devel-Declare from 0.006007 to 0.006008.
pkgsrc changes:
- adjust dependencies
Upstream changes:
0.006008 - 05 Nov 2011
- Adjust toke_scan_str logic to always leave the prefix part of
linestr unchanged.
devel/p5-Devel-Pragma. This is an indirect dependency of scheduled update
of devel/p5-Git-CPAN-Patch to 0.7.0
This module provides helper functions for developers of lexical pragmas.
These can be used both in older versions of perl (from 5.8.1), which have
limited support for lexical pragmas, and in the most recent versions,
which have improved support.
devel/p5-MetaCPAN-API as dependency for scheduled update of
devel/p5-Git-CPAN-Patch
This is a hopefully-complete API-compliant interface to MetaCPAN
(https://metacpan.org) with DWIM capabilities.
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.
Changes from previous:
0.03 - Dec 18, 2010
- The test suite now uses Test::Fatal instead of Test::Exception (Karen
Etheridge).
- Fix bug reported by Strayph in #moose with inheritance RT#63624 (perigrin)
- Add repository metadata
- Fix RT#57023, RT#49369.
package is required to update www/p5-Catalyst-Plugin-Server.
This module is a very optimized version of Clone::More. By taking
advantage of one of Clone::More's 'OPTIMIZATION_HACKS' as well as
removing all the Pure Perl from the "More.pm"
Changes from previous:
0.103004 2011-11-02 21:44:26 America/New_York
update FSF's address
0.103003 2011-10-31 23:14:47 America/New_York
use more direct links to GFDL 1.2 and 1.3
0.103002 2011-06-01 22:34:06 America/New_York
add GFDL 1.3
0.103001 2011-04-28 07:20:39 America/New_York
re-import text of GPL 1 and 2 to get new FSF address (RT #67795)
0.103000 2011-03-31 22:31:03 America/New_York
improve method dependency chains (thanks, Flavio Poletti)
add Custom license to stick the whole license in a file
-- still probably a bit experiemental -- thanks, Flavio Poletti
0.102341 2010-12-11 10:22:56 America/New_York
add note to Artistic 2 that it's GPL compatible
Changes from previous:
[Changes for 0.29 2011-05-20]
* add requires_rt to handle requiring an RT version
since MakeMaker and Module::Install::AutoInstall can't deal
with RT version numbers.
[Changes for 0.28 2011-03-15]
* search /opt/rt4 for RT.pm
[Changes for 0.27 2010-12-16]
* Include RT's lib/ directory in INC so that requires()
on RT::VERSION work properly
[Changes for 0.26 2010-12-14]
* Search RTHOME before searching @INC
This works around distribution packages lurking in @INC
Change from previous:
0.07 Mon, 04 Apr 2011 18:08:34 +0200
* Allow this module to be used with attributes in roles when using Moose
1.9900+ (Dave Rolsky).
* Fix propagation of failure from pre and post hooks and from fixups.
* Support chaining to absolute paths.
* Add support for skip = lazy, a mode where mr only operates on
repositories that are checked out.
Libthrift requires sys/socket.h to build on DragonFly and likely
other systems as well. Patch provided with PR was tested on DragonFly
2.13 and NetBSD 5.99 (both x86_64).