summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2012-06-08Fix ncurses/ncursesw build on SunOS and GCC>=4.6fhajny1-1/+5
2012-06-08Fix building with DTrace support by adding a missing DTrace probe.fhajny2-1/+27
2012-06-08flex is required to build bison-2.5.1.obache1-2/+2
PR 46554.
2012-06-07Update to 3.13.5ryoon2-8/+7
No ChangeLog is provided.
2012-06-07Update to 4.9.3.1 (4.9.1 really)ryoon4-17/+17
No ChangeLog is provided.
2012-06-07Update to 0.4.jmmv6-184/+168
Other than the upgrade itself, this also adds a new 'tests' option to the package to indicate whether the Kyua-specific tests should be built or not. I do not recommend disabling their build, but not specifiying the 'tests' option cuts down the build time significantly. The major changes since 0.3 are: * Added the 'report-html' command to generate HTML reports of the execution of any recorded action. * Changed the '--output' flag of the 'report' command to only take a path to the target file, not its format. Different formats are better supported by implementing different subcommands, as the options they may receive will vary from format to format. * Added a '--with-atf' flag to the configure script to control whether the ATF tests get built or not. May be useful for packaging systems that do not have ATF in them yet. Disabling ATF also cuts down the build time of Kyua significantly, but with the obvious drawbacks. * Grouped 'kyua' subcommands by topic both in the output of 'help' and in the documentation. In general, the user needs to be aware of commands that rely on a current project and those commands that rely purely on the database to generate reports. * Made 'help' print the descriptions of options and commands properly tabulated. * Changed most informational messages to automatically wrap on screen boundaries. * Rewrote the configuration file parsing module for extensibility. This will allow future versions of Kyua to provide additional user-facing options in the configuration file. No syntax changes have been made, so existing configuration files (version 1) will continue to be parsed without problems. There is one little exception though: all variables under the top-level 'test_suites' tree must be declared as strings. Similarly, the '-v' and '--variable' flags to the command line must now carry a 'test_suites.' prefix when referencing any variables under such tree.
2012-06-06Fix COMMENT.dholland1-2/+2
2012-06-06Update to 10.0.5ryoon2-6/+6
Changelog: * Security fixes can be found https://www.mozilla.org/security/known-vulnerabilities/firefoxESR.html MFSA 2012-40 Buffer overflow and use-after-free issues found using Address Sanitizer MFSA 2012-39 NSS parsing errors with zero length items MFSA 2012-38 Use-after-free while replacing/inserting a node in a document MFSA 2012-37 Information disclosure though Windows file shares and shortcut files MFSA 2012-36 Content Security Policy inline-script bypass MFSA 2012-34 Miscellaneous memory safety hazards * 10.5 Firefox top crash with signature [@ GLEngine@0x620cf ] (734848)
2012-06-06bison is not required to build flex.obache1-2/+2
resolve PR 46554.
2012-06-06Update to 2.5.1:wiz6-42/+44
* Noteworthy changes in release 2.5.1 (2012-06-05) [stable] ** Future changes: The next major release will drop support for generating parsers in K&R C. ** yacc.c: YYBACKUP works as expected. ** glr.c improvements: *** Location support is eliminated when not requested: GLR parsers used to include location-related code even when locations were not requested, and therefore not even usable. *** __attribute__ is preserved: __attribute__ is no longer disabled when __STRICT_ANSI__ is defined (i.e., when -std is passed to GCC). ** lalr1.java: several fixes: The Java parser no longer throws ArrayIndexOutOfBoundsException if the first token leads to a syntax error. Some minor clean ups. ** Changes for C++: *** C++11 compatibility: C and C++ parsers use "nullptr" instead of "0" when __cplusplus is 201103L or higher. *** Header guards The header files such as "parser.hh", "location.hh", etc. used a constant name for preprocessor guards, for instance: #ifndef BISON_LOCATION_HH # define BISON_LOCATION_HH ... #endif // !BISON_LOCATION_HH The inclusion guard is now computed from "PREFIX/FILE-NAME", where lower case characters are converted to upper case, and series of non-alphanumerical characters are converted to an underscore. With "bison -o lang++/parser.cc", "location.hh" would now include: #ifndef YY_LANG_LOCATION_HH # define YY_LANG_LOCATION_HH ... #endif // !YY_LANG_LOCATION_HH *** C++ locations: The position and location constructors (and their initialize methods) accept new arguments for line and column. Several issues in the documentation were fixed. ** liby is no longer asking for "rpl_fprintf" on some platforms. ** Changes in the manual: *** %printer is documented The "%printer" directive, supported since at least Bison 1.50, is finally documented. The "mfcalc" example is extended to demonstrate it. For consistency with the C skeletons, the C++ parsers now also support "yyoutput" (as an alias to "debug_stream ()"). *** Several improvements have been made: The layout for grammar excerpts was changed to a more compact scheme. Named references are motivated. The description of the automaton description file (*.output) is updated to the current format. Incorrect index entries were fixed. Some other errors were fixed. ** Building bison: *** Conflicting prototypes with recent/modified Flex. Fixed build problems with the current, unreleased, version of Flex, and some modified versions of 2.5.35, which have modified function prototypes. *** Warnings during the build procedure have been eliminated. *** Several portability problems in the test suite have been fixed: This includes warnings with some compilers, unexpected behavior of tools such as diff, warning messages from the test suite itself, etc. *** The install-pdf target work properly: Running "make install-pdf" (or -dvi, -html, -info, and -ps) no longer halts in the middle of its course.
2012-06-05Update to 13.0ryoon11-62/+267
Changelog: * When opening a new tab, users are now presented with their most visited pages * General performance improvements through incremental JavaScript garbage collection * The default home page now has quicker access to bookmarks, history, settings, and more SPDY protocol now enabled by default for faster browsing on supported sites * Restored background tabs are not loaded by default for faster startup * Smooth scrolling is now enabled by default * 72 total improvements to Page Inspector, HTML panel, Style Inspector, Scratchpad and Style Editor * The column-fill CSS property has been implemented * Experimental support for ECMAScript 6 Map and Set objects has been implemented * Support for the CSS3 background-position property extended syntax has been added * The :invalid pseudo-class can now be applied to the element * The CSS turn <angle> unit is now supported
2012-06-04pkg-config is not required to build.obache1-2/+1
2012-06-04+ protobufobache1-1/+2
2012-06-04Import protobuf-2.4.1 as devel/protobuf.obache4-0/+80
Based on PR 46477 by Aran Clauson. Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats.
2012-06-04Update p5-InlineX-C2XS to 0.22.obache2-6/+6
per maintainer update request by PR 46541. ChangeLog: - 0.22 ... Add DIST and MANIF config options. - 0.19 ... If EXPORT_TAGS_ALL is set, then it's now unnecessary to set EXPORT_OK_ALL - 0.18 ... Add CPPFLAGSEX, BOOT_F and PRE_HEAD config options. Add script.in (which generates the c2xs script)
2012-06-04oops, typo in pkg namedrochner1-3/+3
2012-06-04install the "gdbus-codegen" python script, part of glib2drochner4-1/+50
2012-06-04Restore ${PYVERSSUFFIX}, lost in update.dholland1-2/+2
2012-06-03Update to 0.8.19:wiz5-56/+22
Version 0.8.19 - 8 January 2011 * Add support for Python 2.7 * Fixed SF Bug [ 2209631 ]: New pcmodules.py module, modulePath code causes import error * Fixed SF Bug [ 1565876 ]: pychecker does not allow lambda with setattr and const * Fixed SF Bug [ 1564614 ]: pychecker -q on 64-bit ignores the platform-specific stdlib * Fixed SF Bug [ 1563572 ]: order of checking files affects errors reported PyChecker was only checking one of each set of modules with the same name; so it will now catch many more warnings it was missing before. * Fixed SF Bug [ 1563495 ]: couldn't find real module does not respect blacklist * Fixed SF Bug [ 1563494 ]: pychecker tracebacks when importing zope.interface.declaration * Add unittest-based testsuite. * Warn about missing opcodes. * Added implementations for the following opcodes: BUILD_SLICE, DELETE_SLICE3, DUP_TOPX, JUMP_IF_FALSE/TRUE, JUMP_IF_FALSE/TRUE_OR_POP, MAP_ADD, PRINT_NEWLINE_TO, SET_ADD, SETUP_WITH, SLICE0, STORE_MAP, STORE_SLICE+0, STORE_SLICE2, WITH_CLEANUP, YIELD_VALUE Version 0.8.18 - 17 August 2008 * Fixed SF Bug [ 1827412 ] pychecker.bat only handles 9 cmdline args * Fix warning about comparison checking with bool false alert for 'in' and 'not in' * Add warning for using __set__, __get__, and __delete__ in an old-style class * Fix spurious warning about __set__, __get__, and __delete__ not being special methods. * Fix inability to disable Warning about constant setattr()/getattr() * Fix spurious warning on min/max not accepting kwarg of key in Python 2.5 * Add some __special__ pickling methods that were missing * Add --missingattrs option to ignore some (but not all) attribute names * Fix crash when using keyword arguments with builtin methods * Add --keepgoing option to ignore import errors * Add --findevil option to make it easier to find objects that crash the interpreter * Add support for Python 2.5 Version 0.8.17 - 3 February 2006 * Fix spurious warning for Statement with no effect using bit shifts * Add -#/--limit command line option to set the max # of warnings to show * Remove broken command line options: -e/--errors, --complexity * Add -e/--level command line options which allows the error level to be specified: error, security, warning, unused, deprecated, style. These names map to numbers: 90, 90, 70, 50, 40, 10 (error == security). Specifying a value means all levels equal to or greater than it. * Add --only option which displays warnings only for files specified on the command line * Add --evil option for users to prevent the interpreter from crashing due to broken C extensions * Fix wrong file name when warning about returning values from __init__ functions. (#1291116) * Fix a few more glitches with setup.py. * Suppress warning about integer division when the code is: int(x / y) * Add code to skip testing objects from extension modules that are known to crash the interpreter. Currently, the list includes old versions of matplotlib.axes.BinOpType and wx.TheClipboard. * Support ROT_THREE and ROT_FOUR opcodes Version 0.8.16 - 4 September 2005 * Fix problems installing on Windows and running setup.py build
2012-06-03Update to 1.12.1:wiz2-6/+6
New in 1.12.1: * WARNING: Future backward-incompatibilities! - Starting from either the next minor version (1.12.2) or the next major version (1.13), Automake will start warning if 'configure.in' is used instead of 'configure.ac' as the Autoconf input. Future versions of Automake will drop support for 'configure.in' altogether. - Autoconf 2.65 or later will be required by the next major Automake version (1.13). Until now, Automake has required Autoconf version 2.62 or later. - Starting from the next major Automake version (1.13), the rules to build pdf, ps and dvi output from Texinfo input will use the '--tidy' option by default. Since such an option was introduced in Texinfo 4.9, this means that Makefiles generated by future Automake versions will require at least that version of Texinfo. - Starting from the next major Automake version (1.13), the parallel testsuite harness (previously only enabled by the 'parallel-tests' option) will become the default one; the older serial testsuite harness will still be available through the use of the 'serial-tests' option. - The following long-obsolete m4 macros will be removed in the next major Automake version (1.13): AM_PROG_CC_STDC: superseded by AC_PROG_CC since October 2002 fp_PROG_CC_STDC: broken alias for AM_PROG_CC_STDC fp_WITH_DMALLOC: old alias for AM_WITH_DMALLOC AM_CONFIG_HEADER: superseded by AC_CONFIG_HEADERS since July 2002 ud_PATH_LISPDIR: old alias for AM_PATH_LISPDIR jm_MAINTAINER_MODE: old alias for AM_MAINTAINER_MODE ud_GNU_GETTEXT: old alias for AM_GNU_GETTEXT gm_PROG_LIBTOOL: old alias for AC_PROG_LIBTOOL fp_C_PROTOTYPES: old alias for AM_C_PROTOTYPES (which was part of the now-removed automatic de-ANSI-fication support of Automake) - All the "old alias" macros in 'm4/obsolete.m4' will be removed in the next major Automake version (1.13). - Support for the two- and three-arguments invocation forms of the AM_INIT_AUTOMAKE macro will be deprecated in the next minor version of Automake (1.12.1) and removed in the next major version (1.13). - The '--acdir' option of aclocal is deprecated, and will probably be removed in the next major Automake release (1.13). You should use the options '--automake-acdir' and '--system-acdir' instead (which have been introduced in Automake 1.11.2). - The exact order in which the directories in the aclocal macro search path are looked up is probably going to be changed in the next Automake release (1.13). * New supported languages: - Support for Objective C++ has been added; it should work similarly to the support for Objective C. * Deprecated obsolescent features: - Use of the long-deprecated two- and three-arguments invocation forms of the AM_INIT_AUTOMAKE macro now elicits a warning in the 'obsolete' category. Starting from the next major Automake release (1.13), such usages won't be allowed anymore. - Support for the "Cygnus-style" trees (enabled by the 'cygnus' option) is now deprecated (its use triggers a warning in the 'obsolete' category). It will be removed in the next major Automake release (1.13). - The long-obsolete (since 1.10) automake-provided $(mkdir_p) make variable, @mkdir_p@ configure-time substitution and AM_PROG_MKDIR m4 macro are deprecated, eliciting a warning in the 'obsolete' category. They will be removed in the next major version (1.13). * Miscellaneous changes: - The Automake test cases now require a proper POSIX-conforming shell. Older non-POSIX Bourne shells (like Solaris 10 /bin/sh) won't be accepted anymore. In most cases, the user shouldn't have to specify such POSIX shell explicitly, since it will be looked up at configure time. Still, when this lookup fails, or when the user wants to override its conclusion, the variable 'AM_TEST_RUNNER_SHELL' can be used (pointing to the shell that will be used to run the Automake test cases). Bugs fixed in 1.12.1: * Bugs introduced by 1.12: - Several weaknesses in Automake's own build system and test suite have been fixed. * Bugs introduced by 1.11.3: - When given non-option arguments, aclocal rejects them, instead of silently ignoring them. * Long-standing bugs: - When the 'color-tests' option is in use, forcing of colored testsuite output through "AM_COLOR_TESTS=always" works even if the terminal is a non-ANSI one, i.e., if the TERM environment variable has a value of "dumb". - Several inefficiencies and poor performances in the implementation of the parallel-tests 'check' and 'recheck' targets have been fixed. - The post-processing of output "#line" directives done the ylwrap script is more faithful w.r.t. files in a subdirectory; for example, if the processed file is "src/grammar.y", ylwrap will correctly produce directives like: #line 7 "src/grammar.y" rather than like #line 7 "grammar.y" as it did before. * Bugs with new Perl versions: - Aclocal works correctly with perl 5.16.0 (automake bug#11543).
2012-06-03Update to 2.2.2:wiz2-6/+6
This is a regularly-scheduled bugfix release. addremove: document default similarity behavior (issue3429) alias: inherit command optionalrepo flag (issue3298) amend: preserve extra dict (issue3430) bisect: save current state before running a command bugzilla: fix transport initialization on python 2.4 build: fix hgrc manpage building with docutils 0.9 bundle: make bundles more portable (isue3441) changelog: ensure that nodecache is valid (issue3428) hg-ssh: exit with 255 instead of -1 on error hgweb: fix filediff base calculation largefiles: fix "hg status dir" missing regular files (issue3421) largefiles: fix deletion of multiple missing largefiles (issue3329) largefiles: follow normal codepath for addremove if non-largefiles repo (issue3249) largefiles: in putlfile, ensure tempfile's directory exists prior to creation largefiles: use wlock for lfconvert (issue3444) localrepo: clear _filecache earlier to really force reloading (issue3462) match: make 'match.files()' return list object always mq: add --no-backup for qpush/qpop/qgoto mq: backup local changes in qpop --force (issue3433) mq: backup local changes in qpush --force mq: qimport need wlock for --push - do that after releasing lock osutil: handle deletion race with readdir/stat (issue3463) pager: check if signal.SIGPIPE exists pager: preserve Hg's exit code (and fix Windows support) (issue3225) pager: remove quiet flag paper, monoblue: link correctly to lines in annotate view parsers: fix refcount bug on corrupt index patch: fix segfault against unified diffs which start line is zero patch: keep patching after missing copy source (issue3480) posix: workaround lack of TIOCGWINSZ on Irix (issue3449) revpair: handle odd ranges (issue3474) revset: explicitely tag alias arguments for expansion revset: fix infinite alias expansion detection revset: fix traceback for bogus revisions in id(rev) revset: make matching() preserve input revision order scmutil: seen.union should be seen.update (issue3476) subrepo: do not traceback on .hgsubstate parsing errors subrepo: ignore blank lines in .hgsubstate (issue3424) tag: run commit hook when lock is released (issue3344) templater: handle SyntaxError when parsing ui.logtemplate util: fix bad variable use in bytecount introduced by f0f7f3fab315 win32: fix encoding handling for registry strings (issue3467)
2012-06-03Update py-pip to 1.1.obache3-23/+17
Based on PR 46531 by Wen Heping. * convert to use python/egg.mk. 1.1 (2012-02-16) ---------------- * Fixed issue #326 - don't crash when a package's setup.py emits UTF-8 and then fails. Thanks Marc Abramowitz. * Added ``--target`` option for installing directly to arbitrary directory. Thanks Stavros Korokithakis. * Added support for authentication with Subversion repositories. Thanks Qiangning Hong. * Fixed issue #315 - ``--download`` now downloads dependencies as well. Thanks Qiangning Hong. * Errors from subprocesses will display the current working directory. Thanks Antti Kaihola. * Fixed issue #369 - compatibility with Subversion 1.7. Thanks Qiangning Hong. Note that setuptools remains incompatible with Subversion 1.7; to get the benefits of pip's support you must use Distribute rather than setuptools. * Fixed issue #57 - ignore py2app-generated OS X mpkg zip files in finder. Thanks Rene Dudfield. * Fixed issue #182 - log to ~/Library/Logs/ by default on OS X framework installs. Thanks Dan Callahan for report and patch. * Fixed issue #310 - understand version tags without minor version ("py3") in sdist filenames. Thanks Stuart Andrews for report and Olivier Girardot for patch. * Fixed issue #7 - Pip now supports optionally installing setuptools "extras" dependencies; e.g. "pip install Paste[openid]". Thanks Matt Maker and Olivier Girardot. * Fixed issue #391 - freeze no longer borks on requirements files with --index-url or --find-links. Thanks Herbert Pfennig. * Fixed issue #288 - handle symlinks properly. Thanks lebedov for the patch. * Fixed issue #49 - pip install -U no longer reinstalls the same versions of packages. Thanks iguananaut for the pull request. * Removed ``-E`` option and ``PIP_RESPECT_VIRTUALENV``; both use a restart-in-venv mechanism that's broken, and neither one is useful since every virtualenv now has pip inside it. * Fixed issue #366 - pip throws IndexError when it calls `scraped_rel_links` * Fixed issue #22 - pip search should set and return a userful shell status code * Fixed issue #351 and #365 - added global ``--exists-action`` command line option to easier script file exists conflicts, e.g. from editable requirements from VCS that have a changed repo URL.
2012-06-02tv_sec isn't necessarily time_t. Fixes netbsd-5 build.dholland2-1/+19
2012-06-02Clear PACKAGES in the build environment, as if it's set the build fails.dholland1-1/+2
2012-06-02Remove variable GNU_PROGRAM_PREFIX as discussed in pkgsrc-users@, alwayscheusov3-44/+81
use prefix 'g' instead, and add symlinks with original names in gnu/bin and gnu/man. ++pkgrevision
2012-06-02Add symlinks in gnu/man/man1/cheusov2-11/+12
++pkgrevision
2012-06-02Add symlink gnu/man/man1/indent.1cheusov2-6/+8
++pkgrevision
2012-06-02Add symlink gnu/man/man1/make.1cheusov2-5/+7
++pkgrevision
2012-06-02Add symlink gnu/man/man1/m4cheusov2-5/+7
++pkgrevision
2012-06-02Convert to usual way to define DISTNAME/PKGNAME and WRKSRC.obache1-4/+6
2012-06-02Allow compile on Mac OS X, taken from upstream fix.obache2-1/+19
Use pid_t instead of __pid_t. Fixes PR 46514.
2012-06-02Update ruby-railties32 to 3.2.5.taca2-5/+6
## Rails 3.2.4 (May 31, 2012) ## * Add hook for resource route's generator. *Santiago Pastorino*
2012-06-02Update ruby-activemodel32 to 3.2.5.taca1-4/+4
## Rails 3.2.4 (May 31, 2012) ## * No changes.
2012-06-02Update ruby-activesupport32 to 3.2.5.taca1-4/+4
3.2.4 had some regression related problem. ## Rails 3.2.4 (May 31, 2012) ## * Added #beginning_of_hour and #end_of_hour to Time and DateTime core extensions. *Mark J. Titorenko* * ActiveSupport::JSON::Variable is deprecated. Define your own #as_json and #encode_json methods for custom JSON string literals. *Erich Menge*
2012-06-02Update ruby-railties31 to 3.1.5.taca1-4/+4
## Rails 3.1.5 (May 31, 2012) ## * No changes.
2012-06-02Update ruby-activemodel31 to 3.1.5.taca1-4/+4
## Rails 3.1.5 (May 31, 2012) ## * No changes.
2012-06-02Update ruby-activesupport31 to 3.1.5.taca1-4/+4
## Rails 3.1.5 (May 31, 2012) ## * call binmode on the tempfile for Ruby 1.8 compatibility * Stop SafeBuffer#clone_empty from issuing warnings * Use 1.9 native XML escaping to speed up html_escape and shush regexp warnings
2012-06-02Update ruby-railties to 3.0.13.taca1-4/+4
* Rails 3.0.13 (May 31, 2012) * No changes.
2012-06-02Update ruby-activemodel to 3.0.13.taca1-4/+4
* Rails 3.0.13 (May 31, 2012) * No changes.
2012-06-02Update ruby-activesupport3 to 3.0.13.taca1-4/+4
* Rails 3.0.13 (May 31, 2012) * Stop SafeBuffer#clone_empty from issuing warnings
2012-06-02Update ruby-simplecov to 0.6.4.taca3-12/+15
v0.6.4, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.3...v0.6.4)) ------------------- * [BUGFIX] Encoding issues with ISO-8859-encoded source files fixed. See https://github.com/colszowka/simplecov/pull/117. (thanks to @Deradon) * [BUGFIX] Ensure ZeroDivisionErrors won't occur when calculating the coverage result, which previously could happen in certain cases. See https://github.com/colszowka/simplecov/pull/128. (thanks to @japgolly) * [REFACTORING] Changed a couple instance variable lookups so SimpleCov does not cause a lot of warnings when running ruby at a higher warning level. See https://github.com/colszowka/simplecov/issues/106 and https://github.com/colszowka/simplecov/pull/119. (thanks to @mvz and @gioele) v0.6.3, 2012-05-10 ([changes](https://github.com/colszowka/simplecov/compare/v0.6.2...v0.6.3)) ------------------- * [BUGFIX] Modified the API-changes for newer multi_json versions introduced with #122 and v0.6.2 so they are backwards-compatible with older multi_json gems in order to avoid simplecov polluting the multi_json minimum version requirement for entire applications. See https://github.com/colszowka/simplecov/issues/132 * Added appraisal gem to the test setup in order to run the test suite against both 1.0 and 1.3 multi_json gems and ensure the above actually works :)
2012-06-02Update ruby-rspec-rails to 2.10.1.taca3-8/+9
### 2.10.1 / 2012-05-03 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.10.0...v2.10.1) Bug fixes * fix regression introduced in 2.10.0 that broke integration with Devise (https://github.com/rspec/rspec-rails/issues/534) ### 2.10.0 / 2012-05-03 [full changelog](http://github.com/rspec/rspec-rails/compare/v2.9.0...v2.10.0) Bug fixes * `render_views` called in a spec can now override the config setting. (martinsvalin) * Fix `render_views` for anonymous controllers on 1.8.7. (hudge, mudge) * Eliminate use of deprecated `process_view_paths` * Fix false negatives when using `route_to` matcher with `should_not` * `controller` is no longer nil in `config.before` hooks * Change `request.path_parameters` keys to symbols to match real Rails environment (Nathan Broadbent) * Silence deprecation warnings in pre-2.9 generated view specs (Jonathan del Strother)
2012-06-02Update ruby-rspec to 2.10.0.taca3-11/+11
This is a meta package like one and reflect update of ruby-rspec-core/ruby-rspec-expectations/ruby-rspec-mock.
2012-06-02Update ruby-rspec-mocks to 2.10.1.taca3-8/+10
### 2.10.1 / 2012-05-05 [full changelog](http://github.com/rspec/rspec-mocks/compare/v2.10.0...v2.10.1) Bug fixes * fix regression of edge case behavior (https://github.com/rspec/rspec-mocks/issues/132) * fixed failure of `object.should_receive(:message).at_least(0).times.and_return value` * fixed failure of `object.should_not_receive(:message).and_return value` ### 2.10.0 / 2012-05-03 [full changelog](http://github.com/rspec/rspec-mocks/compare/v2.9.0...v2.10.0) Bug fixes * fail fast when an `exactly` or `at_most` expectation is exceeded
2012-06-02Update ruby-rspec-expectations to 2.10.0.taca3-8/+15
### 2.10.0 / 2012-05-03 [full changelog](http://github.com/rspec/rspec-expectations/compare/v2.9.1...v2.10.0) Enhancements * Add new `start_with` and `end_with` matchers (Jeremy Wadsack) * Add new matchers for specifying yields (Myron Marson): * `expect {...}.to yield_control` * `expect {...}.to yield_with_args(1, 2, 3)` * `expect {...}.to yield_with_no_args` * `expect {...}.to yield_successive_args(1, 2, 3)` * `match_unless_raises` takes multiple exception args Bug fixes * Fix `be_within` matcher to be inclusive of delta. * Fix message-specific specs to pass on Rubinius (John Firebaugh)
2012-06-02Update ruby-rspec-core to 2.10.1.taca3-7/+8
### 2.10.1 / 2012-05-19 [full changelog](http://github.com/rspec/rspec-core/compare/v2.10.0...v2.10.1) Bug fixes * `RSpec.reset` properly reinits configuration and world * Call `to_s` before `split` on exception messages that might not always be Strings (slyphon) ### 2.10.0 / 2012-05-03 [full changelog](http://github.com/rspec/rspec-core/compare/v2.9.0...v2.10.0) Enhancements * Add `prepend_before` and `append_after` hooks (preethiramdev) * intended for extension libs * restores rspec-1 behavior * Reporting of profiled examples (moro) * Report the total amount of time taken for the top slowest examples. * Report what percentage the slowest examples took from the total runtime. Bug fixes * Properly parse `SPEC_OPTS` options. * `example.description` returns the location of the example if there is no explicit description or matcher-generated description. * RDoc fixes (Grzegorz Świrski) * Do not modify example ancestry when dumping errors (Michael Grosser)
2012-06-02Update ruby-parsetree to 3.0.9.taca2-6/+6
=== 3.0.9 / 2012-05-01 * 6 minor enhancements: * Added a bunch of new tests from PTTC. * Added masgn handling inside block_pass * Added rewrite_iter to unwrap masgns w/ only 1 arg. * Handle rewriting block_pass in iter. * Imported RawParseTree test data from PTTC. * Removed rewrite_masgn requirement for 4 slots. * 3 bug fixes: * Fixed dependencies to ensure they're not going to use ruby_parser 3 and friends. * Fixed segv for NODE_BLOCK_PASS in iter (nd_iter == 1... go boom) * Remove nil body in iter (I think this is wrong, but whatevs).
2012-06-02Update ruby-mocha to 0.11.4.taca3-63/+8
= 0.11.4 * Homepage has moved to http://gofreerange.com/mocha/docs.
2012-06-02Update ruby-highline to 1.6.12.taca3-9/+10
== 1.6.12 * Silenced warnings (by James McEwan).
2012-06-02Update ruby-gettext_i18n_rails to 0.5.4.taca3-8/+12
Changes are unknown.