summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2008-09-15Update rcairo to 1.7.0.obache3-8/+127
Release 1.7.0 (2008-08-16) Kouhei Sutou <kou@cozmixng.org>) =========================================================== Features -------- * Support cairo 1.7.4. * Add new methods: * Cairo::Context#destroy * Cairo::Surface#destroy * Cairo.satisfied_version? * Resupport ruby 1.9. (suggested by Paul van Tilburg) * Fix README. (suggested by Davide Rambaldi) ---------------------------- Release 1.6.3 (2008-07-19) Kouhei Sutou <kou@cozmixng.org>) =========================================================== Features -------- * Fix build failure on Debian GNU/Linux. (reported by James Healy) * Fix GC failure with Ruby 1.8.7. (reported by James Healy) * Improve building on MacOS X. (suggested by Carsten Bormann) * Fix install location of cairo.so. (suggested by OBATA Akio) ---------------------------- Release 1.6.2 (2008-06-14) Kouhei Sutou <kou@cozmixng.org>) =========================================================== Features -------- * Fix build failure on MacOS X. * Fix build failure on 64bit Linux. * Fix build failure with old Ruby. * Fix build failure with Ruby 1.9. ----------------------------
2008-09-15Update ruby-debug-ide package to 0.3.0.taca3-10/+7
Release Name: ruby-debug-ide 0.3.0 Notes: * Exception Breakpoint now answers with <conditionSet> instead of just <message> providing better control at frontend side * Dependency changed to ruby-debug-base-0.10.2 * Bugfixes (see ChangeLog) See http://debug-commons.rubyforge.org/protocol-spec.html
2008-09-15Update ruby-debug-base package to 0.10.2.taca3-10/+18
0.10.2 - debugger(steps=0) breaks inside of debugger rather than wait for a line event. - trace var varname (stop|nostop) added which issues trace_var. - start method is now properly defined in Debugger module - fixed 'finish' command - rdebug script now works with Ruby 1.8.7
2008-09-15Update ruby-debug package to 0.10.2.taca4-14/+30
0.10.2 - debugger(steps=0) breaks inside of debugger rather than wait for a line event. - trace var varname (stop|nostop) added which issues trace_var. - start method is now properly defined in Debugger module - fixed 'finish' command - rdebug script now works with Ruby 1.8.7
2008-09-15Update rubigen pacakge to 1.3.2.taca2-7/+6
== 1.3.2 2008-05-19 * app_gen/bin - includes #!/usr/bin/env ruby * added examples of file_copy_each and template_copy_each to generators
2008-09-15Update hoe package to 1.7.0.taca2-6/+6
=== 1.7.0 / 2008-06-30 * 3 minor enhancements: * Use rdoc 2.x gem if available. Eric likes his backslashes. * Added extra_dev_deps for new rubygems developer dependencies. * Switched hoe to dev dep. Fork off, bitches. * Finally got a sane test that does something. Hey... it's a start.
2008-09-15Update ruby-flexmock package to 0.8.3.taca3-7/+8
= Changes for FlexMock == Version 0.8.2 * Added workaround for compatibility issues with RSpec on Rails.
2008-09-15Update ruby-gettext package to 1.92.0.taca3-14/+86
= Ruby-GetText-Package-1.92.0 (2008-08-02) * Fixed a memory leak(again) * Fixed bugs. * Improve to support mo-files. * Support revision 1 of mo-file format. * Freeze msgstrs. * msgctxt - pgettext(msgctxt, msgid) support (eg) p_("File", "Open") #=> "Open" is shown in English. * Update translations * Catalan, Chinese(Simplified), Chinese(Traditional), (English), Esperanto, German, Greek, Hungarian, Latvian, Japanese, Norwegian, Portuguese(pt_BR), Russian, Serbian, Spanish, Ukrainian, Vietnamese, * Rails Support * Support rubyonrails-2.1.0 (2.0.0 or later). * Add new validations for activerecord-2.1.0. (:greater_than, :greater_than_or_equal_to, :equal_to, :less_than, :less_than_or_equal_to,:odd, :even) * validates_(format|inclusion)_of accepts %{val} as the value (eg) validates_inclusion_of :name, :in => %w(a, b), :message => N_("%{fn} can't be %{val}") * Work Fragment caching on rails-2.1.0. * Support ActiveRecord::Base.abstract_class. * Work ActiveRecord::Errors#[] * Work render_partial. Thanks to: Translators: Slobodan Paunovic, Yuri Kozlov, Patrick Lenz, Malte Milatz, Ngoc DAO Thanh, David Espada, Antonio S. de A. Terceiro, David Espada, Runar Ingebrigtsen, Tamas Tompa, Yang Bob, damphyr, Ramon Salvado, Alex Rootoff, Aivars Akots Bug reports, suggestions and patches: Hans de Graaff, Tatsuki Sugiura, Andreas Neuhaus, Loiseleur Michel = Ruby-GetText-Package-1.91.0 (2008-05-11) * Works again on Win32 + JRuby-1.1.1 * Fixed memory leaks. * Fixed bugs. * Speed up. * Support Serbian(sr) * Rails Support * rubyonrails-1.2.x isn't supported(2.0.0 or later are supported). * Localize ActionView::Helpers::FormBuilder#label. e.g.) <% form_for(@article) do |f| %> <p><%= f.label :lastupdate %></p> <% end %> => msgid "Article|Lastupdate" is used as the label string. Thanks to: Translators: Slobodan Paunovic Bug reports, suggestions and patches: Paul Clegg, Locomotyphus, Simone Carletti, Dao Ngoc, Karl Palmskog, Tatsuki Sugiura, Bernd Ahlers, craccho.
2008-09-15Update ruby-mocha package to 0.9.1.taca3-38/+69
= 0.9.1 (r349) * Fixed bug #21465 - expects & stubs should support method names as strings (as well as symbols) or fail fast. Convert all expectation method names to a symbol in case they were supplied as a string. * By removing Mock#unexpected_method_called we reduce the number of methods vulnerable to the problem that surfaced in bug #21563. * Fix bug #21563 - stubbing 'verified?' method is unsafe. Instance method names on the Mock class should be more obscure. * Performance improvement. StubbaExampleTest goes twice as fast on my local machine. * Added primitive performance test to default rake task. * Fix format of case statements which don't work in Ruby 1.9 and make others consistent. * There is no point in running (potentially expensive) checks if configuration is set to allow such checks to fail. This is a relatively quick fix in response to Chris McGrath's performance problems. * Fix for bug #21161 - 'uninitialized constant Deprecation in stubba.rb'. * It's more readable to talk about 'once' and 'twice' rather than '1 time' and '2 times'. * Fix bug #20883 - never should raise when called to prevent follow up errors. Fail fast when there are no matching invokable expectations and handle the stub_everything case sensibly. This might not be entirely backwards compatible, but I think the benefits outweigh the risks. The most likely change is that a test that was already failing will now fail faster, which doesn't seem so awful. = 0.9.0 (r316) * Configurable warnings or errors * when a method on a non-public method is stubbed * when a method on a non-existent method is stubbed * when a method on a non-mock object is stubbed * when a method is stubbed unnecessarily (i.e. the stubbed method is not called during the test) * Improved error messages * User-friendly list of unsatisfied expectations, satisfied expectations and state machines. * Improved readability of cardinality description. * Display sensible failure message for any_instance expectations e.g. "#<AnyInstance:Foo>.bar - expected calls: 1, actual calls: 0" * Parameter matchers * New to this release * optionally (allows matching of optional parameters if available) * yaml_equivalent (allows matching of YAML that represents the specified object) * responds_with (tests the quack not the duck) * Nesting of parameter matchers is now supported. * Optional block passed into mock initializer is evaluated in the context of the new mock instance and can be used as a shortcut to set up expectations. * Added JMock-style sequences for constraining the order of expected invocations. See Standalone#sequence and Expectation#in_sequence. * Added JMock-style states for constraining the order of expected invocations. See Standalone#states, Expectation#then, Expectation#when and StateMachine. * Compatibility with versions of Ruby * Compatibility with Ruby v1.9. All test errors and warnings fixed. * Nasty fix so that TestCaseAdaptor works consistently with earlier versions of Test::Unit as well as more recent versions. * Added platform to gem specification to avoid bug in rubygems 0.9.5 - see http://www.dcmanges.com/blog/rubygems-0-9-5-platform-bug and http://rubygems.org/read/chapter/20#platform. * Make ExpectationRaiser deal with subclasses of Interrupt which seem to need a message supplied in the raise statement in Ruby 1.8.6 (but not 1.8.4 or 1.9). Not sure this is really Mocha's responsibility. * Added deprecation warning in stubba.rb which is no longer needed and will be removed. * Supply positioning information to evals to improve any error messages. See http://ola-bini.blogspot.com/2008/01/ruby-antipattern-using-eval-without.html * Bug fixes * 18914 in revision 296 - http://rubyforge.org/tracker/index.php?func=detail&aid=18914&group_id=1917&atid=7477 * 18917 in revision 295 - http://rubyforge.org/tracker/index.php?func=detail&aid=18917&group_id=1917&atid=7477 * 18336 in revision 287 - http://rubyforge.org/tracker/index.php?func=detail&aid=18336&group_id=1917&atid=7477 * 17835 in revision 255 - http://rubyforge.org/tracker/index.php?func=detail&aid=17835&group_id=1917&atid=7477 * 17412 in revision 242 - http://rubyforge.org/tracker/index.php?func=detail&aid=17412&group_id=1917&atid=7477 * 15977 in revision 198 - http://rubyforge.org/tracker/index.php?func=detail&aid=15977&group_id=1917&atid=7477 * 11885 in revision 156 - http://rubyforge.org/tracker/index.php?func=detail&aid=11885&group_id=1917&atid=7477
2008-09-15Update ruby-test-spec package to 0.9.taca3-7/+11
Release Name: 0.9 Notes: * July 2nd, 2008: Fifth public release 0.9. * Allow should.<predicate>? as well as should.<predicate>. * Add shared contexts. * Nested contexts now run the setups/teardowns/before(:all)/after(:all) of their parents.
2008-09-15Update ruby-RMagick package to 2.6.0.taca3-11/+16
RMagick 2.6.0 o Fix bug #21237, Image::write ignores format attribute when called with a Tempfile pathname (bug report by Jack Shedd) o Fix bug #21897, ImageList#from_blob abends when certain corrupt JPEG images are used (bug report by Peter Szabo) o Add Image#composite_tiled, Image#composite_tiled! (ref: http://rubyforge.org/forum/forum.php?thread_id=27347&forum_id=33) o Add Image#deskew (available with ImageMagick 6.4.2-5) o Add Image#define, Image#undefine (available in ImageMagick 6.3.6) o Add Image#level_colors (available in ImageMagick 6.4.2-1) o Add Image#levelize_channel (available in ImageMagick 6.4.2-1) o Add Image#affinity, ImageList#affinity (available in ImageMagick 6.4.3-6). These methods replace Image#map and ImageList#map. o Accept DitherMethod values for the dither argument to Image#quantize, ImageList#quantize o Add the BarrelDistortion, PolynomialDistortion, ShepardsDistortion, PolarDistortion, and DePolarDistortion MagickDistortion Method enum values (available in ImageMagick 6.4.2-6) o Add the HorizontalTileVirtualPixelMethod and VerticalTileVirtualPixelMethod VirtualPixelMethod enum values (available in ImageMagick 6.4.2-6) o Add DitherMethod enum class o Added general-purpose OptionalMethodArguments class to handle ad-hoc optional arguments. o Support optional "distort:viewport" and "distort:scale" arguments to Image#distort o Support optional highlight_color and lowlight_color arguments to Image#compare_channel RMagick 2.5.2 o Add support for MergeLayer to Magick::ImageList#optimize_layers (patch #21189, submitted by Andrew Watson) o Add PowQuantumOperator argument for Image#quantum_operator (available in ImageMagick 6.4.1-9) RMagick 2.5.1 o Update Pixel#to_color to work with the new QueryMagickColorname API in ImageMagick 6.4.1-9. RMagick 2.5.0 o Added Image#add_compose_mask, #delete_compose_mask (feature #20531) RMagick 2.4.0 o Added Image#image_type= (feature #20490)
2008-09-15Update rubygems pacakge to 1.2.0.taca14-184/+94
Release 1.2.0 adds new features and fixes some bugs. New features: * RubyGems no longer performs bulk updates and instead only fetches the gemspec files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to allow RubyGems to take advantage of the new metadata updater. If a pre 1.2 remote source is in the sources list, RubyGems will revert to the bulk update code for compatibility. * RubyGems now has runtime and development dependency types. Use #add_development_dependency and #add_runtime_dependency. All typeless dependencies are considered to be runtime dependencies. * RubyGems will now require rubygems/defaults/operating_system.rb and rubygems/defaults/#{RBX_ENGINE}.rb if they exist. This allows packagers and ruby implementers to add custom behavior to RubyGems via these files. (If the RubyGems API is insufficient, please suggest improvements via the RubyGems list.) * /etc/gemrc (and windows equivalent) for global settings * setup.rb now handles --vendor and --destdir for packagers * `gem stale` command that lists gems by last access time Bugs Fixed: * File modes from gems are now honored, patch #19737 * Marshal Gem::Specification objects from the future can now be loaded. * A trailing / is now added to remote sources when missing, bug #20134 * Gems with legacy platforms will now be correctly uninstalled, patch #19877 * `gem install --no-wrappers` followed by `gem install --wrappers` no longer overwrites executables * `gem pristine` now forces reinstallation of gems, bug #20387 * RubyGems gracefully handles ^C while loading .gemspec files from disk, bug #20523 * Paths are expanded in more places, bug #19317, bug #19896 * Gem::DependencyInstaller resets installed gems every install, bug #19444 * Gem.default_path is now honored if GEM_PATH is not set, patch #19502 Other Changes Include: * setup.rb * stub files created by RubyGems 0.7.x and older are no longer removed. When upgrading from these ancient versions, upgrade to 1.1.x first to clean up stubs. * RDoc is no longer required until necessary, patch #20414 * `gem server` * Now completely matches the output of `gem generate_index` and has correct content types * Refreshes from source directories for every hit. The server will no longer need to be restarted after installing gems. * `gem query --details` and friends now display author, homepage, rubyforge url and installed location * `gem install` without -i no longer reinstalls dependencies if they are in GEM_PATH but not in GEM_HOME * Gem::RemoteFetcher now performs persistent connections for HEAD requests, bug #7973
2008-09-15Replace shbang path of files under bin directory.taca1-1/+5
2008-09-15Accept none existing directory in REPLACE_RUBY_DIRS.taca1-3/+10
2008-09-15Update ruby-json-pure pacakge to 1.1.3.taca2-6/+6
2008-07-10 (1.1.3) * Wesley Beary <monki@geemus.com> reported a bug in json/add/core's DateTime handling: If the nominator and denominator of the offset were divisible by each other Ruby's Rational#to_s returns them as an integer not a fraction with '/'. This caused a ZeroDivisionError during parsing. * Use Date#start and DateTime#start instead of sg method, while remaining backwards compatible. * Supports ragel >= 6.0 now. * Corrected some tests. * Some minor changes.
2008-09-15Update ruby-json pacakge to 1.1.3.taca2-6/+9
2008-07-10 (1.1.3) * Wesley Beary <monki@geemus.com> reported a bug in json/add/core's DateTime handling: If the nominator and denominator of the offset were divisible by each other Ruby's Rational#to_s returns them as an integer not a fraction with '/'. This caused a ZeroDivisionError during parsing. * Use Date#start and DateTime#start instead of sg method, while remaining backwards compatible. * Supports ragel >= 6.0 now. * Corrected some tests. * Some minor changes.
2008-09-15Update ruby-rd-mode pacakge to 0.6.22.taca2-8/+8
* Switch to use rubyforge.org as MASTER_SITES and HOMEPAGE. No change in this elisp file itself at all.
2008-09-15Update ruby-rdtool pacakge to 0.6.22.taca3-10/+11
* Switch to use rubyforge.org as MASTER_SITES and HOMEPAGE. Changes to 0.6.21 to 0.6.22 is unknown. = CHANGES :0.6.21 * setup.rb version up -> 3.4.1 * fix for Ruby 1.9.
2008-09-15Update ruby-rack package to 0.4.0.taca3-7/+22
== Future specification changes PLEASE NOTE: In versions of Rack LATER than 0.4, the following changes will be commited to the Rack specification: * 1xx, 204 and 304 status codes MUST not contain a Content-Type. * A valid Content-Length header MUST be provided for non 1xx, 204 and 304 responses with a Transfer-Encoding of "identity" (default). The Content-Length MUST be the same as the sum of the byte-sizes of the chunks. * The REQUEST_METHOD may be any HTTP token. Internal Rack modules have been updated to follow this behavior, but the Rack 0.4 Lint does NOT check it yet for compatibility reasons. Please update your libraries accordingly. == Changes * August 21st, 2008: Fourth public release 0.4. * New middleware, Rack::Deflater, by Christoffer Sawicki. * OpenID authentication now needs ruby-openid 2. * New Memcache sessions, by blink. * Explicit EventedMongrel handler, by Joshua Peek. * Rack::Reloader is not loaded in rackup development mode. * rackup can daemonize with -D. * Many bugfixes, especially for pool sessions, URLMap, thread safety and tempfile handling. * Improved tests. * Rack moved to Git.
2008-09-15Add scons-time to PLIST as outlined in PR pkg/39549.tonnerre1-1/+4
2008-09-15Note update of ruby-maruku.minskim2-3/+3
2008-09-15Update ruby-maruku to 0.5.9.minskim3-7/+15
New features: - Implemented DIV syntax (Jacques Distler) - Quieter operations for command-line maruku.
2008-09-15Note update of rails.minskim1-1/+2
2008-09-15Update rails to 2.1.1.minskim2-11/+11
Changes: * Fix script/about in production mode. #370 [Cheah Chu Yeow, Xavier Noria, David Krmpotic] * Add the gem load paths before the framework is loaded, so certain gems like RedCloth and BlueCloth can be frozen. * Fix discrepancies with loading rails/init.rb from gems. * Plugins check for the gem init path (rails/init.rb) before the standard plugin init path (init.rb) [Jacek Becela] * Wrapped Rails.env in StringInquirer so you can do Rails.env.development? [DHH] * Fixed that RailsInfoController wasn't considering all requests local in development mode (Edgard Castro) [#310 state:resolved]
2008-09-15Note update of ruby-actionmailer.minskim1-1/+2
2008-09-15Update ruby-actionmailer to 2.1.1 to sync with other rails packages.minskim2-7/+7
2008-09-15Note update of ruby-actionpack.minskim1-1/+2
2008-09-15Update ruby-actionpack to 2.1.1.minskim3-8/+10
Changes: * All 2xx requests are considered successful [Josh Peek] * Deprecate the limited follow_redirect in functional tests. If you wish to follow redirects, use integration tests. [Michael Koziarski] * Fixed that AssetTagHelper#compute_public_path shouldn't cache the asset_host along with the source or per-request proc's won't run [DHH] * Deprecate define_javascript_functions, javascript_include_tag and friends are much better [Michael Koziarski] * Fix polymorphic_url with singleton resources. #461 [Tammer Saleh] * Deprecate ActionView::Base.erb_variable. Use the concat helper method instead of appending to it directly. [Jeremy Kemper] * Fixed Request#remote_ip to only raise hell if the HTTP_CLIENT_IP and HTTP_X_FORWARDED_FOR doesn't match (not just if they're both present) [Mark Imbriaco, Bradford Folkens]
2008-09-15Note update of ruby-activeresource.minskim1-1/+2
2008-09-15Update ruby-activeresource to 2.1.1.minskim3-8/+9
Changes: * Fixed Base#exists? to check status code as integer [#299 state:resolved] (Wes Oldenbeuving)
2008-09-15Note update of ruby-activerecord.minskim1-1/+2
2008-09-15Update ruby-activerecord to 2.1.1.minskim3-9/+14
Changes: * Set config.active_record.timestamped_migrations = false to have migrations with numeric prefix instead of UTC timestamp. #446. * Fixed that create database statements would always include "DEFAULT NULL" [#334] * change_column_default preserves the not-null constraint. #617 * Add :tokenizer option to validates_length_of to specify how to split up the attribute string. #507. Example : # Ensure essay contains at least 100 words. validates_length_of :essay, :minimum => 100, :too_short => "Your essay must be at least %d words."), :tokenizer => lambda {|str| str.scan(/\w+/) } * Always treat integer :limit as byte length. #420 * Partial updates don't update lock_version if nothing changed. #426 * Fix column collision with named_scope and :joins. #46 * db:migrate:down and :up update schema_migrations. #369 * PostgreSQL: support :conditions => [':foo::integer', { :foo => 1 }] without treating the ::integer typecast as a bind variable. * MySQL: rename_column preserves column defaults. #466 * Add :from option to calculations. #397 * Add :validate option to associations to enable/disable the automatic validation of associated models. Resolves #301. * PostgreSQL: use 'INSERT ... RETURNING id' for 8.2 and later. * Added SQL escaping for :limit and :offset in MySQL
2008-09-15Note update of ruby-activesupport.minskim1-1/+2
2008-09-15Update ruby-activesupport to 2.1.1.minskim3-155/+158
Changes: * Fix Ruby's Time marshaling bug in pre-1.9 versions of Ruby: utc instances are now correctly unmarshaled with a utc zone instead of the system local zone [#900 state:resolved]:activesupport/CHANGELOG * TimeWithZone: when crossing DST boundary, treat Durations of days, months or years as variable-length, and all other values as absolute length. A time + 24.hours will advance exactly 24 hours, but a time + 1.day will advance 23-25 hours, depending on the day. Ensure consistent behavior across all advancing methods [Geoff Buesing] * Fix TimeWithZone unmarshaling: coerce unmarshaled Time instances to utc, because Ruby's marshaling of Time instances doesn't respect the zone [Geoff Buesing] * Added StringQuestioneer for doing things like StringQuestioneer.new("productio n").production? # => true and StringQuestioneer.new("production").development? # => false [DHH] * Fixed Date#end_of_quarter to not blow up on May 31st [#289 state:resolved] (Danger)
2008-09-15Note update of rake.minskim1-1/+2
2008-09-15Update rake to 0.8.2.minskim5-23/+27
New features: * Switched from getoptlong to optparse (patches supplied by Edwin Pratomo). * The -T option will now attempt to dynamically sense the size of the terminal. The -T output will only self-truncate if the output is a tty. However, if RAKE_COLUMNS is explicitly set, it will be honored in any case. (Patch provided by Gavin Stark). * The following public methods have been added to rake task objects: * task.clear -- Clear both the prerequisites and actions of the target rake task. * task.clear_prerequisites -- Clear all the existing prerequisites from the target rake task. * task.clear_actions -- Clear all the existing actions from the target rake task. * task.reenable -- Re-enable a task, allowing its actions to be executed again if the task is invoked. * Changed RDoc test task to have no default template. This makes it easier for the tempate to pick up the template from the environment. * Default values for task arguments can easily be specified with the :with_defaults method. (Idea for default argument merging supplied by (Adam Q. Salter)
2008-09-15Note updated of lang/ruby18-base package to 1.8.7.72nb2.taca1-1/+2
2008-09-15Fix interpreter for h2rb script.taca1-2/+3
Bump PKGREVISION.
2008-09-15Note updated of devel/fromcvs package to 0.0.0.124nb1.taca1-1/+2
2008-09-15Fix wrapper scripts togit and tohg to make it work, specifying loadtaca1-3/+4
rubygems on command line. Bump PKGREVISION.
2008-09-15Update to gerbv-2.1.0. Changes from 2.0.1 include:dmcmahill3-8/+12
* Added ability to select objects, with the option of deleting or viewing basic properties of the objects * Split off the core functionality of gerbv into a library (libgerbv) to allow developers to quickly write software using Gerber parsing/editing/exporting/rendering functionality. Full DOxygen documentation has also been created to facilitate developers wishing to use libgerbv. * Added export to RS274X and Excellon functionality, allowing gerbv to translate files between formats. The RS274X export function can also be used to "clean" troublesome files to a more compatible format. * Added the ability to override the Excellon format "guessing", allowing non-standard drill files to be correctly rendered * Greatly expanded the command line functionality, including the ability to panelize boards into a single one through the command line * Added "Aperture usage" tab to Gerber reports. This allows the user to see how often each aperture is used in all visible layers of his project. Several notable bugs were squished in release 2.1.0: * Fixed bug when exporting several layers to SVG/PDF/PS, which caused corrupted output and/or crashes * Fixed several Windows-only problems related to parsing and rendering * Fixed rendering bug when using polygon objects within step and repeat blocks * Improved RS-274X export output format to work with certain Gerber viewing software
2008-09-15Point HOMEPAGE to RubyForge's project page since previous one has gone.taca1-3/+2
2008-09-15Note initial addition of p5-Devel-Size version 0.71 as devel/p5-Devel-Sizeseb1-1/+2
into The NetBSD Packages Collection. The Perl 5 module Devel::Size figures out the real size of Perl variables in bytes, as accurately as possible.
2008-09-15Add & enable p5-Devel-Sizeseb1-1/+2
2008-09-15Initial import of p5-Devel-Size version 0.71 in the NetBSD Packagesseb3-0/+25
Collection. The Perl 5 module Devel::Size figures out the real size of Perl variables in bytes, as accurately as possible.
2008-09-15Note initial addition of p5-Devel-Events-Objects version 0.05 asseb1-1/+2
devel/p5-Devel-Events-Objects into The NetBSD Packages Collection. The Perl 5 module Devel::Events::Objects provides an event generator and a handler for Devel::Events, that facilitate leak checking. There are two components of this module: Devel::Events::Generator::Objects, and Devel::Events::Handler::ObjectTracker. The first one uses some trickery to generate events for every object creation and destruction in code loaded after it was loaded. The second one will listen on these events, and track all currently living objects.
2008-09-15Add & enable p5-Devel-Events-Objectsseb1-1/+2
2008-09-15Initial import of p5-Devel-Events-Objects version 0.05 in the NetBSDseb3-0/+37
Packages Collection. The Perl 5 module Devel::Events::Objects provides an event generator and a handler for Devel::Events, that facilitate leak checking. There are two components of this module: Devel::Events::Generator::Objects, and Devel::Events::Handler::ObjectTracker. The first one uses some trickery to generate events for every object creation and destruction in code loaded after it was loaded. The second one will listen on these events, and track all currently living objects.
2008-09-14Note initial addition of p5-Tie-RefHash-Weak version 0.08 asseb1-1/+2
devel/p5-Tie-RefHash-Weak into The NetBSD Packages Collection. The Perl 5 module Tie::RefHash::Weak is a subclass of Tie::RefHash with weak keys, instead of strong ones.
2008-09-14Add & enable p5-Tie-RefHash-Weakseb1-1/+2