Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (18m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 13:38:03 UTC Now

2010-08-03 04:55:26 UTC MAIN commitmail json YAML

Added security/ruby-soauth version 0.2

(obache)

2010-08-03 04:55:10 UTC MAIN commitmail json YAML

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)).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2010-08-03 04:28:52 UTC MAIN commitmail json YAML

Updated devel/p5-App-cpanminus to 1.0010

(seb)

2010-08-03 04:27:08 UTC MAIN commitmail json YAML

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

(seb)

2010-08-03 02:56:45 UTC MAIN commitmail json YAML

Updated devel/ruby-mocha to 0.9.8

(obache)

2010-08-03 02:56:32 UTC MAIN commitmail json YAML

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.

(obache)

2010-08-02 14:30:36 UTC MAIN commitmail json YAML

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").

(pooka)

2010-08-02 10:38:16 UTC MAIN commitmail json YAML

Add a MESSAGE reminding upgraders to add LoadModule entries since Apache 2.2.16.

(lukem)

2010-08-02 10:24:33 UTC MAIN commitmail json YAML

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

(drochner)

2010-08-02 09:07:55 UTC MAIN commitmail json YAML

"gfloppy" doesn't exist anymore, not even for Linux, from
Matthias Ferdinand per pkgsrc-users

(drochner)

2010-08-02 09:01:32 UTC MAIN commitmail json YAML

2010-08-02 09:01:01 UTC MAIN commitmail json YAML

bump PKGREVISION for yesterday's fix (PR 42507)

(dholland)

2010-08-02 07:06:44 UTC MAIN commitmail json YAML

2010-08-02 07:06:04 UTC MAIN commitmail json YAML

2010-08-02 07:05:09 UTC MAIN commitmail json YAML

2010-08-02 04:50:25 UTC MAIN commitmail json YAML

Updated net/msdl to 1.2.7r2

(obache)

2010-08-02 04:49:55 UTC MAIN commitmail json YAML

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.

(obache)

2010-08-01 21:14:37 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 21:10:45 UTC MAIN commitmail json YAML

Updated devel/p5-Test-LeakTrace to 0.13

(sno)

2010-08-01 21:10:34 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 21:05:49 UTC MAIN commitmail json YAML

Updated math/p5-Set-Infinite to 0.65

(sno)

2010-08-01 21:05:37 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 21:02:48 UTC MAIN commitmail json YAML

Updated math/p5-Excel-Template to 0.32

(sno)

2010-08-01 21:02:36 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 20:59:04 UTC MAIN commitmail json YAML

Add missing category tp postgresql84-pgcrypt package.

(darcy)

2010-08-01 20:54:46 UTC MAIN commitmail json YAML

Updated math/p5-Spreadsheet-Read to 0.40

(sno)

2010-08-01 20:54:34 UTC MAIN commitmail json YAML

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)

(sno)

2010-08-01 20:41:22 UTC MAIN commitmail json YAML

Updated time/p5-Calendar-Simple to 1.21

(sno)

2010-08-01 20:41:11 UTC MAIN commitmail json YAML

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.

(sno)

2010-08-01 20:36:01 UTC MAIN commitmail json YAML

Updated time/p5-Time-Piece to 1.20

(sno)

2010-08-01 20:35:49 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 20:33:41 UTC MAIN commitmail json YAML

Updated time/p5-Time-HiRes to 1.9721

(sno)

2010-08-01 20:33:30 UTC MAIN commitmail json YAML

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

(sno)

2010-08-01 20:30:08 UTC MAIN commitmail json YAML

Updated time/p5-Time-Clock to 1.02

(sno)

2010-08-01 20:29:56 UTC MAIN commitmail json YAML

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.)

(sno)

2010-08-01 20:26:55 UTC MAIN commitmail json YAML

Updated math/p5-Math-BaseCnv to 1.6

(sno)

2010-08-01 20:26:44 UTC MAIN commitmail json YAML

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)

(sno)

2010-08-01 20:05:58 UTC MAIN commitmail json YAML

Updated devel/p5-Capture-Tiny to 0.08

(sno)

2010-08-01 20:05:46 UTC MAIN commitmail json YAML

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)

(sno)

2010-08-01 20:02:09 UTC MAIN commitmail json YAML

Updated databases/p5-ORLite-Migrate to 1.07

(sno)

2010-08-01 20:01:58 UTC MAIN commitmail json YAML

Updating databases/p5-ORLite-Migrate from 1.06 to 1.07

pkgsrc changes:
- adjust dependencies

Upstream changes:
1.07 Thu 25 Mar 2010
- Updating Module::Install::DSL to 0.95
- Fixed #46999 - Fixing the IPC::Run3 error checks to actually work
  (Bug report and patch provided by Troels Liebe Bentsen)

(sno)

2010-08-01 19:57:48 UTC MAIN commitmail json YAML

Updated databases/p5-ORLite to 1.44

(sno)

2010-08-01 19:57:36 UTC MAIN commitmail json YAML

Updating databases/p5-ORLite from 1.42 to 1.44

Upstream changes:
1.44 Fri 23 Jul 2010
- Upgrading to Module::Install::DSL 1.00 (ADAMK)
- Adding the per-table table_info method to get the columns (ADAMK)
- Adding tests for the per-table metadata methods (ADAMK)

1.43 Mon 10 May 2010
- Ensure 100% of tables and columns are quoted correctly (ADAMK)

(sno)

2010-08-01 19:43:15 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Class to 0.35

(sno)

2010-08-01 19:43:03 UTC MAIN commitmail json YAML

Updating devel/p5-Test-Class from 0.34 to 0.35

Upstream changes:
0.35 - or the "Yay! Open Source For The Win!" release [2010-04-28]
    -  Introducing Ovid & Mark Morgan in "Folk with commit bits who aren't
        afraid to use them!"
    -  Add repository information to the META.yml (via Build.PL).
    -  Add dates to all releases in Change file.  This resolves RT#45581
    -  If extra tests are found in the test control methods, report the
        class name along with the method name.

(sno)

2010-08-01 19:39:35 UTC MAIN commitmail json YAML

Updated devel/p5-Test-CheckManifest to 1.22

(sno)

2010-08-01 19:39:24 UTC MAIN commitmail json YAML

Updating devel/p5-Test-CheckManifest from 1.21 to 1.22

Upstream changes:
1.22  Thu Jul 29 2010
      + fix a bug that appears when there is no MANIFEST.SKIP

(sno)

2010-08-01 19:36:51 UTC MAIN commitmail json YAML

Updated devel/p5-Term-ReadLine to 1.20

(sno)

2010-08-01 19:36:40 UTC MAIN commitmail json YAML

Updating devel/p5-Term-ReadLine from 1.19nb1 to 1.20

pkgsrc changes:
- adding license definition

Upstream changes:
1.20  2010-05-02
- Make a copy of the environment variable array to stop
          segmentation faults on some systems (ex. FreeBSD)
- t/readline.t skip the test of rl_readline_version for GNU
  Readline Library 6.1 which may return a wrong value
- readline-6.1 support
    new function
rl_free_keymap (disabled due to readline-6.1 bug)
    new variable
rl_filename_rewrite_hook (not supported yet)

(sno)

2010-08-01 19:00:46 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Reporter to 1.5700

(sno)

2010-08-01 19:00:35 UTC MAIN commitmail json YAML

Updating devel/p5-Test-Reporter from 1.5600 to 1.57

Upstream changes:
1.57      2010-03-26 00:13:18 EST5EDT

        - Includes full 'perl -V' output, not just Config::mychanges

        - Adds new 'X-Test-Reporter-Perl' header with Perl version
          and optional "RCx" suffix to positively identify tests from
          RC Perls

        - Minimum perl version is now 5.006, matching the rest of the Perl toolchain

(sno)

2010-08-01 18:57:38 UTC MAIN commitmail json YAML

Updated devel/p5-Throwable to 0.102080

(sno)

2010-08-01 18:57:27 UTC MAIN commitmail json YAML

Update devel/p5-Throwable from 0.100090 to 0.102080

Upstream changes:
0.102080  2010-07-27 12:09:21 America/New_York
          refactor stack trace autocreation to StackTrace::Auto role
          make Throwable::Error immutable

0.101110  2010-04-21 20:59:59 America/New_York
          avoid doing: length undef (thanks, Yuval Kogman)

(sno)

2010-08-01 18:15:04 UTC MAIN commitmail json YAML

Updated net/p5-NetAddr-IP to 4.030

(sno)

2010-08-01 18:14:52 UTC MAIN commitmail json YAML

Updating net/p5-NetAddr-IP from 4.027 to 4.030

Upstream changes:
4.030  Tue Jul 20 15:32:23 PDT 2010
        Resolve named hosts in Lite.pm using gethostbyname, followed by
gethostbyname6 to determine whether to set ipV6 flag

        Thanks to Dusty Mabe <Dusty.Mabe@tekelec.com> for spotting this bug

4.029  Thu Jul  8 18:17:38 PDT 2010
In NetAddr::IP::Lite,
        added support for the sub "new" to resolve host6 names
        if the OPTIONAL perl Socket6 module is available

Thanks to "Mabe, Dusty" <Dusty.Mabe@tekelec.com> for spotting
this and suggesting a fix.

4.028  Wed May 12 14:18:20 PDT 2010
In /Lite/Util/Util.xs v1.32,
changed netswap() to postincrement
*a++ = to *a and added increment after save to mollify some
picky compilers that return possible undefined behavior.

changed type of _128x10 to 'void'

Thanks to David Bolt <dbolt@davjam.org> for the above two patches

(sno)

2010-08-01 17:46:06 UTC MAIN commitmail json YAML

add postgresql84-pgcrypt

(jdolecek)

2010-08-01 17:45:27 UTC MAIN commitmail json YAML

add postgresql84-pgcrypt

(jdolecek)

2010-08-01 17:44:04 UTC MAIN commitmail json YAML

Add PostgreSQL 8.4 pgcrypto module, providing cryptographic functions

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jdolecek)

2010-08-01 17:01:02 UTC MAIN commitmail json YAML

contrib/pgcrypto should also be built as a shared module (same as adminpack)

(jdolecek)

2010-08-01 16:59:20 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2010-08-01 16:58:56 UTC MAIN commitmail json YAML

2010-08-01 12:37:33 UTC MAIN commitmail json YAML

Updated graphics/rabbit to 0.6.5

(obache)

2010-08-01 12:37:18 UTC MAIN commitmail json YAML

Update rabbit to 0.6.5.

== Changes 0.6.4 from 0.6.5: 2010-07-31

  * Added Rabbiter that collects comments from Twitter.
    [OBATA Akio]
  * Supported
    ((<aafigure|URL:https://launchpad.net/aafigure>)).
    [Suggested by kdmsnr]

=== Improvements

  * Removed needless newlines from default PDF filename.
  * Worked with \r\n newline. [Reported by zunda]
  * Rabbitter: Added. It collects comments from Twitter.
    [OBATA Akio]
  * Supported aafigure. [suggested by kdmsnr]

==== Theme

  * clear-blue: Removed needless newlines from footer text.
  * per-slide-background-iamge:
    Supported "background-image-align: right" slide property.
    [Suggested by kdmsnr]

      = slide

      ...

      == properties

      : background-image
          lavie.png

      : background-image-relative-width
          30

      : background-image-align
          right

      : background-image-relative-margin-right
          3

  * Supported width parameter 'relative_width' as well as
    'relative-width'.

  * body-background-image: Added. It enables "align = right"
    image property:

      = title

        # image
        # src = lavie.png
        # relative-width = 30
        # align = right
        # relative-margin-right = -5

  * Enabled body-background-image and
    per-slide-background-image by default.

  * background-image-tookit: Added. It is a toolkit for
    shareing common processes in body-background-image and
    per-slide-background-image themes.

  * title-background-image:
    Supported customize by
    @title_background_image_properties. The same options for
    image element can be used.
    [Suggested by kdmsnr]

      @title_background_image_properties = {
        :align => :right,
        :as_large_as_possible => false,
        :relative_height => 75,
      }

    This shows image with the following layout:
        +-----------+
        |      +---+|
        |  title <- background image
        |      +---+|
        +-----------+

    A background image is showed in center and it is
    resized to as large as possible by default.

=== Fixes

  * Fixed comment view doesn't work.

=== Thanks

  * kdmsnr
  * zunda
  * OBATA Akio

(obache)

2010-08-01 12:15:36 UTC MAIN commitmail json YAML

2010-08-01 12:14:51 UTC MAIN commitmail json YAML

Added textproc/ruby-hikidoc version 0.0.4

(obache)

2010-08-01 12:14:35 UTC MAIN commitmail json YAML

Import ruby-hikidoc-0.0.4 as textproc/ruby-hikidoc.

'HikiDoc' is a text-to-HTML conversion tool for web writers.  HikiDoc allows you
to write using an easy-to-read, easy-to-write plain text format, then convert it
to structurally valid HTML (or XHTML).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2010-08-01 10:15:34 UTC MAIN commitmail json YAML

2010-08-01 10:14:53 UTC MAIN commitmail json YAML

Added graphics/py-aafigure version 0.5

(obache)

2010-08-01 10:14:32 UTC MAIN commitmail json YAML

Import py-aafigure-0.5 as graphics/py-aafigure.

This package provides a module aafigure, that can be used from other programs,
and a command line tool aafigure.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(obache)

2010-08-01 09:04:33 UTC MAIN commitmail json YAML

2010-08-01 08:10:10 UTC MAIN commitmail json YAML

No need workaround for gtkdoc-rebase anymore.

(obache)

2010-08-01 05:44:07 UTC MAIN commitmail json YAML

2010-08-01 05:24:00 UTC MAIN commitmail json YAML

ABI is not defined on old Darwin.

(obache)

2010-08-01 02:08:30 UTC MAIN commitmail json YAML

Note revision bump of audio/squeezeboxserver (added DEPENDS).

(cube)

2010-08-01 02:07:20 UTC MAIN commitmail json YAML

Fix DEPENDS list and make user/group names builder-configurable.

>From feedback from mrg@.

(cube)

2010-08-01 02:01:44 UTC MAIN commitmail json YAML

+pdfjam-2.06

(uebayasi)

2010-08-01 01:28:49 UTC MAIN commitmail json YAML

2010-08-01 01:09:14 UTC MAIN commitmail json YAML

Fixes regression of simplify PLIST.
skk-jisx0213 is not for emacs22.
Noticed in PR#43649 additionally.

(obache)

2010-08-01 00:19:06 UTC MAIN commitmail json YAML

gromacs, f2c, hiawatha

(dholland)

2010-08-01 00:12:48 UTC MAIN commitmail json YAML

Bump PKGREVISION for previous.

(dholland)

2010-07-31 23:41:17 UTC MAIN commitmail json YAML

Apply chmod to prevent installation of world-writable files. Should fix
PR 38909.

(dholland)

2010-07-31 22:19:16 UTC MAIN commitmail json YAML

Additional INSTALLATION_DIRS entry from Robert Elz in PR 42507.
While here, fix typo in COMMENT.

(dholland)

2010-07-31 22:06:25 UTC MAIN commitmail json YAML

Update to GNU Smalltalk 3.2.2

NEWS FROM 3.2.1 TO 3.2.2

o  Fixes to gst-remote.

o  Fixes to the Emacs mode.

o  Fixes to compilation warnings.

o  Generational GC is broken on SPARC and is now disabled.

o  When compiling a 32-bit version on a 64-bit system, detection of
    which packages to install was improved.

NEWS FROM 3.2 TO 3.2.1

o  All built-in packages can be disabled with a configure option like
    --disable-gdbm or --disable-complex.

o  All tools support --verbose.

o  Fixed bugs in the distributed gnu-smalltalk.pc file.

o  Improved portability to Solaris.

o  Many bug fixes to UDP sockets.  In particular, daragrams received from
    a socket can be placed directly onto another socket using #nextPut:.

o  Many improvements to VisualGST.

o  Each test in the testsuite has a 1-minute timeout.

o  The undocumented DynamicVariable class in GNU Smalltalk 3.2 is now
    documented, but it had a small change in the implementation.  The
    #defaultValue class method is not present anymore, and is replaced by
    #valueIfAbsent:.  Subclasses can override #value to obtain the
    effect of #valueIfAbsent:.

    The class has also been rewritten and is much faster now.

NEWS FROM 3.1 TO 3.2

Backwards-incompatible bug fixes and changes:

o  Collection>>#anyOne gives an error if the receiver is empty.

o  "aNumber raisedToInteger: 0" will raise an exception if and only if
    aNumber is not a floating-point value.  This was backwards in previous
    versions.

o  Interval>>#first and Interval>>#last give an error if the interval is
    empty (i.e. if start > stop and the step is positive, or start < stop
    and the step is negative).

o  SequenceableCollection>>#sortBy: was renamed to #sort:.  The old message
    is _not_ provided for backwards-compatibility.

o  The semantics of recursive directory descent were adjusted as follows:
    1) the '.' and '..' directory entries are not passed; 2) for #do:, the
    file is passed directly (3.1 used to pass another recursive decorator);
    3) before the descent starts, the directory itself is passed to the block.

o  The XML parser will ignore whitespace if placed in non-validating mode.

o  The suggested way to instantiate an XML parser is now using
    "SAXParser defaultParserClass", which will work with either of the
    two available parsers (the existing Smalltalk parsers, and the Expat
    bindings; see below).

New features (base classes):

o  Floating-point rounding to integer is now correct also for very
    large numbers; fix contributed by Nicolas Cellier.

o  Methods have been added to Integer to print numbers with padding
    to a specified width.

o  New FilePath methods #owner:, #group:, #owner:group: allow setting
    a file's owner and group.

o  Sending mode, file time and owner setters to a recursive directory
    decorator (such as `Directory working all') sets the mode/time/owner
    on all files under the path.

o  Speedups for hashed collections

o  String>>#subStrings: accepts a single separator character or also, in
    accordance with ANSI, a String holding a list of separators.

o  The old instance-based exception handling has been removed.  Standard
    ANSI class-based exceptions have been available since GNU Smalltalk 1.8.2.

o  The text-based #inspect method is now available also as
    Object>>#examine and Object>>#examineOn:, so that it will also work
    on arbitrary streams and will be available when a GUI is loaded.
    Contributed by Stefan Schmiedl.

New features (tools):

o  gst-convert can emit Squeak fileouts.

o  New graphical interface VisualGST, loaded with gst-browser.  The old
    browser is still available, but obsolete.

o  New ProfilerTools package for callgraph profiling of Smalltalk programs.
    A companion gst-profile tool will create profiles in callgrind-compatible
    format.  Contributed by Derek Zhou.

o  Packages can be downloaded and updated directly from the network.  The
    repository of packages is at http://smalltalk.gnu.org/project; the
    repository holds the location of the package.xml files, which point to
    the svn or git URL of the code.

    In order to download a package with git, version 1.6.2 is required.

o  SUnit supports expected failures.

New features (VM):

o  Fixes in garbage collection heuristics provide improved performance on
    programs allocating many long-lived objects.  Contributed by Derek Zhou.

o  Floating-point numbers are now read correctly.

o  In idle times, GNU Smalltalk will perform incremental garbage
    collection.  When it finishes, GNU Smalltalk will consume zero CPU.

o  Mostly rewritten Windows port.  It should mostly work except for
    sockets.  The socket code will be rewritten (for all platforms)
    for 3.3 anyway.

o  Support for one-way become (Object>>#becomeForward:)

o  The millisecond clock uses CLOCK_MONOTONIC where available.

New features (packages):

o  Many improvements to the Gtk bindings.

o  NetClients supports ESMTP commands.

o  New goodie, the SandstoneDb object persistence framework.

o  Swazoo upgraded to version 2.2, plus local fixes.

o  The Complex package uses numerically stable algorithms

o  The Continuations package provides delimited continuations via
    BlockClosure>>#shift and BlockClosure>>#reset.  Both methods accept
    a block (1-arg for shift, 0-arg for reset).

o  An XML pull parser is included as package XML-PullParser.  The package
    is based on the VisualWorks and Squeak pull parsers by Anthony Blakey
    and Ken Treis.

o  In addition to the validating XML parser, a non-validating Expat-based
    parser is available in package XML-Expat.  The Expat parser is
    experimental, but it is very fast and supports both pull and push
    operation.

Bug fixes:

o  Code running as a Generator now honors exception handlers outside the
    Generator block.

o  Fixed copying of Dictionary to not share the underlying associations.

o  Fixed ##() expressions that return a block

o  EPIPE is handled correctly.

o  Running on kernels without SOCK_CLOEXEC support will not fail
    even if the VM was compiled on a kernel that supported it.

o  The Sockets package failed to initialize when the machine was not
    connected to the network; this has been fixed.

o  The Transcript now uses a RecursionLock.  This fixes crashes when
    an exception occurred while printing a backtrace.

Miscellaneous:

o  GNU Smalltalk now does not rely anymore on specific (old) versions
    of libtool.

o  GNU Smalltalk tries to enable Emacs modes automatically on systems
    that support a site-lisp/site-start.d directory.

o  REPL autocompletion includes all symbols including unary messages
    (and variable names).

o  Process-local variables are now stored in an IdentityDictionary rather
    than a LookupTable.

(asau)

2010-07-31 21:37:26 UTC MAIN commitmail json YAML

Instead of trying to guess which platforms will choke on an explicit
definition of uintptr_t, include <stdint.h>. Fixes broken i386 build
and PR 42478.

(dholland)

2010-07-31 21:09:14 UTC MAIN commitmail json YAML

#undef u_int64_t before including db.h, as on platforms where u_int64_t
is missing, this package's configure script defines it on the command
line and db4 also provides it as a typedef in db.h, and the two don't
mix. This is a hack, but it should fix PR 42805.

(dholland)

2010-07-31 20:31:33 UTC MAIN commitmail json YAML

Fix integer type misuse caught by gcc 4.4. PR 43291 from Makoto Fujiwara;
the patches in the PR used unsafe (but less wrong) integer/pointer casts,
so I did things somewhat differently.

(dholland)

2010-07-31 20:01:57 UTC MAIN commitmail json YAML

openmotif is at 2.3.3

(dholland)

2010-07-31 19:14:09 UTC MAIN commitmail json YAML

2010-07-31 17:16:59 UTC MAIN commitmail json YAML

Added net/sslh version 1.7a

(apb)

2010-07-31 17:04:47 UTC MAIN commitmail json YAML

Add sslh-1.7a.

sslh lets one accept both HTTPS and SSH connections on the same port.

(apb)

2010-07-31 14:11:13 UTC MAIN commitmail json YAML

Updated www/p5-Pod-POM-Web to 1.14

(sno)

2010-07-31 14:11:00 UTC MAIN commitmail json YAML

Updating www/p5-Pod-POM-Web from 1.13 to 1.14

pkgsrc changes:
- adjust dependencies
- clarify recommended dependencies
- define module type

Upstream changes:
1.14 08.06.2010
  - fix for pods/perl.pod change of structure since perl 5.12

(sno)

2010-07-31 14:04:15 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Autoformat to 1.669.002

(sno)

2010-07-31 14:03:59 UTC MAIN commitmail json YAML

Updating textproc/p5-Text-Autoformat from 1.666.0 to 1.669.002

pkgsrc changes:
- clarify license definition

Upstream changes since 1.666.0:
1.669002  Tue Jun 22 15:39:35 2010
    - Patched missing case in 'ignore' option handling (thanks Alan)

1.669001  Fri May 28 07:38:36 2010
    - Added major improvements to the 'ignore' option (thanks Dan!)

1.668001  Sat Apr  3 15:38:55 2010
    - Removed spurious debugging statement in bad Pod. (Thanks Chris)

(sno)

2010-07-31 14:00:02 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Readme to 0.10

(sno)

2010-07-31 13:59:51 UTC MAIN commitmail json YAML

Updating textproc/p5-Pod-Readme from 0.09 to 0.10

pkgsrc changes:
- adjust module type (Module::Build)

Upstream changes:
0.10  2010-05-19
        - David Precious <davidp@preshweb.co.uk> taking over maintainership
        - Apply POD fix patch from RT #38328, thanks to David A. Desrosiers

(sno)

2010-07-31 13:57:12 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Coverage to 0.21

(sno)

2010-07-31 13:57:01 UTC MAIN commitmail json YAML

Updating textproc/p5-Pod-Coverage from 0.20 to 0.21

pkgsrc changes:
- add license definition

Upstream changes:
0.21 Tuesday 27th July, 2010
Add SCALAR to the stoplist (implementaion method for tied
hashes).  Report by David Cantrell.

(sno)

2010-07-31 13:54:10 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-POM to 0.27

(sno)

2010-07-31 13:53:58 UTC MAIN commitmail json YAML

Updating textproc/p5-Pod-POM from 0.25 to 0.27

pkgsrc changes:
- adding license definition

Upstream changes:
#------------------------------------------------------------------------
# Version 0.27  2010-04-02
#------------------------------------------------------------------------
* changed 'unless (defined (%{"$class\::ACCEPT"}))' to just
  'unless (%{"$class\::ACCEPT"})' in Pod::POM::Node to fix defect #56205
  (use of the now deprecated "defined(%hash)" construct)

#------------------------------------------------------------------------
# Version 0.26  2009-08-20
#------------------------------------------------------------------------
* updated Makefile.PL to require at least 2001.0929 of Text::Wrap, as
  versions prior to this always unexpand tabs.
* applied Andreas Koenig's encoding patch
* changed 'use base' to 'use parent'
* split Pod::POM::Nodes into separate modules, retaining the original file
  to just use all the individual node modules.
* added AF to author and copyright info for modules (in addition to ABW)

(sno)

2010-07-31 13:17:49 UTC MAIN commitmail json YAML

+ clive-2.2.12 [pkg/43668]

(obache)

2010-07-31 12:48:00 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-MinimumVersion to 1.26

(sno)

2010-07-31 12:47:47 UTC MAIN commitmail json YAML

Updating devel/p5-Perl-MinimumVersion from 1.24 to 1.26

pkgsrc changes:
- adjust dependencies

Upstream changes:
1.26 Thu 22 Jul 2010
- Detect "package NAME VERSION" in 5.12. (Steffen Mueller)
- Detect "..." (yada yada yada) in 5.12. (Steffen Mueller)
- Detect "use feature ':5.12';" in 5.12. (Steffen Mueller)

1.25 Sun 11 Apr 2010
        - Error in minimum_syntax_reason discovered by perl 5.12 (Alexandr Ciornii)

(sno)

2010-07-31 12:44:05 UTC MAIN commitmail json YAML

Updated devel/p5-Test-MinimumVersion to 0.101.080

(sno)

2010-07-31 12:43:54 UTC MAIN commitmail json YAML

Updating devel/p5-Test-MinimumVersion from 0.013 to 0.101.080

pkgsrc changes:
- adjust dependencies

Upstream changes since 0.013
0.101080  2010-04-18 14:07:08 America/New_York
          more "comparison to undef" bugs fixed (thanks, Tux)

0.101050  2010-04-15 15:31:56 America/New_York
          convert to dzil, fix a prereq num/str conversion stupidity
          fix bug when comparing versions to undef

(sno)

2010-07-31 12:37:29 UTC MAIN commitmail json YAML

Updated databases/p5-Template-DBI to 2.65

(sno)

2010-07-31 12:37:16 UTC MAIN commitmail json YAML

Updating databases/p5-Template-DBI from 2.64 to 2.65

pkgsrc changes:
- adjust dependencies
- clarify license
- remove upstream applied patch

Upstream changes:
2.65    2010-07-27
        - take over maintainership from prior maintainers
  Andy Wardley and Simon Matthews (Jens Rehsack)
  Thanks to both guys for their great work so far
- improve connect to can reconnect after CLONE
- add support for keeping alive in threaded environment
- add ability to prepare/query with passing params to
  $dbh->prepare
- add some neat functions to the iterator of th $sth
- add ability to fetch and store $dbh and $sth attributes
- reap DBI handles for new threads when used in threaded
  environments and threads::variable::reap is available
- add test with two placeholders

(sno)

2010-07-31 12:32:59 UTC MAIN commitmail json YAML

Updated www/p5-URI-Find to 20100505

(sno)

2010-07-31 12:32:47 UTC MAIN commitmail json YAML

Updating www/p5-URI-Find from 20100211 to 20100505

Upstream changes:
20100505  Wed May  5 18:48:44 PDT 2010
    Test Fixes
    * Fixed t/urifind/find.t on Windows

20100504.1039  Tue May  4 10:39:23 PDT 2010
    Doc Fixes
    * Forgot to mention that we ship with urifind now.

20100504  Tue May  4 10:29:52 PDT 2010
    New Features
    * Added a urifind program. (Darren Chamberlain)
    Bug Fixes
    * The final semi-colon was being strippped form URLs found in HTML
      that ended with HTML entities. (Michael Peters)
      Example: http://google.com/search?q=&lt;html&gt;
    * URLs with leading dots, pluses and minuses are now found.
      [rt.cpan.org 57032]
      Example: stuff...http://example.com

(sno)

2010-07-31 12:29:29 UTC MAIN commitmail json YAML

Updated www/p5-URI to 1.54

(sno)

2010-07-31 12:29:16 UTC MAIN commitmail json YAML

Updating www/p5-URI from 1.53 to 1.54

Upstream changes:
2010-03-31 - Release 1.54 - Gisle Aas <gisle@ActiveState.com>
  Alex Kapranoff (1):
      Fix heuristic test fails on hosts in .su (or .uk) domains [RT#56135]

(sno)

2010-07-31 12:26:19 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-Syck to 1.10

(sno)

2010-07-31 12:26:07 UTC MAIN commitmail json YAML

Updating textproc/p5-YAML-Syck from 1.07 to 1.10

pkgsrc changes:
- use PERL5_MODULE_TYPE instead of manual depend on M::I
- add license definition

Upstream changes:
[Changes for 1.10 (JSON::Syck 0.32) - 2010-06-06]

1.09 was released with version 0.97 of Module::Install. It had a
critical bug that I reported which broke installations on perl 5.8.3
and older.

This release is equivalent to 1.09 aside from bumping Module::Install
to 0.99 which fixed the bug.

[Changes for 1.09 (JSON::Syck 0.32) - 2010-05-29]
* Exactly equivalent to 1.08_01, aside from bumping the version
  numbers

[Changes for 1.08_01 (JSON::Syck 0.31_01) - 2010-05-23]
* Reset the hash iterator after dumping hashes. Solves RT #54167 and
  the duplicate RT #34166.
* RT #39572: Only print 0.60 compatibility warning if 0.60 or earlier
  is installed.

[Changes for 1.08 (JSON::Syck 0.31) - 2010-05-23]

Like the 1.07_01 test release aside from small documentation
improvements.
* POD link to JSON::XS from JSON::Syck
* Include a WARNING section in the YAML::Syck pod that mentions that
  the module hasn't been actively maintained since 2007, and that
  perhaps prospective users might want to turn elsewhere.

[Changes for 1.07_01 (JSON::Syck 0.30) - 2010-05-20]

About:

First release by new maintainer (AVAR). The source repository is now
hosted in Git at http://github.com/avar/YAML-Syck

YAML::Syck is still pretty much abandonware, all its bugs likely to
get fixed any time soon.

Code fixes:
* Strings starting with : are now always quoted. Ruby will interpret
  anything starting with a colon as a symbol. Before this fix strings
  exported from YAML::Syck would be interpreted as Ruby symbols when
  read by Ruby's syck.

Release engineering fixes:
* Upgrade from Module::Install 0.68 to 0.97
* Bump included Test::More dependency
* Remove included inc/attributes.pm dependency. Nothing in our
  dependencies used this anymore.
* Add homepage, bugtracker, and repository metadata to META.yml
* Bump perl dependency from 5.00307 to 5.006. 5.005 is all
  Module::Install supported, and YAML::Syck depends on Scalar::Util
  which only goes as low as 5.006.

(sno)

2010-07-31 12:15:57 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Twig to 3.35

(sno)

2010-07-31 12:15:44 UTC MAIN commitmail json YAML

Updating textproc/p5-XML-Twig from 3.34 to 3.35

pkgsrc changes:
- remove dead master site

Upstream changes:
version: 3.35
date:
# minor maintenance release
added: the by_file option to xml_grep that limits
      the number of hits per file
added: allowed the text of ignored elements to be buffered
      in a string
fixed: comments need to be escaped (you can't have 2 '-' in a
      row), RT#57389 spotted by Konstantin Tchernov
      https://rt.cpan.org/Ticket/Display.html?id=57389
fixed: after $elt->cut_children, $elt->empty is false RT#54570
      spotted and patched by Andrew Pimlott
      https://rt.cpan.org/Ticket/Display.html?id=54570

fixed: documented the fact that latin1 is ISO-8859-15, see RT#37431
      https://rt.cpan.org/Ticket/Display.html?id=37431

(sno)

2010-07-31 12:09:08 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-Tidy to 1.6

(sno)

2010-07-31 12:08:57 UTC MAIN commitmail json YAML

Updating textproc/p5-XML-Tidy from 1.2.54 to 1.6

pkgsrc changes:
- adjust PTVR removal regex
- add license definition
- adjust dependencies

Upstream changes:
    - 1.6.A7RJKwl Tue Jul 27 19:20:58:47 2010
        * added head2 POD for EXPORTED CONSTANTS to try to pass t/00podc.t

(sno)

2010-07-31 11:59:08 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-LibXML-Simple to 0.14

(sno)

2010-07-31 11:58:55 UTC MAIN commitmail json YAML

Updating textproc/p5-XML-LibXML-Simple from 0.13 to 0.14

pkgsrc changes:
- adjust dependencies

Upstream changes:
version 0.14: Fri Jul 16 11:17:49 CEST 2010
Fixes:
- do not use /bin/pwd in t/99pod.t
- forgot to define xml_in.
  rt.cpan.org#59172 [Justin Case]

(sno)

2010-07-31 11:55:15 UTC MAIN commitmail json YAML

Updated security/p5-Net-OpenSSH to 0.47

(sno)

2010-07-31 11:55:03 UTC MAIN commitmail json YAML

Updating security/p5-Net-OpenSSH from 0.45 to 0.47

Upstream changes:
0.47  Apr 13, 2010
- document how to make it work under Solaris
- some docs reorganization and improvements

0.46_02  Mar 29, 2010
- add suport for default_stdin_file, default_stdin_discard and
          similar options
        - add stdinout_socket feature and open2socket shortcut method
        - rename some internal methods to more meaningfull names
        - add open_tunnel and capture_tunnel methods
- add support for tunnel feature and docs
- document mod_perl/mod_perl2 integration
- document not-a-real-file-handle errors
- some minor doc updates
- run tests with StrictHostKeyChecking=no
        - disable tty allocation for control commands
        - better debugging for _io3

0.46_01  Mar 25, 2010
        - do not depend on STDIN, STDOUT and STDERR being file
          descriptors 0, 1, and 2 respectively as it happens, for
          instance, under mod_perl (bug report by eserte via
          PerlMonks)
        - use POSIX::dup2 to duplicate file descriptors, instead of
          perl open builtin
        - set stdin_discard to when running control commands as it may
          be closed or tied
        - better debugging for waitpid and _io3
        - error in example in documentation corrected (reported by
          Slaven Rezic)

(sno)

2010-07-31 11:52:40 UTC MAIN commitmail json YAML

Updated security/p5-GSSAPI to 0.28

(sno)

2010-07-31 11:52:29 UTC MAIN commitmail json YAML

Updating security/p5-GSSAPI from 0.26nb1 to 0.28

pkgsrc changes:
- add license definition

Upstream changes:
0.28    Do 3. Jun 12:11:21 UTC 2010
        - Fixed Lenght-problem in typemap, T_BUFFER_STR_OUT for Heimdal.
          Thanks to Slaven Rezic <slaven@rezic.de> for report and patch.

(sno)

2010-07-31 11:48:50 UTC MAIN commitmail json YAML

Updated security/p5-Digest-MD5 to 2.40

(sno)

2010-07-31 11:48:38 UTC MAIN commitmail json YAML

Updating security/p5-Digest-MD5 from 2.39 to 2.40

pkgsrc changes:
- adjust dependencies

Upstream changes:
2010-07-03 - Release 2.40 - Gisle Aas <gisle@ActiveState.com>
  Marc Pignat (1):
      Safer alignment test [RT#35823]
  Robin Barker (1):
      consting in new ext/
  Gisle Aas (1):
      Remove the MacOS branch of this test

(sno)

2010-07-31 11:44:20 UTC MAIN commitmail json YAML

Updated security/p5-Crypt-Twofish to 2.14

(sno)

2010-07-31 11:44:09 UTC MAIN commitmail json YAML

Updating security/p5-Crypt-Twofish from 2.13 to 2.14

pkgsrc changes:
- adjust license definition

Upstream changes:
2.14    2010-05-08      Abhijit Menon-Sen <ams@toroid.org>
    * Fix inaccurate dependency in Makefile.PL

(sno)

2010-07-31 10:58:19 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-Critic to 1.108

(sno)

2010-07-31 10:58:07 UTC MAIN commitmail json YAML

Updating devel/p5-Perl-Critic from 1.106 to 1.108

pkgsrc changes:
- adjust dependencies

Upstream changes:
[1.108] Released on 2010-06-22
    This is the "Give Shawn Moore what we promised him a year ago and hurry up
    and get this out before Brad Oaks gives his YAPC::NA talk" release.

    New Policies:
    * Documentation::RequirePodLinksIncludeText
    * Subroutines::ProhibitUnusedPrivateSubroutines

    New Features:
    * There is a new global configuration item, 'program-extensions', which
      configures Perl::Critic's idea of which file name extensions represent
      programs.  The desired extensions are specified as a space-separated list,
      with leading '.' on each if that is desired.  Files whose names end in
      '.PL' will always be considered programs.  This can be overridden by
      command option --programs-extensions, which can be specified multiple
      times.
    * There is now a perlcritic --allow-unsafe switch.  Without this switch,
      Perl::Critic will silently refuse to load any Policy that is marked
      unsafe.  Unsafe Policies are usually ones that may compile or execute
      untrusted code (see Perl::Critic::DynamicPolicy for an example); Policy
      authors can mark their policies as unsafe by overriding the is_safe()
      method.
    * The framework that we use to test Perl::Critic Policies has been
      packaged into a convenient module that you can use to test your own
      Policies.  See Test::Perl::Critic::Policy and Perl::Critic::TestUtils
      for details.

    Policy Changes
    * BuiltInFunctions::ProhibitLvalueSubstr no longer complains when there
      is a low-precedence operator between the substr() and the assignment
      operator.
    * CodeLayout::ProhibitParensWithBuiltins now allows 'state ($foo)'.  RT
      #52029
    * ErrorHandling::RequireCarping now has an
      allow_in_main_if_not_in_subroutine option to allow "die" directly in
      the default namespace.
    * InputOutput::RequireBriefOpen now recognizes CORE::open(),
      CORE::close(), CORE::GLOBAL::open(), and CORE::GLOBAL::close().  RT
      #52391
    * Modules::ProhibitEvilModules now complains by default about the modules
      deprecated by the Perl 5 Porters in 5.12.
    * Modules::RequireVersionVar documentation updated to make clear that "my
      $VERSION" does not work as a module version declaration.  RT #56667
    * The RegularExpressions::* policies have been converted from using
      Regexp::Parser to using PPIx::Regexp for their heavy lifting.
    * RegularExpressions::ProhibitCaptureWithoutTest now allows capture
      variables inside when() {}.  RT #36081.
    * RegularExpressions::ProhibitUnusedCapture now checks for unused named
      captures.
    * Subroutines::ProhibitManyArgs revised to count only characters in the
      prototype that represent arguments.  RT #56627
    * Subroutines::ProhibitNestedSubs no longer complains about scheduled
      blocks (BEGIN, etc.) inside subroutines and vice versa.
    * Subroutines::RequireFinalReturn should now understand a final given/when
      statement, and declare an error if there is no 'default' block or if any
      branch does not return.
    * TestingAndDebugging::RequireUseStrict now accepts 'use 5.011' or greater
      as equivalent to 'use strict'.
    * ValuesAndExpressions::ProhibitMismatchedOperators false positive with
      "'foo' x 15 . 'bar'".  RT #54524
    * Variables::ProhibitPunctuationVars gave false positives on qr// regexp's
      ending in '$'.  RT #55604

    Bug Fixes:
    * The "## no critic" annotations now respect #line directives.
    * Annotations on statements spanning more than one line (e.g.
            my $foo =
                '$bar'; ## no critic (RequireInterpolationOfMetachars)
      ) are now handled as single-line annotations, not block annotations.
    * All instances of L<Foo> in the POD have been changed to L<Foo|Foo>.
      L</bar> and L<Foo/bar> were allowed to stand.  RT #37485
    * Spaces are now allowed immediately inside the enclosing parentheses in
      "## no critic ( Foo )".  RT #52038
    * With the introduction of PPIx::Regexp, Perl::Critic no longer dies
      when it encounters a Perl 5.010 regexp.  RT #49442.
    * DEVELOPER.pod typo in link to
      ValuesAndExpressions::ProhibitConstantPragma policy. RT #57818
    * Spelling errors in documentation.  RT #57375
    * "die" used instead of "croak".  RT #56619
    * Fixed regex test that caused test failures on every Perl 5.11
      (credit Tom Wyant).
    * t/20_policy_pod_spelling.t now works (or at least no longer fails)
      in non-English locales (again).  RT #43291 and RT #48986.
    * Perldoc hae broken link for McCabe score definition.  RT #53219
    * RT #33935 and #49679 were fixed by upgrading to PPI 1.208

    Other Changes:
    * Perl::Critic::Utils::is_unchecked_call() updated to include chmod in the
      set of things covered by autodie (this happened in autodie v2.08).  The
      primary effect of this is on InputOutput::RequireCheckedSyscalls.
    * Now depends upon Task::Weaken to ensure that we only install with perls
      where Scalar::Util::weaken() works.
    * Email::Address was optional, but is now required.  So everyone
      gets the optimal behavior from RequireInterpolationOfMetachars.
    * Some infrastructure has been extracted to the new PPIx-Utilities
      distro.  It is also a required dependency here.  Over time a good
      portion of Perl::Critic::Utils* will be migrated to this distribution.
    * Perl::Critic::Utils::PPI::get_constant_name_element_from_declaring_statement()
      is deprecated because it doesn't handle multiple constants being
      declared within a single "use constant" statement.  Use
      PPIx::Utilities::Statement::get_constant_name_elements_from_declaring_statement()
      instead.
    * Removed all uses of Perl::Critic::Utils::PPIRegep.  Since the
      PPIx::Regexp update, Perl::Critic only used get_match_string() and
      friends, which were superseded by the corresponding PPI methods.
      Perl::Critic now depends on PPI-1.208 or newer.
    * Moved Perl::Critic::Utils::PPIRegexp to the Perl-Critic-Deprecated.
    * The PolicySummary.pod file is now generated when the distribution
      is created, rather than when you install it.  This ensures the file
      will be available on http://search.cpan.org.  Thanks to Bear Longyear
      for bringing this to our attention.

[1.107_001] Released on 2010-06-20
    Changes summarized into 1.108 above.  For exact details, see Changes on
    BackPAN.

(sno)

2010-07-31 10:53:28 UTC MAIN commitmail json YAML

Added devel/p5-PPIx-Regexp

(sno)

2010-07-31 10:52:37 UTC MAIN commitmail json YAML

Added devel/p5-PPIx-Regexp version 0.008

(sno)

2010-07-31 10:52:20 UTC MAIN commitmail json YAML

Importing package for p5 module PPIx-Regexp-0.008 as dependency for
scheduled update of devel/p5-Perl-Critic to 1.108.

The purpose of the PPIx-Regexp package is to parse regular expressions
in a manner similar to the way the PPI package parses Perl. This class
forms the root of the parse tree, playing a role similar to PPI::Document.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 10:43:10 UTC MAIN commitmail json YAML

Added devel/p5-PPIx-Utilities

(sno)

2010-07-31 10:42:16 UTC MAIN commitmail json YAML

Added devel/p5-PPIx-Utilities version 1.000.001

(sno)

2010-07-31 10:41:39 UTC MAIN commitmail json YAML

Importing package for p5 dist PPIx-Utilities-1.000001 as
devel/p5-PPIx-Utilities version 1.000.001 as dependency of scheduled
update of devel/p5-Perl-Critic to 1.108

This is a collection of functions for dealing with PPI objects,
many of which originated in Perl::Critic.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 10:20:08 UTC MAIN commitmail json YAML

Updated devel/p5-IPC-SysV to 2.03

(sno)

2010-07-31 10:19:58 UTC MAIN commitmail json YAML

Updating devel/p5-IPC-SysV from 2.02 to 2.03

pkgsrc changes:
- using common by-module download directory from MASTER_SITE

Upstream changes:
2.03 - 2010-05-23
    * fix CPAN #57530: IPC::Msg Documentation Bug
      (thanks to Jonathan Hartzog for spotting this)

(sno)

2010-07-31 10:16:50 UTC MAIN commitmail json YAML

Updated devel/p5-IPC-Cmd to 0.60

(sno)

2010-07-31 10:16:39 UTC MAIN commitmail json YAML

Updating devel/p5-IPC-Cmd from 0.56 to 0.60

Upstream changes:
Changes for 0.60    Mon Jul  5 09:04:54 BST 2010
=================================================
* Corrected spelling mistakes in POD, spotted by H.Merijn Brand
* Apply a patch from Burak Gursoy RT #58886, which fixes paths
  on MSWin32
* Apply patch from Petya Kohts, RT #50398, which allows more
  flexible configuration of run_forked and its children

Changes for 0.58    Thu Apr 29 20:49:07 BST 2010
=================================================
* Applied patch from Petya Kohts, RT #50398, which
  adds 'terminate_on_parent_sudden_death' option to
  run_forked().
* Applied patches from David Morel RT #56973, which
  add 'discard_output' option to run_forked().
* Added documentation as suggested by Rafa?l Garcia-Suarez
  in RT #56973

(sno)

2010-07-31 10:13:57 UTC MAIN commitmail json YAML

Updated devel/p5-IO-Prompt to 0.99.7.001

(sno)

2010-07-31 10:13:46 UTC MAIN commitmail json YAML

Updating devel/p5-IO-Prompt from 0.99.7 to 0.99.7.001

pkgsrc changes:
- using common by-module directory for IO-modules from CPAN download mirrors

Upstream changes:
0.997001  Sat Apr 24 12:00:19 2010
    - More warning cleanup and also made backspaces work right at the
      start of a line (thanks Ingmar)

(sno)

2010-07-31 10:08:58 UTC MAIN commitmail json YAML

Updated devel/p5-IO-Compress to 2.030

(sno)

2010-07-31 10:08:47 UTC MAIN commitmail json YAML

Updating devel/p5-IO-Compress from 2.024 to 2.030

pkgsrc changes:
- adjusting dependencies

Upstream changes:
  2.030 22 July 2010
      * IO::Compress::Zip
        - Updates to documentation.
        - Changes default value for ExtAttr on Unix to 0100644
      * IO::Uncompress::Unzip
        Reworked the "Name" option and examples in the pod.
      * IO::Uncompress::Base
        Fixed problem with nextStream not returning 0 when there is no
        next stream and Transparent is false.

  2.027 24 April 2010
      * Compress::Zlib
        Remove autoload code from Zlib.pm.
        [perl #74088]

  2.026 7 April 2010
      * IO::Uncompress::Zip
        - Some updates to IO::Compress::Zip documentation.
        - Fixed default setting for ExtAttr.

  2.025 27 March 2010
      * IO::Uncompress::Unzip
        The "Name" option wasn't documented.
      * Allow zlib version check to be disabled by setting
        TEST_SKIP_VERSION_CHECK environment variable.
        [RT #54510]

(sno)

2010-07-31 09:55:26 UTC MAIN commitmail json YAML

Downgrade required zlib version to 1.2.3 - someone needs to update
devel/zlib first.
Bumping PKGREVISION

(sno)

2010-07-31 09:52:35 UTC MAIN commitmail json YAML

Updated devel/p5-Compress-Raw-Zlib to 2.030

(sno)

2010-07-31 09:52:21 UTC MAIN commitmail json YAML

Updating devel/p5-Compress-Raw-Zlib from 2.024 to 2.030

Upstream changes:
  2.030 22 July 2010
      * Ran the zlib2ansi script against the files in zlib-src.
        Thanks to Nicholas Clark for the reminder.
      * Added "-DNO_VIZ" to DEFINE in Makefile.PL
        [RT #65293]

  2.027 24 April 2010
      * Updated to include zlib 1.2.5

  2.026 7 April 2010
      * Fixed definition of Z_TREES in Makefile.PL
        [RT #65293]
      * Fixed build issue with definition of off64_t not found on Solaris
        by modifying the zlib source - changed the symbol
        _LARGEFILE64_SOURCE to _LARGEFILE64_SOURCE_dummy in zconf.h,
        zlib.h and zutil.h
        [RT #56108]

  2.025 27 March 2010
      * Updated to include zlib 1.2.4
      * Allow zlib version check to be disabled by setting
        TEST_SKIP_VERSION_CHECK environment variable.
        [RT #54510]

(sno)

2010-07-31 09:47:40 UTC MAIN commitmail json YAML

Updated devel/p5-Compress-Raw-Bzip2 to 2.030

(sno)

2010-07-31 09:47:28 UTC MAIN commitmail json YAML

Updating devel/p5-Compress-Raw-Bzip2 from 2.026 to 2.030 for scheduled update
of devel/p5-IO-Compress

Upstream changes:
  2.030 22 July 2010
      * No Changes

  2.027 24 April 2010
      * No Changes

(sno)

2010-07-31 09:32:57 UTC MAIN commitmail json YAML

Updated x11/p5-Wx to 0.97.02

(sno)

2010-07-31 09:32:44 UTC MAIN commitmail json YAML

Updating x11/p5-Wx from 0.97.01nb2 to 0.97.02

pkgsrc changes:
- adjust dependencies

Upstream changes:
0.9702  Thu May  6 01:53:50 CEST 2010
- Released 0.9701_02 as 0.9702.

0.9701_02  Mon Apr 26 21:56:09 CEST 2010
- Wrapped wxRichTextPrinting

0.9701_01  Tue Mar 30 22:46:33 CEST 2010
- 64 Bit build fixes.
- Wrapped wxMenuBar::MacSetCommonMenuBar, MacInstallMenuBar
- Wrapped wxGCDC::GetGraphicsContext

(sno)

2010-07-31 08:46:02 UTC MAIN commitmail json YAML

Updated inputmethod/skk to 14.0.91

(obache)

2010-07-31 08:45:26 UTC MAIN commitmail json YAML

Updated inputmethod/skk to 14.0.91

(obache)

2010-07-31 08:45:09 UTC MAIN commitmail json YAML

Update skk to 14.0.91.
Based on PR#43649 by Ryo ONODERA.

Back from snapshot release, so version scheme also back from timestamp.
This release is still alpha release, but, yes, better than snapshot,
and need to support of emacs23.

While here,
* set LICENSE=gnu-gpl-v2
* simplify PLIST.
* fixes paths for tutorial file in setup file
* change to use MAKE_FLAGS instead of MAKEFLAGS, it affect subsequent
  make, e.g. failed to build of emacs for resolving dependency.

(obache)

2010-07-31 08:43:27 UTC MAIN commitmail json YAML

2010-07-31 08:40:37 UTC MAIN commitmail json YAML

2010-07-31 08:20:43 UTC MAIN commitmail json YAML

Update to 2.6.5:

* Fixes bug 582162 - XSP2 crashes serving static images

(kefren)

2010-07-31 08:03:41 UTC MAIN commitmail json YAML

Updated devel/p5-ExtUtils-XSpp to 0.14

(sno)

2010-07-31 08:03:30 UTC MAIN commitmail json YAML

Updating devel/p5-ExtUtils-XSpp from 0.10 to 0.14

pkgsrc changes:
- adjust dependencies

Upstream changes:
0.14    Wed Jul 21 17:00:00 CEST 2010
- This release demonstrates why it is a good idea
  to do developer releases.
- Fix problem with templated types and the shorthand
  for typemaps that was introduced in 0.13.

0.13    Wed Jul 21 17:00:00 CEST 2010
- Add support for simplified typemap statements
  a la %typemap{type}; which are a shorthand for
  {simple} and {reference}.

0.12    Sun Jul 11 17:00:00 CEST 2010
- Add new example using Module::Build::WithXSpp.

0.11_02  Thu Jun 24 20:00:00 CEST 2010
- Allow applying parser plugin annotations to constructors
  and destructors.
- Use of {%...%} for the %cpp_type tag of parsed typemaps.
- Fix %length for anything but the most trivial wrappers.

0.11_01  Sat Jun  5 11:02:09 CEST 2010
- Parse enum declarations.
- Added an experimental plugin interface.

(sno)

2010-07-31 07:52:04 UTC MAIN commitmail json YAML

Updated x11/p5-Alien-wxWidgets to 0.51

(sno)

2010-07-31 07:51:53 UTC MAIN commitmail json YAML

Updating x11/p5-Alien-wxWidgets from 0.50nb2 to 0.51

Upstream changes:
0.51  Tue Mar 30 22:28:51 CEST 2010
- Build fix for Perl 5.12.

0.50_02  Sun Mar 21 10:33:00 CET 2010
- Fixed 64 bit compilation when using the MinGW-w64 compiler.

0.50_01  Fri Feb 26 17:08:21 CET 2010
        - Added wxWidgets-extraflags build option.
- Exit with an error message under Cygwin.
- Use the system version of Archive::Extract and File::Fetch
  if newer than the bundled version.

(sno)

2010-07-31 07:45:53 UTC MAIN commitmail json YAML

Added devel/p5-PPI-PowerToys

(sno)

2010-07-31 07:44:52 UTC MAIN commitmail json YAML

Added devel/p5-PPI-PowerToys version 0.14

(sno)

2010-07-31 07:44:37 UTC MAIN commitmail json YAML

Importing package for p5 dist PPI-PowerToys-0.14 into devel/p5-PPI-PowerToys

The PPI PowerToys are a small collection of utilities for working with
Perl files, modules and distributions.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:40:37 UTC MAIN commitmail json YAML

Added devel/p5-Test-Pod-Spelling-CommonMistakes

(sno)

2010-07-31 07:38:55 UTC MAIN commitmail json YAML

Added devel/p5-Test-Pod-Spelling-CommonMistakes version 0.01

(sno)

2010-07-31 07:38:30 UTC MAIN commitmail json YAML

Importing package for p5 dist p5-Test-Pod-Spelling-CommonMistakes-0.01 into
devel/p5-Test-Pod-Spelling-CommonMistakes

This module checks modules POD for common spelling errors. This differs
than Test::Spelling because it doesn't use your system spellchecker and
instead uses Pod::Spell::CommonMistakes for the heavy lifting. Using it
is the same as any standard Test::* module, as seen here.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:35:45 UTC MAIN commitmail json YAML

Added textproc/p5-Pod-Spell-CommonMistakes

(sno)

2010-07-31 07:34:50 UTC MAIN commitmail json YAML

Added textproc/p5-Pod-Spell-CommonMistakes version 0.01

(sno)

2010-07-31 07:34:31 UTC MAIN commitmail json YAML

Importing package for p5 module Pod-Spell-CommonMistakes-0.01 into
textproc/p5-Pod-Spell-CommonMistakes.

This module looks for any typos in your POD. It differs from Pod::Spell
or Test::Spelling because it uses a custom wordlist and doesn't use the
system spellchecker. The idea for this came from the
http://wiki.debian.org/Teams/Lintian code in Debian!

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:32:01 UTC MAIN commitmail json YAML

Added devel/p5-Devel-TraceUse

(sno)

2010-07-31 07:31:10 UTC MAIN commitmail json YAML

Added devel/p5-Devel-TraceUse version 2.02

(sno)

2010-07-31 07:30:54 UTC MAIN commitmail json YAML

Importing package for p5 dist Devel-TraceUse-2.02 into devel/p5-Devel-TraceUse

An apparently simple program may load a lot of modules. That's useful, but
sometimes it might be interesting to know exactly which part of a program
loads which module.

Devel::TraceUse can analyze a program to see which part used which module.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:28:18 UTC MAIN commitmail json YAML

Added devel/p5-Devel-Trace

(sno)

2010-07-31 07:27:03 UTC MAIN commitmail json YAML

Added devel/p5-Devel-Trace version 0.10

(sno)

2010-07-31 07:26:46 UTC MAIN commitmail json YAML

Importing package for p5 dist Devel-Trace-0.10 into devel/p5-Devel-Trace.

This provides a 'meatier' version of caller:

caller_cv($level)

    caller_cv gives you the coderef of the subroutine being invoked
    at the call frame indicated by the value of $level

caller_args($level)

    Returns the arguments passed into the caller at level $level

caller_vars( $level, $names ) =item called_with($level, $names)

    called_with returns a list of references to the original
    arguments to the subroutine at $level. if $names is true, the
    names of the variables will be returned instead

    constants are returned as undef in both cases

called_as_method($level)

    called_as_method returns true if the subroutine at $level was
    called as a method.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:24:51 UTC MAIN commitmail json YAML

Updated databases/p5-Tie-DBI to 1.05

(sno)

2010-07-31 07:24:38 UTC MAIN commitmail json YAML

Updating databases/p5-Tie-DBI from 1.02 to 1.05.

pkgsrc changes:
- apply patches from RT#58813
- add license definition

Upstream changes:
1.05 Sat Apr10 01:00 2010
      need to make DBD::SQLite to pre-req to get tests to succeed.
This shouldn't really be an undue burden

1.04 Mon Mar 31 22:25 2010
Add DBD::SQLite to build_requires meta so automated testing
won't fail

1.03 Mon Mar 29 13:00 2010
RT 3695 - SQLite support - Thanks RURBAN
RT 19833 - Don't Chomp blanks. The user can do that in their
script if they intended it.
  NOTE!!! This may break your code if you were depending on
this behavior. Please open an RT ticket if you feel
this needs to be put back in.
Test suite to Test::More

(sno)

2010-07-31 07:18:01 UTC MAIN commitmail json YAML

Added databases/p5-YAML-MLDBM

(sno)

2010-07-31 07:16:58 UTC MAIN commitmail json YAML

Added databases/p5-YAML-MLDBM version 0.10

(sno)

2010-07-31 07:16:23 UTC MAIN commitmail json YAML

Importing package for p5 distribution YAML-MLDBM 0.10 into
databases/p5-YAML-MLDBM

This module is similar to MLDBM except that it stores data internally as
YAML, instead of Data::Dumper or Storable. By doing this, tied hash DBM
databases can be created that can be used seamlessly in Python or Ruby
applications. That's because those languages also have YAML and DBM
modules. As other languages get YAML support, YAML::MLDBM should be able
to be used with them as well.

This module is a wrapper around MLDBM, but you open a DBM file using the
new() method, instead of using a tie. new() will return a reference to
a tied hash.

You can also use YAML as a serialization method for MLDBM itself.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 07:12:21 UTC MAIN commitmail json YAML

Added databases/p5-DBIx-Connector

(sno)

2010-07-31 07:11:21 UTC MAIN commitmail json YAML

Added databases/p5-DBIx-Connector version 0.35

(sno)

2010-07-31 07:11:05 UTC MAIN commitmail json YAML

Importing package for DBIx::Connector 0.35 into databases/p5-DBIx-Connector.

DBIx::Connector provides a simple interface for fast and safe DBI connection
and transaction management. Connecting to a database can be expensive; you
don't want your application to re-connect every time you need to run a query.
The efficient thing to do is to hang on to a database handle to maintain a
connection to the database in order to minimize that overhead.
DBIx::Connector lets you do that without having to worry about dropped or
corrupted connections.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sno)

2010-07-31 01:44:38 UTC MAIN commitmail json YAML

2010-07-30 17:53:52 UTC MAIN commitmail json YAML

Note initial addition of p5-RT-Client-REST version 0.41 as
net/p5-RT-Client-REST into The NetBSD Packages Collection.

The Perl 5 module RT::Client::REST is "/usr/bin/rt" tool converted
to an object-oriented Perl module.

(seb)

2010-07-30 17:53:28 UTC MAIN commitmail json YAML

Add & enable p5-RT-Client-REST

(seb)

2010-07-30 17:53:09 UTC MAIN commitmail json YAML

Initial import of p5-RT-Client-REST version 0.41 in the NetBSD
Packages Collection.

The Perl 5 module RT::Client::REST is "/usr/bin/rt" tool converted
to an object-oriented Perl module.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(seb)

2010-07-30 16:59:49 UTC MAIN commitmail json YAML

there is no point in keeping a runtime dependency on bash just
for a trivial script, so fix the script instead

(drochner)

2010-07-30 16:59:07 UTC MAIN commitmail json YAML

Add patch that should have been in previous commit.

(gdt)

2010-07-30 16:06:37 UTC MAIN commitmail json YAML

2010-07-30 16:02:45 UTC MAIN commitmail json YAML

add urjtag-0.10, a command-line tool for JTAG testing, successor
of the openwince-jtagtools (added features are ejtag support,
bsdl file import and svf player, probably more)
I've added a minimal driver for the "usbprog" adapter. It needs the
"usbprogJTAG" firmware which is not distributed in binary
by the developers but can be easily built with pkgsrc/cross/avr-gcc.
(There is some "openocd" firmware which looks similar, it might be
possible to make this work.)
Caution: The usbprog adapter does no Vref sampling but drives always 5V.
Make sure your taget device tolerates that. (I've tested with a PIC32
eval board.)

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(drochner)

2010-07-30 13:20:44 UTC MAIN commitmail json YAML

Note initial addition of p5-Net-Trac version 0.15 as net/p5-Net-Trac
into The NetBSD Packages Collection.

The Perl 5 module Net::Trac is simple client library for a remote
Trac instance. Because Trac doesn't provide a web services API,
this module currently "fakes" an RPC interface around Trac's webforms
and the feeds it exports. Because of this, it's somewhat more brittle
than a true RPC client would be.

(seb)

2010-07-30 13:20:11 UTC MAIN commitmail json YAML

Add & enable p5-Net-Trac

(seb)

2010-07-30 13:19:54 UTC MAIN commitmail json YAML

Initial import of p5-Net-Trac version 0.15 in the NetBSD Packages
Collection.

The Perl 5 module Net::Trac is simple client library for a remote
Trac instance. Because Trac doesn't provide a web services API,
this module currently "fakes" an RPC interface around Trac's webforms
and the feeds it exports. Because of this, it's somewhat more brittle
than a true RPC client would be.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(seb)

2010-07-30 13:01:24 UTC MAIN commitmail json YAML

2010-07-30 12:59:22 UTC MAIN commitmail json YAML

Note initial addition of p5-Net-Google-Code version 0.19 as
net/p5-Net-Google-Code into The NetBSD Packages Collection.

The Perl 5 module Net::Google::Code is a simple client library for
projects hosted in Google Code. It uses Google's official API and
web scrapping techniques.

(seb)

2010-07-30 12:58:41 UTC MAIN commitmail json YAML

Add & enable p5-Net-Google-Code

(seb)

2010-07-30 12:58:27 UTC MAIN commitmail json YAML

Initial import of p5-Net-Google-Code version 0.19 in the NetBSD
Packages Collection.

The Perl 5 module Net::Google::Code is a simple client library for
projects hosted in Google Code. It uses Google's official API and
web scrapping techniques.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(seb)

2010-07-30 12:52:48 UTC MAIN commitmail json YAML

Updated geography/mapserver to 5.6.5

(adam)

2010-07-30 12:51:22 UTC MAIN commitmail json YAML

Changes 5.6.5:
* Fixed scale calculation problem caused by mapscale.c's inchesPerUnits
  array being out of synch with MS_UNITS enum
* Fixed bitmap text font rendering (tiny was not working)

Changes 5.6.4:
IMPORTANT SECURITY FIXES:
* Disabled some insecure (and potentially exploitable) mapserv command-line
  debug arguments.
* Fixed possible buffer overflow in msTmpFile()

Other fixes:
* Fixed possible race condition with connectiontype WFS layers
* Modified mapserver units enum order to fix some problems with external
  packages
* fix blending of transparent layers with AGG on MSB archs
* Fixed imageObj->saveImage() sends unnecessary headers
* Correct PropertyName parsing for wfs post requests
* Ensure mapwmslayer.c does not unlink file before closing connection on it
* Fix security exception issue in C# with MSVC2010
* Write out join CONNECTIONTYPE when saving a mapfile.
* Fixed attribute queries to use an extent stored (and cached) as part of
  the queryObj rather than the map->extent.
* Reverted msLayerWhichItems() to 5.4-like behavior although still supporting
  retrieving all items
* Grid layer: remove drawing of unnecessary gird lines
* OGC Filters for spatial dbs should be enclosed in parentheses
* Improve the handling of simple string comparisons for raster classified
  values
* Add the ogc namspace to filters generated by Mapserver
* Fix MS_NONSQUARE to work in mode=map
* Improve error message when loadQuery() filename extension check fails
* Fix GetLegendGraphic using keyimages
* Fix getFeatureInfo queries on WFS layers
* Fixed mapstring.c build problem related to errno
* Correct ungeoreferenced defaults via GetExtent() on raster layer
* More adjustments to how TLOCK_GDAL held around msGetGDALGeoTransform

(adam)