Commit graph

239043 commits

Author SHA1 Message Date
taca
8bb22ded9c Update ruby-raindrops to 0.15.0.
=== raindrops 0.15.0 - non-glibc compat fix on Linux / 2015-07-22 00:30 UTC

  Thanks to Doug Forster for sending us the report.
  No other fixes

  * check for the existence of linux/tcp.h

=== raindrops 0.14.0 - misc doc updates / 2015-06-25 21:50 UTC

  Eric Wong (7):
        linux_inet_diag: annotate memory freeing on diag errors
        README: trim intro and update license
        modernize packaging and documentation
        move mailing list to raindrops-public@bogomips.org
        linux_inet_diag: clarify *fprintf usage without GVL
        TODO: add item for unix_diag and udp_diag
        linux_inet_diag: fix Wshorten-64-to-32 warnings

  Hleb Valoshka (1):
        Add setup and teardown for ipv6 tests
2015-09-13 15:40:36 +00:00
taca
c564259f0c Note update of www/ruby-rack-contrib package to 1.4.0. 2015-09-13 15:40:04 +00:00
taca
e24294df22 Update ruby-rack-contrib to 1.4.0.
v1.4.0: Features, Features Everywhere, and not a bug to fix

There's a bumper crop of new features this month. Share and enjoy!

Deprecations

* Rack::AcceptFormat is slated for removal in rack-contrib 2.0.0 (due on or
  after 1 January, 2016. Using this middleware will now result in a
  deprecation warning being printed to stderr. If you use this middleware, now
  would be a good time to start doing things properly.

Features

* Rack::LazyConditionalGet: new middleware, by Mig. This middleware tracks
  when the last POST/PUT/DELETE request was made, and returns 304 responses to
  requests which include a Last-Modified entity request header which is
  greater than or equal to that time.

* Rack::StaticCache: You can now specify a custom "version" regex for your
  cache invalidation, if the default doesn't do it for you. Initial patch
  provided by Eric Boehs.

* Rack::Profiler: You can now run a single request through the profiler
  multiple times, by adding the profiler_runs query parameter to the
  URL. Patch provided by Bryce McDonnell.
2015-09-13 15:39:37 +00:00
taca
afb5018d6e Note update of www/ruby-puma package to 2.13.4. 2015-09-13 15:35:54 +00:00
taca
85b9e0fb93 Update ruby-puma to 2.13.4.
=== 2.13.4 / 2015-08-16

* 1 bug fix:
  * Use the environment possible set by the config early and from
    the config file later (if set).

=== 2.13.3 / 2015-08-15

Seriously, I need to revamp config with tests.

* 1 bug fix:
  * Fix preserving options before cleaning for state. Fixes #769

=== 2.13.2 / 2015-08-15

The "clearly I don't have enough tests for the config" release.

* 1 bug fix:
  * Fix another place binds wasn't initialized. Fixes #767

=== 2.13.1 / 2015-08-15

* 2 bug fixes:
  * Fix binds being masked in config files. Fixes #765
  * Use options from the config file properly in pumactl. Fixes #764

=== 2.13.0 / 2015-08-14

* 1 minor feature:
  * Add before_fork hooks option.

* 3 bug fixes:
  * Check for OPENSSL_NO_ECDH before using ECDH
  * Eliminate logging overhead from JRuby SSL
  * Prefer cli options over config file ones. Fixes #669

* 1 deprecation:
  * Add deprecation warning to capistrano.rb. Fixes #673

* 4 PRs merged:
  * Merge pull request #668 from kcollignon/patch-1
  * Merge pull request #754 from nathansamson/before_boot
  * Merge pull request #759 from BenV/fix-centos6-build
  * Merge pull request #761 from looker/no-log

=== 2.12.3 / 2015-08-03

* 8 minor bugs fixed:
  * Fix Capistrano 'uninitialized constant Puma' error.
  * Fix some ancient and incorrect error handling code
  * Fix uninitialized constant error
  * Remove toplevel rack interspection, require rack on load instead
  * Skip empty parts when chunking
  * Switch from inject to each in config_ru_binds iteration
  * Wrap SSLv3 spec in version guard.
  * ruby 1.8.7 compatibility patches

* 4 PRs merged:
  * Merge pull request #742 from deivid-rodriguez/fix_missing_require
  * Merge pull request #743 from matthewd/skip-empty-chunks
  * Merge pull request #749 from huacnlee/fix-cap-uninitialized-puma-error
  * Merge pull request #751 from costi/compat_1_8_7

* 1 test fix:
  * Add 1.8.7, rbx-1 (allow failures) to Travis.

=== 2.12.2 / 2015-07-17

* 2 bug fix:
  * Pull over and use Rack::URLMap. Fixes #741
  * Stub out peercert on JRuby for now. Fixes #739

=== 2.12.1 / 2015-07-16

* 2 bug fixes:
  * Use a constant format. Fixes #737
  * Use strerror for Windows sake. Fixes #733

* 1 doc change:
  * typo fix: occured -> occurred

* 1 PR merged:
  * Merge pull request #736 from paulanunda/paulanunda/typo-fix

=== 2.12.0 / 2015-07-14

* 13 bug fixes:
  * Add thread reaping to thread pool
  * Do not automatically use chunked responses when hijacked
  * Do not suppress Content-Length on partial hijack
  * Don't allow any exceptions to terminate a thread
  * Handle ENOTCONN client disconnects when setting REMOTE_ADDR
  * Handle very early exit of cluster mode. Fixes #722
  * Install rack when running tests on travis to use rack/lint
  * Make puma -v and -h return success exit code
  * Make pumactl load config/puma.rb by default
  * Pass options from pumactl properly when pruning. Fixes #694
  * Remove rack dependency. Fixes #705
  * Remove the default Content-Type: text/plain
  * Add Client Side Certificate Auth

* 8 doc/test changes:
  * Added example sourcing of environment vars
  * Added tests for bind configuration on rackup file
  * Fix example config text
  * Update DEPLOYMENT.md
  * Update Readme with example of custom error handler
  * ci: Improve Travis settings
  * ci: Start running tests against JRuby 9k on Travis
  * ci: Convert to container infrastructure for travisci

* 2 ops changes:
  * Check for system-wide rbenv
  * capistrano: Add additional env when start rails

* 16 PRs merged:
  * Merge pull request #686 from jjb/patch-2
  * Merge pull request #693 from rob-murray/update-example-config
  * Merge pull request #697 from spk/tests-bind-on-rackup-file
  * Merge pull request #699 from deees/fix/require_rack_builder
  * Merge pull request #701 from deepj/master
  * Merge pull request #702 from Jimdo/thread-reaping
  * Merge pull request #703 from deepj/travis
  * Merge pull request #704 from grega/master
  * Merge pull request #709 from lian/master
  * Merge pull request #711 from julik/master
  * Merge pull request #712 from yakara-ltd/pumactl-default-config
  * Merge pull request #715 from RobotJiang/master
  * Merge pull request #725 from rwz/master
  * Merge pull request #726 from strenuus/handle-client-disconnect
  * Merge pull request #729 from allaire/patch-1
  * Merge pull request #730 from iamjarvo/container-infrastructure
2015-09-13 15:35:17 +00:00
taca
0552109a81 Note update of www/ruby-jekyll-gist package to 1.3.4. 2015-09-13 15:33:39 +00:00
taca
c80ae11e8b Update ruby-jekyll-gist to 1.3.4.
## 1.3.4 / 2015-08-28

  * Catch `TimeoutError` to further support 1.9.3 (#16)

## 1.3.3 / 2015-08-20

  * Fix gemspec to allow Ruby 1.9.3 (relates to #14)

## 1.3.2 / 2016-08-19

  * Re-add support for Ruby 1.9.3. Fixes #11 for 1.9.3 (#14)
  * Replaced `OpenURI` with `Net::HTTP` and introduced timeout of 3 seconds (#11)

## 1.3.1 / 2015-08-16 (yanked)

  * Replaced `OpenURI` with `Net::HTTP` and introduced timeout of 3 seconds (#11)

## 1.3.0 / 2015-08-05

  * Added an `noscript` fallback for browsers without JavaScript enabled. (#7)
2015-09-13 15:33:16 +00:00
taca
cf3583223c Note update of www/ruby-http_router package to 0.11.2. 2015-09-13 15:32:41 +00:00
taca
6bbac87561 Update http_router to 0.11.2.
* Don't assume a router in Route#name=.
* Update README to match the code.
2015-09-13 15:32:01 +00:00
taca
823fd6bf6e Note update of www/ruby-capybara package to 2.5.0. 2015-09-13 15:28:28 +00:00
taca
639dea5d33 Update ruby-capybara to 2.5.0.
# Version 2.5.0
Release date: 2015-08-25

### Fixed
* Error message now raised correctly when invalid options passed to 'have_text'/'have_content' [Tom Walpole]
* Rack-test driver correctly gets document title when elements on the page have nested title elements (SVG) [Tom Walpole]
* 'save_page' no longer errors when using Capybara.asset_host if the page has no \<head> element [Travis Grathwell]
* rack-test driver will ignore clicks on links with href starting with '#' or 'javascript:'

### Added
* has_current_path? and associated asserts/matchers added [Tom Walpole]
* Implement Node#path in selenium driver [Soutaro Matsumoto]
* 'using_session' is now nestable [Tom Walpole]
* 'switch_to_window' will now use waiting behavior for a matching window to appear [Tom Walpole]
* Capybara.default_wait_time deprecated in favor of Capybara.default_max_wait_time to more clearly explain its purpose [Paul Pettengill]
* Warning when attempting to select a disabled option
* Capybara matchers are now available in RSpec view specs by default [Joshua Clayton]
* 'have_link' and 'click_link' now accept Regexp for href matching [Yaniv Savir]
* 'find_all' as an alias of 'all' due to collision with RSpec
* Capybara.wait_on_first_by_default setting (default is false)
  If set to true 'first' will use Capybaras waiting behavior to wait for at least one element to appear by default
* Capybara waiting behavior uses the monotonic clock if supported to ease restrictions on freezing time in tests [Dmitry Maksyoma, Tom Walpole]
* Capybara.server_errors setting that allows to configure what type of errors will be raised from the server thread [Tom Walpole]
* Node#send_keys to allow for sending keypresses directly to elements [Tom Walpole]
* 'formmethod' attribute support in RackTest driver [Emilia Andrzejewska]
* Clear field using backspaces in Selenium driver by using `:fill_options => { :clear => :backspace }` [Joe Lencioni]
2015-09-13 15:27:55 +00:00
taca
7eb536a762 Note update of textproc/ruby-redcarpet package to 3.3.2. 2015-09-13 15:27:19 +00:00
taca
6f57c29e80 Update ruby-redcarpet to 3.3.2.
Exact changes are not available.
2015-09-13 15:26:39 +00:00
taca
3e78557538 Note update of textproc/ruby-multi_json package to 1.11.2. 2015-09-13 15:23:25 +00:00
taca
7fdbbe2270 Update ruby-multi_json to 1.11.2
1.11.2
------

* [Only pass one argument to JrJackson when two is not supported](e798fa517c)
2015-09-13 15:22:49 +00:00
taca
4b8a45da18 Note update of textproc/ruby-kramdown package to 1.8.0. 2015-09-13 15:22:18 +00:00
taca
31a78fdb5b Update ruby-kramdown to 1.8.0.
kramdown 1.8.0 released

This release contains only some minor updates and bug fixes.

Changes

* 4 minor changes:

  - The LaTeX converter now uses \texttt instead of \tt for code spans (fixes
    #257, reported by richard101696)

  - New option footnote_backlink for changing the backlink of footnotes in the
    HTML converter (fixes #247, requested by Benjamin Esham)

  - A quote directly followed by an ellipsis is now converted into an opening
    quotation mark (fixes #253, requested by Michael Franzl)

  - Removed warning for self-closing HTML elements that are not self-closed
    (fixes #262, requested by Gregory Pakosz)

* 3 bug fixes:

- Fixed #251: The special character sequence \` now works correctly when used
  in footnotes or headers that appear in the table of contents (reported by
  Peter Kehl)

- Fixed #254: kramdown crashed on encountering a table with multiple
  consecutive separator lines (reported by Christian Kruse)

- Fixed #256: Certain footnote definitions and codeblocks lead to crashes or
  unneeded backtracking in the regular expression engine - fixed by using
  atomic grouping (reported by Ali Ok)
2015-09-13 15:21:30 +00:00
taca
01bb2f3033 Note update of textproc/ruby-haml package to 4.0.7. 2015-09-13 15:18:35 +00:00
taca
f0d94aa84e Update ruby-haml to 4.0.7.
Add pkg_alternative support.

# Haml Changelog

## 4.0.7

Released on August 10, 2015
([diff](https://github.com/haml/haml/compare/4.0.6...4.0.7)).

* Significantly improve performance of regexp used to fix whitespace handling in textareas (thanks [Stan Hu](https://github.com/stanhu)).
2015-09-13 15:18:07 +00:00
taca
25cf9261d7 Note update of sysutils/ruby-listen package to 2.10.1. 2015-09-13 15:15:17 +00:00
taca
112d99a663 Update ruby-listen to 2.10.1, latest 2.10 release.
v2.10.1

* #320 - latency option was completely ignored for both OSX and when Polling
* #302 - fix bug related to move_to/move_from breaking TCP functionality
2015-09-13 15:14:46 +00:00
taca
ca10d1e221 Note update of print/ruby-prawn package to 2.0.2. 2015-09-13 15:11:39 +00:00
taca
fd5cb882a8 Update ruby-prawn to 2.0.2.
PrawnPDF 2.0.2 -- 2015-07-15

Links in repeaters/stamps are now clickable

Previously, url links were not clickable when rendered within a stamp. The proper annotation references are now added to the page object that the stamp is called, thereby generating a clickable link in the pdf.

Because repeaters are built upon stamps, this fix should also solve issues with links inside of repeaters.

(Jesse Doyle, #801, #498)
2015-09-13 15:11:06 +00:00
taca
317ede93b0 Note update of print/ruby-pdf-core package to 0.6.0. 2015-09-13 15:10:26 +00:00
taca
1af1a627e9 Update ruby-pdf-core to 0.6.0.
* Add spec for trailer initialization
* Update document state spec description
* Remove securerandom
* Fixed tests for document state trailer
* Remove default_trailer & leave it as an empty hash
* Add document ID to trailer for PDF-X spec compat
2015-09-13 15:09:50 +00:00
joerg
8eb05d8506 Deal with new freetype header. 2015-09-13 15:09:03 +00:00
joerg
16af57e146 Avoid left-shifting negative values, which is undefined behavior.
Bump revision just in case.
2015-09-13 15:08:09 +00:00
joerg
96efc184d6 Deal with new freetype header. Remove unwind.h override, the normal
system header list already includes it.
2015-09-13 15:05:35 +00:00
taca
14e7b63dab Note update of net/ruby-net-ping package to 1.7.8. 2015-09-13 15:04:25 +00:00
joerg
7612f47233 Introduce IGNORE_INTERACTIVE_FETCH to allow trying to fetch files from
the override site, even for INTERACTIVE_STATE=stage or FETCH_MESSAGE.
Ignore all backup sites as they won't have the distfile anyway, the
fetch wouldn't be interactive in first place otherwise.
2015-09-13 15:03:57 +00:00
taca
f6f6e976b2 Update ruby-net-ping to 1.7.7.
== 1.7.7 - 22-Jan-2015
* Pull request #1 from Mike George. This fixes domains which have http in them.
2015-09-13 15:00:42 +00:00
taca
6acf6e2988 Note update of net/ruby-amqp package to 1.5.1. 2015-09-13 14:59:08 +00:00
taca
f6b61d4a39 Update ruby-amqp to 1.5.1.
* Depend on amq-protocol ~> 1.9
2015-09-13 14:58:39 +00:00
taca
bcb3888183 Note update of net/ruby-amq-protocol package to 2.0.0. 2015-09-13 14:53:45 +00:00
taca
b5378d4aa0 Update ruby-amq-protocol to 2.0.0.
## Changes between 1.9.x and 2.0.0

2.0.0 has **breaking changes** in header encoding.

### Signed Integer Encoding in Headers

Integer values in headers are now encoded as signed 64-bit
(was unsigned 32-bit previously, unintentionally).

This is a breaking change: consuming messages with integers in headers
published with older versions of this library will break!

### Signed 16 Bit Integer Decoding

Signed 16 bit integers are now decoded correctly.

### Signed 8 Bit Integer Decoding

Signed 8 bit integers are now decoded correctly.

Contributed by Benjamin Conlan.
2015-09-13 14:53:14 +00:00
taca
f11347f3ec Note update of misc/ruby-sprockets package to 3.3.4. 2015-09-13 14:52:23 +00:00
taca
4ca2e1b7c3 Update ruby-sprockets to 3.3.4.
**3.3.4** (September 1, 2015)

* Relative cache contents now work with windows.

**3.3.3** (August 21, 2015)

* Remove more absolute paths from cache contents.

**3.3.2** (August 19, 2015)

* Fix cache contents to use relative paths instead of absolute paths.

**3.3.1** (August 15, 2015)

* Fix legacy Tilt integration when locals is required argument.

**3.3.0** (August 12, 2015)

* Change internal cache lookup to use relative asset paths instead of absolute paths.
2015-09-13 14:51:58 +00:00
taca
df579f8076 Note update of misc/ruby-parallel package to 1.6.1. 2015-09-13 14:49:56 +00:00
taca
c8f668ed19 Update ruby-parallel to 1.6.1.
* Parallel.map writes its output safely (issue #129).
2015-09-13 14:49:30 +00:00
taca
6e16722c46 Note update of misc/ruby-daemons package to 1.2.3. 2015-09-13 14:44:06 +00:00
taca
45887fd9e0 Update ruby-daemons to 1.2.3.
== Release 1.2.3: June 25, 2015

* fix: ApplicationGroup now waits on subprocesses in start_all (thanks to tobithiel)
2015-09-13 14:43:40 +00:00
taca
1426c76a69 Note update of misc/ruby-commander package to 4.3.5. 2015-09-13 14:43:05 +00:00
taca
6afeaccea3 Update ruby-commander to 4.3.5.
=== 4.3.5 / 2015-08-09

* Fixed a bug with small terminal widths, changed minimum screen width for wrapping to 40 columns. (@toolmantim)
2015-09-13 14:42:34 +00:00
taca
62c7aac935 Note update of misc/ruby-bundler package to 1.10.6. 2015-09-13 14:42:02 +00:00
taca
f24690f6eb Update ruby-bundler to 1.10.6.
## 1.10.6 (2015-07-22)

Workarounds:

  - only warn on invalid gemspecs (@indirect)

Bugfixes:

  - fix installing dependencies in the correct order (#3799, @pducks32)
  - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
  - fix `install_if` conditionals when using the block form (@danieltdt)
2015-09-13 14:41:15 +00:00
taca
1ca94328f9 Correct description in comment, noted by Frédéric Fauberteau.
Thanks much!
2015-09-13 14:39:37 +00:00
taca
778683a8a0 Note update of math/ruby-gsl pakage to 1.16.0.6. 2015-09-13 14:37:34 +00:00
taca
1713ef934a Update ruby-gsl to 1.16.0.6.
== Thu Jul 03 2015
* Ruby/GSL 1.16.0.6
  * rb-gsl and gsl are now the same gem

== Thu Jul 02 2015
* Ruby/GSL 1.16.0.5
  * Optional narray support
  * Drop Ruby 1.8 support
  * Drop support for GSL < 1.15
2015-09-13 14:37:10 +00:00
taca
d020c22196 Note update of lang/ruby-execjs package to 2.6.0. 2015-09-13 14:36:31 +00:00
taca
05a680d8ef Update ruby-execjs to 2.6.0.
* Use node.js if available instead of JavascriptCore on OSX.
* Support checking the PATHEXT variable on Windows.
2015-09-13 14:36:00 +00:00