Commit graph

25210 commits

Author SHA1 Message Date
agc
be5371df7c add license for this package
also add SHA512 digest while I'm here
2015-10-12 23:19:40 +00:00
taca
5fe7eca6c6 Update ruby-test-unit to 3.1.5.
## 3.1.5 - 2015-10-09 {#version-3-1-5}

It's a Rack integration improvement release.
2015-10-12 15:38:57 +00:00
taca
1e6e4211c4 Update ruby-highline to 1.7.8.
### 1.7.8 / 2015-10-09
* Fix some issues when paginating. (Nick Carboni (@carbonin) and Abinoam P. Marques Jr. (@abinoam), #168, PRs #169 #170)
2015-10-12 15:35:44 +00:00
taca
1e57419264 Update ruby-rugged to 0.23.3.
Changes since Rugged 0.23.2

    * Update bundled libgit2 to 0.23.3.

      See https://github.com/libgit2/libgit2/releases/tag/v0.23.3
      for a list of fixed issues and new features.
2015-10-12 05:55:27 +00:00
ryoon
f7d8a052d0 Fix install stage error. 2015-10-11 00:19:33 +00:00
ryoon
a7e4a5dd96 Update to 3.1.1
Changhelog:
== 2015-09-20 v3.1.1

* Feature #11253: Total time spent from subtasks on the issue list
* Feature #20688: Add Total estimated hours column on issue list
* Feature #20738: Upgrade Rails 4.2.4
* Defect #19577: Open redirect vulnerability
* Defect #20761: Fix typo of Japanese translation for notice_gantt_chart_truncated
* Defect #20427: Cannot create a custom query visibility is "to these roles only"
* Defect #20454: Mail handler: unwanted assignment to a group occurs
* Defect #20278: Wrong syntax for resizing inline images will throw a 500 error
* Defect #20401: "Spent time" panel: columns not wrapping
* Defect #20407: Monospace font-family values are differ between application.css and scm.css
* Defect #20456: 3.1-stable/3.1.0: missing commits (omitted from being merged from trunk)
* Defect #20466: Broken email notification layout in Outlook
* Defect #20490: WARNING: Can't mass-assign protected attributes for User
* Defect #20633: Help cursor showing up since r14154
* Patch #20293: Russian translation for 2.6-stable
* Patch #20294: Russian translation for 2.6-stable
* Patch #20408: Turkish translation for 2.6-stable
* Patch #20557: Czech translation for 2.6-stable
* Patch #20735: Markdown: Upgrade redcarpet gem to 3.3 (ruby 1.9 and higher)
* Patch #20745: Portuguese translation for 2.6-stable
* Patch #20512: Project.copy_from deletes enabled_modules on source
* Patch #20737: Czech translation for 3.0-stable
* Patch #20746: Portuguese translation for 3.0-stable
* Patch #20243: Use https links instead of http links in ApplicationHelper#avatar_edit_link and Redmine::Info class methods
* Patch #20410: Turkish translation for 3.1-stable
* Patch #20452: Czech localisation update
* Patch #20731: Change Japanese translation for "spent time"
* Patch #20747: Portuguese translation for 3.1-stable
2015-10-10 02:03:04 +00:00
ryoon
b141232e29 Recursive revbump from textproc/icu 2015-10-10 01:57:50 +00:00
fhajny
c12831e8ed Add devel/zookeeper and devel/libzookeeper 2015-10-09 14:01:23 +00:00
fhajny
b08694f26e Import Apache ZooKeeper as devel/zookeeper (server) and devel/libzookeper
(C lib).

ZooKeeper is a centralized service for maintaining configuration information,
naming, providing distributed synchronization, and providing group services.
2015-10-09 13:59:56 +00:00
adam
be2e275b55 Changes 3.2.4:
Fixed build error related to zlib on systems with older make versions (regression in ccache 3.2.3).
Made conversion-to-bool explicit to avoid build warnings (and potential runtime errors) on legacy systems.
Improved signal handling: Kill compiler on SIGTERM; wait for compiler to exit before exiting; die appropriately.
Minor fixes related to Windows support.
The correct compression level is now used if compression is requested.
Fixed a bug where cache cleanup could be run too early for caches larger than 64 GiB on 32-bit systems.
2015-10-09 12:02:20 +00:00
joerg
9f5bc9abc7 Needs Ruby 2.0+ 2015-10-07 23:16:09 +00:00
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