Commit graph

245228 commits

Author SHA1 Message Date
dbj
7425b85cd2 fix PLIST on Darwin which doesn't have CLOCK_GETTIME 2016-02-17 04:52:25 +00:00
dbj
3dfbf1dbb8 fix linking of openCV libraries.
fixes build on Darwin
2016-02-17 04:49:47 +00:00
mef
b20ded41de Updated graphics/p5-GD-SecurityImage to 1.73 2016-02-17 03:33:33 +00:00
mef
1e1af0b929 Update to 1.73
--------------
1.73 Wed Jan 21 01:36:45 2015
    => RT#87918.
2016-02-17 03:32:50 +00:00
jklos
1dac4e77a8 Same as other php versions - selectively enable just-in-time support in
PCRE for supported architectures.
https://mail-index.netbsd.org/pkgsrc-bugs/2015/09/13/msg057792.html
2016-02-17 01:17:16 +00:00
gdt
78ea9c15a7 Soften explanation of syncthing-android
Interoperation with syncthing-android is still very important, but
some have told me that they use syncthing among POSIXish systems
without android as a replacement for rsync/unison, more or less.  Keep
the notion of deferring major upgrades to stay in sync with f-droid.

(This is in no way a complaint about the previous minor upgrade, which
was most welcome; it just caused me to look at this and notice my
previous text was too strong.)

CVS: ----------------------------------------------------------------------
CVS: CVSROOT  cvs.NetBSD.org:/cvsroot
CVS: please use "PR category/123" to have the commitmsg appended to PR 123
2016-02-16 23:07:12 +00:00
morr
ff275e8708 Add fd limits to startup script. Bump PKGREVISION. 2016-02-16 21:59:45 +00:00
abs
1e3b3dbfc5 Updated net/syncthing to 0.12.19 2016-02-16 21:34:33 +00:00
abs
0b7990e2a0 Updated net/syncthing to 0.12.19
v0.12.19
- Return "No such object in the index" when /rest/db/file gets
  called on something that doesn't exist (@calmh)
- Swap the corsMiddleware and the csrfMiddleware to the unauthenticated
  OPTIONS requests are first processed. (@letiemble)
- Report versioning usage in usage report (@calmh)
2016-02-16 21:34:13 +00:00
drochner
45a8d52ac2 pull in https://github.com/python-pillow/Pillow/pull/1706
fixed buffer overflow in PcdDecode
bump PKGREV
2016-02-16 20:17:41 +00:00
leot
683fcf2676 Updated x11/slock to 1.3 2016-02-16 17:47:39 +00:00
leot
63c43a2866 Update x11/slock to 1.3.
pkgsrc changes:
- Delete NO_CONFIGURE (it is not needed and sometimes can be harmful)

Changes:
The changes since version 1.2 are:
- bugfix: The cover window now resizes correctly when new screens are added or
  the resolution is changed while the lock is active.
- new: slock now has a third color. The three colors are used for startup,
  typing and failed login attempt.
- new: slock now allows to run any command after the screen has been locked, for
  example suspending to ram.
- slock now has a man page.
- a few small fixes and code style updates to make it more consistent with the
  rest of the suckless projects.

ok reed@
2016-02-16 17:47:19 +00:00
taca
1a914a012b Note update of devel/ruby-sexp-processor package to 4.6.1. 2016-02-16 16:19:17 +00:00
taca
728e3f363d Update ruby-sexp-processor to 4.6.1.
=== 4.6.1 / 2016-01-21

* 1 bug fix:

  * defs should have a nil node if body is empty.
2016-02-16 16:18:32 +00:00
taca
a7ec89e46f Note update of devel/ruby-tins package to 1.8.2. 2016-02-16 16:17:52 +00:00
taca
8bd967cff7 Update ruby-tins to 1.8.2.
2016-01-18 Release 1.8.2

* Implement Tins::StringVersion::Version#dup and
  Tins::StringVersion::Version#clone.
2016-02-16 16:17:24 +00:00
taca
12c3488c76 Note update of devel/ruby-test-unit package to 3.1.7. 2016-02-16 16:09:28 +00:00
taca
f14160c5a4 Update ruby-test-unit to 3.1.7.
* pkgsrc change: revive ruby23 support.

## 3.1.7 - 2016-01-17 {#version-3-1-7}

### Fixes

 * Added a missing require.

## 3.1.6 - 2016-01-17 {#version-3-1-6}

It's a Ruby on Rails integration improvement release.

### Improvements

  * Filtered backtrace of power\_assert.
    [GitHub#114]
  * Improved performance to retrieve test defined location.
  * Improved performance to run fixtures in a test.
  * Supported running a test by `yield` in `setup`:

    Before:

        def setup
          @file = File.open("x")
        end

        def teardown
          @file.close
        end

    After:

        def setup
          File.open("x") do |file|
            @file = file
            yield
          end
        end

  * Added `--default-test-path` option that specifies the default path
    that has tests.
  * Made auto runner registration more lazily. Auto runner isn't
    registered automatically until user defines a test. In the
    previous releases, auto runner is registered automatically when
    user defines a test case.
  * Supported specifying a test by location in command line. For
    example, the following command line runs a test that is defined in
    /tmp/test_a.rb at line 10:

        % ruby -r test-unit -e run_test /tmp/test_a.rb:10

### Fixes

  * Fixed a bug that test isn't ran. The test has the same name as
    data driven test that is defined in parent test case.
    [GitHub#115]
2016-02-16 16:08:58 +00:00
taca
7b9553dc8a Note update of devel/ruby-simplecov package to 0.11.2. 2016-02-16 16:04:17 +00:00
taca
e7752bf2e4 Update ruby-simplecov to 0.11.2.
## Enhancements

## Bugfixes

0.11.2 2016-02-03 ([changes](https://github.com/colszowka/simplecov/compare/v0.11.1...v0.11.2))
=================

## Enhancements

* Do not globally pollute Array and Hash with `merge_resultset` utility methods. See [#449](https://github.com/colszowka/simplecov/pull/449) (thanks @amatsuda)
* Do not `mkdir_p` the `coverage_path` on every access of the method (See [#453](https://github.com/colszowka/simplecov/pull/453) (thanks @paddor)
* Fixes a Ruby warning related to the `track_files` configuration. See [#447](https://github.com/colszowka/simplecov/pull/447) (thanks @craiglittle)
* Add a group for background jobs to default Rails profile. See [#442](https://github.com/colszowka/simplecov/pull/442) (thanks @stve)

## Bugfixes

* Fix root_filter evaluates SimpleCov.root before initialization. See [#437](https://github.com/colszowka/simplecov/pull/437) (thanks @tmtm)
2016-02-16 16:03:52 +00:00
taca
8724daf6c9 Note update of devel/ruby-rspec-rails package to 3.4.2. 2016-02-16 16:03:03 +00:00
taca
a9d85f3217 Update ruby-rspec-rails to 3.4.2.
### 3.4.2 / 2016-02-02
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.1...v3.4.2)

Bug fixes:

* Cache template resolvers during path lookup to prevent performance
  regression from #1535. (Andrew White, #1544)

### 3.4.1 / 2016-01-25
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.4.0...v3.4.1)

Bug Fixes:

* Fix no method error when rendering templates with explicit `:file`
  parameters for Rails version `4.2.5.1`. (Andrew White, Sam Phippen, #1535)
2016-02-16 16:02:35 +00:00
taca
7b0c699824 Note update of devel/ruby-rspec-mocks package to 3.4.1. 2016-02-16 16:02:01 +00:00
taca
1520bf17e3 Update ruby-rspec-mocks to 3.4.1.
### 3.4.1 / 2016-01-10
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.4.0...v3.4.1)

Bug Fixes:

* Fix `any_instance` to work properly on Ruby 2.3. (Joe Rafaniello, #1043)
2016-02-16 16:01:13 +00:00
taca
51c44cfe4d Note update of devel/ruby-rspec-core package to 3.4.2. 2016-02-16 16:00:12 +00:00
taca
91b425820c Update ruby-rspec-core to 3.4.2.
### 3.4.2 / 2016-01-26
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.4.1...v3.4.2)

Bug Fixes:

* Fix `rspec --profile` when an example calls `abort` or `exit`.
  (Bradley Schaefer, #2144)
* Fix `--drb` so that when no DRb server is running, it prevents
  the DRb connection error from being listed as the cause of all
  expectation failures. (Myron Marston, #2156)
* Fix syntax highlighter so that it works when the `coderay` gem is
  installed as a rubygem but not already available on your load path
  (as happens when you use bundler). (Myron Marston, #2159)
2016-02-16 15:59:42 +00:00
taca
7c5da3f75c Note update of devel/ruby-parser package to 3.7.3. 2016-02-16 15:57:39 +00:00
taca
9dadcd7917 Update ruby-parser to 3.7.3.
=== 3.7.3 / 2016-01-21

* 2 bug fixes:

  * Fixed parsing kwargs in defs with no parens. (presidentbeef)
  * defs should have a nil node if body is empty.
2016-02-16 15:57:00 +00:00
fhajny
2eec8bee4f Updated databases/mongo-c-driver to 1.3.3 2016-02-16 15:26:42 +00:00
fhajny
cdd3a9b5b0 Update databases/mongo-c-driver to 1.3.3
1.3.3
- Fix a bug where a slightly-oversized bulk write operation was not split
  into batches; instead, it was sent whole to the server, which rejected it.

1.3.2
- A socket is properly discarded after a network error from a command.
- mongoc_database_get_collection now copies the database's read preferences,
  read concern, and write concern, instead of copying the client's.
- mongoc_cursor_t's private struct now allows a negative limit.

1.3.1
- mongoc_client_get_gridfs now copies the client's read preferences, read
  concern, and write concern to the newly created mongoc_gridfs_t. Before
  this fix, GridFS operations were always executed with the default config:
  data was read from the primary, with the read concern level "local", and
  written with write concern "acknowledged". Now, if you have configured
  any of these options on the mongoc_client_t, they are respected by
  the mongoc_gridfs_t.
- CMakeLists.txt now includes and installs the pkg-config files.
2016-02-16 15:26:30 +00:00
fhajny
d78884a5c2 Updated devel/libbson to 1.3.3 2016-02-16 15:26:03 +00:00
fhajny
fddd257ebd Update devel/libbson to 1.3.3.
1.3.3
- No changes

1.3.2
- man pages couldn't be built from a distribution tarball.

1.3.1
- bson_strnlen is off by one on Windows.
- BSON_HAVE_STRNLEN config check used incorrectly.
- Incompatibility with older CMake versions.
- Wrong-sized allocation in bson_json_reader_new.
2016-02-16 15:25:53 +00:00
taca
ffba3df5d5 Note update of devel/ruby-power_assert package to 0.2.7. 2016-02-16 15:21:11 +00:00
taca
133425b8f7 Update ruby-power_assert to 0.2.7.
* Make PowerAssert::Bug11182,Bug11182Sub private.
* Encoding::CompatibilityError is no longer raised as of ruby 2.3.0.
* Use ruby 2.3 on travis-ci.org.
* Update bundler before travis builds.
* Use ruby 2.3.0 on travis-ci.org.
2016-02-16 15:20:40 +00:00
fhajny
264c203d04 Fix deps missing from bl3. 2016-02-16 15:17:51 +00:00
taca
fb1ff2d75b Note update of devel/ruby-parseconfig package to 1.0.8. 2016-02-16 15:16:24 +00:00
taca
3ee9a93479 Update ruby-parseconfig to 1.0.8.
Mon Jan 25, 2016 - v1.0.8
- Use backward compatible positional arguments (not named keyword arguments)
  Resolves Issue #31

Mon Jan 25, 2016 - v1.0.7
- Support alternative comment types (default: ['#', ';']) (@voobscout)
  Resolves Issue #30
2016-02-16 15:15:57 +00:00
taca
448d60e8e1 Note update of devel/ruby-nenv package to 0.3.0. 2016-02-16 15:13:57 +00:00
taca
fed96364e6 Update ruby-nenv to 0.3.0.
v0.3.0

Improvements

#7 - refactoring, optimization and major internal cleanup (thanks to
     @marshall-lee !)
#5 - optimization in accessor calls (again, thanks to @marshall-lee !)
2016-02-16 15:13:27 +00:00
jperkin
dd898a7262 Updated www/php-fpm to 5.5.32nb1 2016-02-16 15:10:57 +00:00
jperkin
b82af18629 Handle php70's FPM config layout correctly. Bump PKGREVISION. 2016-02-16 15:10:48 +00:00
taca
62c2db4478 Note update of devel/ruby-minitest package to 5.8.4. 2016-02-16 15:10:47 +00:00
taca
282c93b1d2 Update ruby-minitest to 5.8.4.
* pkgsrc change: revive ruby23 support.

=== 5.8.4 / 2016-01-21

* 1 bug fix:

  * Allow Minitest::Assertion to pass through assert_raises so inner failures are dealt with first.
2016-02-16 15:10:10 +00:00
taca
d340136a86 Note update of devel/ruby-gettext_i18n_rails package to 1.4.0. 2016-02-16 15:08:36 +00:00
taca
e1994f509a Update ruby-gettext_i18n_rails to 1.4.0.
* Add support Ruby on Rails 4.2 and 5.0.
* fix test and deprecations.
2016-02-16 15:08:02 +00:00
taca
7964a60002 Note update of devel/ruby-gettext package to 3.2.1. 2016-02-16 15:05:03 +00:00
taca
33e1c4adc2 Update ruby-gettext to 3.2.1.
## 3.2.1: 2016-01-23 {#version-3-2-1}

### Improvements

  * Supported customizing msgmerge options on merging edit.po to .po.
    [GitHub#44][Patch by Dominic Cleal]
2016-02-16 15:04:35 +00:00
taca
ba7ff85c99 Note update of devel/ruby-flexmock package to 2.0.4. 2016-02-16 15:03:17 +00:00
taca
073b2cfcb6 Update ruby-flexmock to 2.0.4.
* auto-mock #kind_of? as well as #class on strict mocks.
2016-02-16 15:02:45 +00:00
taca
038bf678d9 Note update of devel/ruby-eventmachine package to 1.0.9.1. 2016-02-16 14:57:33 +00:00