Commit graph

235195 commits

Author SHA1 Message Date
khorben
b2418215a3 Update editors/deforaos-editors to version 0.3.1 2015-06-11 18:48:38 +00:00
khorben
2546abff66 Package DeforaOS Editor 0.3.1
This minor release brings the following:
- printing support;
- minor improvement to the user interface;
- build fixes;
- re-license as 2-clause BSD.
2015-06-11 18:47:33 +00:00
taca
f250746b79 + openssl-1.0.2b, ruby-chef-12.3.0, ruby-chef-zero-4.2.2,
ruby-selenium-webdriver-2.46.2.
2015-06-11 17:47:33 +00:00
bouyer
ce70ad40f1 For disks larger than 128GB, the LBA capacity reported by IDE disks
should be limited to 128GB, the real size being reported in
LBA48 capacity.
Should fix disk corrution reported by Reinoud Zandijk.
Bump PKGREVISION
2015-06-11 17:42:43 +00:00
taca
c49b49e938 Allow this package build on Ruby 2.2. 2015-06-11 17:41:00 +00:00
taca
f273678b65 Now this package should be build on Ruby 2.2. 2015-06-11 17:40:13 +00:00
taca
0615c1a8df Allow this package build on Ruby 2.2. 2015-06-11 17:37:09 +00:00
taca
90fdfbeaa5 Allow build on Ruby 2.2. 2015-06-11 17:36:33 +00:00
taca
6712659b51 Allow this package build on Ruby 2.2. 2015-06-11 17:33:54 +00:00
taca
ae10c3b05c Note update of devel/ruby-test-unit package to 3.1.2. 2015-06-11 17:31:16 +00:00
taca
4df6cfaa32 Update ruby-test-unit to 3.1.2.
A few bug fixes.
2015-06-11 17:30:43 +00:00
taca
749b3fb6fa Note update of misc/ruby-ohai package to 8.4.0. 2015-06-11 17:28:45 +00:00
taca
72aed93764 Update ruby-ohai to 8.4.0.
Changes are not available.
2015-06-11 17:28:17 +00:00
taca
6361b20d79 Allow build on Ruby 2.2. 2015-06-11 17:23:37 +00:00
taca
3a71049055 Note update of devel/ruby-shoulda-matchers package to 2.8.0. 2015-06-11 17:22:41 +00:00
taca
d19d8e2582 Update ruby-shoulda-matchers to 2.8.0.
pkgsrc change: allow build on Ruby 2.2.

# 2.8.0

### Deprecations

* `ensure_length_of` has been renamed to `validate_length_of`.
  `ensure_length_of` is deprecated and will be removed in 3.0.0.

* `set_the_flash` has been renamed to `set_flash`. `set_the_flash` is
  deprecated and will be removed in 3.0.0.

* `set_session(:foo)` is deprecated in favor of `set_session[:foo]`.
  `set_session(:foo)` will be invalid syntax in 3.0.0.

* Using `should set_session[:key].to(nil)` to assert that that a value has not
  been set is deprecated. Please use `should_not set_session[:key]` instead.
  In 3.0.0, `should set_session[:key].to(nil)` will only pass if the value is
  truly nil.

### Bug fixes

* Fix `delegate_method` so that it works again with shoulda-context. ([#591])

* Fix `validate_uniqueness_of` when used with `scoped_to` so that when one of
  the scope attributes is a polymorphic `*_type` attribute and the model has
  another validation on the same attribute, the matcher does not fail with an
  error. ([#592])

* Fix `has_many` used with `through` so that when the association does not
  exist, and the matcher fails, it does not raise an error when producing the
  failure message. ([#588])

* Fix `have_and_belong_to_many` used with `join_table` so that it does not fail
  when `foreign_key` and/or `association_foreign_key` was specified on the
  association as a symbol instead of a string. ([#584])

* Fix `allow_value` when an i18n translation key is passed to `with_message` and
  the `:against` option is used to specify an alternate attribute. A bug here
  also happened to affect `validate_confirmation_of` when an i18n translation
  key is passed to `with_message`. ([#593])

* Fix `class_name` qualifier for association matchers so that if the model being
  referenced is namespaced, the matcher will correctly resolve the class before
  checking it against the association's `class_name`. ([#537])

* Fix `validate_inclusion_of` used with `with_message` so that it fails if given
  a message that does not match the message on the validation. ([#598])

* Fix `route` matcher so that when controller and action are specified in hash
  notation (e.g. `posts#show`), route parameters such as `id` do not need to be
  specified as a string but may be specified as a number as well. ([#602])

* Fix `allow_value`, `validate_numericality_of` and `validate_inclusion_of` so
  that they handle RangeErrors emitted from ActiveRecord 4.2. These exceptions
  arise whenever we attempt to set an attribute using a value that lies outside
  the range of the column (assuming the column is an integer). RangeError is now
  treated specially, failing the test instead of bubbling up as an error.
  ([#634], [#637], [#642])

### Features

* Add ability to test `:primary_key` option on associations. ([#597])

* Add `allow_blank` qualifier to `validate_uniqueness_of` to complement
  the `allow_blank` option. ([#543])

* Change `set_session` so that #[] and #to qualifiers are optional, similar to
  `set_flash`. That is, you can now say `should set_session` to assert that any
  flash value has been set, or `should set_session.to('value')` to assert that
  any value in the session is 'value'.

* Change `set_session` so that its #to qualifier supports regexps, similar to
  `set_flash`.

* Add `with_prefix` qualifier to `delegate_method` to correspond to the `prefix`
  option for Rails's `delegate` macro. ([#622])

* Add support for Rails 4.2, especially fixing `serialize` matcher to remove
  warning about `serialized_attributes` being deprecated. ([#627])

* Update `dependent` qualifier on association matchers to support `:destroy`,
  `:delete`, `:nullify`, `:restrict`, `:restrict_with_exception`, and
  `:restrict_with_error`. You can also pass `true` or `false` to assert that
  the association has (or has not) been declared with *any* dependent option.
  ([#631])

### Improvements

* Tweak `allow_value` failure message so that it reads a bit nicer when listing
  existing errors.

[#591]: https://github.com/thoughtbot/shoulda-matchers/pull/591
[#592]: https://github.com/thoughtbot/shoulda-matchers/pull/592
[#588]: https://github.com/thoughtbot/shoulda-matchers/pull/588
[#584]: https://github.com/thoughtbot/shoulda-matchers/pull/584
[#593]: https://github.com/thoughtbot/shoulda-matchers/pull/593
[#597]: https://github.com/thoughtbot/shoulda-matchers/pull/597
[#537]: https://github.com/thoughtbot/shoulda-matchers/pull/537
[#598]: https://github.com/thoughtbot/shoulda-matchers/pull/598
[#602]: https://github.com/thoughtbot/shoulda-matchers/pull/602
[#543]: https://github.com/thoughtbot/shoulda-matchers/pull/543
[#622]: https://github.com/thoughtbot/shoulda-matchers/pull/622
[#627]: https://github.com/thoughtbot/shoulda-matchers/pull/627
[#631]: https://github.com/thoughtbot/shoulda-matchers/pull/631
[#634]: https://github.com/thoughtbot/shoulda-matchers/pull/634
[#637]: https://github.com/thoughtbot/shoulda-matchers/pull/637
[#642]: https://github.com/thoughtbot/shoulda-matchers/pull/642

# 2.7.0

### Deprecations

* `ensure_inclusion_of` has been renamed to `validate_inclusion_of`.
  `ensure_inclusion_of` is deprecated and will be removed in 3.0.0.

* `ensure_exclusion_of` has been renamed to `validate_exclusion_of`.
  `ensure_exclusion_of` is deprecated and will be removed in 3.0.0.

### Bug fixes

* Fix `delegate_method` so that it does not raise an error if the method that
  returns the delegate object is private.

* Warn when `ensure_inclusion_of` is chained with `.in_array([false, true])`
  as well as with `.in_array([true, false])`.

* Fix `set_session` so that the `to` qualifier if given nil checks that the
  session variable in question was set to nil (previously this actually did
  nothing).

* Fix `filter_param` so that it works when `config.filter_parameters` contains
  regexes.

* Fix `delegate_method` so that it can be required independent of Active
  Support.

* Fix `validate_uniqueness_of`. When used against an unpersisted record whose
  model contained a non-nullable column other than the one being validated, the
  matcher would break. Even if the test set that column to a value beforehand,
  the record had to be persisted in order for the matcher to work. Now this is
  no longer the case and the record can remain unpersisted.

* Fix `validate_absence_of`: it required that a string be passed as the
  attribute name rather than a symbol (which is the usual and documented usage).

### Improvements

* `have_and_belongs_to_many` now checks to make sure that the join table
  contains the correct columns for the left- and right-hand side of the
  association.

* Reword failure message for `delegate_method` so that it's a little more
  helpful.

### Features

* Add new matcher `define_enum_for` to test usage of the `enum` macro introduced
  in Rails 4.1.
2015-06-11 17:22:16 +00:00
taca
6da245e101 Note update of textproc/ruby-multi_json package to 1.11.1. 2015-06-11 17:20:27 +00:00
taca
f89b88ee49 Update ruby-multi_json to 1.11.1.
1.11.1
------

* [Dump method passes options throught for JrJackson adapter](3c730fd121)
2015-06-11 17:19:59 +00:00
taca
52ed3f8944 Note update of www/ruby-sinatra-contrib package to 1.4.4. 2015-06-11 17:15:19 +00:00
taca
dd29dbdb07 Update ruby-sinatra-contrib to 1.4.4.
Changes are not available except commit log:
<https://github.com/sinatra/sinatra-contrib/commits/master>.
2015-06-11 17:14:56 +00:00
taca
561a63445f Fix build problem on Ruby 2.2. 2015-06-11 17:10:46 +00:00
taca
60a9d58436 Note update of www/ruby-websocket package to 1.2.2. 2015-06-11 17:10:04 +00:00
taca
6e115a343d Update ruby-websocket to 1.2.2.
pkgsrc change: remove RUBY_VERSION_SUPPORTED since it has default value.

## 1.2.2

- fix handshake for draft 11+ sending Sec-WebSocket-Origin instead of Origin
2015-06-11 17:09:34 +00:00
taca
f4c89d879f Note update of www/ruby-unicorn package to 4.9.0. 2015-06-11 17:08:22 +00:00
taca
deae4d4032 Update ruby-unicorn to 4.9.0.
pkgsrc change: add support for pkg_alternatives.


unicorn 4.9.0 - TempfileReaper support in Rack 1.6

This release supports the Rack::TempfileReaper middleware found
in rack 1.6 for cleaning up disk space used by temporary files.
We also use Rack::TempfileReaper for cleaning up large temporary
files buffered with TeeInput.  Users on rack 1.5 and earlier
will see no changes.

There's also a bunch of documentation/build system improvements.

This is likely to be the last Ruby 1.8-compatible release,
unicorn 5.x will require 1.9.3 or later as well as dropping lots
of cruft (the stupid "Status:" header in responses being the
most notable).

21 changes backported from master:

      ISSUES: update with mailing list subscription
      FAQ: add entry for Rails autoflush_log
      dev: remove isolate dependency
      unicorn.gemspec: depend on test-unit 3.0
      remove RubyForge and Freecode references
      remove mongrel.rubyforge.org references
      examples: add run_once to before_fork hook example
      t/t0002-parser-error.sh: relax test for rack 1.6.0
      switch docs + website to olddoc
      README: clarify/reduce references to unicorn_rails
      gemspec: fixup olddoc migration
      GNUmakefile: fix clean gem build + reduce build cruft
      doc: update support status for Ruby versions
      fix uninstalled testing and reduce require paths
      test_socket_helper: do not depend on SO_REUSEPORT
      ISSUES: add section for bugs in other projects
      explain 11 byte magic number for self-pipe
      Links: mark Rainbows! as historical, reference yahns
      doc: document UNICORN_FD in manpage
      tee_input: support for Rack::TempfileReaper middleware
      support TempfileReaper in deployment and development envs
2015-06-11 17:07:56 +00:00
taca
4e41cb1c38 Note update of www/ruby-sinatra package to 1.4.6. 2015-06-11 17:04:17 +00:00
adam
bbf2d42025 Updated multimedia/ffmpeg2 to 2.7 2015-06-11 17:03:41 +00:00
taca
228403b284 Update ruby-sinatra to 1.4.6.
= 1.4.6 / 2015-03-2x

 * Improve tests and documentation. (Dar«¿o Here«Ð«â, Seiichi Yonezawa, kyoendo,
   John Voloski, Ferenc-, Renaud Martinet, Christian Haase, marocchino,
   huoxito, Damir Svrtan, Amaury Medeiros, Jeremy Evans, Kashyap, shenqihui,
   Ausmarton Fernandes, kami, Vipul A M, Lei Wu, 7stud, Taylor Shuler,
   namusyaka, burningTyger, Cornelius Bock, detomastah, hakeda, John Hope,
   Ruben Gonzalez, Andrey Deryabin, attilaolah, Anton Davydov, Nikita Penzin,
   Dyego Costa)

 * Remove duplicate require of sinatra/base. (Alexey Muranov)

 * Escape HTML in 404 error page. (Andy Brody)

 * Refactor to method call in `Stream#close` and `#callback`. (Damir Svrtan)

 * Depend on latest version of Slim. (Damir Svrtan)

 * Fix compatibility with Tilt version 2. (Yegor Timoschenko)

 * Fix compatibility issue with Rack `pretty` method from ShowExceptions.
   (Kashyap)

 * Show date in local time in exception messages. (tayler1)

 * Fix logo on error pages when using Ruby 1.8. (Jeremy Evans)

 * Upgrade test suite to Minitest version 5 and fix Ruby 2.2 compatibility.
   (Vipul A M)
2015-06-11 17:03:17 +00:00
adam
004ad139c8 version 2.7:
- FFT video filter
- TDSC decoder
- DTS lossless extension (XLL) decoding (not lossless, disabled by default)
- showwavespic filter
- DTS decoding through libdcadec
- Drop support for nvenc API before 5.0
- nvenc HEVC encoder
- Detelecine filter
- Intel QSV-accelerated H.264 encoding
- MMAL-accelerated H.264 decoding
- basic APNG encoder and muxer with default extension "apng"
- unpack DivX-style packed B-frames in MPEG-4 bitstream filter
- WebM Live Chunk Muxer
- nvenc level and tier options
- chorus filter
- Canopus HQ/HQA decoder
- Automatically rotate videos based on metadata in ffmpeg
- improved Quickdraw compatibility
- VP9 high bit-depth and extended colorspaces decoding support
- WebPAnimEncoder API when available for encoding and muxing WebP
- Direct3D11-accelerated decoding
- Support Secure Transport
- Multipart JPEG demuxer
2015-06-11 17:02:35 +00:00
taca
b6a12c36a2 Note update of www/ruby-sass package to 3.4.14. 2015-06-11 17:02:06 +00:00
taca
bda861d4ee Update ruby-sass to 3.4.14.
3.4.14 (22 May 2015)

* Further avoid race conditions when caching.
* Only emit one warning for each line that uses the deprecated form of
  unquote().
* Stop parsing and emitting invalid @supports directives.
* Add a deprecation warning for using != to compare a number with units to a
  number without. Such a warning already existed for ==.
* Improve rounding of the results of color operations.
2015-06-11 17:01:41 +00:00
taca
2c98dbdce4 Note update of www/ruby-rack package to 1.6.1. 2015-06-11 17:00:16 +00:00
taca
b70ddc75e4 Update ruby-rack to 1.6.1.
Update HOMEPAGE.

Changes are not available except commit log:
<https://github.com/rack/rack/commits/1-6-stable>.
2015-06-11 16:59:50 +00:00
taca
0250bb74a2 Note update of www/ruby-puma package to 2.11.3. 2015-06-11 16:55:25 +00:00
taca
681e4defd1 Update ruby-puma to 2.11.3.
=== 2.11.3 / 2015-05-18

* 5 bug fixes:
  * Be sure to unlink tempfiles after a request. Fixes #690
  * Coerce the key to a string before checking. (thar be symbols). Fixes #684
  * Fix hang on bad SSL handshake
  * Remove `enable_SSLv3` support from JRuby

* 1 PR merged:
  * Merge pull request #698 from looker/hang-handshake

=== 2.11.2 / 2015-04-11

* 2 minor features:
  * Add `on_worker_fork` hook, which allows to mimic Unicorn's behavior
  * Add shutdown_debug config option

* 4 bug fixes:
  * Fix the Config constants not being available in the DSL. Fixes #683
  * Ignore multiple port declarations
  * Proper 'Connection' header handling compatible with HTTP 1.[01] protocols
  * Use "Puma" instead of "puma" to reporting to New Relic

* 1 doc fixes:
  * Add Gitter badge.

* 6 PRs merged:
  * Merge pull request #657 from schneems/schneems/puma-once-port
  * Merge pull request #658 from Tomohiro/newrelic-dispatcher-default-update
  * Merge pull request #662 from basecrm/connection-compatibility
  * Merge pull request #664 from fxposter/on-worker-fork
  * Merge pull request #667 from JuanitoFatas/doc/gemspec
  * Merge pull request #672 from chulkilee/refactor
2015-06-11 16:54:58 +00:00
taca
3cc8d35741 Note update of www/ruby-jekyll-gist package to 1.2.1. 2015-06-11 16:52:57 +00:00
taca
77cfe142be Update ruby-jekyll-gist to 1.2.1.
## 1.2.1 / 2015-03-22

  * Use `has_key?` (#6)

## 1.2.0 / 2015-03-21

### Minor Enhancements

  * Allow variables as parameters (#4)

### Development Fixes

  * Fix RSpec deprecation warning (#5)
2015-06-11 16:52:26 +00:00
taca
5125bc92df Note update of www/ruby-http package to 0.8.12. 2015-06-11 16:51:35 +00:00
taca
ab0a875b3b Update ruby-http to 0.8.12.
pkgsrc change: allow build on Ruby 2.2.

## 0.8.12 (2015-05-26)

* Fix `HTTP.timeout` API (was loosing previously defined options). (@ixti)


## 0.8.11 (2015-05-22)

* SNI support for HTTPS connections. See #229. (@tarcieri)
* Use "http.rb" in the User-Agent string. See #227. (@tarcieri)


## 0.8.10 (2015-05-14)

* Fix cookie headers generation. (@ixti)


## 0.8.9 (2015-05-11)

* Add cookies support. (@ixti)
* Enforce stringified body encoding. See #219. (@Connorhd)


## 0.8.8 (2015-05-09)

* Fix CONNECT header for proxies. See #217. (@Connorhd)


## 0.8.7 (2015-05-08)

* Fix `HTTP.timeout` API with options only given. (@ixti)


## 0.8.6 (2015-05-08)

* Reset global timeouts after the request finishes. See #215. (@zanker)


## 0.8.5 (2015-05-06)

* Add simple timeouts configuration API. See #205. (@ixti)
* Deprecate `Request#request_header`. Use `Request#headline` instead. (@ixti)


## 0.8.4 (2015-04-23)

* Deprecate `#default_headers` and `#default_headers=`. (@ixti)
* Deprecate chainable methods with `with_` prefix. See #207. (@ixti)
* Add support of HTTPS connections through proxy. See #186. (@Connorhd)


## 0.8.3 (2015-04-07)

* Fix request headline. See #206. (@ixti)
* Remove deprecated `Request#__method__`. (@ixti)


## 0.8.2 (2015-04-06)

* Fix Celluloid::IO compatibility. See #203. (@ixti)
* Cleanup obsolete code. (@zanker)


## 0.8.1 (2015-04-02)

* Add missing `require "resolv"`. See #202. (@ixti)
* Add block-form `#persistent` calls. See #200, #201. (@ixti)


## 0.8.0 (2015-04-01)

* Properly handle WaitWritable for SSL. See #199. (@zanker)
* Add support for non-ASCII URis. See #197. (@ixti)
* Add configurable connection timeouts. See #187, #194, #195. (@zanker)
* Refactor requests redirect following logic. See #179. (@ixti)
* Support for persistent HTTP connections (@zanker)
* Add caching support. See #77 and #177. (@Asmod4n, @pezra)
* Improve servers used in specs boot up. Issue was initially raised up
  by @olegkovalenko. See #176. (@ixti)
* Reflect FormData rename changes (FormData -> HTTP::FormData). (@ixti)
* `HTTP::Headers` now raises `HTTP::InvalidHeaderNameError` in case of
  (surprise) invalid HTTP header field name (e.g.`"Foo:Bar"`). See #173.
  (@ixti)
2015-06-11 16:51:04 +00:00
taca
0fb6302743 Note update of www/ruby-http-form_data package to 1.0.1. 2015-06-11 16:48:45 +00:00
taca
ebaf78dcc5 Update ruby-http-form_data to 1.0.1.
## 1.0.1 (2015-03-31)

* Fix usage of URI module.
2015-06-11 16:48:20 +00:00
taca
bdeafcfa8e Note update of www/ruby-csspool package to 4.0.5. 2015-06-11 16:47:23 +00:00
taca
2555ebdd71 Update ruby-csspool to 4.0.5.
4.0.5

New Features

* Support the ratio data type

4.0.4

(Broken release, do not use)
2015-06-11 16:47:00 +00:00
taca
d26882f218 Allow build this package no Ruby 2.2. 2015-06-11 16:45:31 +00:00
taca
3aa7e0496b Fix build problem on Ruby 2.2. 2015-06-11 16:44:34 +00:00
taca
2fcae02c50 Fix build problem of ruby-clearsilver package on Ruby 2.2. 2015-06-11 16:43:32 +00:00
taca
2c861fb6da Note update of www/ruby-pygments.rb package to 0.6.3. 2015-06-11 16:42:19 +00:00
taca
19fffe40dd Update ruby-pygments.rb to 0.6.3.
pkgsrc change: update minimum version of ruby-yajl to 1.2.0.

* Fix Python hunting logic on Windows.
2015-06-11 16:41:46 +00:00
taca
0f71efd3a2 Note update of textproc/ruby-yajl package to 1.2.1. 2015-06-11 16:38:35 +00:00
taca
fe2e786314 Update ruby-yajl to 1.2.1.
Changes are not available except commit log:
<https://github.com/brianmario/yajl-ruby/commits/master>.
2015-06-11 16:38:10 +00:00