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 (0m)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (153d) 

2024-05-12 16:25:08 UTC Now

2015-02-07 14:54:31 UTC MAIN commitmail json YAML

(pkgsrc)
  - Add line PERL5_MODULE_TYPE= Module::Build (as noted below)
(upstream)
  - Update 0.12 to 0.14
-----------------------
0.14 2013-05-18T23:54:21Z
    - Fix a build issue on 5.8.x

0.13 2013-04-13T11:09:06Z
    - Use Module::Build instead of Module::Install with minil(1)
    - No code changes

(mef)

2015-02-07 14:53:50 UTC MAIN commitmail json YAML

Note addition of sysutils/ruby-capistrano-stats package version 1.1.1.

(taca)

2015-02-07 14:53:24 UTC MAIN commitmail json YAML

Add and enable ruby-capistrano-stats.

(taca)

2015-02-07 14:52:26 UTC MAIN commitmail json YAML

Add ruby-capistrano-stats package version 1.1.1.

Official metrics to help the development direction of Capistrano.

Collects anonymous usage statistics about Capistrano to aid with platform
support and ruby version targeting.

(taca)

2015-02-07 14:49:48 UTC MAIN commitmail json YAML

Note addition of net/ruby-netrc package version 0.10.2.

(taca)

2015-02-07 14:49:26 UTC MAIN commitmail json YAML

Add and enable ruby-netrc.

(taca)

2015-02-07 14:48:35 UTC MAIN commitmail json YAML

Add ruby-netrc 0.10.2.

This library can read and update netrc files, preserving formatting
including comments and whitespace.

(taca)

2015-02-07 14:46:28 UTC MAIN commitmail json YAML

Note update of devel/ruby-tins package to 1.3.4.

(taca)

2015-02-07 14:46:05 UTC MAIN commitmail json YAML

Update ruby-tins to 1.3.4.

* 2015-02-04 Release 1.3.4
  - Add some default alphabets to Tins::Token, e. g. Base64
  - Add changes to Readme

(taca)

2015-02-07 14:45:14 UTC MAIN commitmail json YAML

Note update of ruvy-rspec related pacakges:

devel/ruby-rspec-support 3.2.1
devel/ruby-rspec-core 3.2.0
devel/ruby-rspec-expectations 3.2.0
devel/ruby-rspec-mocks 3.2.0
devel/ruby-rspec 3.2.0
devel/ruby-rspec-rails 3.2.0

(taca)

2015-02-07 14:44:08 UTC MAIN commitmail json YAML

Update ruby-rspec-rails to 3.2.0.

### 3.2.0 / 2015-02-03
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.1.0...v3.2.0)

Enhancements:

* Include generator for `ActionMailer` mailer previews (Takashi Nakagawa, #1185)
* Configure the `ActionMailer` preview path via a Railtie (Aaron Kromer, #1236)
* Show all RSpec generators when running `rails generate` (Eliot Sykes, #1248)
* Support Ruby 2.2 with Rails 3.2 and 4.x (Aaron Kromer, #1264, #1277)
* Improve `instance_double` to support verifying dynamic column methods defined
  by `ActiveRecord` (Jon Rowe, #1238)
* Mirror the use of Ruby 1.9 hash syntax for the `type` tags in the spec
  generators on Rails 4. (Michael Stock, #1292)

Bug Fixes:

* Fix `rspec:feature` generator to use `RSpec` namespace preventing errors when
  monkey-patching is disabled. (Rebecca Skinner, #1231)
* Fix `NoMethodError` caused by calling `RSpec.feature` when Capybara is not
  available or the Capybara version is < 2.4.0. (Aaron Kromer, #1261)
* Fix `ArgumentError` when using an anonymous controller which inherits an
  outer group's anonymous controller. (Yuji Nakayama, #1260)
* Fix "Test is not a class (TypeError)" error when using a custom `Test` class
  in Rails 4.1 and 4.2. (Aaron Kromer, #1295)

(taca)

2015-02-07 14:43:30 UTC MAIN commitmail json YAML

Update ruby-rspec to 3.2.0.  It is meta rubygem (package).

(taca)

2015-02-07 14:42:31 UTC MAIN commitmail json YAML

Update ruby-rspec-mocks to 3.2.0.

### 3.2.0 / 2015-02-03
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.1.3...v3.2.0)

Enhancements:

* Treat `any_args` as an arg splat, allowing it to match an arbitrary
  number of args at any point in an arg list. (Myron Marston, #786)
* Print diffs when arguments in mock expectations are mismatched.
  (Sam Phippen, #751)
* Support names for verified doubles (`instance_double`, `instance_spy`,
  `class_double`, `class_spy`, `object_double`, `object_spy`). (Cezary
  Baginski, #826)
* Make `array_including` and `hash_including` argument matchers composable.
  (Sam Phippen, #819)
* Make `allow_any_instance_of(...).to receive(...).and_wrap_original`
  work. (Ryan Fitzgerald, #869)

Bug Fixes:

* Provide a clear error when users wrongly combine `no_args` with
  additional arguments (e.g. `expect().to receive().with(no_args, 1)`).
  (Myron Marston, #786)
* Provide a clear error when users wrongly use `any_args` multiple times in the
  same argument list (e.g. `expect().to receive().with(any_args, 1, any_args)`.
  (Myron Marston, #786)
* Prevent the error generator from using user object #description methods.
  See [#685](https://github.com/rspec/rspec-mocks/issues/685).
  (Sam Phippen, #751)
* Make verified doubles declared as `(instance|class)_double(SomeConst)`
  work properly when `SomeConst` has previously been stubbed.
  `(instance|class)_double("SomeClass")` already worked properly.
  (Myron Marston, #824)
* Add a matcher description for `receive`, `receive_messages` and
  `receive_message_chain`. (Myron Marston, #828)
* Validate invocation args for null object verified doubles.
  (Myron Marston, #829)
* Fix `RSpec::Mocks::Constant.original` when called with an invalid
  constant to return an object indicating the constant name is invalid,
  rather than blowing up. (Myron Marston, #833)
* Make `extend RSpec::Mocks::ExampleMethods` on any object work properly
  to add the rspec-mocks API to that object. Previously, `expect` would
  be undefined. (Myron Marston, #846)
* Fix `require 'rspec/mocks/standalone'` so that it only affects `main`
  and not every object. It's really only intended to be used in a REPL
  like IRB, but some gems have loaded it, thinking it needs to be loaded
  when using rspec-mocks outside the context of rspec-core.
  (Myron Marston, #846)
* Prevent message expectations from being modified by customization methods
  (e.g. `with`) after they have been invoked. (Sam Phippen and Melanie Gilman, #837)
* Handle cases where a method stub cannot be removed due to something
  external to RSpec monkeying with the method definition. This can
  happen, for example, when you `file.reopen(io)` after previously
  stubbing a method on the `file` object. (Myron Marston, #853)
* Provide a clear error when received message args are mutated before
  a `have_received(...).with(...)` expectation. (Myron Marston, #868)

(taca)

2015-02-07 14:41:07 UTC MAIN commitmail json YAML

Update ruby-rspec-expectations to 3.2.0.

### 3.2.0 / 2015-02-03
[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.1.2...v3.2.0)

Enhancements:

* Add `block_arg` method to custom matcher API, which allows you to
  access the block passed to a custom matcher, if there is one.
  (Mike Dalton, #645)
* Provide more detail in failure message of `yield_control` matcher.
  (Jon Rowe, #650)
* Add a shorthand syntax for `chain` in the matcher DSL which assigns values
  for use elsewhere, for example `chain :and_smaller_than, :small_value`
  creates an `attr_reader` for `small_value` (Tom Stuart, #644)
* Provide a more helpful deprecation message when using the `should` syntax.
  (Elia Schito, #663)
* Provide more detail in the `have_attributes` matcher failure message.
  (Jon Rowe,  #668)
* Make the `have_attributes` matcher diffable.
  (Jon Rowe, Alexey Fedorov, #668)
* Add `output(...).to_std(out|err)_from_any_process` as alternatives
  to `output(...).to_std(out|err)`. The latter doesn't work when a sub
  process writes to the named stream but is much faster.
  (Alex Genco, #700)
* Improve compound matchers (created by `and` and `or`) so that diffs
  are included in failures when one or more of their matchers
  are diffable. (Alexey Fedorov, #713)

Bug Fixes:

* Avoid calling `private_methods` from the `be` predicate matcher on
  the target object if the object publicly responds to the predicate
  method. This avoids a possible error that can occur if the object
  raises errors from `private_methods` (which can happen with celluloid
  objects). (@chapmajs, #670)
* Make `yield_control` (with no modifier) default to
  `at_least(:once)` rather than raising a confusing error
  when multiple yields are encountered.
  (Myron Marston, #675)
* Fix "instance variable @color not initialized" warning when using
  rspec-expectations outside of an rspec-core context. (Myron Marston, #689)
* Fix `start_with` and `end_with` to work properly when checking a
  string against an array of strings. (Myron Marston, #690)
* Don't use internally delegated matchers when generating descriptions
  for examples without doc strings. (Myron Marston, #692)

(taca)

2015-02-07 14:40:27 UTC MAIN commitmail json YAML

Update ruby-rspec-core to 3.2.0.

### 3.2.0 / 2015-02-03
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)

Enhancements:

* Improve the `inspect` output of example groups. (Mike Dalton, #1687)
* When rake task fails, only output the command if `verbose` flag is
  set. (Ben Snape, #1704)
* Add `RSpec.clear_examples` as a clear way to reset examples in between
  spec runs, whilst retaining user configuration.  (Alexey Fedorov, #1706)
* Reduce string allocations when defining and running examples by 70%
  and 50% respectively. (Myron Marston, #1738)
* Removed dependency on pathname from stdlib. (Sam Phippen, #1703)
* Improve the message presented when a user hits Ctrl-C.
  (Alex Chaffee #1717, #1742)
* Improve shared example group inclusion backtrace displayed
  in failed example output so that it works for all methods
  of including shared example groups and shows all inclusion
  locations. (Myron Marston, #1763)
* Issue seed notification at start (as well as the end) of the reporter
  run. (Arlandis Word, #1761)
* Improve the documentation of around hooks. (Jim Kingdon, #1772)
* Support prepending of modules into example groups from config and allow
  filtering based on metadata. (Arlandis Word, #1806)
* Emit warnings when `:suite` hooks are registered on an example group
  (where it has always been ignored) or are registered with metadata
  (which has always been ignored). (Myron Marston, #1805)
* Provide a friendly error message when users call RSpec example group
  APIs (e.g. `context`, `describe`, `it`, `let`, `before`, etc) from
  within an example where those APIs are unavailable. (Myron Marston, #1819)
* Provide a friendly error message when users call RSpec example
  APIs (e.g. `expect`, `double`, `stub_const`, etc) from
  within an example group where those APIs are unavailable.
  (Myron Marston, #1819)
* Add new `RSpec::Core::Sandbox.sandboxed { }` API that facilitates
  testing RSpec with RSpec, allowing you to define example groups
  and example from within an example without affecting the global
  `RSpec.world` state. (Tyler Ball, 1808)
* Apply line-number filters only to the files they are scoped to,
  allowing you to mix filtered and unfiltered files. (Myron Marston, #1839)
* When dumping pending examples, include the failure details so that you
  don't have to un-pend the example to see it. (Myron Marston, #1844)
* Make `-I` option support multiple values when separated by
  `File::PATH_SEPARATOR`, such as `rspec -I foo:bar`. This matches
  the behavior of Ruby's `-I` option. (Fumiaki Matsushima, #1855).

Bug Fixes:

* When assigning generated example descriptions, surface errors
  raised by `matcher.description` in the example description.
  (Myron Marston, #1771)
* Don't consider expectations from `after` hooks when generating
  example descriptions. (Myron Marston, #1771)
* Don't apply metadata-filtered config hooks to examples in groups
  with matching metadata when those examples override the parent
  metadata value to not match. (Myron Marston, #1796)
* Fix `config.expect_with :minitest` so that `skip` uses RSpec's
  implementation rather than Minitest's. (Jonathan Rochkind, #1822)
* Fix `NameError` caused when duplicate example group aliases are defined and
  the DSL is not globally exposed. (Aaron Kromer, #1825)
* When a shared example defined in an external file fails, use the host
  example group (from a loaded spec file) for the re-run command to
  ensure the command will actually work. (Myron Marston, #1835)
* Fix location filtering to work properly for examples defined in
  a nested example group within a shared example group defined in
  an external file. (Bradley Schaefer, Xavier Shay, Myron Marston, #1837)
* When a pending example fails (as expected) due to a mock expectation,
  set `RSpec::Core::Example::ExecutionResult#pending_exception` --
  previously it was not being set but should have been. (Myron Marston, #1844)
* Fix rake task to work when `rspec-core` is installed in a directory
  containing a space. (Guido G端nther, #1845)
* Fix regression in 3.1 that caused `describe Regexp` to raise errors.
  (Durran Jordan, #1853)
* Fix regression in 3.x that caused the profile information to be printed
  after the summary. (Max Lincoln, #1857)
* Apply `--seed` before loading `--require` files so that required files
  can access the provided seed. (Myron Marston, #1745)
* Handle `RSpec::Core::Formatters::DeprecationFormatter::FileStream` being
  reopened with an IO stream, which sometimes happens with spring.
  (Kevin Mook, #1757)

(taca)

2015-02-07 14:39:34 UTC MAIN commitmail json YAML

Update ruby-rspec-support to 3.2.1.

### 3.2.1 / 2015-02-04
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.2.0...v3.2.1)

Bug Fixes:

* Fix `RSpec::CallerFilter` to work on Rubinius 2.2.
  (Myron Marston, #169)

### 3.2.0 / 2015-02-03
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.1.2...v3.2.0)

Enhancements:

* Add extra Ruby type detection. (Jon Rowe, #133)
* Make differ instance re-usable. (Alexey Fedorov, #160)

Bug Fixes:

* Do not consider `[]` and `{}` to match when performing fuzzy matching.
  (Myron Marston, #157)

(taca)

2015-02-07 14:34:04 UTC MAIN commitmail json YAML

Note update of devel/ruby-eventmachine package to 1.0.6.

(taca)

2015-02-07 14:33:31 UTC MAIN commitmail json YAML

Update ruby-eventmachine to 1.0.6.

## 1.0.6 (February 3, 2015)
* add support for Rubinius Process::Status [#568]
* small bugfixes for SmtpServer [#449]
* update buftok.rb [#547]
* fix assertion on Write() [#525]
* work around mkmf.rb bug preventing gem installation [#574]
* add pause/resume support to jruby reactor [#556]
* fix pure ruby reactor to use 127.0.0.1 instead of localhost [#439]
* fix compilation under macruby [#243]
* add chunked encoding to http client [#111]
* fix errors on win32 when dealing with pipes [1ea45498] [#105]

(taca)

2015-02-07 14:32:53 UTC MAIN commitmail json YAML

Note update of devel/hoe package to 3.13.1.

(taca)

2015-02-07 14:32:08 UTC MAIN commitmail json YAML

Update hoe to 3.13.1.

pkgsrc change: reduce conflicts between different Ruby version and introduce
      pkg_alternatives support.

=== 3.13.1 / 2015-02-03

* 1 bug fix:

  * Remove deprecated test_files from spec. (igas)

(taca)

2015-02-07 13:28:26 UTC MAIN commitmail json YAML

+ easytag-2.2.6, webkit-gtk-2.6.5 [wip].

(wiz)

2015-02-07 13:19:30 UTC MAIN commitmail json YAML

Updated editors/Sigil to 0.8.3

(wiz)

2015-02-07 13:19:21 UTC MAIN commitmail json YAML

Update to 0.8.3:

Sigil 0.8.3 2015.01.31
    - 10.9.5 is now the minimum OS X version required. Only 10.10.1 has been tested.
    - -DCODE_SIGN_ID=XYZ option has been added to auto sign the app bundle on OS X.
    - Validation result plugins will auto close the Plugin Runner
      Dialog since the dialog has no real info and openes the
      validation pane with the results anyway.
    - New Plugin Preferences Support added
    - Plugins Manager will now remember last folder used
    - Support for building both Linux .deb and .rpm packages
    - Lots of Linux build support, compilation, installation, and
      documentation improvements
    - Qt 5.4 is now a minimum requirement.
    - Build changes to support update to latest Qt 5.4.0 and to
      use latest C++11 compiler
    - Numerous bugs fixed or worked around including:
      - Make Invocation of CSS W3C Online Validator more reliable
      - Fix to make Preview Window update after BookView to prevent
        memory corruption and crashes
      - Workaround Qt bug (font cache assertion) when using
        clearMemoryCaches() - see https://bugreports.qt.io/browse/QTBUG-43504
      - Properly handle loadFinsihed Signal in BookViewPreview to
        prevent clashes between BookView and Preview
      - Fix for Sigil memory use after it was freed bug
      - Workaround to the extent possible Qt bug with memory use after
        free using QWebInspectors - see https://bugreports.qt.io/browse/QTBUG-43725
      - Workaround to the extent possible Qt bug with memory use
        after free when closing MainWindows - see https://bugreports.qt.io/browse/QTBUG-43692
      - Bug fix to prevent crashes in KeyboardsShortcuts when accessing
        Preferences with multiple MainWindows

(wiz)

2015-02-07 13:19:03 UTC MAIN commitmail json YAML

Added x11/qt5-qtwebchannel version 5.4.0

(wiz)

2015-02-07 13:18:55 UTC MAIN commitmail json YAML

+ qt5-qtwebchannel

(wiz)

2015-02-07 13:18:14 UTC MAIN commitmail json YAML

2015-02-07 12:50:03 UTC MAIN commitmail json YAML

Updated devel/dejagnu to 1.5.2

(mef)

2015-02-07 12:49:54 UTC MAIN commitmail json YAML

(pkgsrc)
- Add USE_TOOLS=  gmake
(upstream)
- Update 1.5.1 to 1.5.2
---------------------
2015-01-30  Ben Elliston  <bje@gnu.org>
* DejaGnu 1.5.2 released.

2015-01-30  Ben Elliston  <bje@gnu.org>
* runtest.exp (frame_version): Set to 1.5.2.
* configure.ac (AC_INIT): Set version to 1.5.2.
* configure: Regenerate.
* doc/dejagnu.xml (appversion, version): Set to 1.5.2.
* doc/dejagnu.texi: Regenerate.

2015-01-22  Eric Botcazou  <ebotcazou@adacore.com>
* Makefile.am (baseboard_DATA): Add baseboards/visium-sim.exp.
* Makefile.in: Regenerate.
* baseboards/visium-sim.exp: New file.

2014-11-25  Ben Elliston  <bje@gnu.org>
* lib/dejagnu.exp (host_execute): Remove stray leading hyphen.
Reported by David Malcolm.

2014-10-28  Ben Elliston  <bje@gnu.org>
* Makefile.in: Regenerate.

2014-10-28  Ben Elliston  <bje@gnu.org>
* example: Remove stale examples.

2014-10-24  Steve Ellcey  <sellcey@mips.com>
* dejagnu.h (pass): Make function static as well as inline.
(xpass): Ditto.
(fail): Ditto.
(xfail): Ditto.
(untested): Ditto.
(unresolved): Ditto.
(note): Ditto.
(totals): Ditto.

2014-10-14  Ben Elliston  <bje@gnu.org>
* runtest.exp: Only match $directory, not *${directory}* when the
user passes the --directory option. Reported by Sergey Alyoshin.

2014-10-14  Ben Elliston  <bje@gnu.org>
* lib/dejagnu.exp (host_execute): Remove buffer_full check. This
is not the right command keyword -- it is full_buffer. Reported by
David Malcolm.

2014-07-15  Maciej W. Rozycki  <macro@mips.com>
    Maciej W. Rozycki  <macro@codesourcery.com>
* lib/targetdb.exp (add_board_info): New procedure.
* doc/ref.xml (Add_board_info Procedure): New section.
(Set_board_info Procedure): Add description.
(Unset_board_info Procedure): Likewise.
* doc/user.xml (Board Config File Values): Add `add_board_info'
reference.  Reorder `gdb_init_command' table rows and remove a
duplicate entry, reusing it for `gdb_init_commands'.

2014-06-25  Rob Savoye  <rob.savoye@linaro.org>
* runtest.exp: (lookfor-file): Fix bug were none of the relative
paths were actually being used for file lookup.

2014-06-06  Ben Elliston  <bje@gnu.org>
* depcomp, install-sh, missing: Update to latest versions.
* mkinstalldirs: Remove.
* Makefile.in: Regenerate.

2014-06-04  Ben Elliston  <bje@gnu.org>
* Makefile.in: Regenerate with Automake 1.14.1.
* compile: Add missing file.

2014-06-04  Ben Elliston  <bje@gnu.org>
* config.guess: Update to version 2014-03-23.
* config.sub: Likewise.

2014-06-04  Ben Elliston  <bje@gnu.org>
* aclocal.m4: Regenerate with Automake 1.14.1.
* configure: Regenerate with Autoconf 2.69.

2014-03-15  Steve Ellcey  <sellcey@mips.com>
* baseboards/multi-sim.exp (rpath_flags): Add libatomic.so check.

2014-02-23  Steve Ellcey  <sellcey@mips.com>
    Richard Sandiford  <rdsandiford@googlemail.com>

* config/sim.exp (sim_exec): New.
(sim_file): New.

2013-12-08  Richard Sandiford  <rdsandiford@googlemail.com>
* lib/dg.exp (dg-test): Don't put the expected and actual output
of a pattern test in the test name; send it to the log instead.

2013-11-01  Steve Ellcey  <sellcey@mips.com>
* Makefile.am (baseboard_SCRIPTS): Add multi-sim.exp baseboard.
* Makefile.in: Regenerate.
* baseboards/multi-sim.exp: New.

2013-10-31  Anton Kolesov  <anton.kolesov@synopsys.com>
* lib/remote.exp (standard_reboot): Return 1 instead of an empty string.
(remote_reboot): Add comment explaining return value of this procedure.
* doc/ref.xml (remote_reboot, standard_reboot): Document procedures.
* doc/dejagnu.texi: Regenerate.

2013-10-15  Alexander Ivchenko  <alexander.ivchenko@intel.com>
      * baseboards/androideabi.exp (process_multilib_options): Add option.
      * config/adb.exp: Remove hardcoded -static option.
      (adb_load): Add the possibility to change the temp directory. Also
      handle permission potential problems.
      (adb_exec): Do cd to android_tmp_dir first.

2013-10-05  Jose E. Marchesi  <jose.marchesi@oracle.com>
* baseboards/unix.exp: Add gdb settings to not use hardware
watchpoints in sparc64 running GNU/Linux.

2013-06-17  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* runtest.exp (libdirs): New global variable.
(load_lib): Append libdirs to search_and_load_files directories.
* doc/ref.xml (load_lib): Document global variable libdirs.
* doc/dejagnu.texi: Regenerate.
* testsuite/runtest.all/load_lib.exp: New testcase.
* Makefile.am (TESTSUITE_FILES): Add new testcase.
* Makefile.in: Regenerate.

2013-06-15  Ben Elliston  <bje@gnu.org>
* configure.ac: If DEJAGNU is unset, set it to /dev/null.
* Makefile.am: Export DEJAGNU.
* configure: Likewise.
* Makefile.in: Regenerate.

2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* doc/user.xml: Fix typos.
* doc/ref.xml: Likewise.
* doc/dejagnu.texi: Regenerate.

2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* doc/user.xml: Fix number of columns in table.
* doc/dejagnu.texi: Regenerate.

2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* doc/user.xml: Fix rendering errors around programlisting.
* doc/ref.xml: Likewise.
* doc/dejagnu.texi: Regenerate.

2013-06-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* doc/user.xml: Fix spacing before productname.
* doc/dejagnu.texi: Regenerate.

2013-06-12  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
* testsuite/runtest.all/default_procs.tcl (send_log): Use the
magic "args" parameter name, as expect send_log proc accepts -- as
a leading option.

2013-06-08  Makoto Fujiwara  <makoto@ki.nu>
* Makefile.am (pkgdata_DATA): Rename from pkgdata_SCRIPTS.
(config_DATA): Likewise for config_SCRIPTS.
(baseboard_DATA): Likewise for baseboard_SCRIPTS.
(EXTRA_DIST): Remove pkgdata_SCRIPTS, config_SCRIPTS and
baseboard_SCRIPTS.
* Makefile.in: Regenerate.

2013-06-08  Ben Elliston  <bje@gnu.org>
* configure: Regenerate with autoconf 2.69.
* aclocal.m4: Regenerate.

(mef)

2015-02-07 12:00:11 UTC MAIN commitmail json YAML

Updated devel/autoconf-archive to 2015.02.04

(wiz)

2015-02-07 12:00:00 UTC MAIN commitmail json YAML

Update to 2015.02.04:

* Noteworthy changes in release 2015.02.04 (2015-02-04) [stable]

  AX_OPENMP: Test that we can actually #include <omp.h> successfully.

  AX_COMPILER_FLAGS was re-factored into AX_COMPILER_FLAGS_CFLAGS and
  AX_COMPILER_FLAGS_LDFLAGS.

  AX_CODE_COVERAGE detects gcov program.

  AX_VALGRIND_CHECK now supports running without libtool.

  AX_GCC_VERSION was improved.

  Re-factored and modernized the macros AX_CXX_TEMPLATES, AX_CXX_CONST_CAST,
  AX_CXX_COMPLEX_MATH_IN_NAMESPACE_STD, AX_CXX_BOOL, AX_APPEND_FLAG,
  AX_CHECK_*_FLAG, AX_CHECK_ENABLE_DEBUG, and
  AX_CXX_DEFAULT_TEMPLATE_PARAMETERS.

  AX_CXX_COMPILER_VENDOR was deprecated in favor of AX_COMPILER_VENDOR.

  AX_HAVE_OPENGL was deprecated in favor of AX_CHECK_GL, AX_CHECK_GLU,
  AX_CHECK_GLUT, and AX_CHECK_GLX.

  AX_CHECK_GL has a new parameter --with-mesa that allows choosing the order of
  opengl lib detection.

  Portability of AX_LUA was improved. Support for LUA 5.0 was added.

  New macros AX_IS_RELEASE, AX_COMPILER_FLAGS_GIR, AX_CXX_ERASE_ITERATOR_TYPE,
  AX_COMPILER_VERSION, AX_CHECK_GLX, AX_CHECK_VSCRIPT, AX_VALGRIND_CHECK,
  AX_PKG_CHECK_MODULES, and AX_COMPILER_FLAGS were added.

  AX_PROG_FLEX: Also accept gflex.

  AX_LIB_HDF5: remove extra leading space from include path flag. That space
  creeps into HDF5_CPPFLAGS and breaks the include path flag into two tokens,
  e.g., "-I" and "/usr/include". While this may be legal and doesn't affect the
  compilation, it does break some library tools (e.g., when the macro is used
  in building a dynamic library that uses pkg-config).

  AX_PERL_MODULE_VERSION: use more portable syntax for shell arithmetic.

  AX_JNI_INCLUDE_DIR: support standard Oracle JDK installation layout on Mac OS
  X.

  AX_PROG_JAVAH_BIN_DIR: fix misspelled variable name and follow javah symlink
  to find jni.h.

  AX_BOOST_PYTHON: use unique names for local variables

(wiz)

2015-02-07 10:14:56 UTC MAIN commitmail json YAML

Updated databases/mysql55 to 5.5.42

(adam)

2015-02-07 10:13:59 UTC MAIN commitmail json YAML

Changes 5.5.42:
* Support for the SSL 2.0 and SSL 3.0 protocols has been disabled because they provide weak encryption.
* yaSSL was upgraded to version 2.3.7.
* The valid date range of the SSL certificates in mysql-test/std_data has been extended to the year 2029.
* Bugs Fixed

(adam)

2015-02-07 09:35:55 UTC MAIN commitmail json YAML

Bootkit for FreeBSD needs to use pkgsrc libiconv

(pho)

2015-02-07 09:25:50 UTC MAIN commitmail json YAML

Added devel/p5-List-Pairwise version 1.03

(wiz)

2015-02-07 09:25:17 UTC MAIN commitmail json YAML

Added devel/p5-Git-Repository-Plugin-AUTOLOAD version 1.001

(wiz)

2015-02-07 09:12:22 UTC MAIN commitmail json YAML

+ p5-List-Pairwise.

(wiz)

2015-02-07 09:11:36 UTC MAIN commitmail json YAML

Import p5-List-Pairwise-1.03 as devel/p5-List-Pairwise,
packaged for wip by mef.

List::Pairwise provides functions to map and grep lists two
elements at a time, setting $a and $b to each pair instead of
setting $_ to each element.

As of version 1.01, List::Pairwise now tries to use the newly
implemented XS functions pairmap, pairgrep, pairfirst and
pairs from List::Util 1.31 and up, resulting in a major
speedup.

New code should now preferably use List::Util functions
directly, with the added benefit of relying on a Perl core
module.

(wiz)

2015-02-07 08:47:55 UTC MAIN commitmail json YAML

+ p5-Git-Repository-Plugin-AUTOLOAD (packaged for wip by mef).

(wiz)

2015-02-07 08:47:27 UTC MAIN commitmail json YAML

Import p5-Git-Repository-Plugin-AUTOLOAD-1.001 as devel/p5-Git-Repository-Plugin-AUTOLOAD.

This module adds an AUTOLOAD method to Git::Repository, enabling it to
automagically call git commands as methods on Git::Repository objects.

(wiz)

2015-02-06 15:28:17 UTC MAIN commitmail json YAML

+ Sigil-0.8.3, cwm-5.6, gperftools-2.4 [pkg/49625],
  modular-xorg-server-1.17.0, vile-9.8p.

(wiz)

2015-02-06 09:58:32 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-MinimumVersion to 1.38

(wen)

2015-02-06 09:56:59 UTC MAIN commitmail json YAML

Update to 1.38
Update DEPENDS

Upstream changes:
1.38 2014-08-22
    - The doc for Perl::MinimumVersion now mentions perlver in both
      the DESCRIPTION and SEE ALSO sections. RT#98262 from pagenyon++.
    - Added mention of Perl::MinimumVersion::Fast to SEE ALSO.

1.37 2014-05-11
    - Removed the check for "stacked labels" that I added in 1.36, as it appears
      that I misinterpreted what the 5.14 change was, and broke at least one dist.
      Commented out the check in MinimumVersion.pm, and the specific subtests.
      Apologies to HMBRAND and all others affected
    - The way I was comparing versions in one of the new tests in 1.36 wasn't portable
      across old versions of Perl. Thanks to Paul Howarth for RT#95528.

1.36 2014-05-09
    - CHECK block requires 5.6.2
    - UNITCHECK block requires 5.10.0
    - Stacked labels on the same statement requires 5.14.0

1.35 2014-05-02
    - 'state' requires perl 5.10.0, even if you don't also see
      "use feature 'state'", because you can also write "use 5.010" to
      enable 'state'. RT#67626
    - Dropped the rule that said "use base 'Exporter'" should make a
      dependency on Perl 5.008+ RT#89173
    - Improved the fix for RT#95023. Thanks again to Paul Howarth.

1.34 2014-04-24
    - The perlver script wasn't getting installed, because it's in
      a script/ directory. RT#95023, fix from ETHER.
    - t/02_main.t was failing on older versions of perl, because
      a min version is getting reported as '5.01301' on Perl 5.010 and later,
      but as '5.013010' on earlier Perls. RT#95023. I need to understand this
      better, but want to get a passing release out.

1.33 2014-04-24
    - Internals::SvREADONLY requires perl 5.8.0
    - handle features upto lexical_subs, which requires 5.18.0
      state, switch, unicode_strings, unicode_eval, evalbytes,
      current_sub, array_base, fc, lexical_subs
    - deprecate.pm requires perl 5.12 (Alexandr Ciornii)
    - require new version of PPIx::Regexp
    - detect while(readdir $dh) (Alexandr Ciornii)
    - Switched to Dist::Zilla
    - Added required versions of modules when use'ing them
    - Reformatted Changes as per CPAN::Changes::Spec

(wen)

2015-02-06 09:33:39 UTC MAIN commitmail json YAML

Works with python-3.x after all.

(wiz)

2015-02-06 07:20:40 UTC MAIN commitmail json YAML

Updated audio/pulseaudio to 5.0nb3

(snj)

2015-02-06 07:20:14 UTC MAIN commitmail json YAML

pulseaudio wants speexdsp, not just speex. bump PKGREVISION.

(snj)

2015-02-06 06:57:13 UTC MAIN commitmail json YAML

${MAKE} bootstrap: Build bootkits with -static-libgcc

We don't want our bootkits to have a run-time dependency on libgcc. In
fact GHC's implementation of Haskell exception handling does not
depend on libgcc's facilities so it is attractive to do the same for
"normal" build... but we can't. This is because Haskell programs may
call C functions via FFI, and those C functions may call C++ functions
in turn, possibly in a different shared library.

But on some platforms, gcc automagically inserts a dependency on a
shared libgcc when -lpthread is given, which is seemingly unavoidable.

(pho)

2015-02-06 05:57:50 UTC MAIN commitmail json YAML

Updated devel/p5-Hash-Case to 1.020

(mef)

2015-02-06 05:57:37 UTC MAIN commitmail json YAML

Update to 1.020
--------------
version 1.02: Fri Mar  9 09:24:30 CET 2012
        Fixes:
        - typo in docs.  rt.cpan.org#75630 [Florian Schlich]
        - remove unused nested Makefile.PL
          rt.cpan.org#75630 [Florian Schlich]

(mef)

2015-02-06 05:49:04 UTC MAIN commitmail json YAML

Updated devel/p5-Git-CPAN-Patch to 2.0.3

(mef)

2015-02-06 05:48:56 UTC MAIN commitmail json YAML

(pkgsrc)
- Add following DEPENDS+=
p5-Archive-Any-[0-9]*
p5-CPANPLUS-[0-9]*
p5-CPAN-ParseDistribution-[0-9]*
p5-Git-Repository-Plugin-AUTOLOAD-[0-9]*
p5-List-Pairwise-[0-9]*
p5-MooseX-App-[0-9]*
p5-MooseX-Role-Tempdir-[0-9]*
p5-Test-MockObject-[0-9]*
- Switch DEPENDS
      - p5-Method-Signatures-[0-9]*
      + p5-Method-Signatures-Simple-[0-9]*
(upstream)
- Update 0.8.0 to 2.0.3
---------------------
2.0.3 2014-03-17
[BUG FIXES]
- Deal with any archives and other fixes. (RT#92928, reported by Alexandr
  Ciornii)

[STATISTICS]
- code churn: 7 files changed, 79 insertions(+), 26 deletions(-)

2.0.2 2014-03-03
[BUG FIXES]
- Author and date of release take precedence over the GIT_* env variables.
  (RT#93481, reported by Slaven Rezic)

[DOCUMENTATION]
- Remove mention of option '--backpan' for import. (RT#93482, raised by
  Slaven Rezic)

[STATISTICS]
- code churn: 4 files changed, 18 insertions(+), 42 deletions(-)

2.0.1 2014-02-15
[BUG FIXES]
- Added dependency to Git::Repository::Plugin::AUTOLOAD.
- Re-introduced Pod::Weaver (spotted by Neil Bowers).

[STATISTICS]
- code churn: 3 files changed, 14 insertions(+), 4 deletions(-)

2.0.0 2014-02-12
[API CHANGES]
- Will now clone of the official git repository, if there is one.

[STATISTICS]
- code churn: 13 files changed, 385 insertions(+), 64 deletions(-)

1.3.1 2013-07-27
[BUG FIXES]
- Bump minimal Perl requirements to 5.10.1 (for smartmatches).

[STATISTICS]
- code churn: 2 files changed, 10 insertions(+), 2 deletions(-)

1.3.0 2013-07-18
[ENHANCEMENTS]
- Silence smart-match warnings for 5.18+

[STATISTICS]
- code churn: 2 files changed, 25 insertions(+), 16 deletions(-)

1.2.1 2013-07-15
[BUG FIXES]
- Was using 'return $foo or die' instead of 'return $foo || die'.

[STATISTICS]
- code churn: 2 files changed, 11 insertions(+), 4 deletions(-)

1.2.0 2013-04-21
[ENHANCEMENTS]
- Move to Method:::Signature::Simple as M::S doesn't work with 5.17.11.
  (GH#14, ilmari)

[STATISTICS]
- code churn: 14 files changed, 32 insertions(+), 16 deletions(-)

1.1.2 2013-04-14
[BUG FIXES]
- bump dependency for MooseX::App to solve boolean argument problem.

[STATISTICS]
- code churn: 2 files changed, 9 insertions(+), 10 deletions(-)

1.1.1 2013-04-01
[BUG FIXES]
- changes in latest MooseX::App broke Git::CPAN::Patch  (RT#84349,
  reported by Peter Valdemar Mæ·¡rch)

[STATISTICS]
- code churn: 8 files changed, 47 insertions(+), 18 deletions(-)

1.1.0 2013-01-19
[ENHANCEMENTS]
- Simplify code after MooseX::App improvements (maros rocks)

[STATISTICS]
- code churn: 2 files changed, 19 insertions(+), 75 deletions(-)

1.0.3 2013-01-08
[BUG FIXES]
- Specify Method::Signature minimal version.

[STATISTICS]
- code churn: 2 files changed, 14 insertions(+), 7 deletions(-)

1.0.2 2013-01-03
[BUG FIXES]
- Removed s///r use.

[STATISTICS]
- code churn: 2 files changed, 17 insertions(+), 7 deletions(-)

1.0.1 2013-01-01
[BUG FIXES]
- Hide the MooseX::App monkeypatching from the cpan indexer.

[DOCUMENTATION]
- Change 'git cpan' for the new 'git-cpan'.

[STATISTICS]
- code churn: 9 files changed, 41 insertions(+), 25 deletions(-)

1.0.0 2013-01-01
[API CHANGES]
- Major rewrite using MooseX::App

[ENHANCEMENTS]
- cpan-git-import now uses metacpan instead of CPANPLUS
- removed gitpan support, as it has gone dormant

[STATISTICS]
- code churn: 38 files changed, 1594 insertions(+), 1244 deletions(-)

(mef)

2015-02-06 05:30:13 UTC MAIN commitmail json YAML

Added devel/p5-MooseX-Role-Tempdir version 0.03
Added devel/p5-CPANPLUS version 0.9152
Added devel/p5-MooseX-App version 1.30
Added devel/p5-Object-Accessor version 0.48
Added devel/p5-Log-Message version 0.08

(mef)

2015-02-06 05:14:18 UTC MAIN commitmail json YAML

Import p5-MooseX-App-1.30 as devel/p5-MooseX-App.

MooseX-App is a highly customisable helper to write user-friendly command
line applications without having to worry about most of the annoying things
usually involved.

Just take any existing Moose class, add a single line (use MooseX-App
qw(PluginA PluginB ...);) and create one class for each command in an
underlying namespace. Options and positional parameters can be defined as
simple Moose accessors.

(mef)

2015-02-06 05:13:11 UTC MAIN commitmail json YAML

Import p5-Log-Message-0.08 as devel/p5-Log-Message.

Log::Message is a generic message storage mechanism. It allows you to store
messages on a stack -- either shared or private -- and assign meta-data to
it. Some meta-data will automatically be added for you, like a timestamp
and a stack trace, but some can be filled in by the user, like a tag by
which to identify it or group it, and a level at which to handle the
message (for example, log it, or die with it)

Log::Message also provides a powerful way of searching through items by
regexes on messages, tags and level.

(mef)

2015-02-06 05:12:55 UTC MAIN commitmail json YAML

Import p5-Object-Accessor-0.48 as devel/p5-Object-Accessor.

Object::Accessor provides an interface to create per object
accessors (as opposed to per Class accessors, as, for example,
Class::Accessor> provides.

You can choose to either subclass this module, and thus using its
accessors on your own module, or to store an Object::Accessor
object inside your own object, and access the accessors from
there.

(mef)

2015-02-06 05:12:28 UTC MAIN commitmail json YAML

Import p5-CPANPLUS-0.9152 as devel/p5-CPANPLUS.

The "CPANPLUS" library is an API to the "CPAN" mirrors and a
collection of interactive shells, commandline programs, daemons, etc,
that use this API.

(mef)

2015-02-06 05:11:38 UTC MAIN commitmail json YAML

Import p5-MooseX-Role-Tempdir-0.03 as devel/p5-MooseX-Role-Tempdir.

MooseX::Role::Tempdir - Moose role to provide temporary directories
---------------
package My::Awesome::Package;
        use Moose;
        with 'MooseX::Role::Tempdir';

        my $newfh;
        open($newfh, '>', $self->tmpdir()."/newfile") or die "ohno! $!";
        ...
----------------

(mef)

2015-02-06 02:04:30 UTC MAIN commitmail json YAML

Added emulators/gpsp-rpi version 20150205

(jmcneill)

2015-02-06 02:02:33 UTC MAIN commitmail json YAML

2015-02-06 02:02:03 UTC MAIN commitmail json YAML

Import gpsp-rpi-20150205 as emulators/gpsp-rpi.

gameplaySP (gpSP for short) is a GBA emulator written completely from
scratch. It is still pretty young (only having started a 3 months prior
to the first release) and thus rather immature, but it does a decent
job of playing a number of games, and is being improved upon somewhat
regularly. It is currently somewhat minimalistic, in the sourcecode,
presentation, and features. Its number one focus is to deliver a GBA
gaming experience in the most playable way that PSP can manage, with
frills being secondary (although still a consideration, at least for
some of them).

This version of gpSP is optimized for the Raspberry Pi.

(jmcneill)

2015-02-06 01:27:25 UTC MAIN commitmail json YAML

Instead of naming USB joysticks by device name ("/dev/uhid3"), try to give
it a more helpful name ("Logitech Cordless RumblePad 2 @ /dev/uhid3")

(jmcneill)

2015-02-06 01:24:48 UTC MAIN commitmail json YAML

patches/patch-rts_ghc.mk: dtrace hack is no longer needed

The problem only occurs when $(WhatGccIsCalled) is an absolute path to
the "real" gcc (e.g. "/usr/bin/gcc"), which happens if we run
${WRKSRC}/configure with an option something like
"--with-gcc=/usr/bin/gcc". As long as we use "--with-gcc" with a
command name (i.e. ${CC}, not ${CCPATH}), everything works fine
without any problems.

This is because dtrace(1) executes cpp in a rather weird way: it calls
execvp("/usr/bin/gcc", argv) with argv set to {"gcc", "-E", "-xc",
...}, not {"/usr/bin/gcc", "-E", "-xc", ...}.

When GCC is called that way, it needs to find platform-specific
subprograms by walking through ${PATH}. And if it sees an executable
named "gcc" which in fact isn't actually gcc, it gets confused and
dies with an error:

  % cat dtrace-emu.c
  #include <unistd.h>
  #include <stdio.h>
  int main() {
      char *argv[] = {"gcc", "-E", NULL};
      execvp("/usr/bin/gcc", argv);
      return 0;
  }
  % gcc dtrace-emu.c -o /tmp/gcc
  % /tmp/gcc
  powerpc-apple-darwin9-gcc-4.0.1: no input files
  % PATH=/tmp/gcc /tmp/gcc
  gcc: installation problem, cannot exec '/tmp/powerpc-apple-darwin9-gcc-4.0.1':
  No such file or directory

And even if the problem should really be addressed, it should be done
in the wrapper framework because dtrace(1) is actually a part of
compiler toolchain.

(pho)

2015-02-05 23:52:46 UTC pkgsrc-2014Q4 commitmail json YAML

2015-02-05 23:52:36 UTC pkgsrc-2014Q4 commitmail json YAML

Pullup ticket #4604 - requested by sp
devel/libevent: security update
devel/py-libevent-rpcgen: security update

Revisions pulled up:
- devel/libevent/Makefile                                      1.46
- devel/libevent/Makefile.common                                1.2
- devel/libevent/distinfo                                      1.30
- devel/py-libevent-rpcgen/distinfo                            1.2

---
  Module Name: pkgsrc
  Committed By: spz
  Date: Wed Feb  4 08:04:34 UTC 2015

  Modified Files:
  pkgsrc/devel/libevent: Makefile Makefile.common distinfo
  pkgsrc/devel/py-libevent-rpcgen: distinfo

  Log Message:
  update libevent to version 2.0.22 (which also updates py-libevent-rpcgen)

  Upstream ChangeLog:

  Changes in version 2.0.22-stable (5 Jan 2015)

  SECURITY FIXES (evbuffers)
    o Avoid integer overflow bugs in evbuffer_add() and related functions.
      See CVE-2014-6272 advisory for more information.
      (20d6d4458bee5d88bda1511c225c25b2d3198d6c)

  BUGFIXES (evhttp)
    o fix #73 and fix http_connection_fail_test to catch it (crash fix)
      (b618204 Greg Hazel)
    o Avoid racy bufferevent activation (5eb1788 Nate Rosenblum)

  BUGFIXES (compilation and portability)
    o Fix compilation with WIN32_HAVE_CONDITION_VARIABLES enabled (7e45739)
    o Fix missing AC_PROG_SED on older Autoconfs (9ab2b3f Tay Ray Chuan)
    o Backport libevent to vanilla Autoconf 2.59 (as used in RHEL5)
      (74d4c44 Kevin Bowling)
    o Use AC_CONFIG_HEADERS in place of AM_CONFIG_HEADERS for
      automake 1.13 compat (817ea36)
    o Rename configure.in to configure.ac to appease newer autoconfs (0c79787)
    o Avoid using top_srcdir in TESTS: new automakes do not like this (a55514e)
    o Use windows vsnprintf fixup logic on all windows environments (e826f19)
    o Fix a compiler warning when checking for arc4random_buf linker breakage.
      (5cb3865)
    o Fix another arc4random_buf-related warning (e64a2b0)
    o Add -Qunused-arguments for clang on macos (b56611d Trond Norbye)

  BUGFIXES (resource leaks/lock errors on error)
    o Avoid leaking fds on evconnlistener with no callback set (69db261)
    o Avoid double-close on getsockname error in evutil_ersatz_socketpair
      (0a822a6)
    o Fix a locking error in bufferevent_socket_get_dns_error. (0a5eb2e)
    o libevent/win32_dealloc() : fix sizeof(pointer) vs sizeof(*pointer)
      (b8f5980 Frank Denis)

  BUGFIXES: (other stability)
    o bufferevent_pair: don't call downcast(NULL) (f2428a2)
    o Consistently check for failure from evbuffer_pullup() (60f8f72)
    o Fix race caused by event_active (3c7d6fc vjpai)

  BUGFIXES (miscellaneous)
    o Avoid redundant invocations of init_extension_functions for IOCP (3b77d62)
    o Typo fixes from Linus Nordberg (cec62cb, 8cd695b)
    o Add a few files created by "make verify" to .gitignore.
      (1a8295a Pierre Phaneuf)
    o regress_buffer: fix 'memcmp' compare size (79800df Maks Naumov)
    o Fix bufferevent setwatermark suspend_read (b34e4ac ufo2243)
    o Fix evbuffer_peek() with len==-1 and start_at non-NULL. (fb7e76a)

  BUFGIXES (evdns)
    o Checking request nameserver for NULL, before using it.
      (5c710c0 Belobrov Andrey)
    o Fix SEGFAULT after evdns_base_resume if no nameservers installed.
      (f8d7df8 Azat Khuzhin)
    o Fix a crash in evdns related to shutting down evdns (9f39c88,e8fe749)

  BUGFIXES (epoll)
    o Check does arch have the epoll_create and __NR_epoll_wait syscalls.
      (dfe1e52 Marcin Juszkiewicz)

  BUGFIXES (evutil_secure_random)
    o Avoid other RNG initialization FS reads when urandom file is specified
      (9695e9c, bb52471)
    o When we seed from /proc/sys/kernel/random/uuid, count it as success (e35b540)
    o Document that arc4random is not a great cryptographic PRNG. (6e49696)
    o Add evutil_secure_rng_set_urandom_device_file (2bbb5d7)
    o Really remove RNG seeds from the stack (f5ced88)

  DOCUMENTATION FIXES
    o Fix a mistake in evbuffer_remove() arguments in example http server
      code (c322c20 Gyepi Sam)
    o Fix a typo in a comment in buffer.h. Spotted by Alt_F4 (773b0a5)
    o Clarify event_base_loop exit conditions (031a803)
    o Use FindClose for handle from FindFirstFile in http-server.c (6466e88)
    o Fix a typo in a doxygen comment. Reported by 亦得. (be1aeff)

(tron)

2015-02-05 22:40:07 UTC MAIN commitmail json YAML

Added emulators/libretro-stella version 20150205

(jmcneill)

2015-02-05 22:39:26 UTC MAIN commitmail json YAML

2015-02-05 22:38:59 UTC MAIN commitmail json YAML

Import libretro-stella-20150205 as emulators/libretro-stella.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

Stella is an Atari 2600 video game system emulator.

(jmcneill)

2015-02-05 21:29:59 UTC MAIN commitmail json YAML

Only depend on nasm on amd64 and i386.

Note that it uses NEON instructions on ARM.

(rjs)

2015-02-05 21:21:57 UTC MAIN commitmail json YAML

Updated sysutils/ansible to 1.6.10

(pettai)

2015-02-05 21:02:37 UTC MAIN commitmail json YAML

It's either rpi or MesaLib. Try to express this using pkgsrc options.
Based on a comment by jmcneill.

(wiz)

2015-02-05 20:25:56 UTC MAIN commitmail json YAML

Depend on py-expat, and limit to python-2.x for build.
(With python-3.x I saw an error about 'aliases' not being found (IIRC)
and then a python coredump.)

(wiz)

2015-02-05 19:47:23 UTC MAIN commitmail json YAML

fix typo in gst-plugins1-omx

(mspo)

2015-02-05 19:40:34 UTC pkgsrc-2014Q4 commitmail json YAML

Pullup tickes #4601, #4602 and #4603.

(tron)

2015-02-05 19:40:14 UTC pkgsrc-2014Q4 commitmail json YAML

Pullup ticket #4603 - requested by dholland
lang/smalltalk: build fix

Revisions pulled up:
- lang/smalltalk/options.mk                                    1.2

---
  Module Name: pkgsrc
  Committed By: dholland
  Date: Thu Feb  5 17:32:20 UTC 2015

  Modified Files:
  pkgsrc/lang/smalltalk: options.mk

  Log Message:
  fix fatal typo

(tron)

2015-02-05 18:50:33 UTC pkgsrc-2014Q4 commitmail json YAML

Pullup ticket #4602 - requested by snj
shells/zsh: bug fix patch

Revisions pulled up:
- shells/zsh/Makefile                                          1.68
- shells/zsh/distinfo                                          1.50
- shells/zsh/patches/patch-Completion_Base_Utility__call__program 1.1

---
  Module Name:    pkgsrc
  Committed By:  snj
  Date:          Wed Feb  4 09:22:34 UTC 2015

  Modified Files:
          pkgsrc/shells/zsh: Makefile distinfo
  Added Files:
          pkgsrc/shells/zsh/patches:
  patch-Completion_Base_Utility__call__program

  Log Message:
  Apply upstream revision 22c4ea424ce2e8febce04d324c5ec9898f5d534b.

  Thix fixes, at the very least, issues with cvs command/filename
  completion.

  Bump PKGREVISION to 1.

(tron)

2015-02-05 18:45:29 UTC pkgsrc-2014Q4 commitmail json YAML

Pullup ticket #4601 - requested by taca
mail/roundcube: security update

Revisions pulled up:
- mail/roundcube/Makefile                                      1.66
- mail/roundcube/distinfo                                      1.39

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Sat Jan 24 16:36:29 UTC 2015

  Modified Files:
  pkgsrc/mail/roundcube: Makefile distinfo

  Log Message:
  Update roundcube to 1.0.5.

  RELEASE 1.0.5
  -------------
  - Fix bug where some valid text in a message was handled as uuencoded attachment
  - Fix wrong icon for download button in classic skin
  - Fix bug where sent message was saved in Sent folder even if disabled by user (#1490208)
  - Fix checks based on window.ActiveXObject in IE > 10
  - Fix XSS issue in style attribute handling (#1490227)
  - Fix bug where Drafts list wasn't updated on draft-save action in new window (#1490225)
  - Fix so "set as default" option is hidden if identities_level > 1 (#1490226)
  - Fix bug where search was reset after returning from compose visited for reply
  - Fix javascript error in "IE 8.0/Tablet PC" browser (#1490210)
  - Fix bug where empty fieldmap config entries caused empty results of ldap search (#1490229)

(tron)

2015-02-05 18:20:06 UTC MAIN commitmail json YAML

Bug was fixed slightly differently upstream, remove unnecessary patch.

(wiz)

2015-02-05 17:46:06 UTC MAIN commitmail json YAML

Updated devel/cmake to 3.1.2

(adam)

2015-02-05 17:45:22 UTC MAIN commitmail json YAML

Changes 3.1.2:
* install: Fix regression in default configuration selection
* CPack: Fix packaging of source tarballs with symbolic links
* KWSys Directory: Check opendir return value before using it
* Help: Clarify status of link_libraries command
* Normalize OBJECT_DEPENDS paths to match custom commands
* MSVC: Fix initialization of RelWithDebInfo shared library link flags
* FeatureSummary: Fix bracket in documentation.
* FindOpenSSL: fix detection of OpenSSL 1.0.2
* ctest_build: Update GNU make error message matching

(adam)

2015-02-05 17:45:20 UTC MAIN commitmail json YAML

patches/patch-rts_ghc.mk: Fix build failure on Darwin

See the comment for details.

(pho)

2015-02-05 17:42:06 UTC MAIN commitmail json YAML

2015-02-05 17:34:09 UTC MAIN commitmail json YAML

2015-02-05 17:33:12 UTC MAIN commitmail json YAML

Use MesaLib only on non-arm.
Support dynarec option on i386 and x86_64 too.

(wiz)

2015-02-05 17:32:20 UTC MAIN commitmail json YAML

2015-02-05 17:22:26 UTC MAIN commitmail json YAML

Add MesaLib/bl3.mk. Still doesn't build for me but gets further.

(wiz)

2015-02-05 17:17:11 UTC MAIN commitmail json YAML

Since options are ARM-specific, but options framework insists on having
at least one option, include options.mk only on ARM.

(wiz)

2015-02-05 17:15:52 UTC MAIN commitmail json YAML

2015-02-05 16:57:53 UTC MAIN commitmail json YAML

2015-02-05 16:57:37 UTC MAIN commitmail json YAML

2015-02-05 16:57:17 UTC MAIN commitmail json YAML

2015-02-05 16:51:54 UTC MAIN commitmail json YAML

Add net/p5-File-RsyncP

(tnn)

2015-02-05 16:50:48 UTC MAIN commitmail json YAML

Add net/p5-File-RsyncP

(tnn)

2015-02-05 16:49:13 UTC MAIN commitmail json YAML

Import p5-File-RsyncP-0.74 as net/p5-File-RsyncP.

File::RsyncP is a perl implementation of an Rsync client.  It is
compatible with Rsync 2.x (protocol versions up to 28).  It can send
or receive files, either by running rsync on the remote machine, or
connecting to an rsyncd deamon on the remote machine.

(tnn)

2015-02-05 16:46:17 UTC MAIN commitmail json YAML

Fix installation. Replace interpreter in an installed python script,
and depend on python for it.

(wiz)

2015-02-05 16:38:47 UTC MAIN commitmail json YAML

Add bash to USE_TOOLS.

(wiz)

2015-02-05 16:23:11 UTC MAIN commitmail json YAML

2015-02-05 15:52:06 UTC MAIN commitmail json YAML

Note update of www/ruby-puma package to 2.11.0.

(taca)

2015-02-05 15:51:35 UTC MAIN commitmail json YAML

Update ruby-puma to 2.11.0.

=== 2.11.0 / 2015-01-20

* 9 bug fixes:
  * Add mode as an additional bind option to unix sockets. Fixes #630
  * Advertise HTTPS properly after a hot restart
  * Don't write lowlevel_error_handler to state
  * Fix phased restart with stuck requests
  * Handle spaces in the path properly. Fixes #622
  * Set a default REMOTE_ADDR to avoid using peeraddr on unix sockets. Fixes #583
  * Skip device number checking on jruby. Fixes #586
  * Update extconf.rb to compile correctly on OS X
  * redirect io right after daemonizing so startup errors are shown. Fixes #359

* 6 minor features:
  * Add a configuration option that prevents puma from queueing requests.
  * Add reload_worker_directory
  * Add the ability to pass environment variables to the init script (for Jungle).
  * Add the proctitle tag to the worker. Fixes #633
  * Infer a proctitle tag based on the directory
  * Update lowlevel error message to be more meaningful.

* 10 PRs merged:
  * Merge pull request #478 from rubencaro/master
  * Merge pull request #610 from kwilczynski/master
  * Merge pull request #611 from jasonl/better-lowlevel-message
  * Merge pull request #616 from jc00ke/master
  * Merge pull request #623 from raldred/patch-1
  * Merge pull request #628 from rdpoor/master
  * Merge pull request #634 from deepj/master
  * Merge pull request #637 from raskhadafi/patch-1
  * Merge pull request #639 from ebeigarts/fix-phased-restarts
  * Merge pull request #640 from codehotter/issue-612-dependent-requests-deadlock

=== 2.10.2 / 2014-11-26

* 1 bug fix:
  * Conditionalize thread local cleaning, fixes perf degradation fix
    The code to clean out all Thread locals adds pretty significant
    overhead to a each request, so it has to be turned on explicitly
    if a user needs it.

=== 2.10.1 / 2014-11-24

* 1 bug fix:
  * Load the app after daemonizing because the app might start threads.

  This change means errors loading the app are now reported only in the redirected
  stdout/stderr.

  If you're app has problems starting up, start it without daemon mode initially
  to test.

=== 2.10.0 / 2014-11-23

* 3 minor features:
  * Added on_worker_shutdown hook mechanism
  * Allow binding to ipv6 addresses for ssl URIs
  * Warn about any threads started during app preload

* 5 bug fixes:
  * Clean out a threads local data before doing work
  * Disable SSLv3. Fixes #591
  * First change the directory to use the correct Gemfile.
  * Only use config.ru binds if specified. Fixes #606
  * Strongish cipher suite with FS support for some browsers

* 2 doc changes:
  * Change umask examples to more permissive values
  * fix typo in README.md

* 9 Merged PRs:
  * Merge pull request #560 from raskhadafi/prune_bundler-bug
  * Merge pull request #566 from sheltond/master
  * Merge pull request #593 from andruby/patch-1
  * Merge pull request #594 from hassox/thread-cleanliness
  * Merge pull request #596 from burningTyger/patch-1
  * Merge pull request #601 from sorentwo/friendly-umask
  * Merge pull request #602 from 1334/patch-1
  * Merge pull request #608 from Gu1/master
  * Merge remote-tracking branch 'origin/pr/538'

=== 2.9.2 / 2014-10-25

* 8 bug fixes:
  * Fix puma-wild handling a restart properly. Fixes #550
  * JRuby SSL POODLE update
  * Keep deprecated features warnings
  * Log the current time when Puma shuts down.
  * Fix cross-platform extension library detection
  * Use the correct Windows names for OpenSSL.
  * Better error logging during startup
  * Fixing sexist error messages

* 6 PRs merged:
  * Merge pull request #549 from bsnape/log-shutdown-time
  * Merge pull request #553 from lowjoel/master
  * Merge pull request #568 from mariuz/patch-1
  * Merge pull request #578 from danielbuechele/patch-1
  * Merge pull request #581 from alexch/slightly-better-logging
  * Merge pull request #590 from looker/jruby_disable_sslv3

=== 2.9.1 / 2014-09-05

* 4 bug fixes:
  * Cleanup the SSL related structures properly, fixes memory leak
  * Fix thread spawning edge case.
  * Force a worker check after a worker boots, don't wait 5sec. Fixes #574
  * Implement SIGHUP for logs reopening

* 2 PRs merged:
  * Merge pull request #561 from theoldreader/sighup
  * Merge pull request #570 from havenwood/spawn-thread-edge-case

=== 2.9.0 / 2014-07-12

* 1 minor feature:
  * Add SSL support for JRuby

* 3 bug fixes:
  * Typo BUNDLER_GEMFILE -> BUNDLE_GEMFILE
  * Use fast_write because we can't trust syswrite
  * pumactl - do not modify original ARGV

* 4 doc fixes:
  * BSD-3-Clause over BSD to avoid confusion
  * Deploy doc: clarification of the GIL
  * Fix typo in DEPLOYMENT.md
  * Update README.md

* 6 PRs merged:
  * Merge pull request #520 from misfo/patch-2
  * Merge pull request #530 from looker/jruby-ssl
  * Merge pull request #537 from vlmonk/patch-1
  * Merge pull request #540 from allaire/patch-1
  * Merge pull request #544 from chulkilee/bsd-3-clause
  * Merge pull request #551 from jcxplorer/patch-1

=== 2.8.2 / 2014-04-12

* 4 bug fixes:
  * During upgrade, change directory in main process instead of workers.
  * Close the client properly on error
  * Capistrano: fallback from phased restart to start when not started
  * Allow tag option in conf file

* 4 doc fixes:
  * Fix Puma daemon service README typo
  * `preload_app!` instead of `preload_app`
  * add preload_app and prune_bundler to example config
  * allow changing of worker_timeout in config file

* 11 PRs merged:
  * Merge pull request #487 from ckuttruff/master
  * Merge pull request #492 from ckuttruff/master
  * Merge pull request #493 from alepore/config_tag
  * Merge pull request #503 from mariuz/patch-1
  * Merge pull request #505 from sammcj/patch-1
  * Merge pull request #506 from FlavourSys/config_worker_timeout
  * Merge pull request #510 from momer/rescue-block-handle-servers-fix
  * Merge pull request #511 from macool/patch-1
  * Merge pull request #514 from edogawaconan/refactor_env
  * Merge pull request #517 from misfo/patch-1
  * Merge pull request #518 from LongMan/master

(taca)

2015-02-05 15:50:40 UTC MAIN commitmail json YAML

Note update of www/ruby-mechanize package to 2.7.3.

(taca)

2015-02-05 15:49:59 UTC MAIN commitmail json YAML

Update ruby-mechanize to 2.7.3.

=== 2.7.3

* New Features
  * Allow net-http-persistent instance to be named. #324, John Weir.
  * #save and #save! return filename #340
  * Updated mime-types requirement to 2.x versions.  #348 by Jeff Nyman.

* Bug fix
  * Ensure Download#save! defaults back to original filename if
    none is provided (#300)

(taca)

2015-02-05 15:47:29 UTC MAIN commitmail json YAML

Note update of www/ruby-fcgi package to 0.9.2.1.

(taca)

2015-02-05 15:46:57 UTC MAIN commitmail json YAML

Update ruby-fcgi to 0.9.2.1.

* Raise exception for syscall errors.  rb_sys_fail can't be catched in
  ruby, but there is no reason to terminate the process.

* ruby references to FCGX_Stream must keep the FCGX_Request alive.
  finshing the request must invalidate the streams.

* fix memory and fd leaks

* [ruby20] switch from rb_thread_select() to select() to avoid breakage
  in the future.

(taca)

2015-02-05 15:36:35 UTC MAIN commitmail json YAML

Note update of www/ruby-http package to 0.7.1.

(taca)

2015-02-05 15:36:01 UTC MAIN commitmail json YAML

Update ruby-http to 0.7.1.

## 0.7.1 (2015-01-03)

* Gemspec fixups
* Remove superfluous space in HTTP::Response inspection

## 0.7.0 (2015-01-02)

* Fix handling of EOF which caused infinite loop. See #163, #166 and #152. (@mickm, @ixti)
* Drop Ruby 1.8.7 support. (@ixti)
* Fix default Host header value. See #150. (@ixti)
* Remove BearerToken authorization header. (@ixti)
* `#auth` sugar now accepts only string value of Authorization header.
  Calling `#auth(:basic, opts)` is deprecated, use `#basic_auth(opts)` instead.
  (@ixti)
* Fix handling of chunked responses without Content-Length header. (@ixti)
* Remove `HTTP::Request#method` and deprecate `HTTP::Request#__method__`
  (@sferik)
* Deprecate `HTTP::Response::STATUS_CODES`,
  use `HTTP::Response::Status::REASONS` instead (@ixti)
* Deprecate `HTTP::Response::SYMBOL_TO_STATUS_CODE` (@ixti)
* Deprecate `HTTP::Response#status_code` (@ixti)
* `HTTP::Response#status` now returns `HTTP::Response::Status`. (@ixti)
* `HTTP::Response#reason` and `HTTP::Response#code` are proxies them
  to corresponding methods of `HTTP::Response#status` (@ixti)
* Rename `HTTP.with_follow` to `HTTP.follow` and mark former one as being
  deprecated (@ixti)
* Delegate `HTTP::Response#readpartial` to `HTTP::Response::Body` (@ixti)

## 0.6.3 (2014-11-14)

* Backported EOF fix from master branch. See #166. (@ixti)

## 0.6.2 (2014-08-06)

* Fix default Host header value. See #150. (@ixti)
* Deprecate BearerToken authorization header. (@ixti)
* Fix handling of chunked responses without Content-Length header. (@ixti)
* Rename `HTTP.with_follow` to `HTTP.follow` and mark former one as being
  deprecated (@ixti)

(taca)

2015-02-05 15:32:51 UTC MAIN commitmail json YAML

Note update of www/ruby-csspool package to 4.0.3.

(taca)

2015-02-05 15:32:25 UTC MAIN commitmail json YAML

Update ruby-csspool to 4.0.3.

== 4.0.3

* New Features

  * Support unicode-range

* Bugfixes

  * Blank stylesheet is now considered valid
  * Fix long parsing times on certain unusual comment constructs
  * Reduce memory usage when parsing long (data:) URIs

== 4.0.2

* Bugfixes

  * Allow @font-face in places where it should be allowed

== 4.0.1

* Bugfixes

  * Update parsing for calc
  * Update parsing for Mozilla-specific pseudo elements

== 4.0.0

* New Features

  * Support for parsing many new CSS features, including `:not`, `calc`, and `@supports`.
  * Line number and context in parser error messages
  * Some nodes types will remember their start and end positions, allowing developers to retrieve their original code.

* Bugfixes

  * Updated parsing for unusual syntax.

(taca)

2015-02-05 15:31:16 UTC MAIN commitmail json YAML

Note update of www/ruby-css-parser package to 1.3.6.

(taca)

2015-02-05 15:30:36 UTC MAIN commitmail json YAML

Update ruby-css-parser to 1.3.6.

### Version 1.3.6

* Fix bug not setting general rules after media query @jievans.
* We doesn't support Ruby 1.8 anymore.
* Run tests on Ruby 2.0 and Ruby 2.1.
* Respect the :import option.

(taca)

2015-02-05 15:27:54 UTC MAIN commitmail json YAML

Note update of www/ruby-capybara package to 2.4.4.

(taca)

2015-02-05 15:27:32 UTC MAIN commitmail json YAML

Update ruby-capybara to 2.4.4.

#Version 2.4.4
Release data: 2014-10-13

###Fixed
* Test for visit behavior updated [Phil Baker]
* Removed concurrency prevention in favor of a note in the README - due to load order issues

# Version 2.4.3
Relase date: 2014-09-21

###Fixed
* Update concurrency prevention to match Rails 4.2 behavior

# Version 2.4.2
Release date: 2014-09-20

### Fixed
* Prevent concurrency issue when testing Rails app with default test environment [Thomas Walpole]
* Tags for windows API tests fixed [Dmitry Vorotilin]
* Documentation Fixes [Andrey Botalov]
* Always convert visit url to string, fixes issue with visit when always_include_port was enabled [Jake Goulding]
* Check correct rspec version before including ::RSpec::Matchers::Composable in Capybara RSpec matchers [Thomas Walpole, Justin Ko]

(taca)

2015-02-05 15:24:58 UTC MAIN commitmail json YAML

Note update of textproc/ruby-yard package to 0.8.7.6.

(taca)

2015-02-05 15:24:27 UTC MAIN commitmail json YAML

2015-02-05 15:23:26 UTC MAIN commitmail json YAML

Update ruby-yard to 0.8.7.6.

# 0.8.7.6

- Support using `@option` tag on keyword arg splat parameter. (#729)
- Add `.stats_options` for `YardocTask`. (#800, #801)

# 0.8.7.5 - October 26, 2014

- Fix linking of methods in top level namespace in method listing. (#776)
- Support using C macros in function declarations. (#810)
- YARD will no longer group comment blocks starting on the same column if they
  are preceded by code. (#798)
- Handle anonymous lambda calls in toplevel scope. (#774)
- Support I18n in `@overload` tags. (#794)
- Support `yard stats` for objects with no file property. (#792)
- Support for named arguments in Ruby >= 2.1. (#785)
- Exclude README backup files from YARD generation. (#790)
- Turned on the lax spacing option in Redcarpet to comply with the
  Markdown standard.
- Escape HTML in YARD server search placeholder template.
- Fix issue with `private_class_method` support. (#760, #767)
- Enable tables support by default in Redcarpet Markdown provider. (#765)

(taca)

2015-02-05 15:22:06 UTC MAIN commitmail json YAML

Add all the rest releases of 1.6.x:

1.6.10
  Fixes an issue with the copy module when copying a directory that fails when changing file attributes and the target file already exists
  Improved unicode handling when splitting args

1.6.9
  Further improvements to module parameter parsing to address additional regressions caused by security fixes

1.6.8
  Corrects a regression in the way shell and command parameters were being parsed

1.6.7
  Security fixes:
  Strip lookup calls out of inventory variables and clean unsafe data returned from lookup plugins (CVE-2014-4966)
  Make sure vars don't insert extra parameters into module args and prevent duplicate params from superseding previous params (CVE-2014-4967)

1.6.6
  Security updates to further protect against the incorrect execution of untrusted data

1.6.4, 1.6.5
  Security updates related to evaluation of untrusted remote inputs

(pettai)

2015-02-05 15:22:05 UTC MAIN commitmail json YAML

Note update of textproc/ruby-will-paginate package to 3.0.7.

(taca)

2015-02-05 15:21:40 UTC MAIN commitmail json YAML

2015-02-05 15:12:02 UTC MAIN commitmail json YAML

Note update of textproc/ruby-nokogiri package to 1.6.6.2.

(taca)

2015-02-05 15:11:35 UTC MAIN commitmail json YAML

Update ruby-nokogiri to 1.6.6.2.

=== 1.6.6.2 / 2015-01-23

==== Bug fixes

* Fixed installation issue affecting compiler arguments. (#1230)

=== 1.6.6.1 / 2015-01-22

Note that 1.6.6.0 was not released.

==== Features

* Unified Node and NodeSet implementations of #search, #xpath and #css.
* Added Node#lang and Node#lang=.
* bin/nokogiri passes the URI to parse() if an HTTP URL is given.
* bin/nokogiri now loads ~/.nokogirirc so user can define helper methods, etc.
* bin/nokogiri can be configured to use Pry instead of IRB by adding a couple of lines to ~/.nokogirirc. (#1198)
* bin/nokogiri can better handle urls from STDIN (aiding use of xargs). (#1065)
* JRuby 9K support.

==== Bug fixes

* DocumentFragment#search now matches against root nodes. (#1205)
* (MRI) More fixes related to handling libxml2 parse errors during DocumentFragment#dup. (#1196)
* (JRuby) Builder now handles namespace hrefs properly when there is a default ns. (#1039)
* (JRuby) Clear the XPath cache on attr removal. (#1109)
* `XML::Comment.new` argument types are now consistent and safe (and documented) across MRI and JRuby. (#1224)
* (MRI) Restoring support for Ruby 1.9.2 that was broken in v1.6.4.1 and v1.6.5. (#1207)
* Check if `zlib` is available before building `libxml2`. (#1188)
* (JRuby) HtmlSaxPushParser now exists. (#1147) (Thanks, Piotr Szmielew!)

=== 1.6.5 / 2014-11-26

==== Features

* Implement Slop#respond_to_missing?. (#1176)
* Optimized the XPath query generated by an `an+b` CSS query.

==== Bug fixes

* Capture non-parse errors from Document#dup in Document#errors. (#1196)
* (JRuby) Document#canonicalize parameters are now consistent with MRI. (#1189)

=== 1.6.4.1 / 2014-11-05

==== Bug fixes

* (MRI) Fix a bug where CFLAGS passed in are dropped. (#1188)
* Fix a bug where CSS selector :nth(n) did not work. (#1187)

=== 1.6.4 / 2014-11-04

==== Features

* (MRI) Bundled Libxml2 is upgraded to 2.9.2.
* (MRI) `nokogiri --version` will include a list of applied patches.
* (MRI) Nokogiri no longer prints messages directly to TTY while building the extension.
* (MRI) Detect and help user fix a missing /usr/include/iconv.h on OS X. (#1111)
* (MRI) Improve the iconv detection for building libxml2.

==== Bug fixes

* (MRI) Fix DocumentFragment#element_children (#1138).
* Fix a bug with CSS attribute selector without any prefix where "foo [bar]" was treated as "foo[bar]". (#1174)

=== 1.6.3.1 / 2014-07-21

==== Bug fixes

* Addressing an Apple Macintosh installation problem for GCC users. #1130 (Thanks, @zenspider!)

=== 1.6.3 / 2014-07-20

==== Features

* Added Node#document? and Node#processing_instruction?

==== Bug fixes

* [JRuby] Fix Ruby memory exhaustion vulnerability. #1087 (Thanks, @ocher)
* [MRI] Fix segfault during GC when using `libxml-ruby` and `nokogiri` together in multi-threaded environment. #895 (Thanks, @ender672!)
* Building on OSX 10.9 stock ruby 2.0.0 now works. #1101 (Thanks, @zenspider!)
* Node#parse now works again for HTML document nodes (broken in 1.6.2+).
* Processing instructions can now be added via Node#add_next_sibling.

=== 1.6.2.1 / 2014-05-13

==== Bug fixes

* Fix statically-linked libxml2 installation when using universal builds of Ruby. #1104
* Patching `mini_portile` to address the git dependency detailed in #1102.
* Library load fix to address segfault reported on some systems. #1097

=== 1.6.2 / 2014-05-12

==== Security Note

A set of security and bugfix patches have been backported from the libxml2 and libxslt repositories onto the version of 2.8.0 packaged with Nokogiri, including these notable security fixes:

* https://git.gnome.org/browse/libxml2/commit/?id=4629ee02ac649c27f9c0cf98ba017c6b5526070f
* CVE-2013-2877 https://git.gnome.org/browse/libxml2/commit/?id=e50ba8164eee06461c73cd8abb9b46aa0be81869
* CVE-2014-0191 https://git.gnome.org/browse/libxml2/commit/?id=9cd1c3cfbd32655d60572c0a413e017260c854df

It is recommended that you upgrade from 1.6.x to this version as soon as possible.

==== Compatibility Note

Now requires libxml >= 2.6.21 (was previously >= 2.6.17).

==== Features

* Add cross building of fat binary gems for 64-Bit Windows (x64-mingw32) and add support for native builds on Windows. #864, #989, #1072
* (MRI) Alias CP932 to Windows-31J if iconv does not support Windows-31J.
* (MRI) Nokogiri now links packaged libraries statically. To disable static linking, pass --disable-static to extconf.rb. #923
* (MRI) Fix a library path (LIBPATH) precedence problem caused by CRuby bug #9760.
* (MRI) Nokogiri automatically deletes directories of packaged libraries only used during build. To keep them for debugging purposes, pass --disable-clean to extconf.rb. #952
* (MRI) Nokogiri now builds libxml2 properly with iconv support on platforms where libiconv is installed outside the system default directories, such as FreeBSD.
* Add support for an-b in nth selectors. #886 (Thanks, Magnus Bergmark!)
* Add support for bare and multiple :not() functions in selectors. #887 (Thanks, Magnus Bergmark!)
* (MRI) Add an extconf.rb option --use-system-libraries, alternative to setting the environment variable NOKOGIRI_USE_SYSTEM_LIBRARIES.
* (MRI) Update packaged libraries: libxslt to 1.1.28, zlib to 1.2.8, and libiconv to 1.14, respectively.
* Nokogiri::HTML::Document#title= and #meta_encoding= now always add an element if not present, trying hard to find the best place to put it.
* Nokogiri::XML::DTD#html_dtd? and #html5_dtd? are added.
* Nokogiri::XML::Node#prepend_child is added. #664
* Nokogiri::XML::SAX::ParserContext#recovery is added. #453
* Fix documentation for XML::Node#namespace. #803 #802 (Thanks, Hoylen Sue)
* Allow Nokogiri::XML::Node#parse from unparented non-element nodes. #407

==== Bugfixes

* Ensure :only-child pseudo class works within :not pseudo class. #858 (Thanks, Yamagishi Kazutoshi!)
* Don't call pkg_config when using bundled libraries in extconf.rb #931 (Thanks, Shota Fukumori!)
* Nokogiri.parse() does not mistake a non-HTML document like a RSS document as HTML document. #932 (Thanks, Yamagishi Kazutoshi!)
* (MRI) Perform a node type check before adding a child node to another. Previously adding a text node to another as a child could cause a SEGV. #1092
* (JRuby) XSD validation crashes in Java version. #373
* (JRuby) Document already has a root node error while using Builder. #646
* (JRuby) c14n tests are all passing on JRuby. #226
* Parsing empty documents raise SyntaxError in strict mode. #1005
* (JRuby) Make xpath faster by caching the xpath context. #741
* (JRuby) XML SAX push parser leaks memory on JRuby, but not on MRI. #998
* (JRuby) Inconsistent behavior aliasing the default namespace. #940
* (JRuby) Inconsistent behavior between parsing and adding namespaces. #943
* (JRuby) Xpath returns inconsistent result set on cloned document with namespaces and attributes. #1034
* (JRuby) Java-Implementation forgets element namespaces #902
* (JRuby) JRuby-Nokogiri does not recognise attributes inside namespaces #1081
* (JRuby) JRuby-Nokogiri has different comment node name #1080
* (JRuby) JAXPExtensionsProvider / Java 7 / Secure Processing #1070

(taca)

2015-02-05 15:09:52 UTC MAIN commitmail json YAML

Note update of textproc/ruby-libxml package to 2.8.0.

(taca)

2015-02-05 15:09:25 UTC MAIN commitmail json YAML

Update ruby-libxml to 2.8.0.

= Release History

== 2.8.0 / 2015-01-09 Charlie Savage

* Use RbConfig instead of Config in extconf.rb (Robert Haines)
* Correct xpath documentation XML (Bill Mill)
* Correct from_string method documentation (Bill Mill)
* Fix compile error with debug not enabled in libxml (Patrick Ziegler)
* Update gemspec to include license (Charlie Savage)
* In XML::Writer prevent writing to io while being GCed (Brett Gibson)

(taca)

2015-02-05 15:07:18 UTC MAIN commitmail json YAML

Note textproc/ruby-json and textproc/ruby-json-pure packages to 1.8.2.

(taca)

2015-02-05 15:06:12 UTC MAIN commitmail json YAML

Update ruby-json and ruby-json-pure package to 1.9.2.

2015-01-08 (1.8.2)
  * Some performance improvements by Vipul A M <vipulnsward@gmail.com>.
  * Fix by Jason R. Clark <jclark@newrelic.com> to avoid mutation of
    JSON.dump_default_options.
  * More tests by Michael Mac-Vicar <mmacvicar@gmail.com> and fixing
    space_before accessor in generator.
  * Performance on Jruby improvemed by Ben Browning <bbrownin@redhat.com>.
  * Some fixes to be compatible with the new Ruby 2.2 by Zachary Scott <e@zzak.io>
    and SHIBATA Hiroshi <hsbt@ruby-lang.org>.

(taca)

2015-02-05 15:05:00 UTC MAIN commitmail json YAML

Note update of textproc/ruby-haml package to 4.0.6.

(taca)

2015-02-05 15:04:31 UTC MAIN commitmail json YAML

2015-02-05 14:54:53 UTC MAIN commitmail json YAML

Updated devel/p5-Module-CoreList to 5.20150120

(mef)

2015-02-05 14:54:42 UTC MAIN commitmail json YAML

Updated to 5.20150120
---------------------
5.20150120
  - Updated for v5.21.8

(mef)

2015-02-05 14:50:13 UTC MAIN commitmail json YAML

Updated devel/p5-IO-Async to 0.64

(mef)

2015-02-05 14:50:05 UTC MAIN commitmail json YAML

Update 0.61 to 0.64
--------------------
0.64    2014/10/17 17:51:07
        [CHANGES]
        * Make specific mention of 'TCP' and 'UDP' around socket examples
          where appropriate
        * Allow construction of an IO::Async::Handle using fileno integers
          directly
        * Provide a better search for 'all open filehandles' via IO::Async::OS
          on Linux (RT97942)
        * Allow IO::Async::Listener to have handle_constructor or handle_class
          as a subclass method (RT97208)
        * Clarify documentation on how to use IO::Async::Process's
          on_exception event (RT98929)

        [BUGFIXES]
        * Ensure that Stream's write Futures are also informed of write errors
          (RT97433)
        * Remember to ->remove_child the individual workers of an
          IO::Async::Function (RT99552)
        * Fix IO::Async::Function synopsis example (RT97713)

0.63    2014/07/11 15:09:08
        [CHANGES]
        * Allow Notifier subclasses to last-ditch handle unrecognised
          ->configure() params
        * Added $notifier->adopt_future
        * Added $notifier->invoke_error and 'on_error' event
        * Ensure that TimeQueue inserts in FIFO order for equal timestamps
        * Kill remaining docs to long-dead IO::Async::Sequencer

        [BUGFIXES]
        * Cygwin needs the SELECT_CONNECT_EVEC OS hint as well
        * Probe for a broken port to perform listen() tests on by using
          ReuseAddr => 1 so it matches what IO::Async will do (RT84051)

0.62    2014/03/27 23:15:25
        [CHANGES]
        * Added IO::Async::Future->{done,fail}_later
        * Allow overriding of debug log file or file descriptor
        * Avoid Future's and_then/or_else methods
        * Allow Channel->recv in async mode to return a Future (RT91180)
        * Ensure that Function ->call Futures cancel correctly
        * Added $routine->kill
        * Kill the 'getaddrinfo' => 'getaddrinfo_array' legacy redirection
        * Allow Loop's resolver to be changed to a different object

        [BUGFIXES]
        * Avoid relying on strong forward references in Future, by creating
          intentional cycles on pending Futures. Workaround for bugfix in
          upcoming Future release.

(mef)

2015-02-05 14:47:21 UTC MAIN commitmail json YAML

Updated devel/p5-Hash-MoreUtils to 0.05

(mef)

2015-02-05 14:47:09 UTC MAIN commitmail json YAML

Update 0.04 to 0.05
-------------------
0.05    2013-12-09
    - Fix hashsort with sort block (Koichi Nakashima - http://nksm.name)

(mef)

2015-02-05 14:16:03 UTC MAIN commitmail json YAML

Updated devel/p5-Git-Wrapper to 0.038
Updated devel/p5-Guard to 1.023

(mef)

2015-02-05 14:14:29 UTC MAIN commitmail json YAML

Update 1.023
------------
1.023 Thu Nov 20 19:12:58 CET 2014
        - work around backwards compatibility breakage in perl 5.22
          (removal of PL_sv_objcount).

(mef)

2015-02-05 14:09:02 UTC MAIN commitmail json YAML

(pkgsrc)
- Update depending condition (see below at version 0.033)
  -DEPENDS+=              p5-File-pushd-[0-9]*:../../devel/p5-File-pushd
  +DEPENDS+=              p5-File-pushd>=1.05:../../devel/p5-File-pushd
(upstream)
- update 0.028 to 0.038
---------------------
0.038    2014-10-29 10:35:40-07:00 America/Los_Angeles

0.037    2014-08-13 12:43:00-05:00 America/Chicago

        Fix 'git config' during install stuff (Graham Knop)

0.036    2014-08-12 23:50:30-05:00 America/Chicago

        Run 'git config' during install (Karen Etheridge)

0.035    2014-07-30 07:25:21-07:00 America/Los_Angeles

        Attempted fix for Win32 test fails

0.034    2014-07-24 18:30:14-07:00 America/Los_Angeles

        Fix typo in minimum version required of File::pushd (Russell
        Jenkins)

0.033    2014-07-24 14:45:05-07:00 America/Los_Angeles

        require File::pushd 1.05 at a minimum

0.032    2014-04-22 18:29:06-07:00 America/Los_Angeles

        bail out early in Makefile.PL if git not installed, instead of
        failing tests (Karen Etheridge)

0.031    2014-03-17 08:10:42-07:00 America/Los_Angeles

        Only load IPC::Cmd if needed (Graham Knop)
        Reduce dependency on Path::Class to test.recommends, fix min version (Kent Fredric)
        Increment minimum version in eval check to match stated dist.ini version
        typo fix (dsteinbrunner)

0.030    2013-07-29 09:23:13 America/Los_Angeles

        Add explicit version dep on Path::Class (#40) (John SJ Anderson)
        Fixes typos. (Olaf Alders)

0.029    2013-05-07 10:21:26 America/Los_Angeles

        Included missed Changes update from last release...

0.028_97  2013-04-23 06:17:12 America/Los_Angeles

        Rework argument passing to deal with stringifying arguments (#29) (John SJ Anderson)

0.028_96  2013-02-24 16:19:15 America/Los_Angeles

        Support specifying the git binary location on new (Todd Rinaldo)
        Rework argument passing (#29) (John SJ Anderson, Mark Price)

(mef)

2015-02-05 13:50:30 UTC MAIN commitmail json YAML

Updated devel/p5-B-Hooks-EndOfScope to 0.14
Updated devel/p5-Class-Throwable to 0.13

(mef)

2015-02-05 13:49:06 UTC MAIN commitmail json YAML

Update 0.11 to 0.13
-------------------
0.13    2015/02/04
        - fix for #101937 (SEE ALSO pod fix)

0.12    2015/02/04
        - fix for #100890 (typos/spelling)

(mef)

2015-02-05 13:46:50 UTC MAIN commitmail json YAML

update to 0.14
--------------
0.14      2015-01-31 23:59:03Z
  - line numbers in shipped code are now the same as the repository source,
    for easier debugging
  - more accurate dynamic prereq declarations

(mef)

2015-02-05 11:29:58 UTC MAIN commitmail json YAML

Updated graphics/cdlabelgen to 4.3.0

(mef)

2015-02-05 11:29:48 UTC MAIN commitmail json YAML

Update 4.2.0 to 4.3.0
---------------------
2013-03-31
  4.3.0
  * New web script cdinsert-ps.pl and page cdlabelgen-form.html added.
    It now only generates .ps file, so can be hosted at any site that offers
    perl cgi support.
    No change to core cdlabelgen script and it remains at version# 4.2.0.

(mef)

2015-02-05 09:25:34 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.4.0.3nb1

(ryoon)

2015-02-05 09:24:05 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Remove GStreamer 0.10.* buildlink. No longer used.
  Thank you, wiz@.

(ryoon)

2015-02-05 08:57:53 UTC MAIN commitmail json YAML

regen (hi jared)

(wiz)

2015-02-05 08:06:22 UTC MAIN commitmail json YAML

Remove patch-encrypt.cpp, removed from distinfo during 1.3.14 update.

(wiz)

2015-02-05 07:09:31 UTC MAIN commitmail json YAML

Detect libevent-2.0.22 in NetBSD -current

(pettai)

2015-02-05 07:06:46 UTC MAIN commitmail json YAML

Updated net/nsd to 4.1.1

(pettai)

2015-02-05 07:06:04 UTC MAIN commitmail json YAML

4.1.1
================
FEATURES:
        - RFC 7344: CDS and CDNSKEY (read record types).
        - per zone statistics with --enable-zone-stats, config zone with
          zonestats: "name", zones configured with the same string are added.
        - Disabled use of SSLv3 in nsd-control.
        - nsd-checkconf -f prints out full name of pidfile (with dir).
        - Synthesize CNAMEs with same TTL as DNAME.
BUG FIXES:
        - Fix that expired zones stay expired after a server restart.
        - Fix "xfrd_handle_ipc: bad mode" log errors when compiled
          with --disable-bind8-stats.
        - Fix #616: retry xfer for zones with no content after command.
        - Fix char used as array index warnings on NetBSD.
        - Fix that queries for noname CH TXT are REFUSED instead of nodata.
        - Fixes for wildcard addition and deletion, speedup for some cases.
        - Fix that failure to add tcp to tcp base does not leak the socket.
        - Patch nsd_munin_ from Philip Paeps to use type ABSOLUTE.
        - Fix spinning NSD with lots of failing transfers, due to pointer
          comparison using void pointer subtraction.
        - Fix bug#637: fix that nsd.db grows limitlessly, an off by one
          on one megabyte free chunks, created during AXFRs of large zones,
          that caused the one megabyte chunk to be leaked.
        - Fix casts for ctype functions.
        - correct some hyphen-used-as-minus-sign (from Andreas Schulze) in
          man pages.
        - Fix zonesdir chroot error message.

(pettai)

2015-02-05 03:51:13 UTC MAIN commitmail json YAML

Add ffmpeg option. From Mansour Moufid on pkgsrc-users@

(tnn)

2015-02-05 02:24:43 UTC MAIN commitmail json YAML

Added emulators/libretro-catsfc version 20150204

(jmcneill)

2015-02-05 02:24:06 UTC MAIN commitmail json YAML

2015-02-05 02:23:37 UTC MAIN commitmail json YAML

Import libretro-catsfc-20150204 as emulators/libretro-catsfc.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

CATSFC is a Super Nintendo video game system emulator.

(jmcneill)

2015-02-05 01:43:24 UTC MAIN commitmail json YAML

Added emulators/libretro-gambatte version 20150204

(jmcneill)

2015-02-05 01:41:40 UTC MAIN commitmail json YAML

+ libretro-gambatte

(jmcneill)

2015-02-05 01:40:45 UTC MAIN commitmail json YAML

Import libretro-gambatte-20150204 as emulators/libretro-gambatte.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

Gambatte is a Nintendo Game Boy/Game Boy Color video game system emulator.

(jmcneill)

2015-02-05 01:28:25 UTC MAIN commitmail json YAML

forcibly disable tools build when running the testing script - found when
testing the src/ version, benign for pkgsrc. ride previous version bump.

(agc)

2015-02-05 00:59:10 UTC MAIN commitmail json YAML

2015-02-05 00:58:02 UTC MAIN commitmail json YAML

appease compiler warning police - initialise a variable in case it's otherwise
"used uninitialised". ride previous version bump.

(agc)

2015-02-05 00:38:14 UTC MAIN commitmail json YAML

2015-02-05 00:26:34 UTC MAIN commitmail json YAML

${MAKE} bootstrap: Be more verbose about what we've built

The "bootstrap" target now prints a message about run-time
dependencies of the bootkit you've just built, something like:

==========================================================================
Done creating ghc-7.6.3-boot-x86_64-unknown-netbsd.tar.xz
  in /usr/pkgsrc/lang/ghc7/work

Now you can copy it into /usr/pkgsrc/distfiles/ to use it as your
bootstrap kit. You may want to take a backup in case "lintpkgsrc -r"
removes it.

Your bootstrap kit has the following run-time dependencies:
  * curses:  native (version/variant unknown)
  * iconv:  native (version/variant unknown)
==========================================================================

(pho)

2015-02-05 00:23:20 UTC MAIN commitmail json YAML

Note update of netpgpverify and libnetpgpverify to 20150205

(agc)

2015-02-05 00:21:57 UTC MAIN commitmail json YAML

Update netpgpverify (and libnetpgpverify) to version 20150205

+ recognise signatures made by subkeys as well as by primary keys

+ print out the relevant key which signed the file, even if it's
a subkey and not the primary key itself.

+ keep the same API as before

with many thanks to Jonathan Perkin

(agc)

2015-02-05 00:17:50 UTC MAIN commitmail json YAML

Added emulators/libretro-snes9x-next version 20150204

(jmcneill)

2015-02-05 00:16:51 UTC MAIN commitmail json YAML

+ libretro-snes9x-next

(jmcneill)

2015-02-05 00:16:25 UTC MAIN commitmail json YAML

Import libretro-snes9x-next-20150204 as emulators/libretro-snes9x-next.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

SNES9x Next is a Super Nintendo video game system emulator.

(jmcneill)

2015-02-04 23:51:26 UTC MAIN commitmail json YAML

Improvements in BSD USB joystick detection:
- Scan uhid0 through uhid63, instead of uhid0 through uhid3.
- If a uhid reports no usable inputs, skip it. This way your keyboard
  and mouse don't show up as (unusable) joysticks.

(jmcneill)

2015-02-04 23:44:34 UTC MAIN commitmail json YAML

2015-02-04 23:08:03 UTC MAIN commitmail json YAML

Added emulators/retroarch version 0.0.20150203
Added emulators/libretro-fceumm version 20150204
Added emulators/libretro-picodrive version 20150203
Added emulators/libretro-mupen64plus version 20150204
Added emulators/libretro-pcsx-rearmed version 20150204

(jmcneill)

2015-02-04 23:05:48 UTC MAIN commitmail json YAML

+ retroarch libretro-fceumm libretro-mupen64plus libretro-pcsx-rearmed libretro-picodrive

(jmcneill)

2015-02-04 23:04:17 UTC MAIN commitmail json YAML

Import libretro-pcsx-rearmed-20150204 as emulators/libretro-pcsx-rearmed.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

PCSX ReARMed is a Sony PlayStation1 video game system emulator.

(jmcneill)

2015-02-04 23:02:12 UTC MAIN commitmail json YAML

Import libretro-mupen64plus-20150204 as emulators/libretro-mupen64plus.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

Mupen64Plus is a Nintendo 64 video game system emulator.

(jmcneill)

2015-02-04 22:58:13 UTC MAIN commitmail json YAML

Import libretro-picodrive-20150203 as emulators/libretro-picodrive.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

PicoDrive is a Sega 8/16 bit video game system emulator.

(jmcneill)

2015-02-04 22:57:47 UTC MAIN commitmail json YAML

Upstream did distfile switcheroo. Update checksum to match the one listed
on https://golang.org/dl/. Diff to previous rel revealed nothing weird.

(tnn)

2015-02-04 22:57:29 UTC MAIN commitmail json YAML

Import libretro-fceumm-20150204 as emulators/libretro-fceumm.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

FCEUmm (FCEUltra mappers modified) is a NES/Famicom emulator that specializes
in extensive mapper support.

(jmcneill)

2015-02-04 22:56:43 UTC MAIN commitmail json YAML

Import retroarch-0.0.20150203 as emulators/retroarch.

Libretro is a simple but powerful development interface that allows for the
easy creation of emulators, games and multimedia applications that can plug
straight into any libretro-compatible frontend. This development interface is
open to others so that they can run these pluggable emulator and game cores
also in their own programs or devices.

RetroArch is the official reference frontend for the libretro API.

(jmcneill)

2015-02-04 20:52:16 UTC MAIN commitmail json YAML

2015-02-04 20:51:32 UTC MAIN commitmail json YAML

Add various missing TeX packages.

(joerg)

2015-02-04 20:50:50 UTC MAIN commitmail json YAML

2015-02-04 20:50:17 UTC MAIN commitmail json YAML

Older GCC releases don't like to use to pointers to fulfill the "g"
constraint, so use "r".

(joerg)

2015-02-04 20:49:06 UTC MAIN commitmail json YAML

byteorder.h has race conditions.

(joerg)

2015-02-04 20:48:23 UTC MAIN commitmail json YAML

Not MAKE_JOBS_SAFE.

(joerg)

2015-02-04 20:02:04 UTC MAIN commitmail json YAML

Re-introduced a part of this patch which was not fully applied upstream

(khorben)

2015-02-04 18:33:38 UTC MAIN commitmail json YAML

Bump BUILDLINK_API_DEPENDS.
Thank you, wiz@.

(ryoon)

2015-02-04 18:20:16 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.4.0.3

(ryoon)

2015-02-04 18:19:34 UTC MAIN commitmail json YAML

Update to 4.4.0.3

* Disable JFreeReport for report builder. I have gotten build error.
* Use OpenGL.
* Use GStreamer 1.x

Changelog:
New features: see https://wiki.documentfoundation.org/ReleaseNotes/4.4
Summary:
== Writer
* Master Doument Templates
* Shapes can have a TextBox
* Improvements to Track Changes
* Style dropdown
* Line numbering easier to apply for headers and footers
* Status bar improvements
* Toolbar improvements
* Navigator bookmarks
* AutoCorrect improvements
== Calc
* Statistics Wizard (alternative to Excel's Add-in "Analysis ToolPak")
* Direct conversion of formulas into static values
* Formula engine (AGGREGATE spreadsheet function)
* Toolbar improvements
* Sheet context menu
== Impress and Draw
* Text of Master View Object Previews
* Select and toggle off master elements directly via Delete
* OpenGL transitions
* Page Title field
* Inherit current style of cells when inserting New row/column in table
* Password for editing
* Printing: use specified paper size
* Zoom Mode button
* Toolbar improvements
* Menubar improvements
== Math
* Color support
== Core
* Included fonts (Caladea and Carlito)
* Digitally signed PDF export
* Drawing objects
* Technical Dictionary
== LibreOfficeKit
* Impress supports tile rendering
== Filters
* Many import filters are improved
* SharePoint OneDrive connection
== GUI
* Dialogs conversion to WidgetLayout finished
* Sifr as the default icon theme on OS X
* Changes to rulers
* Start Center
* New default templates
* New color selector
* Reworked paragraph line spacing dropdown
* Bullet and Numbering dropdown
* Sidebar changes
* Context menu changes
* Edit / Read-only mode
* Tab changes
* Firefox Themes
* Image scaling
* Simplification of Special Character dialog
* Icon improvements
* Locale in About dialog
* UI text improvements
== Localization
* New languages/locales with locale data (ca-ES-valencia)
* Improved language tools (spell-check dictionaries, thesaurus, hyphenation patterns)

Bugfixes:
https://wiki.documentfoundation.org/Releases/4.4.0/RC1
https://wiki.documentfoundation.org/Releases/4.4.0/RC2
https://wiki.documentfoundation.org/Releases/4.4.0/RC3

(ryoon)

2015-02-04 18:01:25 UTC MAIN commitmail json YAML

Update to 0.11.2

* Fix newer boost build.

Changelog:
mdds 0.11.2

* multi_type_vector

  * fixed various memory leaks associated with the set() method when a
    value overwrites an existing element in a managed block.

mdds 0.11.1

* all

  * fixed a large number of outstanding defects reported by Coverity
    Scan.

* multi_type_vector

  * fixed 2 cases of double-free bug in the variant of swap() that
    allows segmented swapping.

mdds 0.11.0

* sorted_string_map (new)

  * new data structure to support efficient mapping of textural keys
    to numeric values when the key values are known at compile time.

* multi_type_vector

  * fixed a bug in transfer() where two adjacent blocks of identical
    type would fail to be merged in some circumstances.

  * added shrink_to_fit() to allow trimming of any excess capacity
    from all non-empty blocks.

  * fixed a double-free bug in the variant of swap() that allows
    segmented swapping.

  * improved the exception message when the block position lookup
    fails to find valid block position, to make it easier to debug.

(ryoon)

2015-02-04 17:53:39 UTC MAIN commitmail json YAML

The test file for the "one key" test has embedded CVS Identifiers, so
work around this.

(agc)

2015-02-04 17:53:05 UTC MAIN commitmail json YAML

Updated net/libcmis to 0.5.0

(ryoon)

2015-02-04 17:52:26 UTC MAIN commitmail json YAML

Updatet to 0.5.0

Changelog:
0.5.0

  * Completely removed the dependency on InMemory server for unit tests
  * Minimized the number of HTTP requests sent by SessionFactory::createSession
  * Added Session::getBaseTypes()

(ryoon)

2015-02-04 17:47:40 UTC MAIN commitmail json YAML

Updated converters/libmwaw to 0.3.4

(ryoon)

2015-02-04 17:47:18 UTC MAIN commitmail json YAML

Update to 0.3.4

Changelog:
11/9/2014:
- AppleWorks/ClarisWorks parser[draw]:
  try to send master pages on each page of the final documents
  try to do not cut shapes, pictures which are on several pages (by creating bigger pages)

10/29/2014:
- MacDraw Pro: add a parser for MacDraw Pro v1

-------- version 0.3.4 (start)  -------------

10/2/2014:
- RagTime v5-v6: begin to find the main structures in a document, to be continued...
- fix some coverity problems.

9/12/2014:
- AppleWorks: add a presentation parser

8/22/2014:
- MacDraw II: add a parser for MacDraw II v1.0-v1.1

-------- version 0.3.3 (start)  -------------

(ryoon)

2015-02-04 17:45:05 UTC MAIN commitmail json YAML

add a minimalist shell script to make a tarball of the sources - requested
by various people.

(agc)

2015-02-04 17:37:44 UTC MAIN commitmail json YAML

2015-02-04 17:36:58 UTC MAIN commitmail json YAML

Added math/coinmp version 1.7.6

(ryoon)

2015-02-04 17:36:34 UTC MAIN commitmail json YAML

Import coinmp-1.7.6 as math/coinmp.

CoinMP is a C-API library that supports most of the functionality
of CLP (Coin LP), CBC (Coin Branch-and-Cut), and CGL (Cut Generation
Library) projects.

(ryoon)

2015-02-04 17:33:17 UTC MAIN commitmail json YAML

2015-02-04 17:32:30 UTC MAIN commitmail json YAML

Added converters/libpagemaker version 0.0.2

(ryoon)

2015-02-04 17:31:40 UTC MAIN commitmail json YAML

2015-02-04 16:35:32 UTC MAIN commitmail json YAML

Ensure that BUILDLINK_PKGNAME.curses is always defined.

(pho)

2015-02-04 16:27:43 UTC MAIN commitmail json YAML

libgupnp needs g_inet_socket_address_new_from_string. So require glib2
that provides that version.
PKGREVSION bump not necessary because the pkg would not build with too
old glib2.

(bad)

2015-02-04 16:18:16 UTC MAIN commitmail json YAML

Note update of security/ruby-sshkit package to 1.6.1.

(taca)

2015-02-04 16:17:48 UTC MAIN commitmail json YAML

Update ruby-sshkit to 1.6.1.

## 1.6.0

  * Fix colorize to use the correct API (@fazibear)
  * Lock colorize (sorry guys) version at >= 0.7.0

## 1.6.0 (Yanked, because of colorize.)

  * Force dependency on colorize v0.6.0
  * Add your entries here, remember to credit yourself however you want to be
    credited!
  * Remove strip from capture to preserve whitespace. Nick Townsend
  * Add vmware_fusion Vagrant provider. Nick Townsend
  * Add some padding to the pretty log formatter

## 1.5.1

  * Use `sudo -u` rather than `sudo su` to switch users. Mat Trudel

## 1.5.0

  * Deprecate background helper - too many badly behaved pseudo-daemons. Lee Hambley
  * Don't colourize unless $stdout is a tty. Lee Hambley
  * Remove out of date "Known Issues" section from README. Lee Hambley
  * Dealy variable interpolation inside `as()` block. Nick Townsend
  * Fixes for functional tests under modern Vagrant. Lewis Marshal
  * Fixes for connection pooling. Chris Heald
  * Add `localhost` hostname to local backend. Adam Mckaig
  * Wrap execptions to include hostname. Brecht Hoflack
  * Remove `shellwords` stdlib dependency Bruno Sutic
  * Remove unused `cooldown` accessor. Bruno Sutic
  * Replace Term::ANSIColor with a lighter solution. Tom Clements
  * Documentation fixes. Matt Brictson

## 1.4.0

https://github.com/capistrano/sshkit/compare/v1.3.0...v1.4.0

  * Removed `invoke` alias for [`SSHKit::Backend::Printer.execute`](https://github.com/capistrano/sshkit/blob/master/lib/sshkit/backends/printer.rb#L20). This is to prevent collisions with
  methods in capistrano with similar names, and to provide a cleaner API. See [capistrano issue 912](https://github.com/capistrano/capistrano/issues/912) and [issue 107](https://github.com/capistrano/sshkit/issues/107) for more details.
  * Connection pooling now uses a thread local to store connection pool, giving each thread its own connection pool. Thank you @mbrictson see [#101](https://github.com/capistrano/sshkit/pull/101) for more.
  * Command map indifferent towards strings and symbols thanks to @thomasfedb see [#91](https://github.com/capistrano/sshkit/pull/91)
  * Moved vagrant wrapper to `support` directory, added ability to run tests with vagrant using ssh. @miry see [#64](https://github.com/capistrano/sshkit/pull/64)
  * Removed unnecessary require `require_relative '../sshkit'` in `lib/sshkit/dsl.rb` prevents warnings thanks @brabic.
  * Doc fixes thanks @seanhandley @vojto

(taca)

2015-02-04 16:15:34 UTC MAIN commitmail json YAML

Note update of security/ruby-shadow package to 2.4.1.

(taca)

2015-02-04 16:14:57 UTC MAIN commitmail json YAML

Update ruby-shadow to 2.4.1.

[2014/12/02]
* Version 2.4.1
  - sp_loginclass support should NOT have been added to password implementation
[2014/12/01]
* Version 2.4.0
  - Add support for sp_loginclass via pwd.h

(taca)