Commit graph

161224 commits

Author SHA1 Message Date
drochner
ad8b1141cc fix a bug in optimizer code which is used by some cable drivers to
reduce the number of transactions which resulted in a wrong TDO
picked up under some circumstances
being here, quell a warning in the usbprog driver which only tells
us what we already know, and improve an error message
bump PKGREVISION
2010-08-03 15:22:27 +00:00
seb
31ab7a5d85 Updated devel/p5-MooseX-Method-Signatures to 0.35 2010-08-03 12:39:02 +00:00
seb
2dd1c1b914 Update p5-MooseX-Method-Signatures from version 0.30 to version 0.35.
Pkgsrc changes:
- Adjust dependencies

Upstream changes:
0.35  Mon, 19 Jul 2010 05:50:08 +0200
  * Updated to avoid warnings from Moose 1.09 (Dave Rolsky).
  * Switch from Module::Install to Dist::Zilla.

0.34  Tue, 08 Jun 2010 14:00:00 -0300
  * Provides a version of reify that replaces the original version and
    now finally CatalystX::Declare and MooseX::MultiMethods work.

0.33  Thu, 01 Jun 2010 13:47:34 -0300
  * CatalystX::Declare seems to create a method object without a code
    reference at all.

0.32  Thu, 01 Jun 2010 13:47:34 -0300
  * Detect usage of old MXMS::Meta::Method API and retro-compatibilize.

0.31  Thu, 01 Jun 2010 13:47:34 -0300
  * Add support for "does" as a trait declarator
  * Compatibilize MXMS::Meta::Method signature with Class::MOP::Method
    so other traits can apply customizations to the actual body of the
    method.
2010-08-03 12:38:23 +00:00
obache
07784d99bd Updated security/ruby-oauth to 0.4.1 2010-08-03 07:06:57 +00:00
obache
2fb23ca4df Update ruby-oauth to 0.4.1.
== 0.4.1 2010-06-16

* Added support for using OAuth with proxies (Marsh Gardiner)
* Rails 3 Compatibility fixes (Pelle Braendgaard)
* Fixed load errors on tests for missing (non-required) libraries
2010-08-03 07:06:45 +00:00
obache
9bbe6a66a0 Updated net/ruby-twitter-stream to 0.1.7 2010-08-03 06:31:58 +00:00
obache
0347fb1468 Update ruby-twitter-stream to 0.1.7.
Add support for OAuth using roauth.
2010-08-03 06:31:45 +00:00
obache
bea8a6067c + ruby-soauth, ruby-roauth 2010-08-03 05:03:41 +00:00
obache
726e6e9356 Added security/ruby-roauth version 0.0.2 2010-08-03 05:01:54 +00:00
obache
26471fda24 Import ruby-roauth-0.0.2 as security/ruby-roauth.
Based on SOAuth: security/ruby-soauth

A *simple* Ruby OAuth library that supports OAuth header signing, and header
verifying.
2010-08-03 05:01:41 +00:00
obache
e4f1f07fae Added security/ruby-soauth version 0.2 2010-08-03 04:55:26 +00:00
obache
b2f9f26ead Import ruby-soauth-0.2 as security/ruby-soauth.
## The "S" is for "Signs" ##

*SOAuth* is a Ruby library that **creates HTTP headers for OAuth Authorization**
using previously-obtained OAuth keys/secrets.  Useful if you want to make your
own HTTP request objects instead of using the ones created for you using the
[commonly-used OAuth gem](security/ruby-oauth).

It should be noted that this was developed without edge cases in mind -- it was
pretty much abstracted from my "by-hand" signing of OAuth requests in [Prey
Fetcher](http://preyfetcher.com), so don't consider it production-quality code
(though it [is running in production](http://preyfetcher.com)).
2010-08-03 04:55:10 +00:00
seb
9bbc43430d Updated devel/p5-App-cpanminus to 1.0010 2010-08-03 04:28:52 +00:00
seb
2d41cf67f5 Update p5-App-cpanminus from version 1.0006 to version 1.0010.
Upstream changes:
1.0010  Fri Jul 30 12:54:03 PDT 2010
   - Make --skip-installed as default
   - Revised documentations
2010-08-03 04:27:08 +00:00
obache
689abd98f3 Updated devel/ruby-mocha to 0.9.8 2010-08-03 02:56:44 +00:00
obache
f4a8408636 Update mocha to 0.9.8.
= 0.9.8 (645024765b2d92018efc511652e1174163844e39)
* Fixed bug "NameError raised when using Mocha as a Rails plug-in" -
  http://floehopper.lighthouseapp.com/projects/22289/tickets/53. Since 0.9.6 the
  Rails plugin has been broken. See bug report for details. You will need to
  explicitly load Mocha *after* the test framework has been loaded, e.g. by
  adding "require 'mocha'" at the bottom of test/test_helper.rb.
* Make Mocha::ParameterMatchers#regexp_matches, #includes, #has_value, #has_key
  more robust. Thanks to Sander Hartlage.
* Allow passing a block to Mocha::Configuration methods to only change
  configuration for the duration of the block. Thanks to Dan Manges.
* Fixed bug "doc generation fails in 0.9.7 gem" -
  http://floehopper.lighthouseapp.com/projects/22289/tickets/51.
* Remove rdoc template incorporating google analytics from source control. The
  file just needs to exist locally and be ignored by source control. This should
  stop the warning showing up on e.g. RunCodeRun build results.

= 0.9.7 (80d816f250dc13aaf856f3f9cbd97ebe9c371839)
* Although I had provided a deprecation warning for people using
  Mocha::Standalone, I had assumed people wouldn't be explicitly loading the
  mocha/standalone.rb file. It turns out this assumption was incorrect at least
  in the case of Rspec. This is now fixed.

= 0.9.6 (57f8f77d715b7f1d9efee2e1a9438f7905c0006b)
* Version 2.0.1 of the test-unit gem introduced a private 'run_test' method on
  TestCase which clashed with the public TestRunner#run_test method. So this
  latter method has been renamed to 'run_as_test'.
* Stop requiring rubygems - this should be an environmental choice for the user.
  http://gist.github.com/54177 - describes why requiring rubygems in your
  library code is a bad idea.
* It seems like overkill to vendorize coderay and meta_project when they're only needed to generate the examples for documentation and for publishing files on RubyForge. So I'm removing them and installing them locally as gems when I need them.
* Added support for 'test-unit' gem (version >= 2.0). Note that as with other
  versions of Test::Unit I'm completely replacing the TestCase#run method.
  Unfortunately in version 2.0.0 this method differs slightly from the same
  method in version 2.0.1 & 2.0.2, so we have to provide different
  implementations to ensure that the internal working of Test::Unit are not
  compromised by Mocha. Note also that unless the 'test-unit' gem is loaded,
  requiring 'test/unit' leads to a mixture of stdlib and gem classes being
  loaded causing errors. To avoid a dependency on rubygems, the gem is loaded
  only if MOCHA_OPTIONS is set to 'use_test_unit_gem' - this option is only
  intended for use in running Mocha's own tests. It might be worthwhile to
  create a shim gem like minitest_tu_shim to allow the test-unit gem to
  completely replace the stdlib, but that's a job for another day. The changes
  in the Rakefile are to make the default task run with the 'test-unit' gem
  (version >= 2.0).
* Renamed Mocha::Standalone to Mocha::API to better reflect its purpose. Added a
  deprecation warning for those who are referencing Mocha::Standalone.
* Fix exception raised by HasEntry#matches? if first param is not a Hash (thanks
  to Taylor Barstow).
* Ken Collins reported [1] that Mocha is always loading MiniTest if it is
  available and loading it causes some Rails/ActionPack tests to break. I've
  removed the loading of MiniTest, but this now means the user has to ensure
  that if they want to use MiniTest in conjunction with Mocha, he must load
  MiniTest before loading Mocha.
  [1] http://rails.lighthouseapp.com/projects/8994-ruby-on-rails/tickets/2060
* Implemented Bacon integration (thanks to Ubiratan Pires Alberton), but this
  was then removed after deciding only to maintain integration with Test::Unit
  and MiniTest which are both Ruby standard libraries. See mailing list for
  details.
* Don't monkey-patch MiniTest if it's already been monkey-patched by Mocha.
* Fixed bug: MiniTest integration was counting ExpectationErrors as errors not
  failures. http://floehopper.lighthouseapp.com/projects/22289-mocha/tickets/41.
* Fixed bug: Some Bacon tests were failing in Ruby 1.9.1.
  http://floehopper.lighthouseapp.com/projects/22289-mocha/tickets/43.
* Chad Humphries pointed out that in Ruby 1.9.1, if you are not using Test::Unit
  or MiniTest, Mocha will attempt to load and monkey-patch Test::Unit. Mocha
  will now only monkey-patch Test::Unit and/or MiniTest if they have already
  been loaded. MiniTest tests will now run in both Ruby 1.8.6 (with MiniTest
  gem) and in Ruby 1.9.1 (with MiniTest std lib). See Ligthouse ticket -
  http://floehopper.lighthouseapp.com/projects/22289/tickets/49.
* Made Mocha compatible with minitest 1.4.0 and above (thanks to Denis Defreyne).

= 0.9.5 (93cad010345ce5d68f31422cfc32ed9dd6de13ec)
* Fixed Lighthouse bug #32 - stub_everything should mean mock responds to
  anything.
* Added Expectation#twice to improve readability. Thanks to pull request from
  Celestino Gomes.
* In Ruby 1.9.1, requiring 'test/unit' loads a thin wrapper around MiniTest and
  Test::Unit::TestCase ends up inheriting from MiniTest::Unit::TestCase. So we
  need to avoid including the Mocha modules more than once to avoid nasty
  consequences. Thanks to Matthias Hennemeyer for help with this.
* Ruby 1.9 includes rake, but not rake/contrib. For the moment I've moved the
  sshpublisher require into the only rake task that needs it, so that I can at
  least run the tests in Ruby 1.9. It looks like I will need to build a
  rake/contrib gem or similar to get this working properly -
  http://intertwingly.net/blog/2008/01/07/Rake-Contrib-for-1-9

= 0.9.4 (8a59c6ff0f99f34b02bd99f19536a7893be2b340)
* Added mocha.gemspec file generated with Chad Woolley's new rake task, so that
  a floehopper-mocha gem will get built on GitHub.
* Add rake task to update mocha.gemspec with unique version, which will cause
  gem to be auto-built on github
* As Tobias Crawley correctly pointed out in feature request #23055
  "stubs(with_hash) not working with existing object" [1], following the
  principle of least surprise, it should be possible to call
  ObjectMethods#expects & ObjectMethods#stubs with a Hash of method_names vs
  return_values like you can with Mock#expects & Mock#stubs. I've also updated &
  improved the docs to reflect the changes.
  [1] http://rubyforge.org/tracker/index.php?func=detail&aid=23055&group_id=1917&atid=7480
* Removed deprecated gem autorequire.

= 0.9.3 (8219bb2d2881c8529c93fc21e97a11d01203c759)
* Added support for MiniTest thanks to Jeff Smick.
* Fixed a possible bug with some of the non-default Configuration options
  relating to the argument to Object#respond_to?
* As per Jay Fields recommendations [1] and with further impetus from a talk at
  Ruby Manor, any methods added to core classes are now added by including a
  module. This means that Mocha is a better citizen of the Ruby world and it's
  behaviour is more easily extended.
  [1] http://blog.jayfields.com/2008/07/ruby-underuse-of-modules.html &
      http://blog.jayfields.com/2008/07/ruby-redefine-method-behavior.html
* Removed deprecated gem autorequire.

= 0.9.2 (r355)
* Improved documentation to address [#22530] 'Mock methods with multiple return
  values not possible?'
* respond_with parameter matcher was not available in tests.
* Patch [#22630] Fix for a bug in running Rails tests with Ruby 1.8.7.
  Array#flatten was being called which in turn was checking whether each element
  responded to #to_ary. This check was using the two parameter version of
  #respond_to?, but Mock was only defining a one parameter version.
2010-08-03 02:56:32 +00:00
pooka
307722e034 Update qemu dependecy to 0.12.3nb2, since earlier versions contain
a bug which causes fork from a threaded program to deadlock (this
is exercised heavily by the tests executed by "anita test").
2010-08-02 14:30:36 +00:00
lukem
4473e7aac6 Add a MESSAGE reminding upgraders to add LoadModule entries since Apache 2.2.16. 2010-08-02 10:38:16 +00:00
drochner
5e208a58f8 modify the youtube video request URI so that it works again
(this was by try&error, does anybody know more about the protocol?)
bump PKGREVISION
2010-08-02 10:24:33 +00:00
drochner
944d9ac69f "gfloppy" doesn't exist anymore, not even for Linux, from
Matthias Ferdinand per pkgsrc-users
2010-08-02 09:07:55 +00:00
dholland
22213890dd R-DAAG 2010-08-02 09:01:32 +00:00
dholland
4c271e2952 bump PKGREVISION for yesterday's fix (PR 42507) 2010-08-02 09:01:01 +00:00
wiz
ef848f4549 + sslh. 2010-08-02 07:06:44 +00:00
wiz
b0dcdb1896 Add RCS Id. 2010-08-02 07:06:04 +00:00
wiz
4f1e4e81f3 Add comment, using commit message. 2010-08-02 07:05:09 +00:00
obache
b0ec17e8b1 Updated net/msdl to 1.2.7r2 2010-08-02 04:50:24 +00:00
obache
59f01025e7 Update msdl to 1.2.7r2.
Version 1.2.7-r2.
-- msdl
	* 15th release
	* bugfix release for stdout "-o -" when target url contains no filename.
2010-08-02 04:49:55 +00:00
sno
9c6773dccb Updating devel/p5-SVN-Class from 0.15 to 0.16
Upstream changes:
0.16    02 April 2010
        * fix temp commit message file path for Windows.
          See https://rt.cpan.org/Ticket/Display.html?id=54969
2010-08-01 21:14:37 +00:00
sno
f1e835053a Updated devel/p5-Test-LeakTrace to 0.13 2010-08-01 21:10:45 +00:00
sno
ec87f2fb52 Updating devel/p5-Test-LeakTrace from 0.11 to 0.13
pkgsrc changes:
- add module type
- remove x-bit from module files

Upstream changes:
0.13 Sun Aug  1 15:17:23 2010
    - Fix tests for older perls

0.12 Sun Aug  1 15:11:34 2010
    - Use ">= 0", instead of "== 0" for no_leaks_ok()
    - Add count_sv() to count all the SVs in a perl interpreter
2010-08-01 21:10:34 +00:00
sno
49b7e9a4ef Updated math/p5-Set-Infinite to 0.65 2010-08-01 21:05:49 +00:00
sno
3ef8cf7171 Updating math/p5-Set-Infinite from 0.63nb1 to 0.65
pkgsrc changes:
- add license definition

Upstream changes:
0.65   2010-04-26
- documentation fix

0.64   2010-04-26
- s/simmetric/symmetric/
  reported by Richard Jelinek
2010-08-01 21:05:37 +00:00
sno
47f54d2dc6 Updated math/p5-Excel-Template to 0.32 2010-08-01 21:02:47 +00:00
sno
65dabbc91f Updating math/p5-Excel-Template from 0.31 to 0.32
pkgsrc changes:
- adjust dependencies
- remove executable file bits from perl modules
- adjust installer type

Upstream changes:
0.32 Mon Jul  5 18:58:05 CEST 2010
    Official release for development release 0.31_1

0.31_1 Mon Jun 28 16:51:44 CEST 2010
    - Add autofilter to worksheet
    - Swichting to Module::Install
2010-08-01 21:02:36 +00:00
darcy
8fdc61bf7b Add missing category tp postgresql84-pgcrypt package. 2010-08-01 20:59:03 +00:00
sno
f6ad7845ce Updated math/p5-Spreadsheet-Read to 0.40 2010-08-01 20:54:45 +00:00
sno
298c1ee139 Updating math/p5-Spreadsheet-Read from 0.39 to 0.40
pkgsrc changes:
- add license definition
- adjust dependencies

Upstream changes:
0.40	Wed 31 Mar 2010
    - Default option for clip fixed (RT#56151 - Alan James)
2010-08-01 20:54:34 +00:00
sno
f7100e3d07 Updated time/p5-Calendar-Simple to 1.21 2010-08-01 20:41:22 +00:00
sno
30d8e7f6c7 Updating time/p5-Calendar-Simple from 1.20nb1 to 1.21
pkgsrc changes:
- add license definition
- don't require a c compiler
- remove executable bits from installed modules

Upstream changes:
2010-04-02  Dave Cross <dave@angel.mag-sol.com>
  * Build.PL: Remove signing.
  * lib/Calendar/Simple.pm: Bump to version 1.21 for release.
  * t/no_dt.t: Patch to fix tests under 5.11.0+. Thanks to Ruslan Zakirov.
2010-08-01 20:41:10 +00:00
sno
291b18185d Updated time/p5-Time-Piece to 1.20 2010-08-01 20:36:01 +00:00
sno
65be162509 Updating time/p5-Time-Piece from 1.19 to 1.20
Upstream changes:
1.20
    - Fix for alloca broke Solaris
    - Fixed documentation buggette about strptime
    - Added ->pretty() method for Time::Seconds objects
	- Add %s support to strptime
2010-08-01 20:35:49 +00:00
sno
57a4568495 Updated time/p5-Time-HiRes to 1.9721 2010-08-01 20:33:41 +00:00
sno
701d3b45b0 Updating time/p5-Time-HiRes from 1.9720 to 1.9721
Upstream changes:
1.9721 [2010-03-17]
	- Address [rt.cpan.org #54196] alarm and ularm return values are bogus,
	  additional fix from Gisle Aas
	- Address [rt.cpan.org #55665] "Bad plan" on Windows,
	  report and fix from Jan Dubois
2010-08-01 20:33:29 +00:00
sno
8db392b242 Updated time/p5-Time-Clock to 1.02 2010-08-01 20:30:08 +00:00
sno
b7128eb458 Updating time/p5-Time-Clock from 1.00 to 1.02
Upstream changes:
1.02 (06.15.2010) - John Siracusa <siracusa@gmail.com>
    * Fixed test failures on systems without Time::HiRes.

1.01 (06.03.2010) - John Siracusa <siracusa@gmail.com>
    * Prevent parse failure on greater-than-nanoseconds precision.
      (The extra precision is discarded.)
2010-08-01 20:29:56 +00:00
sno
29868bec34 Updated math/p5-Math-BaseCnv to 1.6 2010-08-01 20:26:55 +00:00
sno
396a6ab917 Updating math/p5-Math-BaseCnv from 1.4.75 to 1.6
pkgsrc changes:
- add license definition
- adjust regex for removing instant time point in version number

Upstream changes:
    - 1.6.A6FGHKE Tue Jun 15 16:17:20:14 2010
      * bumped minor version number so they'll keep ascending (without PT
      comprehension)
2010-08-01 20:26:44 +00:00
sno
5be6e967d7 Updated devel/p5-Capture-Tiny to 0.08 2010-08-01 20:05:58 +00:00
sno
5517a5c861 Updating devel/p5-Capture-Tiny from 0.07 to 0.08
Upstream changes:
0.08 Sun Jun 20 19:13:19 EDT 2010
  Fixed:
  - Exceptions in captured coderef are caught, then handles are restored
    before the exception is rethrown (RT #58208)
2010-08-01 20:05:46 +00:00
sno
a84920b916 Updated databases/p5-ORLite-Migrate to 1.07 2010-08-01 20:02:09 +00:00