Commit graph

278859 commits

Author SHA1 Message Date
taca
c8a6f9eea9 math/ruby-spreadsheet: update to 1.1.6
### 1.1.6 / 12.03.2018

Author: Todd Hambley <thambley@travelleaders.com>
Date:   Mon Mar 12 14:20:39 2018 -0400

* fix reject for ruby 1.8.7
* fix using invalid code pages when writing workbook

### 1.1.5 / 20.11.2017

Author: Paco Guzmán <pacoguzman@users.noreply.github.com>
Date:   Sun Nov 19 18:10:57 2017 +0100

* Avoid creating a class variable, that variable cannot be garbage collected and it retains a lot of memory
2018-03-14 14:48:18 +00:00
taca
9e6e89a261 doc: Updated mail/ruby-mail to 2.7.0 2018-03-14 14:46:25 +00:00
taca
41ee8dc517 mail/ruby-mail: update to 2.7
Version 2.7.0 (2017-10-31)

Security:

* #1097 – SMTP security: prevent command injection via To/From addresses.
  (jeremy)

Features:

* #647 – IMAP: specify IMAP server search charset with
   Mail.find(search_charset: 'UTF-8'). (yalab)
* #650 - UTF-7 charset support. (johngrimes)
* #664 - RSpec: with_html and with_text matchers. (zakkie)
* #723 – IMAP: support `enable_starttls: true` for TLS upgrade on
  non-IMAPS/SSL servers. (doits)
* #804 - Configurable SMTP open_timeout and read_timeout. (ankane)
* #853 - `Mail::Message#set_sort_order` overrides the default message part
  sort order. (rafbm)
* #856 - Added :logger delivery method. (zacholauson)
* #900 - Support non-instance_eval builder API. Yield self to Mail.new if the
  provided block takes any arguments. (taavo)
* #1065 - Require STARTTLS using :enable_starttls. (bk2204)
* #1002 - Transcoding replaces invalid chars with "�" instead of discarding
  them. (kjg)
* #1053 - Ruby 2.4.0 compatibility. Fixnum+Bignum unified as
  Integer. (peterkovacs)
* #1094 - Core extensions removal: Drop `String#at`, `from`, `last` and
  `is_utf8?` since they are no longer used by Mail internals. (metcalf)
* #1095 - Core extensions removal: Drop `String#mb_chars`, `not_ascii_only?`,
  `constantize`, `first`, `to` to avoid monkey patching the standard
  library. (metcalf)
* #1111 - Mail::Field.parse API which deprecates calling Mail::Field.new with
  unparsed header fields. (jeremy)
* #1117 - Configurable POP3 read_timeout. (hspazio)

Performance:

* #1059 - Switch from mime-types to mini_mime for a much smaller memory
  footprint. (SamSaffron)
* #1119 - Speed up large attachment encoding by memoizing slow ASCII-only
  checks. (dalibor)

Compatibility:

* #464 - Improve attachment filename detection by preferring
  Content-Disposition filename. (lawrencepit)
* #535 - IMAP: fetch messages WITH IMAP FLAGS by passing a block with four
  args. (lawrencepit)
* #558 - Parser: cope with unknown charsets in header fields by falling back
  to ASCII. (boesemar)
* #655 - Sort attachments to the end of the parts list to work around email
  clients that may mistake a text attachment for the message body. (npickens)
* #683 - SMTP: Work around Net::SMTP dot-stuffing bug with unterminated
  newlines on Ruby 1.8 and 1.9. (yyyc514)
* #766 - No longer strip 'Subject: ' from legit subject lines. (grosser)
* #982 – Faithfully preserve unfolded whitespace rather than collapsing to a
  single space. (jeremy)
* #1103 – Support parsing UTF-8 headers. Implements RFC 6532. (jeremy)
* #1106 – Limit message/rfc822 parts' transfer encoding per RFC 2046. (ahorek)
* #1112 – Support Windows-1258 charset by parsing it as Windows-1252 in
  Ruby. (jeremy)
* #1114 – Setting `mail.body = …` on a multipart message now adds a new text
  part instead of adding a raw MIME part. (jeremy)
* #1159 – Parse emails with n newlines so long as they have no binary
  content. (jeremy)

Bugs:

* #539 - Fix that whitespace-only continued headers would be incorrectly
  parsed as the break between headers and body. (ConradIrwin)
* #605 - Fix Mail::Address#name for nil addresses (peterkovacs)
* #684 - Fix recursively fetching attachments from an embedded message/rfc822
  part whose Content-Type header has additional parameters. (vongruenigen)
* #689 - Fix Exim delivery method broken by #477 in 2.5.4. (jethrogb)
* #792 - Allow blank filenames in Content-Disposition field.
  (robinroestenburg)
* #876 - Strip valid RFC-1342 separator characters between non-matching
  encoded-words. (Caleb W. Corliss)
* #895 - Fix that Mail::Message#add_file was adding a stray filename
  header. (kirikak2)
* #923 – Fix decoding nested quotes around non-US-ASCII addresses. (averell23)
* #978 - Fix for invalid chars being left in a string for invalid b_value from
  encoding. (kjg)
* #996 - Fix that multipart/mixed emails with a delivery-status part could be
  interpreted as bounces. (kjg)
* #998 - Fix header parameter parsing (such as attachment names) for values
  encoded with a blank charset or language code. (kjg)
* #1000 - Fix header parameter parsing (such as attachment names) to transcode
  to UTF-8 (kjg)
* #1003 - Fix decoding some b encoded headers on specific rubies that don't
  account for lack of base64 padding (kjg)
* #1020 - Don't set SMTP verify mode to nil when config was not
  provided. (jhass)
* #1023 - Fix double-quoting in display names. (garethrees)
* #1032 - Fix that comparing messages changed their raw Message-ID to their
  parsed message_id. (bobjflong)
* #1074 - Fix that the first address in a list is dropped when a subsequent
  address has non-US-ASCII characters. (domininik)
* #1107 - Fix Address#display_name and other formatting flip-flopping between
  encoded and decoded forms depending on whether #encoded or #decoded was
  called last. (jeremy)
* #1110 - Fix that Mail::Multibyte::Chars#initialize mutated its argument by
  calling force_encoding on it. (jeremy)
* #1122 – Fix that tilde (~) shouldn't be escaped for Exim delivery. (Benabik)
* #1113 - Eliminate attachment corruption caused by CRLF conversion. (jeremy)
* #1131 - Fix that Message#without_attachments! didn't parse the remaining
  parts. (jeremy)
* #1019 - Fix b value encoder incorrectly splitting multibyte characters.
  (Kenneth-KT)
* #1157 - Fix base64 attachment transfer encoding being overridden by
  quoted-printable. (dalibor)
2018-03-14 14:46:07 +00:00
taca
4790142642 doc: Updated mail/ruby-mini_mime to 1.0.0 2018-03-14 14:38:06 +00:00
taca
c84613b084 mail/ruby-mini_mime: update to 1.0.0
08-11-2017
  - Version 1.0.0
  - Other than the version number, no difference from 0.1.4
2018-03-14 14:37:42 +00:00
taca
5e15b6957c doc: Updated graphics/ruby-chunky_png to 1.3.10 2018-03-14 14:36:27 +00:00
taca
a745aa8657 graphics/ruby-chunky_png: update to 1.3.10
=== 1.3.10 - 2018-01-23

- Fixed a regression in Datastream#metadata, which was not able to deal with iTXt chunks.

=== 1.3.9 - 2018-01-23

- Add support for reading and writing an international textual data (iTXt chunks).
2018-03-14 14:36:03 +00:00
taca
08aadf929b doc: Updated graphics/ruby-cairo to 1.15.11 2018-03-14 14:35:30 +00:00
taca
c5bb22cbfd graphics/ruby-cairo: update to 1.15.11
Release 1.15.11 (2017-12-14) Kouhei Sutou <kou@cozmixng.org>
============================================================

Improvements
------------

  * Added cairo 1.15.10 support.

    * Added Cairo::SVGUnit

    * Added Cairo::SVGSurface#document_unit

    * Added Cairo::SVGSurface#document_unit=

    * Added Cairo::MIMEType::CCITT_FAX

    * Added Cairo::MIMEType::CCITT_FAX_PARAMS

    * Added Cairo::MIMEType::EPS

    * Added Cairo::MIMEType::EPS_PARAMS

  * test: Updated expected value for cairo 1.15.
    [GitHub#50][Reported by Mamoru TASAKA]

  * Windows: Updated bundled libraries:

    * libpng: 1.6.32 -> 1.6.34

    * libxml2: 2.9.6 -> 2.9.7

    * cairo: 1.15.8 -> 1.15.10

Thanks
------

  * Mamoru TASAKA

Release 1.15.10 (2017-10-15) Kouhei Sutou <kou@cozmixng.org>
============================================================

Improvements
------------

  * Windows: Ensure setting PATH environment variable.

  * Added cairo 1.15.8 support.

  * Windows: Updated bundled libraries:

    * libpng: 1.6.29 -> 1.6.32

    * freetype: 2.9.4 -> 2.9.6

    * fontconfig: 2.12.1 -> 2.12.4

    * cairo: 1.15.4 -> 1.15.8
2018-03-14 14:35:06 +00:00
taca
edf4c35654 doc: Updated games/ruby-squib to 0.14.0 2018-03-14 14:34:02 +00:00
taca
13adaf349b games/ruby-squib: update to 0.14.0
## v0.14.0 / 2017-11-06

Features:
* `save_pdf/save_sheet` method now supports `sprue`, which allows you to define templated layouts and position your cards freely (#217) by @felixleong. See docs for how to use this _very_ powerful feature!
* `circle` method now supports various `arc` options, so you can draw partial circles (#211) by @sparr
* `save_sheet` method now supports `rtl` or "right-to-left", for easier duplex printing of backs (#204, #208) by @sparr
* `yaml` method for reading in data, much like `csv` and `xlsx` by @blinks
* Layouts now support `*=` and `/=` operators in addition to `+=` and `-=` (#200).
* `save_pdf` method also supports `rtl` by @vador
* New DSL methods `safe_zone` and `cut_zone` will draw a rectangle inset from the margins for quick proof checking
* New "advanced" option for creating new projects, if you do `squib new --advanced yourgame` (@andymeneely).
* New built-in layout: `party.yml`. (@andymeneely)

Compatibility:
* DPI is correctly respected with font sizes now. To convert to Squib v0.14+, divide your old font sizes by 3 (precisely, 300/96=3.125). By @felixleong

Docs:
* Command-line is better documented now
* Some more examples included in various places

Bugs:
* fix save_sheet to calculate rows correctly based on range (#207) by @sparr

Chores:
* Going back to our policy of locking in our dependencies so that we don't have new gems breaking things.
* Bumped deps, Cairo to 1.15.10 and Pango et al. to 3.1.9

Special thanks to @sparr, @felixleong, @blinks, @vador for all of their work!!
2018-03-14 14:33:35 +00:00
taca
fa2bf8acb4 doc: Updated misc/ruby-progressbar to 1.9.0 2018-03-14 14:32:28 +00:00
taca
3deb29fcd1 misc/ruby-progressbar: update to 1.9.0
Version v1.9.0 - September 27, 2017

Performance

* don't shell out when it's avoidable.

Change

* Don't allow user to override total or starting_at in Enumerator
* print_and_flush to be explicitly a private method

Uncategorized

* Enumerator#to_progressbar as a refinement

Remove

* Explicit clear on start

Fix

* Components::Time to allow #estimated_seconds_remaining to be called

Add

* Base#to_h to expose all of the data about the current bar state
* Outputs::Null for users who don't want the bar sent anywhere
* Ability to specify a completely custom output stream
* %u format flag to show ?? if total is unknown
2018-03-14 14:32:05 +00:00
taca
af802f3d23 doc: Updated devel/ruby-tins to 1.16.3 2018-03-14 14:28:53 +00:00
taca
938d678d80 devel/ruby-tins: update to 1.16.3
2017-12-05 Release 1.16.3

* Improve temp_io method by not changing working dir.

2017-12-05 Release 1.16.2

* Improve temp_io method with a given name.

2017-12-05 Release 1.16.1

* Improve temp_io method with block

2017-11-29 Release 1.16.0

* Prove temp_io method with block
2018-03-14 14:28:25 +00:00
taca
16e0ff73ad doc: Updated devel/ruby-test-unit to 3.2.7 2018-03-14 14:25:58 +00:00
taca
41fcc27b19 devel/ruby-test-unit: update to 3.2.7
## 3.2.7 - 2017-12-12 {#version-3-2-7}

### Improvements

  * Added source code link to gemspec.
    [GitHub#157][Patch by Grey Baker]

  * Changed to use SVG image for badges in README.
    [GitHub#158][Patch by Olle Jonsson]

  * [UI][console]: Added `--reverse-output` option to output fault
    details in reverse like Ruby 2.5. It's enabled by default only for
    tty output.

### Fixes

  * Fixed a typo.
    [GitHub#156][Patch by masa kunikata]

  * [UI][console]: Fixed a bug that broken align in verbose mode.

### Thanks

  * masa kunikata

  * Grey Baker

  * Olle Jonsson

## 3.2.6 - 2017-09-21 {#version-3-2-6}

### Improvements

  * Changed test file require failure to error from omission.
    [GitHub#154][Patch by naofumi-fujii]

### Thanks

  * naofumi-fujii
2018-03-14 14:25:33 +00:00
taca
97dcb7e238 doc: note update of ruby-rspec packges to 3.7.x.
devel/ruby-rspec-support	3.7.1
	devel/ruby-rspec-core		3.7.1
	devel/ruby-rspec-expectations	3.7.0
	devel/ruby-rspec-mocks		3.7.0
	devel/ruby-rspec		3.7.0
	devel/ruby-rspec-rails		3.7.2
2018-03-14 14:24:22 +00:00
taca
b457ee00ca devel/ruby-rspec-rails: update to 3.7.2
### 3.7.2 / 2017-11-20
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.7.1...v3.7.2)

Bug Fixes:

* Delay loading system test integration until used. (Jon Rowe, #1903)
* Ensure specs using the aggregate failures feature take screenshots on failure.
  (Matt Brictson, #1907)

### 3.7.1 / 2017-10-18
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.7.0...v3.7.1)

Bug Fixes:

* Prevent system test integration loading when puma or capybara are missing (Sam Phippen, #1884)

### 3.7.0 / 2017-10-17
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.6.0...v3.7.0)

Bug Fixes:

* Prevent "template not rendered" log message from erroring in threaded
  environments. (Samuel Cochran, #1831)
* Correctly generate job name in error message. (Wojciech Wnętrzak, #1814)

Enhancements:

* Allow `be_a_new(...).with(...)` matcher to accept matchers for
  attribute values. (Britni Alexander, #1811)
* Only configure RSpec Mocks if it is fully loaded. (James Adam, #1856)
* Integrate with `ActionDispatch::SystemTestCase`. (Sam Phippen, #1813)
2018-03-14 14:23:28 +00:00
taca
31d94d114b devel/ruby-rspec: update to 3.7.0
This package is meta gem for ruby-rspec-{core,expectations,mocks}.
2018-03-14 14:22:15 +00:00
taca
4567957a7e devel/ruby-rspec-mocks: update to 3.7.0
### 3.7.0 / 2017-10-17
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.6.0...v3.7.0)

Enhancements:

* Improve compatibility with `--enable-frozen-string-literal` option
  on Ruby 2.3+. (Pat Allan, #1165)

Bug Fixes:

* Fix `hash_including` and `hash_excluding` so that they work against
  subclasses of `Hash`. (Aaron Rosenberg, #1167)
2018-03-14 14:20:38 +00:00
taca
79d6c8c485 devel/ruby-rspec-expectations: update to 3.7.0
### 3.7.0 / 2017-10-17
[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.6.0...v3.7.0)

Enhancements:

* Improve compatibility with `--enable-frozen-string-literal` option
  on Ruby 2.3+. (Pat Allan, #997)
2018-03-14 14:19:55 +00:00
taca
68e66dbc12 devel/ruby-rspec-core: update to 3.7.1
### 3.7.1 / 2018-01-02
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.7.0...v3.7.1)

Bug Fixes:

* Work around duplicate config hook regression introduced
  by Ruby 2.5's lazy proc allocation. (Myron Marston, #2497)

### 3.7.0 / 2017-10-17
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.6.0...v3.7.0)

Enhancements:

* Add `-n` alias for `--next-failure`. (Ian Ker-Seymer, #2434)
* Improve compatibility with `--enable-frozen-string-literal` option
  on Ruby 2.3+. (Pat Allan, #2425, #2427, #2437)
* Do not run `:context` hooks for example groups that have been skipped.
  (Devon Estes, #2442)
* Add `errors_outside_of_examples_count` to the JSON formatter.
  (Takeshi Arabiki, #2448)

Bug Fixes:

* Improve compatibility with frozen string literal flag. (#2425, Pat Allan)
2018-03-14 14:18:50 +00:00
taca
3d342d4110 devel/ruby-rspec-support: update to 3.7.1
### 3.7.1 / 2018-01-29
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.7.0...v3.7.1)

Bug Fixes:

* Fix source extraction logic so that it does not trigger a `SystemStackError`
  when processing deeply nested example groups. (Craig Bass, #343)

### 3.7.0 / 2017-05-04
[Full Changelog](http://github.com/rspec/rspec-support/compare/v3.6.0...v3.7.0)

Enhancements:

* Improve compatibility with `--enable-frozen-string-literal` option
  on Ruby 2.3+. (Pat Allan, #320)
* Add `Support.class_of` for extracting class of any object.
  (Yuji Nakayama, #325)

Bug Fixes:

* Fix recursive const support to not blow up when given buggy classes
  that raise odd errors from `#to_str`. (Myron Marston, #317)
2018-03-14 14:17:59 +00:00
taca
c647c8e74e doc: Updated devel/ruby-rb-fsevent to 0.10.3 2018-03-14 14:17:10 +00:00
taca
bde1fa5326 devel/ruby-rb-fsevent: update to 0.10.3
0.10.3						2018/03/03

* Fix abnormal termination fails silently + burns cpu (#81)
2018-03-14 14:16:13 +00:00
taca
c80dd1ea5c doc: Updated devel/ruby-power_assert to 1.1.1 2018-03-14 14:14:32 +00:00
taca
bf3dd2a40a devel/ruby-power_assert: update to 1.1.1
1.1.1					2017/10/25

* Support :if
* Suppress "shadowing outer local variable" warning
* Support :unless
* Adjust indent
* Add notes for known limitations (#21)
* simplecov should be required at first
* Remove trailing spaces
* Respect tab stops
* support `test-bundled-gems` task on ruby core repository.
2018-03-14 14:14:12 +00:00
taca
437335b555 doc: Updated devel/ruby-pkg-config to 1.2.9 2018-03-14 14:11:17 +00:00
taca
8d50b37426 devel/ruby-pkg-config: update to 1.2.9
== 1.2.9 - 2018-01-13

=== Improvements

  * Added more default paths for OpenBSD.
    [GitHub#15][Reported by clintpachl]

=== Thanks

  * clintpachl

== 1.2.8 - 2017-10-19

=== Improvements

  * Improved macOS environment detection.
    [Reported by Simeon Manolov]
2018-03-14 14:10:57 +00:00
taca
811b30e674 doc: Updated devel/ruby-parslet to 1.8.2 2018-03-14 14:10:18 +00:00
taca
847dfdcea0 devel/ruby-parslet: update to 1.8.2
= 1.8.2 / 13Feb2018

  ! Improvements to performance in cases where atoms are dynamically generated
    (Kevin Olbrich).

= 1.8.1 / 19Nov2017

  - Minor fixes for language compatibility.
2018-03-14 14:09:57 +00:00
taca
ae121afc64 doc: Updated devel/ruby-parser to 3.11.0 2018-03-14 14:09:11 +00:00
taca
a62b2686f9 devel/ruby-parser: update to 3.11.0
=== 3.11.0 / 2018-02-14

* 1 major enhancement:

  * Expand to support ruby 2.5 parsing.

* 3 bug fixes:

  * Fixed %r lexing when delimiter is also used in (?X) group.
  * Restore newline after label to detect required kwarg. (presidentbeef)
  * Return `s(:self)` target for `self[]` calls. (presidentbeef)
2018-03-14 14:08:52 +00:00
taca
7d9428fc78 doc: Updated devel/ruby-msgpack to 1.2.4 2018-03-14 14:07:58 +00:00
taca
c5d20c353f devel/ruby-msgpack: update to 1.2.4
2018-03-02 version 1.2.3:

* Add Ruby 2.5.0 binary in gem releases for Windows

2018-01-11 version 1.2.2:

* Fix bug to occur SEGV occasionally (depends on GC timing) when exttype is used
* Fix bug to encode an ext type with wrong type id if superclass is also registered as ext type

2017-12-08 version 1.2.1:

* Hotfix release only for JRuby: 1.2.0-java was built in incorrect way

2017-12-07 version 1.2.0:

* Add MessagePack::Factory#dump and MessagePack::Factory#load as convenient methods
  like MessagePack.dump and MessagePack.load
* Fix bug to accept MessagePack::Factory#register_type after #freeze
2018-03-14 14:07:38 +00:00
dholland
61b0eb97a1 Also requires ocaml-num. 2018-03-14 14:06:59 +00:00
taca
098d9cd619 doc: Updated devel/ruby-minitest to 5.11.3 2018-03-14 14:06:32 +00:00
taca
e0b86f55cd devel/ruby-minitest: update to 5.11.3
=== 5.11.3 / 2018-01-26

* 1 bug fix:

  * Pushed #error? up to Reportable module. (composerinteralia)

=== 5.11.2 / 2018-01-25

* 1 minor enhancement:

  * Reversed Test < Result. Back to < Runnable and using Reportable for shared code.

* 2 bug fixes:

  * Fixed Result#location for instances of Test. (alexisbernard)
  * Fixed deprecation message for Runnable#marshal_dump. (y-yagi)

=== 5.11.1 / 2018-01-02

* 1 bug fix:

  * Fixed Result (a superclass of Test) overriding Runnable's name accessors. (y-yagi, MSP-Greg)

=== 5.11.0 / 2018-01-01

* 2 major enhancements:

  * Added Minitest::Result and Minitest::Result.from(runnable).
  * Changed Minitest::Test to subclass Result and refactored methods up.

* 7 minor enhancements:

  * Added --no-plugins and MT_NO_PLUGINS to bypass MT plugin autoloading. Helps with bad actors installed globally.
  * Added bench_performance_{logarithmic,power} for spec-style benchmarks. (rickhull)
  * Added deprecation warning for Runnable#marshal_dump.
  * Minitest.run_one_method now checks for instance of Result, not exact same class.
  * Minitest::Test.run returns a Result version of self, not self.
  * ProgressReporter#prerecord now explicitly prints klass.name. Allows for fakers.

* 4 bug fixes:

  * Object.stub no longer calls the passed block if stubbed with a callable.
  * Object.stub now passes blocks down to the callable result.
  * Pushed Minitest::Test#time & #time_it up to Runnable.
  * Test nil equality directly in assert_equal. Fixes #679. (voxik)

=== 5.11.0b1 / 2017-12-20

* 2 major enhancements:

  * Added Minitest::Result and Minitest::Result.from(runnable).
  * Changed Minitest::Test to subclass Result and refactored methods up.

* 6 minor enhancements:

  * Added --no-plugins and MT_NO_PLUGINS to bypass MT plugin autoloading. Helps with bad actors installed globally.
  * Added bench_performance_{logarithmic,power} for spec-style benchmarks. (rickhull)
  * Minitest.run_one_method now checks for instance of Result, not exact same class.
  * Minitest::Test.run returns a Result version of self, not self.
  * ProgressReporter#prerecord now explicitly prints klass.name. Allows for fakers.
  * Removed Runnable.marshal_dump/load.

* 4 bug fixes:

  * Object.stub no longer calls the passed block if stubbed with a callable.
  * Object.stub now passes blocks down to the callable result.
  * Pushed Minitest::Test#time & #time_it up to Runnable.
  * Test nil equality directly in assert_equal. Fixes #679. (voxik)
2018-03-14 14:06:10 +00:00
dholland
d0f7d58cdf Partial build fixes for ocaml 4.06.
not at all clear this thing is worth the trouble...
2018-03-14 14:05:37 +00:00
wiz
9b08ca4abc ledger: Fix build with gcc-6.
From upstream via Roberto Oliveira.
2018-03-14 13:59:52 +00:00
dholland
99b6887d5b Fix build with ocaml 4.06. 2018-03-14 11:16:14 +00:00
maya
159fa310a1 libxml2: fix compilation on Solaris 11.3
We use INFINITY which is available on C99 and later, so be explicit
that we compile C99 code.

Also tested as compiling fine on netbsd-current.

Fixes PR pkg/53098
2018-03-14 10:49:00 +00:00
dholland
7cd5cc0060 minor pkglint 2018-03-14 10:16:57 +00:00
dholland
baeb76a4a9 Fix build with ocaml 4.06 2018-03-14 10:16:03 +00:00
adam
b16884828e Added PYTHON_VERSIONS_ACCEPTED=27 2018-03-14 09:59:22 +00:00
mrg
9bbbcce887 adjust the BUILTIN_VERSION_SCRIPT to match xorgproto 2018.1's xproto 7.0.32. 2018-03-14 09:37:35 +00:00
dholland
531f48c8a5 Add patch comments. 2018-03-14 09:16:02 +00:00
dholland
57dd6e4912 pkglint whitespaec 2018-03-14 09:14:38 +00:00
dholland
6afb61374e Fix build with ocaml 4.06. 2018-03-14 09:14:05 +00:00