Commit graph

25349 commits

Author SHA1 Message Date
joerg
5442f6bd4b Remove a tautologic check to unbreak build with clang. 2015-10-07 23:14:47 +00:00
wen
411e3b0b08 Add p5-Test-Modern 2015-10-07 14:28:20 +00:00
wen
5520cf75e7 Import Test-Modern-0.013 as devel/p5-Test-Modern.
Test::Modern provides the best features of Test::More, Test::Fatal,
Test::Warnings, Test::API, Test::LongString, and Test::Deep, as well as
ideas from Test::Requires, Test::DescribeMe, Test::Moose, and
Test::CleanNamespaces.

Test::Modern also automatically imposes strict and warnings on your script,
and loads IO::File. (Much of the same stuff Modern::Perl does.)

Although Test::Modern is a modern testing framework, it should run fine on
pre-modern versions of Perl. It should be easy to install on Perl 5.8.9 and
above; and if you can persuade its dependencies to install (not necessarily
easy!), should be OK on anything back to Perl 5.6.1.
2015-10-07 14:26:42 +00:00
wen
d4f7052be3 Add p5-Test-API 2015-10-07 14:11:09 +00:00
wen
888055d46b Import Test-API-0.005 as devel/p5-Test-API.
This simple test module checks the subroutines provided by a module. This is
useful for confirming a planned API in testing and ensuring that other
functions aren't unintentionally included via import.
2015-10-07 14:09:10 +00:00
ryoon
32b46836ef Update to 2.6.1
Changelog:
Git v2.6.1 Release Notes
========================

Fixes since v2.6
----------------

 * xdiff code we use to generate diffs is not prepared to handle
   extremely large files.  It uses "int" in many places, which can
   overflow if we have a very large number of lines or even bytes in
   our input files, for example.  Cap the input size to soemwhere
   around 1GB for now.

 * Some protocols (like git-remote-ext) can execute arbitrary code
   found in the URL.  The URLs that submodules use may come from
   arbitrary sources (e.g., .gitmodules files in a remote
   repository), and can hurt those who blindly enable recursive
   fetch.  Restrict the allowed protocols to well known and safe
   ones.


Git 2.6 Release Notes
=====================

Updates since v2.5
------------------

UI, Workflows & Features

 * An asterisk as a substring (as opposed to the entirety) of a path
   component for both side of a refspec, e.g.
   "refs/heads/o*:refs/remotes/heads/i*", is now allowed.

 * New userdiff pattern definition for fountain screenwriting markup
   format has been added.

 * "git log" and friends learned a new "--date=format:..." option to
   format timestamps using system's strftime(3).

 * "git fast-import" learned to respond to the get-mark command via
   its cat-blob-fd interface.

 * "git rebase -i" learned "drop commit-object-name subject" command
   as another way to skip replaying of a commit.

 * A new configuration variable can enable "--follow" automatically
   when "git log" is run with one pathspec argument.

 * "git status" learned to show a more detailed information regarding
   the "rebase -i" session in progress.

 * "git cat-file" learned "--batch-all-objects" option to enumerate all
   available objects in the repository more quickly than "rev-list
   --all --objects" (the output includes unreachable objects, though).

 * "git fsck" learned to ignore errors on a set of known-to-be-bad
   objects, and also allows the warning levels of various kinds of
   non-critical breakages to be tweaked.

 * "git rebase -i"'s list of todo is made configurable.

 * "git send-email" now performs alias-expansion on names that are
   given via --cccmd, etc.

 * An environment variable GIT_REPLACE_REF_BASE tells Git to look into
   refs hierarchy other than refs/replace/ for the object replacement
   data.

 * Allow untracked cache (experimental) to be used when sparse
   checkout (experimental) is also in use.

 * "git pull --rebase" has been taught to pay attention to
   rebase.autostash configuration.

 * The command-line completion script (in contrib/) has been updated.

 * A negative !ref entry in multi-value transfer.hideRefs
   configuration can be used to say "don't hide this one".

 * After "git am" without "-3" stops, running "git am -3" pays attention
   to "-3" only for the patch that caused the original invocation
   to stop.

 * When linked worktree is used, simultaneous "notes merge" instances
   for the same ref in refs/notes/* are prevented from stomping on
   each other.

 * "git send-email" learned a new option --smtp-auth to limit the SMTP
   AUTH mechanisms to be used to a subset of what the system library
   supports.

 * A new configuration variable http.sslVersion can be used to specify
   what specific version of SSL/TLS to use to make a connection.

 * "git notes merge" can be told with "--strategy=<how>" option how to
   automatically handle conflicts; this can now be configured by
   setting notes.mergeStrategy configuration variable.

 * "git log --cc" did not show any patch, even though most of the time
   the user meant "git log --cc -p -m" to see patch output for commits
   with a single parent, and combined diff for merge commits.  The
   command is taught to DWIM "--cc" (without "--raw" and other forms
   of output specification) to "--cc -p -m".

 * "git config --list" output was hard to parse when values consist of
   multiple lines.  "--name-only" option is added to help this.

 * A handful of usability & cosmetic fixes to gitk and l10n updates.

 * A completely empty e-mail address <> is now allowed in the authors
   file used by git-svn, to match the way it accepts the output from
   authors-prog.


Performance, Internal Implementation, Development Support etc.

 * In preparation for allowing different "backends" to store the refs
   in a way different from the traditional "one ref per file in
   $GIT_DIR or in a $GIT_DIR/packed-refs file" filesystem storage,
   direct filesystem access to ref-like things like CHERRY_PICK_HEAD
   from scripts and programs has been reduced.

 * Computation of untracked status indicator by bash prompt
   script (in contrib/) has been optimized.

 * Memory use reduction when commit-slab facility is used to annotate
   sparsely (which is not recommended in the first place).

 * Clean up refs API and make "git clone" less intimate with the
   implementation detail.

 * "git pull" was reimplemented in C.

 * The packet tracing machinery allows to capture an incoming pack
   data to a file for debugging.

 * Move machinery to parse human-readable scaled numbers like 1k, 4M,
   and 2G as an option parameter's value from pack-objects to
   parse-options API, to make it available to other codepaths.

 * "git verify-tag" and "git verify-commit" have been taught to share
   more code, and then learned to optionally show the verification
   message from the underlying GPG implementation.

 * Various enhancements around "git am" reading patches generated by
   foreign SCM have been made.

 * Ref listing by "git branch -l" and "git tag -l" commands has
   started to be rebuilt, based on the for-each-ref machinery.

 * The code to perform multi-tree merges has been taught to repopulate
   the cache-tree upon a successful merge into the index, so that
   subsequent "diff-index --cached" (hence "status") and "write-tree"
   (hence "commit") will go faster.

   The same logic in "git checkout" may now be removed, but that is a
   separate issue.

 * Tests that assume how reflogs are represented on the filesystem too
   much have been corrected.

 * "git am" has been rewritten in "C".

 * git_path() and mkpath() are handy helper functions but it is easy
   to misuse, as the callers need to be careful to keep the number of
   active results below 4.  Their uses have been reduced.

 * The "lockfile" API has been rebuilt on top of a new "tempfile" API.

 * To prepare for allowing a different "ref" backend to be plugged in
   to the system, update_ref()/delete_ref() have been taught about
   ref-like things like MERGE_HEAD that are per-worktree (they will
   always be written to the filesystem inside $GIT_DIR).

 * The gitmodules API that is accessed from the C code learned to
   cache stuff lazily.


Also contains various documentation updates and code clean-ups.


Fixes since v2.5
----------------

Unless otherwise noted, all the fixes since v2.5 in the maintenance
track are contained in this release (see the maintenance releases'
notes for details).

 * "git subtree" (in contrib/) depended on "git log" output to be
   stable, which was a no-no.  Apply a workaround to force a
   particular date format.
   (merge e7aac44 da/subtree-date-confusion later to maint).

 * An attempt to delete a ref by pushing into a repository whose HEAD
   symbolic reference points at an unborn branch that cannot be
   created due to ref D/F conflict (e.g. refs/heads/a/b exists, HEAD
   points at refs/heads/a) failed.
   (merge b112b14 jx/do-not-crash-receive-pack-wo-head later to maint).

 * The low-level "git send-pack" did not honor 'user.signingkey'
   configuration variable when sending a signed-push.
   (merge d830d39 db/send-pack-user-signingkey later to maint).

 * "sparse checkout" misbehaved for a path that is excluded from the
   checkout when switching between branches that differ at the path.
   (merge 7d78241 as/sparse-checkout-removal later to maint).

 * An experimental "untracked cache" feature used uname(2) in a
   slightly unportable way.
   (merge 100e433 cb/uname-in-untracked later to maint).

 * A "rebase" replays changes of the local branch on top of something
   else, as such they are placed in stage #3 and referred to as
   "theirs", while the changes in the new base, typically a foreign
   work, are placed in stage #2 and referred to as "ours".  Clarify
   the "checkout --ours/--theirs".
   (merge f303016 se/doc-checkout-ours-theirs later to maint).

 * The "rev-parse --parseopt" mode parsed the option specification
   and the argument hint in a strange way to allow '=' and other
   special characters in the option name while forbidding them from
   the argument hint.  This made it impossible to define an option
   like "--pair <key>=<value>" with "pair=key=value" specification,
   which instead would have defined a "--pair=key <value>" option.
   (merge 2d893df ib/scripted-parse-opt-better-hint-string later to maint).

 * Often a fast-import stream builds a new commit on top of the
   previous commit it built, and it often unconditionally emits a
   "from" command to specify the first parent, which can be omitted in
   such a case.  This caused fast-import to forget the tree of the
   previous commit and then re-read it from scratch, which was
   inefficient.  Optimize for this common case.
   (merge 0df3245 mh/fast-import-optimize-current-from later to maint).

 * Running an aliased command from a subdirectory when the .git thing
   in the working tree is a gitfile pointing elsewhere did not work.
   (merge d95138e nd/export-worktree later to maint).

 * "Is this subdirectory a separate repository that should not be
   touched?" check "git clean" was inefficient.  This was replaced
   with a more optimized check.
   (merge fbf2fec ee/clean-remove-dirs later to maint).

 * The "new-worktree-mode" hack in "checkout" that was added in
   nd/multiple-work-trees topic has been removed by updating the
   implementation of new "worktree add".
   (merge 65f9b75 es/worktree-add-cleanup later to maint).

 * Remove remaining cruft from  "git checkout --to", which
   transitioned to "git worktree add".
   (merge 114ff88 es/worktree-add later to maint).

 * An off-by-one error made "git remote" to mishandle a remote with a
   single letter nickname.
   (merge bc598c3 mh/get-remote-group-fix later to maint).

 * "git clone $URL", when cloning from a site whose sole purpose is to
   host a single repository (hence, no path after <scheme>://<site>/),
   tried to use the site name as the new repository name, but did not
   remove username or password when <site> part was of the form
   <user>@<pass>:<host>.  The code is taught to redact these.
   (merge adef956 ps/guess-repo-name-at-root later to maint).

 * Running tests with the "-x" option to make them verbose had some
   unpleasant interactions with other features of the test suite.
   (merge 9b5fe78 jk/test-with-x later to maint).

 * t1509 test that requires a dedicated VM environment had some
   bitrot, which has been corrected.
   (merge faacc5a ps/t1509-chroot-test-fixup later to maint).

 * "git pull" in recent releases of Git has a regression in the code
   that allows custom path to the --upload-pack=<program>.  This has
   been corrected.

   Note that this is irrelevant for 'master' with "git pull" rewritten
   in C.
   (merge 13e0e28 mm/pull-upload-pack later to maint).

 * 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.
   (merge dff6f28 cb/open-noatime-clear-errno later to maint).

 * 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().
   (merge f4c3edc jk/long-error-messages later to maint).

 * strbuf_read() used to have one extra iteration (and an unnecessary
   strbuf_grow() of 8kB), which was eliminated.
   (merge 3ebbd00 jh/strbuf-read-use-read-in-full later to maint).

 * We rewrote one of the build scripts in Perl but this reimplements
   in Bourne shell.
   (merge 57cee8a sg/help-group later to maint).

 * The experimental untracked-cache feature were buggy when paths with
   a few levels of subdirectories are involved.
   (merge 73f9145 dt/untracked-subdir later to maint).

 * "interpret-trailers" helper mistook a single-liner log message that
   has a colon as the end of existing trailer.

 * 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.
   (merge 5c99995 cc/trailers-corner-case-fix later to maint).

 * "git describe" without argument defaulted to describe the HEAD
   commit, but "git describe --contains" didn't.  Arguably, in a
   repository used for active development, such defaulting would not
   be very useful as the tip of branch is typically not tagged, but it
   is better to be consistent.
   (merge 2bd0706 sg/describe-contains later to maint).

 * The client side codepaths in "git push" have been cleaned up
   and the user can request to perform an optional "signed push",
   i.e. sign only when the other end accepts signed push.
   (merge 68c757f db/push-sign-if-asked later to maint).

 * 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.
   (merge 9e9de18 jk/fix-alias-pager-config-key-warnings later to maint).

 * "git rev-list" does not take "--notes" option, but did not complain
   when one is given.
   (merge 2aea7a5 jk/rev-list-has-no-notes later to maint).

 * 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).
   (merge 475a344 dt/commit-preserve-base-index-upon-opportunistic-cache-tree-update later to maint).

 * "git archive" did not use zip64 extension when creating an archive
   with more than 64k entries, which nobody should need, right ;-)?
   (merge 88329ca rs/archive-zip-many later to maint).

 * The code in "multiple-worktree" support that attempted to recover
   from an inconsistent state updated an incorrect file.
   (merge 82fde87 nd/fixup-linked-gitdir later to maint).

 * On case insensitive systems, "git p4" did not work well with client
   specs.

 * "git init empty && git -C empty log" said "bad default revision 'HEAD'",
   which was found to be a bit confusing to new users.
   (merge ce11360 jk/log-missing-default-HEAD later to maint).

 * Recent versions of scripted "git am" has a performance regression in
   "git am --skip" codepath, which no longer exists in the built-in
   version on the 'master' front.  Fix the regression in the last
   scripted version that appear in 2.5.x maintenance track and older.
   (merge b9d6689 js/maint-am-skip-performance-regression later to maint).

 * The branch descriptions that are set with "git branch --edit-description"
   option were used in many places but they weren't clearly documented.
   (merge 561d2b7 po/doc-branch-desc later to maint).

 * Code cleanups and documentation updates.
   (merge 1c601af es/doc-clean-outdated-tools later to maint).
   (merge 3581304 kn/tag-doc-fix later to maint).
   (merge 3a59e59 kb/i18n-doc later to maint).
   (merge 45abdee sb/remove-unused-var-from-builtin-add later to maint).
   (merge 14691e3 sb/parse-options-codeformat later to maint).
   (merge 4a6ada3 ad/bisect-cleanup later to maint).
   (merge da4c5ad ta/docfix-index-format-tech later to maint).
   (merge ae25fd3 sb/check-return-from-read-ref later to maint).
   (merge b3325df nd/dwim-wildcards-as-pathspecs later to maint).
   (merge 7aa9b9b sg/wt-status-header-inclusion later to maint).
   (merge f04c690 as/docfix-reflog-expire-unreachable later to maint).
   (merge 1269847 sg/t3020-typofix later to maint).
   (merge 8b54c23 jc/calloc-pathspec later to maint).
   (merge a6926b8 po/po-readme later to maint).
   (merge 54d160e ss/fix-config-fd-leak later to maint).
   (merge b80fa84 ah/submodule-typofix-in-error later to maint).
   (merge 99885bc ah/reflog-typofix-in-error later to maint).
   (merge 9476c2c ah/read-tree-usage-string later to maint).
   (merge b8c1d27 ah/pack-objects-usage-strings later to maint).
   (merge 486e1e1 br/svn-doc-include-paths-config later to maint).
   (merge 1733ed3 ee/clean-test-fixes later to maint).
   (merge 5fcadc3 gb/apply-comment-typofix later to maint).
   (merge b894d3e mp/t7060-diff-index-test later to maint).
   (merge d238710 as/config-doc-markup-fix later to maint).
2015-10-07 14:08:41 +00:00
adam
535a55a56f Added devel/uthash version 1.9.9 2015-10-07 12:34:00 +00:00
adam
c423c00a1a This is a hash table, implemented in C, supporting constant-time
add/find/remove of C structures. Any structure having a unique,
arbitrarily-typed key member can be hashed by adding a UT_hash_handle
member to the structure and calling these macros.
2015-10-07 12:33:16 +00:00
richard
f02f16360b rework p5-subversion workaround to deal with netbsd issue found by wiz@
instead of creating LDFLAGS for SWIG_PL, just reuse SWIG_PL_INCLUDES
which contains already any -fstack-protector* flag necessary to link.
2015-10-07 05:48:10 +00:00
khorben
9708503c2e Packaged DeforaOS configure 0.2.2
This release brings:
- internal code refactoring
- partial unification of the Makefiles generated
- support for installing pkg-config files and documentation from
  sub-directories
- fix for a crash on Linux
- further portability fixes
2015-10-06 16:50:03 +00:00
fhajny
dec55c1aaa Update devel/libgit2 to 0.23.3.
Simplify Github distfile handling.
Backport a futimes fix from upstream master, fixes build on SunOS.

Changes since 0.23.2:
- blame: guard xdiff calls for large files
- diff: don't feed large files to xdiff
- merge_file: treat large files as binary
- xdiff: convert size variables to size_t
- GITERR_CHECK_ALLOC_ADDn: multi-arg adders
2015-10-06 14:56:12 +00:00
richard
0e248b82e5 conditionalise libusb for non-SunOS platforms for the time-being, as there is
not yet any working libusb-1.0 implementation for solaris.
No revbump needed since these didn't build on SunOS prior
2015-10-05 04:47:02 +00:00
taca
7cad59d424 Update ruby-uglifier to 2.7.2.
## 2.7.2 (26 August 2015)

- update UglifyJS to 2.4.24
2015-10-04 12:30:56 +00:00
taca
eb8ead3cd6 Update ruby-tins to 1.6.0.
* 2015-08-13 Release 1.6.0
  - Add complete method for readline completion
* 2015-06-21 Release 1.5.4
  - Avoid %i syntax for now
* 2015-06-17 Release 1.5.3
  - Make it run on 1.9 again.
  - Avoid a warning in Time.dummy implementation.
2015-10-04 12:29:46 +00:00
taca
e2b85ddc07 Update ruby-test-unit to
## 3.1.4 - 2015-09-26 {#version-3-1-4}

It's a minor improvement release.

### Improvements

  * Updated sample code. [GitHub#109][Patch by takiy33]
  * Updated .travis.yml. [GitHub#110][Patch by takiy33]
  * document: Added table header in how to document.
    [GitHub#111][Patch by takiy33]
  * Removed duplicated code.
    [GitHub#112][Patch by takiy33]
  * Removed needless encoding conversion in fetching code snippet.
    [GitHub#113][Patch by NARUSE, Yui]

### Thanks

  * takiy33
  * NARUSE, Yui
2015-10-04 12:23:02 +00:00
taca
09607cdd96 Update ruby-pathname2 to 1.7.4.
== 1.7.4 - 7-Sep-2015
* This gem is now signed.
* Rakefile now assumes Rubygems 2.x for some tasks.
2015-10-04 12:21:26 +00:00
taca
7145327e28 Update ruby-minitest to 5.8.1.
=== 5.8.1 / 2015-09-23

* 1 minor enhancement:

  * Refactor assert_raises to be cleaner and to pass SystemExit and SignalException. (bhenderson)
2015-10-04 12:20:21 +00:00
taca
3c2a124e4b Update ruby-locale to 2.1.2.
## 2.1.2: 2015-09-15

### Improvements

  * Improved GNU gettext compatibility: Ignored `LANGUAGE` environment
    variable when either `LC_ALL`, `LC_MESSAGES` or `LANG` is C.
    [GitHub#6] [Reported by Hleb Valoshka]

### Thanks

  * Hleb Valoshka
2015-10-04 12:19:00 +00:00
taca
5fcc3c6720 Update ruby-kgio to 2.10.0.
=== kgio 2.10.0 - slimming down... / 2015-09-06 08:12 UTC

  The largely-unused autopush functionality is now a no-op.
  Existing applications will probably not notice, and are
  better off using MSG_MORE anyways if they're on Linux.

  Our poll(2) wrapper now uses rb_hash_clear if available,
  reducing global method cache dependence.

  shortlog of changes since 2.9.3:

        README: remove reference to Rainbows!
        writev: update comment on preserving errno
        poll: avoid rb_funcall for rb_hash_clear
        minor doc updates
        remove autopush support and make it a no-op
        HACKING: update URL for Message-ID lookup
2015-10-04 12:17:04 +00:00
taca
6f41716d6a Update ruby-highline to 1.7.7.
### 1.7.7 / 2015-09-22
* Make HighLine::Question coerce its question argument into a String. (@97-109-107 and Abinoam P. Marques Jr. (@abinoam), #159, PR #160)

### 1.7.6 / 2015-09-17
* Fix a typo in a var name affecting solaris. (Danek Duvall (@dhduvall) and Abinoam P. Marques Jr. (@abinoam), #155, PR #156)

### 1.7.5 / 2015-09-14
* Support jruby9k for system extensions (Michael (@mmmries), PR #153)

### 1.7.4 / 2015-06-16
* Workaround on #55 for stty
2015-10-04 12:15:50 +00:00
taca
c7aac24ab3 Update ruby-gettext to3.1.7.
## 3.1.7: 2015-09-22 {#version-3-1-7}

### Improvements

  * Supported 3 character language names.
    [GitHub#39][Patch by Vilius Paulauskas]
  * Suppressed duplicated range in regular expression warning.
    [GitHub#40][Patch by Vilius Paulauskas]
  * Replaced invalid character instead of raising an error on encoding
    conversion.
    [GitHub#41][Patch by Vilius Paulauskas]

### Fixes

  * Fixed a bug that undefined method is used.
    [GitHub#38][Patch by Hiroshi Hatake]

### Thanks

  * Hiroshi Hatake
  * Vilius Paulauskas
2015-10-04 12:14:13 +00:00
taca
4b51004cef Update ruby-flexmock to 2.0.1.
pkgsrc change: update HOMEPAGE.


Version 2.0.1

* A few bug fixes.

Version 2.0.0

* bump to 2.0 to mark the change of maintainership. I hope I won't disappoint.
* require 'flexmock' no longer pulls test_unit_integration. Require the latter
  explicitely
* dropped support for pre-2.0 Rubies
* added explicit minitest support. This makes the minitest integration much
  nicer to work with (in particular, the flexmock_teardown is now executed "just
  at the right place"), and fixes issues with minitest 5. Just require
  flexmock/minitest to get it.
* partial mocks now supports prepended modules
* validation errors that happen when a method is called (i.e. unexpected
  arguments, wrong call count) are reported with the backtrace of the call
  instead of with the backtrace of the expectation definition.
2015-10-04 12:12:53 +00:00
taca
b0f061a25e Update ruby-celluloid to 0.17.2.
0.17.2 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
- Clean up deprecation notes.
2015-10-04 12:07:04 +00:00
taca
358c99f120 Update ruby-celluloid-extras to 0.20.5.
0.20.5 (2015-09-30)
-----
* Resumed updating changelog.
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
2015-10-04 12:06:25 +00:00
taca
8173f9578d Update ruby-celluloid-fsm to 0.20.5.
Changes are not available.
2015-10-04 12:05:21 +00:00
taca
8de8f50538 Update ruby-celluloid-pool to 0.20.5.
0.20.5 (2015-09-30)
-----
* Resumed updating changelog. Not much as changed -- mostly keeping version sync with other gems.
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
2015-10-04 12:03:12 +00:00
taca
bba4ef3f68 Update ruby-celluloid-supervision to 0.20.5.
0.20.5 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
2015-10-04 12:02:27 +00:00
taca
b795c40976 Update ruby-celluloid-essentials to 0.20.5.
0.20.5 (2015-09-30)
-----
* Revamped test suite, using shared RSpec configuration layer provided by Celluloid itself.
* Updated gem dependencies provided by Celluloid::Sync... extraneous gems removed, or marked as development dependencies.
2015-10-04 12:01:18 +00:00
taca
99fd8a204c Update hoe to 3.14.2.
=== 3.14.2 / 2015-09-14

* 1 minor enhancement:

  * Updated Hoe.pdf to reflect reality (removed all rubyforge references).

* 1 bug fix:

  * Fixed extension paths. Again. Damnit. I normally don't release after midnight.

=== 3.14.1 / 2015-09-13

* 1 bug fix:

  * *sigh* fixed bug setting up extensions data for spec.

=== 3.14.0 / 2015-09-12

* 5 minor enhancements:

  * Added so_name variable to bin/sow for using hoe w/ c-extensions.
  * Default config now excludes tmp, .git, and .bundle.
  * Extended :compiler plugin to define #extension for hoe spec decls.
  * Failures to detect/load rake-compiler are handled gracefully.
  * Removed generation of synthesized .gemtest file. Dead.

* 1 bug fix:

  * Fix PRERELEASE= for packaging against newer versions of rubygems. (drbrain)
2015-10-04 11:03:41 +00:00
rodent
57300f51f3 Lack of py3x support is not due to py-paramiko. 2015-10-03 22:57:22 +00:00
rodent
b9333b76f3 Update to 7.1.2. Previous version was having some difficulty with certain TLS
connections. Issue is resolved in this version.

Release Notes

7.1.2 (2015-08-22)

    Don't raise an error if pip is not installed when checking for the latest pip version.

7.1.1 (2015-08-20)

    Check that the wheel cache directory is writable before we attempt to write cached files to them.
    Move the pip version check until after any installs have been performed, thus removing the extraenous warning when upgrading pip.
    Added debug logging when using a cached wheel.
    Respect platlib by default on platforms that have it separated from purlib.
    Upgrade packaging to 15.3.
        Normalize post-release spellings for rev/r prefixes.
    Upgrade distlib to 0.2.1.
        Updated launchers to decode shebangs using UTF-8. This allows non-ASCII pathnames to be correctly handled.
        Ensured that the executable written to shebangs is normcased.
        Changed ScriptMaker to work better under Jython.
    Upgrade ipaddress to 1.0.13.

7.1.0 (2015-06-30)

    Allow constraining versions globally without having to know exactly what will be installed by the pip command. #2731.
    Accept --no-binary and --only-binary via pip.conf. #2867.
    Allow --allow-all-external within a requirements file.
    Fixed an issue where --user could not be used when --prefix was used in a distutils configuration file.
    Fixed an issue where the SOABI tags were not correctly being generated on Python 3.5.
    Fixed an issue where we were advising windows users to upgrade by directly executing pip, when that would always fail on Windows.
    Allow ~ to be expanded within a cache directory in all situations.

7.0.3 (2015-06-01)

    Fixed a regression where --no-cache-dir would raise an exception, fixes #2855.

7.0.2 (2015-06-01)

    BACKWARD INCOMPATIBLE Revert the change (released in v7.0.0) that required quoting in requirements files around specifiers containing environment markers. (PR #2841)
    BACKWARD INCOMPATIBLE Revert the accidental introduction of support for options interleaved with requirements, version specifiers etc in requirements files. (PR #2841)
    Expand ~ in the cache directory when caching wheels, fixes #2816.
    Use python -m pip instead of pip when recommending an upgrade command to Windows users.

7.0.1 (2015-05-22)

    Don't build and cache wheels for non-editable installations from VCSs.
    Allow --allow-all-external inside of a requirements.txt file, fixing a regression in 7.0.

7.0.0 (2015-05-21)

    BACKWARD INCOMPATIBLE Removed the deprecated --mirror, --use-mirrors, and -M options.
    BACKWARD INCOMPATIBLE Removed the deprecated zip and unzip commands.
    BACKWARD INCOMPATIBLE Removed the deprecated --no-install and --no-download options.
    BACKWARD INCOMPATIBLE No longer implicitly support an insecure origin origin, and instead require insecure origins be explicitly trusted with the --trusted-host option.
    BACKWARD INCOMPATIBLE Removed the deprecated link scraping that attempted to parse HTML comments for a specially formatted comment.
    BACKWARD INCOMPATIBLE Requirements in requirements files containing markers must now be quoted due to parser changes from (PR #2697) and (PR #2725). For example, use "SomeProject; python_version < '2.7'", not simply SomeProject; python_version < '2.7'
    Ignores bz2 archives if Python wasn't compiled with bz2 support. Fixes #497
    Support --install-option and --global-option per requirement in requirement files (PR #2537)
    Build Wheels prior to installing from sdist, caching them in the pip cache directory to speed up subsequent installs. (PR #2618)
    Allow fine grained control over the use of wheels and source builds. (PR #2699)
    --no-use-wheel and --use-wheel are deprecated in favour of new options --no-binary and --only-binary. The equivalent of --no-use-wheel is --no-binary=:all:. (PR #2699)
    The use of --install-option, --global-option or --build-option disable the use of wheels, and the autobuilding of wheels. (PR #2711) Fixes #2677
    Improve logging when a requirement marker doesn't match your environment (PR #2735)
    Removed the temporary modifications (that began in pip v1.4 when distribute and setuptools merged) that allowed distribute to be considered a conflict to setuptools. pip install -U setuptools will no longer upgrade "distribute" to "setuptools". Instead, use pip install -U distribute (PR #2767).
    Only display a warning to upgrade pip when the newest version is a final release and it is not a post release of the version we already have installed (PR #2766).
    Display a warning when attempting to access a repository that uses HTTPS when we don't have Python compiled with SSL support (PR #2761).
    Allowing using extras when installing from a file path without requiring the use of an editable (PR #2785).
    Fix an infinite loop when the cache directory is stored on a file system which does not support hard links (PR #2796).
    Remove the implicit debug log that was written on every invocation, instead users will need to use --log if they wish to have one (PR #2798).

6.1.1 (2015-04-07)

    No longer ignore dependencies which have been added to the standard library, instead continue to install them.

6.1.0 (2015-04-07)

    Fixes #2502. Upgrades were failing when no potential links were found for dependencies other than the current installation. (PR #2538)
    Use a smoother progress bar when the terminal is capable of handling it, otherwise fallback to the original ASCII based progress bar.
    Display much less output when pip install succeeds, because on success, users probably don't care about all the nitty gritty details of compiling and installing. When pip install fails, display the failed install output once instead of twice, because once is enough. (PR #2487)
    Upgrade the bundled copy of requests to 2.6.0, fixing CVE-2015-2296.
    Display format of latest package when using pip list --outdated. (PR #2475)
    Don't use pywin32 as ctypes should always be available on Windows, using pywin32 prevented uninstallation of pywin32 on Windows. (PR #2467)
    Normalize the --wheel-dir option, expanding out constructs such as ~ when used (PR #2441).
    Display a warning when an undefined extra has been requested. (PR #2142)
    Speed up installing a directory in certain cases by creating a sdist instead of copying the entire directory. (PR #2535)
    Don't follow symlinks when uninstalling files (PR #2552)
    Upgrade the bundled copy of cachecontrol from 0.11.1 to 0.11.2. Fixes #2481 (PR #2595)
    Attempt to more smartly choose the order of installation to try and install dependencies before the projects that depend on them. (PR #2616)
    Skip trying to install libraries which are part of the standard library. (PR #2636, PR #2602)
    Support arch specific wheels that are not tied to a specific Python ABI. (PR #2561)
    Output warnings and errors to stderr instead of stdout. (PR #2543)
    Adjust the cache dir file checks to only check ownership if the effective user is root. (PR #2396)
    Install headers into a per project name directory instead of all of them into the root directory when inside of a virtual environment. (PR #2421)

6.0.8 (2015-02-04)

    Fix an issue where the --download flag would cause pip to no longer use randomized build directories.
    Fix an issue where pip did not properly unquote quoted URLs which contain characters like PEP 440's epoch separator (!).
    Fix an issue where distutils installed projects were not actually uninstalled and deprecate attempting to uninstall them altogether.
    Retry deleting directories incase a process like an antivirus is holding the directory open temporarily.
    Fix an issue where pip would hide the cursor on Windows but would not reshow it.

6.0.7 (2015-01-28)

    Fix a regression where Numpy requires a build path without symlinks to properly build.
    Fix a broken log message when running pip wheel without a requirement.
    Don't mask network errors while downloading the file as a hash failure.
    Properly create the state file for the pip version check so it only happens once a week.
    Fix an issue where switching between Python 3 and Python 2 would evict cached items.
    Fix a regression where pip would be unable to successfully uninstall a project without a normalized version.

6.0.6 (2015-01-03)

    Continue the regression fix from 6.0.5 which was not a complete fix.

6.0.5 (2015-01-03)

    Fix a regression with 6.0.4 under Windows where most commands would raise an exception due to Windows not having the os.geteuid() function.

6.0.4 (2015-01-03)

    Fix an issue where ANSI escape codes would be used on Windows even though the Windows shell does not support them, causing odd characters to appear with the progress bar.
    Fix an issue where using -v would cause an exception saying TypeError: not all arguments converted during string formatting.
    Fix an issue where using -v with dependency links would cause an exception saying TypeError: 'InstallationCandidate' object is not iterable.
    Fix an issue where upgrading distribute would cause an exception saying TypeError: expected string or buffer.
    Show a warning and disable the use of the cache directory when the cache directory is not owned by the current user, commonly caused by using sudo without the -H flag.
    Update PEP 440 support to handle the latest changes to PEP 440, particularly the changes to >V and <V so that they no longer imply !=V.*.
    Document the default cache directories for each operating system.
    Create the cache directory when the pip version check needs to save to it instead of silently logging an error.
    Fix a regression where the -q flag would not properly suppress the display of the progress bars.

6.0.3 (2014-12-23)

    Fix an issue where the implicit version check new in pip 6.0 could cause pip to block for up to 75 seconds if PyPI was not accessible.
    Make --no-index imply --disable-pip-version-check.

6.0.2 (2014-12-23)

    Fix an issue where the output saying that a package was installed would report the old version instead of the new version during an upgrade.
    Fix left over merge conflict markers in the documentation.
    Document the backwards incompatible PEP 440 change in the 6.0.0 changelog.

6.0.1 (2014-12-22)

    Fix executable file permissions for Wheel files when using the distutils scripts option.
    Fix a confusing error message when an exceptions was raised at certain points in pip's execution.
    Fix the missing list of versions when a version cannot be found that matches the specifiers.
    Add a warning about the possibly problematic use of > when the given specifier doesn't match anything.
    Fix an issue where installing from a directory would not copy over certain directories which were being excluded, however some build systems rely on them.

6.0 (2014-12-22)

    PROCESS Version numbers are now simply X.Y where the leading 1 has been dropped.
    BACKWARD INCOMPATIBLE Dropped support for Python 3.1.
    BACKWARD INCOMPATIBLE Removed the bundle support which was deprecated in 1.4. (PR #1806)
    BACKWARD INCOMPATIBLE File lists generated by pip show -f are now rooted at the location reported by show, rather than one (unstated) directory lower. (PR #1933)
    BACKWARD INCOMPATIBLE The ability to install files over the FTP protocol was accidently lost in pip 1.5 and it has now been decided to not restore that ability.
    BACKWARD INCOMPATIBLE PEP 440 is now fully implemented, this means that in some cases versions will sort differently or version specifiers will be interpreted differently than previously. The common cases should all function similarly to before.
    DEPRECATION pip install --download-cache and pip wheel --download-cache command line flags have been deprecated and the functionality removed. Since pip now automatically configures and uses it's internal HTTP cache which supplants the --download-cache the existing options have been made non functional but will still be accepted until their removal in pip v8.0. For more information please see https://pip.pypa.io/en/stable/reference/pip_install.html#caching
    DEPRECATION pip install --build and pip install --no-clean are now NOT deprecated. This reverses the deprecation that occurred in v1.5.3. See #906 for discussion.
    DEPRECATION Implicitly accessing URLs which point to an origin which is not a secure origin, instead requiring an opt-in for each host using the new --trusted-host flag (pip install --trusted-host example.com foo).
    Allow the new --trusted-host flag to also disable TLS verification for a particular hostname.
    Added a --user flag to pip freeze and pip list to check the user site directory only.
    Fixed #1873. Silence byte compile errors when installation succeed.
    Added a virtualenv-specific configuration file. (PR #1364)
    Added site-wide configuation files. (PR #1978)
    Added an automatic check to warn if there is an updated version of pip available (PR #2049).
    wsgiref and argparse (for >py26) are now excluded from pip list and pip freeze (PR #1606, PR #1369)
    Fixed #1424. Add --client-cert option for SSL client certificates.
    Fixed #1484. pip show --files was broken for wheel installs. (PR #1635)
    Fixed #1641. install_lib should take precedence when reading distutils config. (PR #1642)
    Send Accept-Encoding: identity when downloading files in an attempt to convince some servers who double compress the downloaded file to stop doing so. (PR #1688)
    Fixed #1559. Stop breaking when given pip commands in uppercase (PR #1725)
    Fixed #1618. Pip no longer adds duplicate logging consumers, so it won't create duplicate output when being called multiple times. (PR #1723)
    Fixed #1769. pip wheel now returns an error code if any wheels fail to build.
    Fixed #1775. pip wheel wasn't building wheels for dependencies of editable requirements.
    Allow the use of --no-use-wheel within a requirements file. (PR #1859)
    Fixed #1680. Attempt to locate system TLS certificates to use instead of the included CA Bundle if possible. (PR #1866)
    Fixed #1319. Allow use of Zip64 extension in Wheels and other zip files. (PR #1868)
    Fixed #1101. Properly handle an index or --find-links target which has a <base> without a href attribute. (PR #1869)
    Fixed #1885. Properly handle extras when a project is installed via Wheel. (PR #1896)
    Fixed #1180. Added support to respect proxies in pip search. It also fixes #932 and #1104. (PR #1902)
    Fixed #798 and #1060. pip install --download works with vcs links. (PR #1926)
    Fixed #1456. Disabled warning about insecure index host when using localhost. Based off of Guy Rozendorn's work in PR #1718. (PR #1967)
    Allow the use of OS standard user configuration files instead of ones simply based around $HOME. (PR #2021)
    Fixed #1825. When installing directly from wheel paths or urls, previous versions were not uninstalled. This also fixes #804 specifically for the case of wheel archives. (PR #1838)
    Fixed #2075, detect the location of the .egg-info directory by looking for any file located inside of it instead of relying on the record file listing a directory. (PR #2076)
    Fixed #1964, #1935, #676, Use a randomized and secure default build directory when possible. (PR #2122, CVE-2014-8991)
    Fixed #1433. Support environment markers in requirements.txt files. (PR #2134)
    Automatically retry failed HTTP requests by default. (PR #1444, PR #2147)
    Fixed #1100 - Handle HTML Encoding better using a method that is more similar to how browsers handle it. (PR #1874)
    Reduce the verbosity of the pip command by default. (PR #2175, PR #2177, PR #2178)
    Fixed #2031 - Respect sys.executable on OSX when installing from Wheels.
    Display the entire URL of the file that is being downloaded when downloading from a non PyPI repository (PR #2183).
    Support setuptools style environment markers in a source distribution (PR #2153).
2015-10-01 23:11:41 +00:00
rodent
39ac03e6f4 Update to 0.9.0. Request from riz@. Upstream integrated two patches, so
remove those. From NEWS:

JTAG Layer:

    SWD support with FTDI, Versaloon, J-Link, sysfsgpio
    CMSIS-DAP massive speed and stability improvements
    Versaloon driver ported to libusb-1.0
    STLink can reestablish communication with a target that was disconnected or rebooted
    STLink FAULT and WAIT SWD handling improved
    New hla_serial command to distinguish between several HLA adapters attached to a single machine
    Serial number support for CMSIS-DAP and J-Link adapters
    Support for more J-Link adapters
    TAP autoprobing improvements
    Big speedup for SVF playback with USB Blaster

Boundary Scan:

Target Layer:

    Stability improvements for targets that get disconnected or rebooted during a debug session
    MIPS speed and reliability improvements
    MIPS 1.5/2.0 fixes
    ARMv7-R improvements
    Cortex-A improvements, A7, A15 MPCores support
    FPU support for ARMv7-M (Cortex-M4F)
    TPIU/ITM support (including SWO/SWV tracing), can be captured with external tools or STLink
    JTAG Serial Port (Advanced Debug System softcore) support
    Profiling support for OpenRISC
    ChibiOS/RT 3.0 support (with and without FPU)
    FreeRTOS current versions support
    Freescale MQX RTOS support
    GDB target description support for MIPS
    The last created target is auto-selected as the current

Flash Layer:

    nRF51 async loader to improve flashing performance and stability
    Cypress PSoC 41xx/42xx and CCG1 families flash driver
    Silabs SiM3 family flash driver
    Marvell Wireless Microcontroller SPI flash driver
    Kinetis mass erase (part unsecuring) implemented
    lpcspifi stability fixes
    STM32 family sync with reference manuals, L0 support, bugfixes
    LPC2000 driver automatically determines part and flash size
    NXP LPC11(x)xx, LPC13xx, LPC15xx, LPC8xx, LPC5410x, LPC407x support
    Atmel SAMD, SAMR, SAML21 devices support
    Atmel SAM4E16 support
    ZeroGecko family support
    TI Tiva C Blizzard and Snowflake families support
    Nuvoton NuMicro M051 support
    EZR32 support in EFM32 driver

Board, Target, and Interface Configuration Scripts:

    Normal target configs can work with HLA (STLink, ICDI) adapters
    STM32 discovery and Nucleo boards configs
    Gumstix AeroCore board config
    General Plus GP326XXXA target config
    Micrel KS869x target config
    ASUS RT-N66U board config
    Atmel SAM4E-EK board config
    Atmel AT91SAM4L proper reset handling implemented
    TI OMAP/AM 3505, 3517 target configs
    nRF51822-mKIT board config
    RC Module 1879-1 target config
    TI TMDX570LS20SUSB board config
    TI TMS570 USB Kit board config
    TI CC2538, CC26xx target configs
    TI AM437x major config improvements, DDR support
    TI AM437X IDK board config
    TI SimpleLink Wi-Fi CC3200 LaunchPad configs
    Silicon Labs EM357, EM358 target configs
    Infineon XMC1000, XMC4000 family targets and boards configs
    Atheros AR9331 target config
    TP-LINK TL-MR3020 board config
    Alphascale asm9260t target and eval kit configs
    Olimex SAM7-LA2 (AT91SAM7A2) board config
    EFM32 Gecko boards configs
    Spansion FM4 target and SK-FM4-176L-S6E2CC board configs
    LPC1xxx target configs were restructured
    IoT-LAB debug adapter config
    DP BusBlaster KT-Link compatible config

Server Layer:

    Polling period can be configured
    shutdown command has an immediate effect
    The program command doesn't lead to a shutdown by default, use optional exit parameter for the old behaviour
    Proper OS signal handling was implemented
    Async target notifications for the Tcl RPC
2015-10-01 23:06:37 +00:00
prlw1
d133299612 Update kyua to 0.11
Changes in version 0.11
=======================

Released on October 23rd, 2014.

* Added support to print the details of all test cases (metadata and
  their output) to 'report'.  This is via a new '--verbose' flag which
  replaces the previous '--show-context'.

* Added support to specify the amount of physical disk space required
  by a test case.  This is in the form of a new "required_disk_space"
  metadata property, which can also be provided by ATF test cases as
  "require.diskspace".

* Assimilated the contents of all the kyua-*-tester(1) and
  kyua-*-interface(7) manual pages into more relevant places.  In
  particular, added more details on test program registration and their
  metadata to kyuafile(5), and added kyua-test-isolation(7) describing
  the isolation features of the test execution.

* Assimilated the contents of all auxiliary manual pages, including
  kyua-build-root(7), kyua-results-files(7), kyua-test-filters(7) and
  kyua-test-isolation(7), into the relevant command-specific manual
  pages.  This is for easier discoverability of relevant information
  when reading how specific Kyua commands work.

* Issue 30: Plumbed through support to query configuration variables
  from ATF's test case heads.  This resolves the confusing situation
  where test cases could only do this from their body and cleanup
  routines.

* Issue 49: Extended 'report' to support test case filters as
  command-line arguments.  Combined with '--verbose', this allows
  inspecting the details of a test case failure after execution.

* Issue 55: Deprecated support for specifying test_suite overrides on
  a test program basis.  This idiom should not be used but support for
  it remains in place.

* Issue 72: Added caching support to the getcwd(3) test in configure so
  that the result can be overriden for cross-compilation purposes.

* Issue 83: Changed manual page headings to include a "kyua" prefix in
  their name.  This prevents some possible confusion when displaying,
  for example, the "kyua-test" manual page with a plain name of "test".

* Issue 84: Started passing test-suite configuration variables to plain
  and TAP test programs via the environment.  The name of the
  environment variables set this way is prefixed by TEST_ENV_, so a
  configuration variable of the form
  'test_suites.some_name.allow_unsafe_ops=yes' in kyua.conf becomes
  'TEST_ENV_allow_unsafe_ops=YES' in the environment.

* Issue 97 and 116: Fixed the build on Illumos.

* Issue 102: Set TMPDIR to the test case's work directory when running
  the test case.  If the test case happens to use the mktemp(3) family
  of functions (due to misunderstandings on how Kyua works or due to
  the reuse of legacy test code), we don't want it to easily escape the
  automanaged work directory.

* Issue 103: Started being more liberal in the parsing of TAP test
  results by treating the number in 'ok' and 'not ok' lines as optional.

* Issue 105: Started using tmpfs instead of md as a temporary file
  system for tests in FreeBSD so that we do not leak md(4) devices.

* Issue 109: Changed the privilege dropping code to start properly
  dropping group privileges when unprivileged_user is set.  Also fixes
  testers/run_test:fork_wait__unprivileged_group.

* Issue 110: Changed 'help' to display version information and clarified
  the purpose of the 'about' command in its documentation.

* Issue 111: Fixed crash when defining a test program in a Kyuafile that
  has not yet specified the test suite name.

* Issue 114: Improved the kyuafile(5) manual page by clarifying the
  restrictions of the include() directive and by adding abundant
  examples.
2015-10-01 15:17:32 +00:00
wiz
a6a1bbf96f Update gettext* to 0.19.6:
Version 0.19.6 - September 2015

* Programming languages support:
  - AppData:
    xgettext now supports AppData file format, used by software center
    applications (e.g., GNOME Software) to describe installable
    applications.

* A new macro AM_GNU_GETTEXT_REQUIRE_VERSION can be used to indicate
  autopoint to pull the latest available infrastructure, instead of
  the exact version specified with AM_GNU_GETTEXT_VERSION.  When
  AM_GNU_GETTEXT_REQUIRE_VERSION is used, AM_GNU_GETTEXT_VERSION is
  ignored.

* po/Makefile.in.in can now insert the file $(DOMAIN).pot-header to
  $(DOMAIN).pot, instead of the standard header comments.

* Bug fixes:
  - Fix mishandling of gettext version numbers for minor releases, in
    po-mode.el and gettextize.
  - Fix build with --enable-relocatable.

Version 0.19.5 - July 2015

* xgettext now has a feature to perform syntax checks on msgid, which
  could enforce common styles of translatable strings, such as to
  prefer Unicode characters to the corresponding ASCII characters.
  They can be enabled with --check option or special "xgettext: "
  comment in the source code.  By default, no syntax checks are
  enabled.

* msgfilter and msgexec now have an option --newline, which appends a
  newline character to filter input and trims it from the filter
  output.  This would allow filter programs to be more POSIX friendly.

* The base Unicode standard is now updated to 8.0.0.  This
  particularly improves "\N{...}" notation handling of xgettext for
  Perl and Python.

* msginit is now capable of generating "Plural-Forms:" from Unicode
  CLDR.  This feature is still experimental, but you can try it by
  setting the GETTEXTCLDRDIR environment variable pointing to the
  directory where the CLDR archive is extracted.  The actual
  conversion is done by a helper program 'cldr-plural', which can be
  used as a generic converter and evaluator of CLDR plural forms.

* Programming languages support:
  - C++ with KDE: xgettext and msgfmt can now recognize KUIT (KDE User
    Interface Text) markup.  See the documentation section "KUIT
    Format Strings" for more info.
  - C++ with KDE: xgettext now recognizes all default KDE keywords.
    This removes the need for a long list of --keyword and --flag
    options to perform a reasonable extraction.

* Bug fixes:
  - xgettext C++11 raw string recognition is now stricter and don't
    accept unbalanced delimiters.
  - Suppress baseless warnings which msgfmt emits when processing a
    .desktop file.
  - xgettext line wrapping behaviour is now consistent between comment
    lines and non-comment lines.
  - Fix msgfilter-7 test failure on some platforms.
  - Fix VPATH build.
2015-09-30 20:58:32 +00:00
wiz
f093b911dc Update to 2.27:
libuuid:
   - return correct value for uuid_generate_time_safe  [Romain Bouvier]
2015-09-30 20:38:16 +00:00
wiz
0e96accca3 Update to 0.7.0:
version 0.7.0

     * updates related to new Linux systems, also fixed some
       compiler warnings
     * fixed bug when last line in configuration file was not
       parsed (thanks to Richard Zidlicky<rz@linux-m68k.org>)
2015-09-30 20:30:54 +00:00
wiz
1a85c0eea1 Update to 18.3.2:
------
18.3.2
------

* Correct another regression in setuptools.findall
  where the fix for Python #12885 was lost.
2015-09-30 20:28:21 +00:00
wiz
2864bcbad5 Update to 6.5.1:
Version 6.5.1 - Sep 15 2015

[CHANGES]
New facilities:
o gtags(c, c++): New environment variable GTAGSFORCEENDBLOCK.
  If this variable is set, each '}' at the first column brings
  end of all blocks.
o gtags: New --skip-unreadable option.
  If this option is specified, gtags skips unreadable files
  instead of exiting the command.

[FIXED BUGS]
o gtags: There was a difference of interpretation of the langmap
  between gtags and ctags. Now there is no difference.

o gtags (C++): Gtags did not pick up 'my_type1' as a definition
  in the following example:
	[xxx.cpp]
	+------------------------
	|using my_type1 = double;
  Now it picks up the symbol as a definition.

o gtags (C++): gtags picked up 'DomainId_t' as a definition
        in the following example:
	[xxx.cc]
	+------------------------
        |typedef std::map<DomainId_t, int> map_t2;
  Now it does not pick up it as a definition.

o gtags (C, C++): Gtags did not pick up 'pr_debug' as a definition
  in the following example:
	[xxx.h]
	+------------------------
	|extern void dump_stack(void) __cold;
	|#define pr_debug() printk()
  Now it picks up it as a definition.

o gtags (PHP): Gtags did not treat back-quote correctly.
	[xxx.php]
	+------------------------
	|<?php `ls $echo ~/*`; ?>
  Now it works.

[INCOMPATIBLE CHANGES]
o gozilla: Now, gozilla invokes firefox as a generic browser, that is, using
  command line 'firefox url'. Because firefox have removed the -remote command
  since version 39.
2015-09-30 20:26:51 +00:00
wiz
d096b8c814 Update to 0.23.2:
0.23.2 (2015-09-11)
===================

Bugs fixed
----------

* Compiler crash when analysing some optimised expressions.

* Coverage plugin was adapted to coverage.py 4.0 beta 2.

* C++ destructor calls could fail when '&' operator is overwritten.

* Incorrect C literal generation for large integers in compile-time
  evaluated DEF expressions and constant folded expressions.

* Byte string constants could end up as Unicode strings when originating
  from compile-time evaluated DEF expressions.

* Invalid C code when caching known builtin methods.
  This fixes ticket 860.

* ``ino_t`` in ``posix.types`` was not declared as ``unsigned``.

* Declarations in ``libcpp/memory.pxd`` were missing ``operator!()``.
  Patch by Leo Razoumov.

* Static cdef methods can now be declared in .pxd files.
2015-09-30 19:22:08 +00:00
wiz
a772e47b4b Update to 1.8.0:
1.8.0
-----

* Strip comments present in setup.cfg
* Protect WSGI application with a critical section

1.7.0
-----

* Have pbr egg_info.writer check PBR is enabled
2015-09-30 19:18:26 +00:00
richard
d472a8835d Update to ucpp-1.3.2
ucpp-1.3.2
* Fixed Issue 8, Included files missing  a "terminating carriage
  return character" will interrupt preprocessing in sample.c/LEXER
  mode.
  (http://code.google.com/p/ucpp/issues/detail?id=8)

ucpp-1.3.1
* Fixed Issue 5, "\r\n" carriage return characters are double
  counted.
  (http://code.google.com/p/ucpp/issues/detail?id=5)
* Fixed Issue 6, Included files missing a "terminating carriage
  return character" will interrupt preprocessing in ucpp
  (STAND_ALONE mode).
  (http://code.google.com/p/ucpp/issues/detail?id=6)
* Fixed Issue 7, STD_MACROS & STD_ASSERTS undefined when trying to
  build ucpp -DSTAND_ALONE.
  (http://code.google.com/p/ucpp/issues/detail?id=7)
* Build ucpp & libucpp with 'make'.
2015-09-30 16:39:45 +00:00
fhajny
b001466524 Do not assume share/examples/rc.d existing. Fixes installation on platforms
that do not the init system.
2015-09-30 14:30:03 +00:00
jperkin
599570cc15 Use PKGMANDIR. 2015-09-30 13:58:15 +00:00
wen
a3ddebab06 Update to 0.119
Remove unneeded DEPENDS

Upstream changes:
0.119     2015-09-29
        - remove use of Test::NoWarnings for user-facing tests

0.118     2015-07-27 TRIAL RELEASE
        - overloading of & and | no longer can change All or Any objects
          found as arguments
        - an All as an argument to an All constructed is flattened out into its
          All-ed values; the same goes for Any
2015-09-30 11:48:17 +00:00
wen
e5b4533791 Update to 0.9703
Upstream changes:
0.9703 2015-09-29  Jarkko Hietaniemi  <jhi@iki.fi>
    - document (at user level) the openbsd random problem
    - using the 5.22+ Inf was done the wrong way:
      https://github.com/neilbowers/Graph/issues/1

0.9702 2015-09-28  Jarkko Hietaniemi  <jhi@iki.fi>
    - rt.cpan.org 107394 $Storable::VERSION may contain underscores
    - follow-up to rt.cpan.org 104687: more docs, fixes, and tests for
      diameter/radius/shortest_path/center_vertices/vertex_eccentricity
      for corner cases like empty graph, single-vertex graphs, and
      in general unconnected graphs
    - for perl 5.22 or later one should be able to use Inf for Infinity
    - openbsd before perl 5.20 had nondeterministic rand()

0.97 2015-09-22  Jarkko Hietaniemi  <jhi@iki.fi>
    - rt.cpan.org 104687 diameter and centre of a one vertex graph
    - rt.cpan.org 107195 [PATCH] fix POD: add missing NAME header
    - rt.cpan.org 107194 [PATCH] fix a spelling mistake
    - rt.cpan.org #94046 Loading graph produces a warning with Perl 5.16.3
    - rt.cpan.org 62626 Graph::TransitiveClosure::Matrix contradictory wrt reflexive
    - rt.cpan.org 71793 Problem with APSP and default weight 1
    - rt.cpan.org 79143 Graph scalar context override causes problems
    - rt.cpan.org 92427 Graph::delete_vertex should not use _edges_at (in all cases)
    - rt.cpan.org 85238 bug in edges() method?
    - rt.cpan.org 93278 SPT_Dijkstra sometimes returns a wrong answer
    - rt.cpan.org 78465 find_a_cycle and has_cycle are broken
    - rt.cpan.org 92204 (longest path is not calculated correctly in this case)
    - rt.cpan.org 65497 induced subgraph method
    - plus various doc and code nits found while looking at the above

0.96_01 2014-03-09 @NEILB
    - Taken over maintenance from JHI
    - Specified min perl version 5.6.0
    - Tweaked COPYRIGHT and LICENSE in pod to match usual form
    - Added "use warnings", but that results in loads of warnings
      about functions redefined. So added "no warnings 'redefine';".
      Have to come back and work that one out!
    - Set all VERSION's to 0.96_01. I suspect a switch to Dist::Zilla
      might be coming soon...
    - Updated README to acknowledge change in maintainer
    - Reformatted as per CPAN::Changes::Spec
2015-09-30 10:47:35 +00:00
ast
c31fb0c29a Upgrade to Parse-RecDescent-1.967013 as Parse-RecDescent-1.967011 tarball is
not on all servers and in the meantime two new versions have been released
PR pkg/50270
2015-09-29 20:02:23 +00:00
alnsn
d8e373282a Update lua-lpeg to 1.0.0.
* Changes from version 0.12 to 1.0
  ---------------------------------
    + group "names" can be any Lua value
    + some bugs fixed
    + other small improvements
2015-09-29 19:18:00 +00:00
richard
1cfb8667af Shelling perl in the Makefile can be problematic since pbulk-index may
invoke the Makefile prior to having the perl dependency installed.

Instead, gather ldopts during configure and pass them to libsvn_swig_perl
in order to build with the necessary ldflags.
2015-09-29 11:52:48 +00:00
wiz
0a49d6acdc Update to 3.3.2:
Changes in 3.3.2 since 3.3.1:

Brad King (2):
     Makefile: Print color escapes only when necessary
     CMake 3.3.2

Chuck Atkins (1):
     find_*: Fix search order when the environment duplicates some HINTS

Daniel Pfeifer (3):
     cmExtra{Kate,SublimeText}Generator: Remove unused cmXMLSafe includes
     cmCTest{BZR,GIT,P4}: Remove unused cmXMLSafe includes
     CTest: Fix XML double-encoding cases

Matt McCormick (1):
     CMakeDetermine{C,CXX}Compiler: Avoid if() auto-dereferene in quoted arguments
2015-09-29 08:34:14 +00:00
wiz
c625a36344 Update to 1.8.14:
Waf 1.8.14 has been released a few moments ago; it contains the following changes:
* Fixed a regression affecting Visual Studio detection on Python 3 when --msvc_lazy_autodetect is not provided
* Enabled vala processing on a folder basis with the vala_dir parameter - #1601
* Enabled vala resource processing - #1626

Waf 1.8.13 has been released today; it contains the following changes:
* Exposed the Popen parameters input/timeout to cmd_and_log/exec_command ('timeout' is for Python >= 3.3 though)
* Added 'with_sys_path' to Context.load_tool to use/skip sys.path
* Changed gccdeps so that it handles '..' within paths
* env = conf.env.derive().detach()
* Changed Sun compiler's default shared library flag from -Kpic to -xcode=pic32 - #1625
* Added bld(rule=, ..., cls_str=, cls_keyword=) for more descriptive outputs - #1598
* Added a lazy Visual Studio detection option --msvc_lazy_autodetect - #1614
* Changed the definition of function tests to prevent warnings with gcc - #1622
2015-09-29 08:24:13 +00:00
rodent
51d3c8357f Make this not self-conflict like we did with a lot of other python packages
ie. remove ${DESTDIR}${PREFIX}/bin/virtualenv in the post-install phase.
Bump PKGREVISION.
2015-09-28 23:16:12 +00:00
ryoon
5b120615a1 Add upstream bug report URL. 2015-09-28 16:37:55 +00:00
adam
a9c50e1512 Changes 2.5.3:
* The experimental untracked-cache feature were buggy when paths with
   a few levels of subdirectories are involved.

 * Recent versions of scripted "git am" has a performance regression
   in "git am --skip" codepath, which no longer exists in the
   built-in version on the 'master' front.  Fix the regression in
   the last scripted version that appear in 2.5.x maintenance track
   and older.

Also contains typofixes, documentation updates and trivial code
clean-ups.
2015-09-28 14:21:30 +00:00
wiz
c5e3c9c567 Improve COMMENT (expand XMP) 2015-09-27 19:03:58 +00:00
joerg
f5ef4215c2 GC devel/librsync, superseded by net/librsync. 2015-09-27 09:16:31 +00:00
taca
4be60c8190 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-26 15:02:18 +00:00
wen
c3e5992598 Update to 0.12.1
Upstream changes please visit:
http://ftp5.gwdg.de/pub/misc/cran/web/packages/Rcpp/news.html
2015-09-26 14:26:15 +00:00
adam
43373ffcd2 Changes 1.9.2:
User-visible changes:
  - Client-side bugfixes:
    * svn: fix crash when saving credentials in kwallet (r1700740, r1700951)
    * checkout/update: fix "access denied" error on Windows (r1701064 et al)
    * update: fix crash when updating a conflicted tree (r1702198, r1702200)
    * commit: fix possible crash (r1702231)
    * ra_serf: do not crash on unexpected 'X-SVN-VR-Base' headers (r1702288)
    * merge: fix crash when merging to a local add (r1702299 et al)
    * svnmucc: fix error during propset+put for existing file (r1702467 et al)
    * update: fix crash without .svn/tmp folder (r1701838, r1702203)
    * checkout: remove unnecessary I/O operation (r1701638)
    * merge: fix possible crash (r1701997)
    * update: fix crash with some of the incoming deletes (r1702247)
    * upgrade: fix crash for pre-1.3 wc with externals (r1702218 et al)
    * revert: fix crash when reverting the root of a move (r1702237 et al)
    * svn: do not crash upon specific database corruptions (r1702974, r1702991)
    * svn: show utf8proc version in svn --version --verbose (r1702533, r1702891)

  - Server-side bugfixes:
    * fix reporting for empty representations in svnfsfs stats (r1698312 et al)

Developer-visible changes:
  - General:
    * fix svnfsfs_tests.py in fsfs-v4 and fsfs-v6 modes (r1700215 et al)

  - API changes:
    * disable unsupported operations for standard streams
2015-09-26 06:32:17 +00:00
tnn
cbc3834cfd Update to binutils-2.25.1.
This is a bugfix release that primarily fixes out of bounds memory writes
in libbfd when inspecting malicious binaries.
2015-09-25 17:05:33 +00:00
taca
63ba5565b5 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:55:44 +00:00
taca
3a2d7f4b41 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:55:18 +00:00
taca
dcf4499579 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:54:47 +00:00
taca
380e854897 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:53:27 +00:00
taca
4a26ca339d Update HOMEPAGE and comment out unreachable MASTER_SITES.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:52:59 +00:00
taca
78e08219c1 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 08:52:21 +00:00
taca
5f034cb5e9 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 08:50:45 +00:00
richard
cc84347a97 missing perl possible -fstack-protector* options plus patch to get MAKE_JOBS_SAFE
working again as referenced https://bugs.gentoo.org/show_bug.cgi?id=388607
2015-09-25 08:43:03 +00:00
taca
380cf51122 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 06:06:36 +00:00
taca
2c05893308 Avoid using rubyforge.org since it stopped most of services. 2015-09-25 06:05:11 +00:00
taca
8ac2d2cab2 Update HOMEPAGE.
Avoid using rubyforge.org since it stopped most of services.
2015-09-25 06:04:44 +00:00
taca
ce9318ffff Update SOPE to 2.3.2, which required by SOGo 2.3.2.
Changes are too many to write here, please refer:
https://github.com/inverse-inc/sope/blob/master/ChangeLog.
2015-09-25 06:00:29 +00:00
ryoon
c8294dbfb0 Update to 0.8.1
Changelog: highlights only
Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Feb 7 00:55:18 2014 +0000

    pstream.h (basic_ipstream::basic_ipstream(argv_type, pmode): Use
    basic_ipstream::readable(pmode) to correctly set input mode.
    test_pstreams.cc: Test execve-style construction for ipstream.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Jul 12 00:20:21 2013 +0100

    pstream.h: Add initializer-list constructors.
               Make unary constructors explicit.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Jul 11 23:27:43 2013 +0100

    pstream.h: Add newpg pmode flag. Version 0.8.1.
    test_pstreams.cc: Test newpg flag.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Fri Mar 29 17:42:22 2013 +0000

    pstream.h: Doc tweak

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Wed Jan 23 00:43:11 2013 +0000

    pstream.h: Put child in new process group and define pstreambuf::killpg()

    Thanks to Hein-Pieter van Braam for the suggestion.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jan 20 19:15:41 2013 +0000

    pstream.h: Retry interrupted writes

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jan 20 17:11:27 2013 +0000

    pstream.h: Overload constructors for convenience.

    Bump version to 0.7.3

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Mon Jun 25 22:57:26 2012 +0100

    pstream.h: Update copyright years and remove RCSID.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Mon Jun 25 22:48:53 2012 +0100

    pstream.h (pstreambuf::xsputn): Optimize.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Sun Jun 24 13:03:43 2012 +0100

    pstream.h (basic_pstreambuf::open): Work with _FORTIFY_SOURCE.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Tue Nov 15 11:12:10 2011 +0000

    (basic_pstreambuf::wpipe, basic_pstreambuf::rpipe): Fix for clang.
    (PSTREAMS_VERSION): Bump to 0.7.2

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Oct 14 19:57:41 2010 +0000

    	* pstream.h, test_pstreams.cc: Update copyright dates.

Author: Jonathan Wakely <pstreams@kayari.org>
Date:   Thu Oct 14 19:55:19 2010 +0000

    	* pstream.h (pstreams_common::pstreams_common): Use basic_ios::rdbuf
            to set the streambuf, basic_ios::init(0) has already been called.
2015-09-24 23:08:42 +00:00
joerg
e900111cc6 Update py-h5py to 2.5.0 to sync with the API changes in devel/hdf.
cython is now unconditional and the package is installed as egg.
2015-09-23 12:11:47 +00:00
joerg
e375f260ba + py-pkgconfig 2015-09-23 12:10:03 +00:00
joerg
33500d4ba6 Add py-pkgconfig-1.1.0:
py-pkgconfig is a Python wrapper for the pkg-config program.  It
simplifies checking for libraries and the necessary compiler and linker
flags.

Add during the freeze as it is a prerequirement for fixing
devel/py-h5df.
2015-09-23 12:09:18 +00:00
joerg
0d70b52a01 Fix rpath handling. 2015-09-23 11:47:57 +00:00
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
mef
f76d7ec76c Update 1.002002 to 1.003002
---------------------------
1.003002 - 2015-07-25
  - also switch the tests to strictures 2 (aaaaaaaaaaaaaaaaaaaaaaaaaa)

1.003001 - 2015-07-25
  - also switch the documentation to strictures 2 (slow clap for mst there)

1.003000 - 2015-07-25
  - switch to strictures 2
    - add make_variant_package_name optional method
2015-09-06 03:33:01 +00:00
mef
9b638f3886 Update 0.039 to 0.041
----------------------
0.041		2015-07-02	T. R. Wyant
  No changes since 0.041_02.

0.040_02	2015-06-25	T. R. Wyant
  Report \C (match octet) as removed in 5.23.0.

0.040_01	2015-06-20	T. R. Wyant
  Accept non-ASCII whitespace under /x. The Whitespace object can be
    multiple characters; the perl_version_introduced() becomes
    '5.021001' if any of them is a code point above 127.
  The perl_version_removed() method now returns '5.021001' when called
    on a PPIx::Regexp object produced by parsing '?foo?' (match once
    without explicit 'm'). The object produced by parsing 'm?foo?' still
    returns the minimum Perl version.

0.040		2015-05-31	T. R. Wyant
  No changes since 0.039_02.

0.039_02	2015-05-24	T. R. Wyant
  Do not parse unadorned parentheses as capture groups when /n is in
    effect. Instead, they are parsed as PPIx::Regexp::Structure. Named
    captures appear to be unaffected by /n.
  Made a verbose dump a little more so. Specifically, dump
    max_capture_group where relevant, and display dumped values a bit
    more informatively.

0.039_01	2015-05-23	T. R. Wyant
  Report /n (no captures) as having been added in 5.21.8.
2015-09-06 03:31:37 +00:00
wiedi
5772216a55 use c99 to fix build on SunOS 2015-09-05 23:19:52 +00:00
mef
e431a7eac2 (pkgsrc)
- Add following line for make test
   BUILD_DEPENDS+=        p5-Devel-CheckOS-[0-9]*:../../devel/p5-Devel-CheckOS
   BUILD_DEPENDS+=        p5-Package-Constants-[0-9]*:../../devel/p5-Package-Constants
   BUILD_DEPENDS+=        p5-Parallel-ForkManager-[0-9]*:../../devel/p5-Parallel-ForkManager
   BUILD_DEPENDS+=        p5-Search-Elasticsearch-[0-9]*:../../devel/p5-Search-Elasticsearch
 - (Be careful, not all the dependent packages pass for 'make test', followings are suspect)
    p5-MooseX-App-Cmd-0.31
    git-base-2.5.1
    p5-SQL-Abstract-Limit-0.14.1nb6
    p5-IO-tty-1.12nb1

(upstream)
 - Update 2.0.4 to 2.2.0
---------------------
2.2.0 2015-08-09
  [ BUG FIXES ]
      - Allow git to prompt user when calling sendemail (GH#25, Arthur Axel
        fREW Schmidt)
      - Tags were printed with the warning "at line blah". (GH#22)

  [ ENHANCEMENTS ]
      - Improve error message. (GH#24, frioux)

  [ NEW FEATURES ]
      - Store module name in config instead of relying on commit messages
        (frioux, GH#26)

  [ STATISTICS ]
      - code churn: 8 files changed, 219 insertions(+), 438 deletions(-)

2.1.0 2015-06-01
  [ ENHANCEMENTS ]
      - Be a little more clever about finding out if the META repo is
        git-based.

  [ STATISTICS ]
      - code churn: 3 files changed, 22 insertions(+), 4 deletions(-)
2015-09-05 15:31:58 +00:00
adam
49628c1fbe Enable PLIST.long_double_math on OS X El Capitain and newer 2015-09-05 14:41:06 +00:00
adam
0b793e25f6 Changes 1.9.1:
User-visible changes:
- Client-side bugfixes:
  * Fix crash with GPG-agent with non-canonical $HOME
  * Fix checkout errors with svn+ssh:// on Windows
  * svn: expose expat and zlib versions in svn --version --verbose
  * svn: improve help text for 'svn info --show-item'

- Server-side bugfixes:
  * svnserve: fixed minor typo in help text
  * Enable caching with memcached on Windows
  * Fix an error leak in FSFS verification
  * Fix incomplete membuffer cache initialization
  * svnfsfs: fix some bugs and inconsistencies in load-index

- Client-side and server-side bugfixes:
  * Fix alignment fault in ra_svn on 32 bit SPARC machines

- Bindings bugfixes:
  * Fix memory corruption in copy source SWIG bindings
2015-09-05 14:10:59 +00:00
mef
74185b964e Update 1.366 to 1.367
---------------------
(below is compiled from CHANGES)
================================
2015-06-03 10:10:18 -0400 v1_367
================================
 -  Version bump for release.
 -  Merge pull request #22 from zhouzhen1/prchallenge
 -  Some trivial changes for the CPAN PR challenge.
 -  rt.cpan.org 96039. Avoid close() on a FIFO until the reader is done.

 -  Cygwin seems to block on close() if a FIFO contains data. This test
    deadlocks because it expects the ability to read from the FIFO
    asynchronously later.

 -  rt.cpan.org 100499. Fix SuccessEvent values for AF_INET6.
 -  Applied ketas' micro patches, and updated an example in the docs.
 -  rt.cpan.org 101227. Comment on an unused assertion.
 -  rt.cpan.org 103842. Skip YAML line ending test on contemporary YAML.
 -  a couple of pod typo fix
 -  add 'use strict' to POE/Queue.pm and POE/Resource.pm
 -  Merge pull request #20 from nanis/nanis-fix-for-nmake

 -  Hard coded Unix-style directory separator causes problems on Windows
    with nmake

 -  Enable bind for IN6ADDR_ANY
 -  Use File::Spec->catfile to compose certain paths

 -  Surrounding them with double quotes worked on Windows, but created
    problems on other systems.

 -  Quote paths to fix errors with nmake on Windows
 -  C:\...\POE-1.366> nmake test

 -  "C:\opt\perl-5.20.1\bin\perl.exe" mylib/gen-tests.perl lib/POE.pm
    Can't open perl script "mylib": Permission denied NMAKE : fatal error
    U1077: 'C:\opt\perl-5.20.1\bin\perl.exe' : return code '0xd' Stop.

 -  This happens because perl ends up seeing mylib and /gen-tests.perl as
    two separate thingies. It seemed to me that the most straightforward
    solution which I do not think should effect any other platforms is to
    quote the filename arguments. Hope this makes sense.

 -  Make loop discovery O(M+N) instead of O(M*N) stat() operations.
 -  fix typo ("Consier" => "Consider")
2015-09-05 13:44:39 +00:00
mef
9417562f06 Update 1.009 to 1.010
---------------------
1.010  2015-07-13
  - Fix #101800 "[PATCH] Reinstate files to inc dir if deleted by external process"
      Periodic temp  directory cleaning programs (eg. "tmpwatch") may remove some
          (older) files from $PAR_TEMP/inc, but keep others. This causes the packed
	      program to fail.
    - When extracting a .par file to $PAR_TEMP/inc do NOT restore the original
          modified timestamps of the file (so that the extracted files have
	        the time of extraction as their modified time).
    - Add a "canary" file in $PAR_TEMP and back-date it 1 day. Hence any process
          removing files in $PAR_TEMP based on timestamps should remove
	        the "canary" before others.
    - If the canary file is missing, extract the .par to $PAR_TEMP/inc
          as previously was done only when $PAR_TEMP/inc was missing.
2015-09-05 13:42:48 +00:00
mef
44141c7e16 Update to 1.1001
----------------
1.1001  2015-09-04 14:07:14 CEST
        - Fixed tests to avoid using subtests. #38
2015-09-05 13:41:22 +00:00
mef
a077caa549 Update 2.32 to 2.34
-------------------
  Date : 2015-08-30 00:29:56 +0000
    Updated for v5.20.3-RC2
2015-09-05 13:40:06 +00:00
mef
779a888548 Adjust BUILD_DEPENDS for make test. Now pass all the test.
+BUILD_DEPENDS+=        p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires
  +BUILD_DEPENDS+=        p5-namespace-autoclean-[0-9]*:../../devel/p5-namespace-autoclean
   # for make test
  -#BUILD_DEPENDS+=       p5-Types-Standard-[0-9]*:../../devel/p5-Types-Standard
  +BUILD_DEPENDS+=        p5-Type-Tiny-[0-9]*:../../devel/p5-Type-Tiny
  +BUILD_DEPENDS+=        p5-Test-RequiresInternet-[0-9]*:../../net/p5-Test-RequiresInternet
2015-09-05 13:33:53 +00:00
mef
487ee1b8ad Add two BUILD_DEPENDS for make test, but still fails one test.
+BUILD_DEPENDS+=        p5-YAML-[0-9]*:../../textproc/p5-YAML
  +# for others
  +BUILD_DEPENDS+=        p5-Pod-Coverage-[0-9]*:../../textproc/p5-Pod-Coverage
2015-09-05 13:31:50 +00:00
mef
542298a581 Add following line for make test
BUILD_DEPENDS+=        p5-CGI-[0-9]*:../../www/p5-CGI
2015-09-05 12:52:34 +00:00
mef
780c6b02cf update 3.99 to 4.02
--------------------
4.02 Thu Aug 27 00:57:06 2015
   - Remove errant debugging code - D'oh!
2015-09-05 11:50:39 +00:00
mef
3248844aad Update to 0.328
---------------
0.328     2015-09-03 20:37:50-04:00 America/New_York
        - get command description from Pod by default (Jakob Voss)
        - add a "--help" option to all commands by default (Jakob Voss)
        - add "command_groups" to group commands in listing (Jakob Voss)
        - fix the handling of "exit" in App::Cmd::Tester (Matthew Astley)
        - add 'show_version_cmd' option to enable display of 'version'
          command in command list. (John Anderson)
        - minor documentation improvements (Alberto Simoes, rjbs)
2015-09-05 11:34:51 +00:00
jperkin
2755e5bad0 Pass --disable-sdltest on Darwin when using GNU configure, fixes various
issues (crashes, hangs) when building SDL packages in a session which
isn't logged into the console.

Tested in a full bulk build, some packages issue warnings for it being
an unrecognized option but I cannot see any failures due to it, and it
fixes a reasonable number of package builds.
2015-09-05 11:21:53 +00:00
adam
75a68eee90 Changes 2.3.6:
Added support for Visual Studio 2015
2015-09-05 10:55:20 +00:00
mef
240a2ba6a2 (pkgsrc)
- Update required version:
    -DEPENDS+= p5-namespace-autoclean>=0.09:../../devel/p5-namespace-autoclean
    +DEPENDS+= p5-namespace-autoclean>=0.16:../../devel/p5-namespace-autoclean
 - Add following line for make test
    BUILD_DEPENDS+=        p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny

(upstream)
 - Update 0.41 to 0.43
  ---------------------
 0.43      2015-08-16 03:29:28Z
    - add some diagnostics to a test that is failing occasionally

0.42      2015-06-04 06:17:43Z
  - eliminate remaining uses of List::MoreUtils
  - increase required version of namespace::autoclean to 0.16 to avoid test
    failures
2015-09-05 06:57:59 +00:00
mef
fdcb2bab1d (pkgsrc)
- Add following lines for make test
  BUILD_DEPENDS+= p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny
  BUILD_DEPENDS+= p5-Test-Requires-[0-9]*:../../devel/p5-Test-Requires
(upstream)
 - Update to 0.34
 ----------------
0.34    2015-08-16 02:39:14Z
   - bump namespace::clean prereq
2015-09-05 06:53:03 +00:00
mef
2d688be4ed Update to 0.08
--------------
0.08      2015-08-16 02:14:11Z
  - fix duplicate TYPES section in pod
2015-09-05 06:47:07 +00:00
mef
f3fb919d6a Add following line for make test
BUILD_DEPENDS+=        p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny
  BUILD_DEPENDS+=        p5-Test-Deep-[0-9]*:../../devel/p5-Test-Deep
2015-09-05 06:44:40 +00:00
mef
b62aef4e33 Add following lines for make test
BUILD_DEPENDS+=        p5-Class-Tiny-[0-9]*:../../devel/p5-Class-Tiny
  BUILD_DEPENDS+=        p5-Text-Diff-[0-9]*:../../textproc/p5-Text-Diff
2015-09-05 06:05:53 +00:00
mef
fb37610dbe Update to 0.014
---------------
0.014     2015-08-16 02:03:26Z
  - update some distribution tooling
2015-09-05 05:38:04 +00:00
mef
9056601d6e Update to 0.13
--------------
0.13      2015-08-16 04:10:59Z
        - update some distribution tooling
2015-09-05 05:34:11 +00:00