Commit graph

25173 commits

Author SHA1 Message Date
joerg
87ea6293cd Honour DESTDIR properly. 2015-09-23 11:46:57 +00:00
joerg
b9115bfa21 Try to get subversion support to at least build again. 2015-09-23 11:45:54 +00:00
joerg
6f89ccebc3 Drop pointless preprocessor noise. 2015-09-23 11:42:57 +00:00
wiz
71a2f92f9b Add build dependency on perl so that man pages are created correctly.
Noted by Frédéric Fauberteau in PR 50266.

Bump PKGREVISION.
2015-09-23 08:44:41 +00:00
mef
6a67701393 - Fix the build with newer ExtUtils-MakeMaker
Incompatible change in the newer ExtUtils-MakeMaker:
It places .o files where the source file lives (lib/File/ in this case),
whereas the older MakeMaker placed it in the current working dir
(toplevel in this case).

Thanks Matthias Ferdinand
http://mail-index.netbsd.org/pkgsrc-users/2015/09/19/msg022238.html
2015-09-23 06:43:47 +00:00
joerg
c1db536141 Don't hard-code JDK position. 2015-09-17 17:13:33 +00:00
richard
14bace16a4 update tryton client to 3.6.3
$ hg log --style changelog -b 3.6 -r 3.6.3:3.6.2
2015-09-08  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.6.3
	[12ad2caf0b4a] [3.6.3] <3.6>

2015-07-28  Cédric Krier  <ced@b2ck.com>

	* doc/usage.rst, tryton/gui/main.py:
	opt-in for Mac integration

	The Mac integration is not fully stable for now.

	issue4595 review19341002 (grafted from
	b00d6918cc6acee02921bb92e2c0ddbe1788c95c)
	[0a41df770987] <3.6>

	* tryton/config.py:
	Decode windows HOME using the file system encoding

	GTK requires to have string encoded in utf-8.

	issue4870 review16471002 (grafted from
	3a832b0ccf86fd80fb58f0e32f18647c4612b744)
	[d8b7956f1fe4] <3.6>

	* tryton/gui/window/view_form/model/record.py:
	Check if field is loaded before adding its timestamp

	issue4876 review20331003 (grafted from
	4adab6dc64fa312664c6dfadce62f38cc065dacd)
	[20357c8c7814] <3.6>

	* tryton/common/common.py:
	Don't decode file name from get_preview_filename

	The file name received from get_preview_filename is already encoded
	in utf-8.

	issue4871 review8251002 (grafted from
	19ac99adc0b71c99478f7510d10c8aab50fcbefd)
	[facaf37c52cb] <3.6>

2015-07-09  Cédric Krier  <ced@b2ck.com>

	* tryton/common/domain_parser.py,
	tryton/gui/window/view_form/screen/screen.py:
	Add support of TimeDelta to DomainParser

	issue4851 review20321002 (grafted from
	6d3ea9bff014927d9073a892e1d02ce3eb5c5852)
	[0458be2d858c] <3.6>

2015-07-07  Cédric Krier  <ced@b2ck.com>

	* doc/usage.rst:
	Remove Tabs Position documenation

	issue1014 (grafted from 97e4356ed90b91ff253ab30887c45a38c2b7f00f)
	[6fd0b418e185] <3.6>

2015-07-01  Cédric Krier  <ced@b2ck.com>

	* tryton/common/datetime_.py,
	tryton/gui/window/view_form/view/list_gtk/editabletree.py:
	Call activate on Date, Time cell before getting value

	The focus-out event is not yet triggered when editing is done which
	result of the content of the cell not yet being parsed. So the
	parsing must be forced by calling activate.

	issue4826 review18341002 (grafted from
	1f55c2dbde245703ff89d3a68f0aa90a8a27db8c)
	[71e137fa3ddf] <3.6>

2015-07-01  David Harper  <google@unicode2013.org>

	* tryton/gui/window/view_form/model/field.py:
	Fix set_client of new datetime from editable tree

	issue4850 review20311002 (grafted from
	67d552d629c7ea2bfedd93d1c0bf22b6f33ef98a)
	[acf96fab06be] <3.6>

2015-07-01  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/form.py:
	Display date and microsecond in logs

	create and write dates should be formatted the same way as the
	revisions.

	issue4808 review18351002 (grafted from
	ad74340d5c82480adef6115ba08677be8457c500)
	[0b59dd061a53] <3.6>

2015-06-28  Cédric Krier  <ced@b2ck.com>

	* tryton/gui/window/view_form/view/list.py:
	Fix behaviour of TreeModel when record is None

	issue4831 review16381002 (grafted from
	1c35fe52323832015370d4831f3b09bdacdb27ed)
	[39744a792077] <3.6>

2015-07-13  Cédric Krier  <ced@b2ck.com>

	* tryton/__init__.py:
	Increase version number
	[f0042c7ffa0a] <3.6>

	* .hgtags:
	Added tag 3.6.2 for changeset 94c93cbb7dd4
	[4dbcf91f53fc] <3.6>

	* CHANGELOG:
	Prepare release 3.6.2
	[94c93cbb7dd4] [3.6.2] <3.6>
2015-09-17 14:29:25 +00:00
richard
9927c7e96c update trytond to 3.6.3
$ hg log --style changelog -b 3.6 -r 3.6.3:3.6.2
2015-09-08  Cédric Krier  <ced@b2ck.com>

	* CHANGELOG:
	Prepare release 3.6.3
	[8a2f9afeb713] [3.6.3] <3.6>

2015-07-14  Cédric Krier  <ced@b2ck.com>

	* trytond/model/modelsql.py:
	Get all eligible records when writting many values

	The call to trigger_write_get_eligibles must be done with all the
	records and not only the first set.

	issue4863 review23311002 (grafted from
	e87ffbe12522d4abe7565bb44f2ca0add34e171e)
	[674cb62177cc] <3.6>

	* trytond/model/modelview.py:
	Always test field presence in initial value when computed changed
	values

	The value could be None which is also the default value returned by
	dict.get. So it will fail to detect change in such case.

	issue4839 review23281002 (grafted from
	e54306367a05a86e94020c325529e91911393488)
	[54a9317d3ede] <3.6>

2015-07-13  Cédric Krier  <ced@b2ck.com>

	* trytond/__init__.py:
	Increase version number
	[485c13d4e861] <3.6>

	* .hgtags:
	Added tag 3.6.2 for changeset 95f7272b4410
	[2ce2d2ece951] <3.6>

	* CHANGELOG:
	Prepare release 3.6.2
	[95f7272b4410] [3.6.2] <3.6>
2015-09-17 14:28:01 +00:00
wiz
5e76a677db Update to 1.33:
1.33: 2015-08-30
    Deal with a really annoying build-portability glitch around -lrt.
    Fix cvsconvert to be Python 2.6-compatible.
2015-09-16 16:17:18 +00:00
wiz
bdc1988573 Update to 3.29:
3.29: 2015-09-02
 Now included: git aliases that allow git to work with action stamps.
 The new repomapper tool helps prepare contributor maps.
 Use of branchify/branchify_map is now less likely to produce invalid resets.
 branchify_map has been changed to handle subdirectories better.
 "branchify_map reset" actually works now.
 Prevent a crash on empty SVN comments produced by dumpfiltering.
 'assign' command with no selection set or arguments lists assignments.
 New --user-ignores option on Subversion reads passes through .gitignores.
 'repotool initialize' now generates an easier-to-read conversion makefile.
2015-09-16 16:13:16 +00:00
joerg
3a34460abd Don't clean intermediate files after checksum/patch phase.
The work directories are almost empty, so it doesn't save much space.
It makes debugging annoying and it breaks local DISTDIR settings.
2015-09-15 20:56:33 +00:00
joerg
78268fcbb7 Depend on ncurses for !NetBSD and NetBSD before 6.0. Do not force
ncurses on the cmake side. Avoids picking up ncurses from pkgsrc when it
is installed, but not intended to be used by cmake.
2015-09-15 13:08:37 +00:00
joerg
8eb05d8506 Deal with new freetype header. 2015-09-13 15:09:03 +00:00
bsiegert
dc85bc6b40 Revbump all packages using Go after the Go update. 2015-09-13 14:34:25 +00:00
taca
29680dc400 Update ruby-celluloid-essentials to 0.20.2.1.
* update readme to actually have information in it.
2015-09-13 14:24:25 +00:00
taca
e14ffcbad5 Update ruby-celluloid to 0.17.1.2.
Exact changes are not available but depends on several sub-packages.
2015-09-13 14:19:06 +00:00
taca
f01d29d0d2 Add and enable ruby-celluloid-essentials, ruby-celluloid-extras,
ruby-celluloid-fsm, ruby-celluloid-pool and ruby-celluloid-supervision.
2015-09-13 14:15:24 +00:00
taca
3bcf1f3d50 Add ruby-celluloid-supervision, it is part of new ruby-celluloid pacakge.
Supervisors, Supervision Groups, and Supervision Trees for Celluloid.
2015-09-13 14:13:37 +00:00
taca
f84af222df Add ruby-celluloid-pool, it is part of new ruby-celluloid pacakge.
An implementation of an actor pool, based on the Celluloid concurrent object
framework.
2015-09-13 14:12:40 +00:00
taca
6d39749ed9 Add ruby-celluloid-fsm, it is part of new ruby-celluloid pacakge.
Simple finite state machines with integrated Celluloid timeout support.
2015-09-13 14:11:45 +00:00
taca
40d3dc9dbd Add ruby-celluloid-extras, it is part of new ruby-celluloid pacakge.
Classes to support examples, benchmarks, or add special functionality.
2015-09-13 14:10:34 +00:00
taca
2dc3ce81d3 Add ruby-celluloid-essentials, it is part of new ruby-celluloid pacakge.
Notifications, Internals, Logging, Probe, and essential Celluloid pieces
demanding Supervision.
2015-09-13 14:08:58 +00:00
taca
d8b3a3946e Add and enable ruby-rspec-logsplit. 2015-09-13 14:05:43 +00:00
taca
c88f8f0dc9 Add ruby-rspec-logsplit, required by new version of ruby-celluloid.
Separate the logs between examples to allow for easier understanding.
# Log Splitter for RSpec

This `RSpec` plugin allows you to change the logger for your library for each
separate example. This gives the ability to see the log output for each
specific test.
2015-09-13 14:02:13 +00:00
taca
e4b49f1138 Add and enable ruby-nenv. 2015-09-13 14:00:58 +00:00
taca
4cbaeacf29 Add ruby-nenv, required by new version of ruby-celluloid.
Using ENV is like using raw SQL statements in your code. We all know
how that ends...
2015-09-13 14:00:03 +00:00
taca
851c315506 Add and enable ruby-dotenv. 2015-09-13 13:58:46 +00:00
taca
061dc876b6 Add ruby-dotenv, required by new version of ruby-celluloid.
Shim to load environment variables from `.env` into `ENV` in *development*.

Storing [configuration in the environment](http://www.12factor.net/config) is
one of the tenets of a [twelve-factor app](http://www.12factor.net/). Anything
that is likely to change between deployment environments-such as resource
handles for databases or credentials for external services - should be
extracted from the code into environment variables.

But it is not always practical to set environment variables on development
machines or continuous integration servers where multiple projects are
run. dotenv loads variables from a `.env` file into `ENV` when the environment
is bootstrapped.
2015-09-13 13:57:25 +00:00
taca
30ec35758a Update ruby-test-unit to 3.1.3.
# News

## 3.1.3 - 2015-07-26 {#version-3-1-3}

It's a bug fix release.

### Improvements

  * Removed unused `TODO` file. [GitHub#108][Patch by takiy33]

### Fixes

  * `--location`: Fixed a bug that `--location LINE` doesn't work when
    test script is specified as relative path. [Reported by TOMITA Masahiro]

    The following doesn't work:

        % ruby ./test.rb --location 10

    The following works:

        % ruby test.rb --location 10

### Thanks

  * takiy33
  * TOMITA Masahiro
2015-09-13 13:02:06 +00:00
taca
4de7f26172 Update ruby-term-ansicolor to 1.3.2.
2015-06-23 - 1.3.2 * Fix release 1.3.1
2014-06-17 - 1.3.1 * This release was a bit premature, yanked it.
2015-09-13 13:00:06 +00:00
taca
c608439542 Update ruby-rugged to 0.23.2.
No exact change are available but catch up to libgit2 0.23.
2015-09-13 12:27:45 +00:00
taca
3ec6587052 Update libgit2 to 0.23.2.
Changes are too many to write here, please refer:
	<https://github.com/libgit2/libgit2/releases>.
2015-09-13 12:21:13 +00:00
taca
a6b0d9c189 Update ruby-rspec-rails to 3.3.3.
### 3.3.3 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.2...v3.3.3)

Bug Fixes:

* Fix issue with generators caused by `Rails.configuration.hidden_namespaces`
  including symbols. (Dan Kohn, #1414)

### 3.3.2 / 2015-06-18
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.1...v3.3.2)

Bug Fixes:

* Fix regression that caused stubbing abstract ActiveRecord model
  classes to trigger internal errors in rails due the the verifying
  double lifecycle wrongly calling `define_attribute_methods` on the
  abstract AR class. (Jon Rowe, #1396)

### 3.3.1 / 2015-06-14
[Full Changelog](http://github.com/rspec/rspec-rails/compare/v3.3.0...v3.3.1)

Bug Fixes:

* Fix regression that caused stubbing ActiveRecord model classes to
  trigger internal errors in rails. (Myron Marston, Aaron Kromer, #1395)
2015-09-13 11:56:42 +00:00
taca
4bd3f33582 Update ruby-rspec-mocks to 3.3.2.
### 3.3.2 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.1...v3.3.2)

Bug Fixes:

* Prevent thread deadlock errors during proxy creation (e.g. when using
  `before_verifying_doubles` callbacks). (Jon Rowe, #980, #979)

### 3.3.1 / 2015-06-19
[Full Changelog](http://github.com/rspec/rspec-mocks/compare/v3.3.0...v3.3.1)

Bug Fixes:

* Fix bug in `before_verifying_double` callback logic that caused it to be called
  once for each class in the ancestor list when mocking or stubbing a class. Now
  it is only called for the mocked or stubbed class, as you would expect. (Sam
  Phippen, #974)
2015-09-13 11:54:16 +00:00
taca
c0bae883ca Update ruby-rspec-expectations to 3.3.1.
### 3.3.1 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-expectations/compare/v3.3.0...v3.3.1)

Bug Fixes:

* Fix `be >`, `be <`, etc so that it fails rather than allowing an
  argument error to be raised when compared against an object of the
  wrong type. This allows it to be used in composed matcher expressions
  against heterogeneous objects. (Dennis Günnewig, #809)
* Fix `respond_to` to work properly on target objects
  that redefine the `method` method. (unmanbearpig, #821)
2015-09-13 11:53:01 +00:00
taca
b43b78a1c5 Update ruby-rspec-core to 3.3.2.
### 3.3.2 / 2015-07-15
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.1...v3.3.2)

Bug Fixes:

* Fix formatters to handle exceptions for which `backtrace` returns `nil`.
  (Myron Marston, #2023)
* Fix duplicate formatter detection so that it allows subclasses of formatters
  to be added. (Sebastián Tello, #2019)

### 3.3.1 / 2015-06-18
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.3.0...v3.3.1)

Bug Fixes:

* Correctly run `before(:suite)` (and friends) in the context of an example
  group instance, thus making the expected RSpec environment available.
  (Jon Rowe, #1986)
2015-09-13 11:51:51 +00:00
taca
d87ef3b9cf Update ruby-rgl to 0.5.1.
2015-12 Release 0.5.1

Horst Duchene <monora@gmail.com>
 * Changed edge sequence to match example picture (daa88e)

Chase <chase.gilliam@gmail.com>
 * updated algorithms to 6.1 and added test unit to support newer rubies (fbd874)
2015-09-13 11:50:46 +00:00
taca
1c5e2ae129 Update ruby-power_assert to 0.2.4.
* Fix NameError when an inter class alias of basic operator is defined.
* Support Gemfile.local.
* File.exists? is a deprecated name.
2015-09-13 11:49:29 +00:00
taca
133f648c60 Update ruby-parser to 3.7.1.
=== 3.7.1 / 2015-08-06

* 1 minor enhancement:

  * Improved understandability of lexing postfix symbols.
2015-09-13 10:20:12 +00:00
taca
30a3cc88dc Update ruby-msgpack to 0.6.2.
2015-07-22 version 0.6.2:

* Fix release workflow: Ruby 2.1 and 2.2 are supported for Windows (2.0 is
  omitted)
* Fix to encode symbols along its encoding
* Fix segmentation fault in minor case

2015-07-01 version 0.6.1:

* Added :compatibility_mode option to Packer#initialize. Default is false. If it
  is set to true, str8 format and bin format family will not be used.
2015-09-13 10:18:35 +00:00
taca
c05b341425 Update ruby-mixlib-shellout to 2.2.1.
Release 2.2.1

* Fix executable resolution on Windows when a directory exists with the same
  name as the command to run

Release 2.2.0

* Remove windows-pr dependency
2015-09-13 10:17:11 +00:00
taca
0e9f2e154f Update ruby-minitest to 5.8.0.
=== 5.8.0 / 2015-08-06

* 2 minor enhancements:

  * Add optional delegation mechanism to extend object with a mock. (zamith)
  * Return early if there are no filtered methods. (jeremyevans)

* 1 bug fix:

  * Don't extend io with pride if io is not a tty. (toy)
2015-09-13 10:10:54 +00:00
taca
2d15fca142 Update ruby-little-plugger to 1.1.4
== 1.1.4 / 2015-08-27

* 1 bug fix
  * Fixing specs for Ruby 2.0
2015-09-13 10:09:39 +00:00
taca
b4984dab1e Update ruby-highline to 1.7.3.
### 1.7.3 / 2015-06-29
* Add HighLine::Simulator tests (Bala Paranj (@bparanj) and Abinoam Marques
  Jr. (@abinoam), #142, PR #143)
2015-09-13 10:08:10 +00:00
taca
43a89b744d Update ruby-ffi-yajl to 2.2.2.
2.2.2 (07/15/2015)

Bugs fixed

* Fix uninitialized constant StringIO error in C extension

2.2.1 (07/13/2015)

Bugs fixed

* Aaron Lasseigne: Thanks for fixing my bad .travis.yml
* Kouhei Sutou: Numerous circular argument reference fixes, method redefined,
  assigned but unused warnings, superclass mismatch warnings, etc.
* Fixed uninitialized variable when using C-ext.
* Fixed README require
* Fixed superclass mismatch in rbx when using C-ext.
* Lots of rubocop fixes, and added rubocop to travis
2015-09-13 10:06:44 +00:00
wiz
2b9795a358 Update to 0.1.8:
Version 0.1.8

Move flush into own method

Version 0.1.7

Don't use closed fobj
Add makefile

Version 0.1.6

Actually call fsync

Remove useless file
Simplify CI setup
Adapt to internal tox changes
Fix docs
Fix link
Split alternatives and credit
Update alternatives
Fix comment
2015-09-13 09:33:08 +00:00
wiz
b72635a17d Update to 3.5.1:
TortoiseHg 3.5.1

TortoiseHg 3.5.1 is a regularly scheduled bugfix release.

Bugs Fixes

    visdiff: preserve the executable bit after editing a file

Installer

    setup: exclude setup.py and distutils from py2exe build
    wix: add mercurial/help/scripting.txt (fixes #4264)
2015-09-13 09:30:48 +00:00
wiz
d65dd12ff5 Update to 18.3.1:
------
18.3.1
------

* Issue #425: Correct regression in setuptools.findall.

----
18.3
----

* Setuptools now allows disabling of the manipulation of the sys.path
  during the processing of the easy-install.pth file. To do so, set
  the environment variable ``SETUPTOOLS_SYS_PATH_TECHNIQUE`` to
  anything but "rewrite" (consider "raw"). During any install operation
  with manipulation disabled, setuptools packages will be appended to
  sys.path naturally.

  Future versions may change the default behavior to disable
  manipulation. If so, the default behavior can be retained by setting
  the variable to "rewrite".

* Issue #257: ``easy_install --version`` now shows more detail
  about the installation location and Python version.
2015-09-13 09:28:16 +00:00
wiz
c0229f9e72 Update to 2.5.2:
Fixes since v2.5.1
------------------

 * "git init empty && git -C empty log" said "bad default revision 'HEAD'",
   which was found to be a bit confusing to new users.

 * The "interpret-trailers" helper mistook a multi-paragraph title of
   a commit log message with a colon in it as the end of the trailer
   block.

 * When re-priming the cache-tree opportunistically while committing
   the in-core index as-is, we mistakenly invalidated the in-core
   index too aggressively, causing the experimental split-index code
   to unnecessarily rewrite the on-disk index file(s).

 * "git archive" did not use zip64 extension when creating an archive
   with more than 64k entries, which nobody should need, right ;-)?

 * The code in "multiple-worktree" support that attempted to recover
   from an inconsistent state updated an incorrect file.

 * "git rev-list" does not take "--notes" option, but did not complain
   when one is given.

 * Because the configuration system does not allow "alias.0foo" and
   "pager.0foo" as the configuration key, the user cannot use '0foo'
   as a custom command name anyway, but "git 0foo" tried to look these
   keys up and emitted useless warnings before saying '0foo is not a
   git command'.  These warning messages have been squelched.

 * We recently rewrote one of the build scripts in Perl, which made it
   necessary to have Perl to build Git.  Reduced Perl dependency by
   rewriting it again using sed.

 * t1509 test that requires a dedicated VM environment had some
   bitrot, which has been corrected.

 * strbuf_read() used to have one extra iteration (and an unnecessary
   strbuf_grow() of 8kB), which was eliminated.

 * The codepath to produce error messages had a hard-coded limit to
   the size of the message, primarily to avoid memory allocation while
   calling die().

 * When trying to see that an object does not exist, a state errno
   leaked from our "first try to open a packfile with O_NOATIME and
   then if it fails retry without it" logic on a system that refuses
   O_NOATIME.  This confused us and caused us to die, saying that the
   packfile is unreadable, when we should have just reported that the
   object does not exist in that packfile to the caller.

 * An off-by-one error made "git remote" to mishandle a remote with a
   single letter nickname.

 * A handful of codepaths that used to use fixed-sized arrays to hold
   pathnames have been corrected to use strbuf and other mechanisms to
   allow longer pathnames without fearing overflows.

Also contains typofixes, documentation updates and trivial code
clean-ups.
2015-09-13 09:24:32 +00:00
wiz
eabe625a2b Update to 1.94b:
--------------
Version 1.94b:
--------------

  - Changed allocator alignment to improve support for non-x86 systems (now
    that llvm_mode makes this more feasible).

  - Fixed a minor typo in afl-cmin. Spotted by Jonathan Neuschafer.

  - Fixed an obscure bug that would affect people trying to use afl-gcc
    with $TMP set but $TMPDIR absent. Spotted by Jeremy Barnes.

--------------
Version 1.93b:
--------------

  - Hopefully fixed a problem with MacOS X and persistent mode, spotted by
    Leo Barnes.
2015-09-13 09:18:09 +00:00
taca
fe6f807b1f Update ruby-facade to 1.0.7.
== 1.0.7 - 9-Sep-2015
* This gem is now signed.
* The Rakefile tasks now assume Rubygems 2.x.
2015-09-13 09:04:52 +00:00
taca
f72639d0ad Update ruby-ffi to 1.9.10.
1.9.10
* Simplify clean list and add libtest build files.
* methodHandleParamTypes needs to refer to valid memory after rbffi_MethodHandle_Init
* tweak travis to allow failure in 2.2 on osx
* allow failure on osx 2.2 and head builds
* CLEAN tweak [ci skip]

1.9.9
* workaround bundler problem
* fix struct specs on 1.8 sets them to pending rather than checking for a raise but...
* better clean/clobber config
* Simplify cross build tasks and add rake-compiler-dock for building Windows binary gems.
* Added Platform.solaris? singleton method.
* fix library load... forever
* better native_type
* enable and fix warnings in specs.
* add compiler and platform based tests
* Fix compatibility with newer libffi on Windows/MSVC
* Handle better RUBY_VERSION.
2015-09-13 09:03:17 +00:00
adam
5c13bd7393 Changes 3.2.3:
New features and improvements
* Added support for compiler option -gsplit-dwarf.

Bug fixes
* Support external zlib in nonstandard directory.
* Avoid calling exit() inside an exit handler.
* Let exit handler terminate properly.
* Bail out on compiler option --save-temps in addition to -save-temps.
* Only log "Disabling direct mode" once when failing to read potential include files.
2015-09-13 07:59:45 +00:00
wiz
5b9feddfdb Update to 1.967.11:
1.967_010     Sun Jul  7 11:23:53 2013

    - Base the standalone precompiled parser's runtime name on the
      parser's class, rather than use the fixed
      "Parse::RecDescent::_Runtime".  This prevents "already defined"
      warnings when two standalone precompiled parsers are used.

    - Add support for allowing precompiled parsers to share a common
      runtime via the Precompile({-runtime_class}) option and the
      PrecompiledRuntime() function.

    - Warn on creation of Precompiled parsers that depend on
      Parse::RecDescent.

    - *** NON-BACKWARDS COMPATIBLE CHANGE! *** Change global the
      <skip:> directive to eval similar to other <skip:> directives,
      rather than being single-quoted in the resulting parser.

1.967011      Sat Sep 12 16:42:01 2015

    - Correct some typos in the documentation. (RT.cpan.org #87185,
      thanks dsteinbrunner!)

    - Sort hash keys and rulenames when generating code. This keeps
      the output text for a given input text the same, reducing
      differences in automated builds. (RT.cpan.org #102160, thanks
      Reiner!)

    - Precompiled parsers now document which
      $Parse::RecDescent::VERSION was used to generate
      them. (RT.cpan.org #77001)
2015-09-13 07:34:53 +00:00
taca
9cec01f49f Update ruby-eventmachine to 1.0.8.
# Changelog

## 1.0.8 (August 6, 2015)
* fix kqueue assertion failed, postpone ArmKqueueWriter until all events are processed [#51, #176, #372, #401, #619]
* fix Rubinius GC, crank the machine from Ruby space when running Rubinius [#201, #202, #617]
* test to show that LineText2 preserves whitespace and newlines [#32, #622]
* bump up compiler warnings and resolve them [#616]
* fix Windows x64 use uintptr_t instead of unsigned long for binding pointers [#612, #615]
* fix linetext2 unroll tail recursion to avoid stack level too deep [#609]
* fix for compilation with SSL on windows [#601]
* open file descriptors and sockets with O_CLOEXEC where possible [#298, #488, #591]
* fix SmtpClient: send second EHLO after STARTTLS. [#589]
* fix nul-terminated strings in C, use StringValueCStr instead of StringValuePtr
2015-09-13 05:15:13 +00:00
taca
b8f1daa054 Update ruby-backports to 3.6.6.
* Explicitly set license to MIT in backports.gemspec.
* Fix Bignum#bit_length.
* Fix Bignum#bit_length correctly.
2015-09-13 04:57:44 +00:00
tnn
93c466170d cloud.github.com unconditionally redirects to https. Use it directly. 2015-09-12 20:03:00 +00:00
wiz
49c5e9efac + bam. 2015-09-12 18:51:43 +00:00
wiz
b3c8506e50 Import bam-0.4.0 as devel/bam.
Packaged by Timo Buhrmester in PR 50234.

Bam is a fast and flexible build system. Bam uses Lua to describe the
build process. It's takes its inspiration for the script files from
scons. While scons focuses on being 100% correct when building, bam
makes a few sacrifices to acquire fast full and incremental build times.
2015-09-12 18:51:07 +00:00
wiz
08b6afd76a Add URLs to upstream bug reports. 2015-09-12 16:46:11 +00:00
joerg
971456fe39 Remove the need for ncurses, just a curses with libform is enough.
Bump revision.
2015-09-12 15:15:49 +00:00
dsainty
e69d158298 This package uses zlib and libxml2, link them in.
Fixes build on a Linux system with PREFER_PKGSRC=yes.

Bump PKGREVISION.
2015-09-10 00:54:47 +00:00
gdt
6127607b1b Catch up with HOMEPAGE and MASTER_SITES.
No functional change other than a fetchable distfile.
2015-09-09 23:27:05 +00:00
tnn
ff44ec5cbc PR pkg/50202: David Shao: add devel/libdevq (from pkgsrc-wip) 2015-09-09 23:04:59 +00:00
tnn
03a81509e0 Import libdevq-0.0.2 as devel/libdevq.
libdevq on FreeBSD and DragonFly partially substitutes for Linux's udev
enough to build features such as libgbm and drm egl on MesaLib.
2015-09-09 23:01:35 +00:00
jperkin
d0e804caf5 Remove INCOMPAT_CURSES settings for NetBSD 0.x and 1.x. Tighten up some
globs to ensure NetBSD 10 is not incorrectly matched when it is released.
2015-09-08 11:57:48 +00:00
jperkin
8091aee373 Now that _STRIPFLAG_INSTALL is disabled by default on Darwin, remove manual
settings of INSTALL_UNSTRIPPED=yes for Darwin in individual packages.
2015-09-07 12:02:05 +00:00
wiz
fda0a22ce9 + p5-File-Slurper. 2015-09-06 20:42:03 +00:00
wiz
82a903f2ce Import p5-File-Slurper-0.008 as devel/p5-File-Slurper.
A simple, sane and efficient module to slurp a file.
2015-09-06 20:40:49 +00:00
wiz
514b1391b3 Update to 1.6.0:
1.6.0
-----

* Strip comments in requirements files

1.5.0
-----

* Handle git being entirely absent
* We require the use of setuptools
* Fix retrieval of commit data and most recent tag

1.4.0
-----

* Fix docs for environment markers in extras
* Export ChangeLog and AUTHORS in install
* Updated from global requirements
* Updated from global requirements
* Show how long the git querying takes
* Add wsgi_scripts support to PBR
* Updated from global requirements
2015-09-06 20:33:46 +00:00
wiz
053704fd22 Update to 1.92b:
--------------
Version 1.92b:
--------------

  - Yet another C++ fix (namespaces). Reported by Daniel Lockyer.

--------------
Version 1.91b:
--------------

  - Another fix to make 1.90b actually work properly with C++ (d'oh).
    Problem spotted by Daniel Lockyer.

--------------
Version 1.90b:
--------------

  - Fixed a minor typo spotted by Kai Zhao; and made several other minor updates
    to docs.

  - Updated the project URL for python-afl. Requested by Jakub Wilk.

  - Fixed a potential problem with deferred mode signatures getting optimized
    out by the linker (with --gc-sections).
2015-09-06 19:52:10 +00:00
gdt
6cf7e3c944 Note that update to 1.9.15 is on hold because it requires guile 2.0. 2015-09-06 13:48:38 +00:00
mef
e4baefb093 Update from 1.20140927 to 1.20150614
------------------------------------
1.20150614  2015-06-14 23:16:46Z
    - remove useless 'use UNIVERSAL'
2015-09-06 13:17:05 +00:00
mef
7d57f34366 Update to 1.27
--------------
1.27  2015-09-06
	- readline-7.0 support
	    new function
		rl_callback_sigcleanup
	- improve POD documents
	- Gnu.xs: not to use obsoleted typedefs which were obsoleted
          by ReadLine 6.3
	- fix a wrong fix on 1.21 to let completion_function do case
          insensitive match. [rt.cpan.org #72378]
	- fix rl_display_match_list to show the first entry of the
          array.  The bug caused segmentation fault with readline-7.0.
	- some improvement of Makefile.PL:
	  - add support homebrew on Mac OS X. [rt.cpan.org #104389]
	  - print an error string when system() fails.
	  - specify 'int' on 'main()'.
	  - use -O when -D_FORTIFY_SOURCE is defined.
2015-09-06 13:12:13 +00:00
mef
0b42dc4de2 Update to 0.13
--------------
0.13      2015-07-28 06:35:39Z
  - bump minimum version of B::Hooks::Parser for ::Install::Files
2015-09-06 10:45:06 +00:00
mef
0275d0f6d8 Update to 0.36
--------------
0.36    2015-07-17 22:15 UTC
        + Fix : [RT #104312] : fatal hides perl errors in modules
        no indirect 'fatal' will no longer hide compilation errors
        occurring before indirect constructs.
        Thanks Lukas Mai for reporting.
2015-09-06 10:42:57 +00:00
mef
3577db7c6a Update to 0.16
--------------
0.16    2015-07-01 14:30 UTC
        + Fix : Broken linkage on Windows.
2015-09-06 10:41:36 +00:00
mef
b86e0c1c69 (pkgsrc)
- Add following line for make test
   BUILD_DEPENDS+= p5-Test-Exception-[0-9]*:../../devel/p5-Test-Exception
(upstream)
 - Update 2.01 to 2.03
----------------------
2.03      2015-06-29
  - Remove annoying warnings when version_ok called by itself GH #5 (DROLSKY)

2.02      2015-06-17
  - Production release identical to 2.01_01 release

2.01_01   2015-06-15
  - Added 'multiple' option to check each version inside a .pm file
    with multiple packages.
2015-09-06 10:21:06 +00:00
mef
de27be9fa2 0.51 Mon Jul 27 20:05:00 BST 2015
- Fixed top level describe blocks running out of order
    Contributed by @mla (issue #28)
2015-09-06 10:18:06 +00:00
mef
402521dbbc Update 0.31 to 0.33
-------------------
0.33 2015-06-06T03:36:58Z
    - Tell Test::Stream::IPC to poll for results

0.32 2015-06-04T16:14:57Z
    - Update for newer Test::Stream
    - REmove some old Test::Stream support
2015-09-06 10:16:43 +00:00
mef
0a55e63cad Update 1.20140408 to 1.20150527
-------------------------------
1.20150527 2015-05-27 08:33:52-07:00 America/Los_Angeles
    - improved dependencies (build/run/requires), (Olivier Mengue, GH PR #10)
    - improved runtime loading (Olivier Mengue, GH PR #11)

1.20150521 2015-05-21 09:09:19-07:00 America/Los_Angeles
    - updated CGI dependency
    - improved README for GitHub (Rob Van Dam, GH PR #9)
2015-09-06 10:14:50 +00:00
mef
c85db1ad75 Updat 0.09 to 0.10
-----------------
v0.10 2015-05-30
    - Updated docs for mocking when using exported functions
2015-09-06 10:10:49 +00:00
mef
2e36f32e6f Update 1.41 to 1.44
-------------------
1.44 2015-07-06T00:29:56Z
        * Fix file_has_* tests to work on Windows (RJBS) GitHub #13

1.43_02 2015-06-24T15:21:57Z
 * check file_mode_has tests for Windows

1.43 2015-06-22T21:44:37Z
        * Don't install README.pod

1.42 2015-06-16T17:58:11Z
        * Fix problem with META* specifying requirements (RT #105210)
2015-09-06 10:09:20 +00:00
mef
811695e148 Update to 0.22
-----------------
0.22   2015-08-21
- The test_all_dependents() sub now lets you pass a filter subroutine instead
  of an exclude regex. This is a lot simpler to implement in many cases.
2015-09-06 10:07:46 +00:00
mef
bdb64903bf Update to 0.05
--------------
0.05    2015-Jun-07
    ! It does work on darwin, though.
    ! Fix the NAME of the module in the POD.
    ! Fix export of exit_status.
2015-09-06 10:05:21 +00:00
mef
e730dedbef Update 0.42 to 0.46
-------------------
0.46 Mon May 25 18:47:04 BST 2015
* Fix test skip count for non-terminals
  (Alexandr Ciornii)

0.44 Mon May 25 12:09:17 BST 2015
* Fix multi-choice without defaults (Noel Maddy)
2015-09-06 06:55:49 +00:00
mef
cd3da2df8c (pkgsrc)
- Remove following line, see 6th line of 1.04
   INTERACTIVE_STAGE=     test
(upstream)
 - Update 1.03 to 1.05
-------------------
1.05 2015-06-06 JSTOWE
    - Use sysread instead of getc() from ruittenb@cpan.org
    - Set cursor visibility as per patch javibarroso@gmail.com
    - Set isig/-isig to stty to allow signals as per javibarroso@gmail.com
    - Simplify Makefile.PL slightly as metacpan appears to dislike it
    - Use direct object notation for constructor in examples
    - Use strict and warnings in examples/test.pl

1.04 2015-06-05 JSTOWE
    - Now use strict and warnings, and drop use of vars.
    - Specified min version of perl in code and metadata
    - Moved Screen.pm to lib/Term/Screen.pm as per convention
    - Reformatted this file as per CPAN::Changes::Spec
    - Added github repo to metadata and pod
    - make test will work non-interactively
    - preserve exit code
2015-09-06 06:53:55 +00:00
mef
80ecaf05db 1.17-RC1: Wed 1 Jul 10:30:15 BST 2015
- Fix regression caused by last resort change
    - Add support for capabilities of more than 2 characters

1.17:   Mon 17 Aug 08:30:54 BST 2015
    - No changes version bounce
2015-09-06 06:50:41 +00:00
mef
c100835ac1 Update to 0.03
--------------
0.03    2015-06-28
    - move to ExtUtils::MakeMaker and add author tests
    - rewrite Changes according to CPAN::Changes::Spec
    - improve standard doc parts in pod
    - add newly introduced functions in LMU 0.408+
2015-09-06 06:49:39 +00:00
mef
c913856d70 Update to 1.112
---------------
1.112 Sat Jul 25 2015
    [ENHANCEMENTS]
    - the 'trace' option now also outputs some information about process
      termination and status (as requested by TIMB in RT #106046)
2015-09-06 06:47:40 +00:00
mef
1d617fdb5b Update 0.10 to 0.11 (following info from Changes at github)
-------------------
0.11- B. Estrade (1):
   Adding new test for signatures as part of Feb 2015 PRC.
   Rafael Garcia-Suarez (8):
   Bump version to 0.10
   Merge pull request #6 from estrabd/Issue-5-add-signature-test
   Fix skipping tests on earliers perls
   Add new test to MANIFEST
   Do not let get_code_location() segfault on XSUBs
   Add a test for calling get_code_location on XSUBs
   Add a pure-perl version of last test
   Bump version
2015-09-06 06:46:22 +00:00
mef
58c776b5a9 Update 1.20 to 1.99
-------------------
1.99    2015-08-26

        This release provides support for Elasticsearch 2.0.0-beta1 and above,
        but the default client is still '1_0::Direct' and will remain so until
        version 2.00 is released.

        New features:
        * Added default_qs_params, which will be added to every request
        * Added max_time to the Bulk helper, to flush after a max elapsed time
        * Added filter_path parameter to all methods which return JSON
        * Added indices.flush_synced()
        * Added render_search_template()
        * Added cat.nodeattrs()
        * Added human flag to indices.get and indices.get_settings
        * Added rewrite flag to indices.validate_query
        * Added rewrite flag to indices.analyze
        * Added fields param to bulk()
        * Added update_all_types to indices.create and indices.put_mapping
        * Added request_cache to indices.put_warmer and indices.stats
        * Added request to indices.clear_cache
        * Added RequestTimeout exception for server-side timeouts
        * Updated Plugin::Watcher with 1.0 API

        Removed:
        * Removed id and id_cache from indices.clear_cache
        * Removed filter and filter_cache from indices.clear_cache
        * Removed ignore_conflict from indices.put_mapping

        Bugfixes:
        * Fixed error handling in Hijk
        * Fixed live test to non-existent IP address
2015-09-06 06:41:44 +00:00
mef
78c997f2b5 Update to 0.28
--------------
0.28    2015-08-18 15:00 UTC
        + Chg : SUB() and EVAL() will now warn if they cannot find an
                appropriate context in the current stack. They will still
                return undef in this case, which is interpreted as the current
                context when combined with other words.
        + Fix : [RT #104751] : Scope::Upper does not handle exotic stack types
                Trying to target a scope above the current perl scope will now
                result in a warning. In that case, the topmost context in the
                current stack will still be returned.
                Thanks Rafaël Garcia-Suarez for the report.
        + Fix : Test failures of threads tests on systems with harsh resource
                constraints causing the threads to exit() during run.
        + Opt : Some internal structures were shrunk, resulting in memory
                savings and small speedups.
2015-09-06 06:36:24 +00:00
mef
955073fe2e Update to 0.21
--------------
0.21 Sun 19 Jul 22:14:54 2015
    - remove useless use of UNIVERSAL::isa (#RT105948)
     (Karen Etheridge)
2015-09-06 06:34:40 +00:00
mef
8bdb373822 Update to 0.36
--------------
0.36 2015-08-16T11:34:00
	- Ron Savage is now co-maint.
	- Move eg/ to examples/.
	- Many thanx to the various parties who logged issues on RT. Some have been fixed, see below.
	- Add examples/failure.01.pl, downloaded, and noted in docs, from
		https://rt.cpan.org/Public/Bug/Display.html?id=104897
	- Move pod tests into xt/author/pod.t by cutting them out of t/00_basic.t.
		See https://rt.cpan.org/Public/Bug/Display.html?id=85686
		and https://rt.cpan.org/Public/Bug/Display.html?id=85209
	- Add repository https://github.com/ronsavage/Regexp-Assemble.git.
		Note: github does not list Perl as one of the licence options, so the auto-generated
		LICENSE (sic) file is not included in the distro.
		See https://rt.cpan.org/Public/Bug/Display.html?id=103856.
	- Fix some spelling errors in the pod.
		See https://rt.cpan.org/Public/Bug/Display.html?id=84336
	- Move ./Assemble.pm into lib/Regexp/.
	- Move the contents of the TODO file into the docs, and delete that file.
	- Rearrange pod, but not be running this module over it :-). Actually, put pod at end of file.
	- Update Makefile.PL.
	- Add Changelog.ini.
	- Update MANIFEST.SKIP.
2015-09-06 06:33:24 +00:00
mef
2ee10a4190 Update 0.19 to 0.21
-------------------
0.21  Thu Aug  6 2015
	- GH#5: make tests less time-sensitive (Stefan Parvu).
	- RT#103130: fix taint safe test (Hakon Haegland).

0.20  Wed Jun 24 2015
	- GH#4: fix taint safe test (rouzier).
	- RT#103130: make tests less time-sensitive (Remi Collet, ppisar).
2015-09-06 04:04:49 +00:00
mef
e1c5058b51 (pkgsrc)
- Add following line for make test
  BUILD_DEPENDS+=        p5-Module-Pluggable-[0-9]*:../../devel/p5-Module-Pluggable
(upstream)
 - Update 1.125 to 1.126
------------------------
1.126 2015-08-10
    [New Policies]
    * Added a policy: ControlStructures::ProhibitYadaOperator - Never use ...
      in production code.

    [Bug Fixes]
    * Fixed problems arising from having -b in your .perltidyrc file. Thanks
      @hjkatz.
    * Removed extra newline from policy names returned by P::C::Config->policies.
      Thanks @ratsbane.
    * `fc` and `say` are now covered by ProhibitUselessTopic. Thanks @JRaspass.

    [Miscellanea]
    * Add more strict/warnings importer modules. Thanks @oalders.
    * Path::Tiny is now recommended over File::Slurp
    * Micro-optimize by calling ->content() directly instead of going
      through the overloads. Thanks @JRaspass.
    * Square brackets are now allowed around your `## no critic` policy
      list. Thanks @zdm.
2015-09-06 03:58:35 +00:00
mef
72dd843cdc Update 0.19 to 0.21
-------------------
0.21  Wed Sep  2 18:00:00 2015
  - Use compressed Sereal for encoding instead of Data::Dumper.
    Reduces the disk footprint after installation by 4x.
    The compressed tarball on the other hand is marginally bigger
    because it means that we double-zlib compress the data.

0.20  Wed Sep  2 14:40:00 2015
  - Perl 5.22.0 support.
2015-09-06 03:53:38 +00:00
mef
444eb4efa4 Update 1.4414 to 1.4417
-----------------------
1.4417    2015-06-09 16:19:41-06:00 America/Denver
    - No changes from 1.4416

1.4416    2015-05-19 11:11:47-04:00 America/New_York (TRIAL RELEASE)
    [FIXED]
    - Minimum Perl was inadvertently set to v5.10.0.  Now back to v5.8.1.

1.4415    2015-04-28 11:29:52-04:00 America/New_York (TRIAL RELEASE)
    [TESTS]
    - Outputs the version of backends used
    [META]
    - Updated repo metadata and boilerplate files
    - Pointed issue tracker to the Perl-Toolchain-Gang Github repo
2015-09-06 03:36:16 +00:00
mef
ac3686a861 Update to 1.15
---------------
1.15 2015.07.08
    - test's watchdog actually exit if it's being hit. (RT#105747, Zefram)
    - condition to catch children reaped by external forces
      improved. (RT#105748, Zefram + Yanick)
2015-09-06 03:34:22 +00:00