summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2013-02-12Changes 1.53.0:adam10-31/+300
New Libraries: Atomic: C++11-style atomic<>, from Helge Bahmann, maintained by Tim Blechmann. Coroutine: Coroutine library, from Oliver Kowalke. Lockfree: Lockfree data structures, from Tim Blechmann. Multiprecision: Extended precision arithmetic types for floating point, integer and rational arithmetic from John Maddock and Christopher Kormanyos. Odeint: Solving ordinary differential equations, from Karsten Ahnert and Mario Mulansky. News This release contains a fix for ticket 7743, in Boost.Locale. For more details, see the security notice. More info http://www.boost.org/users/history/version_1_53_0.html
2013-02-12Add fix for CVE-2013-0276.taca3-2/+19
Bump PKGREVISION.
2013-02-12Update ruby-railties32 to 3.2.12.taca2-6/+5
Change of version only.
2013-02-12Update ruby-activemodel32 to 3.2.12.taca1-4/+4
Change of version only.
2013-02-12Update ruby-activesupport32 to 3.2.12.taca1-4/+4
Change of version only.
2013-02-12Update ruby-railties31 to 3.1.11.taca2-6/+5
Change of version only.
2013-02-12Update ruby-activemodel31 to 3.1.11.taca1-4/+4
Change of version only.
2013-02-12Update ruby-activesupport31 to 3.1.11.taca1-4/+4
## Rails 3.1.11 (unreleased) ## * Allow `multi_json` version `>= 1.3`, relaxing back to semantic versioning 2.0.0 (revert of #5861) Backport of #5896 *Alex Riedler*
2013-02-12Changes 5.1.1:adam2-6/+6
BUGS FIXED On Windows 64-bit, an error causing link errors about __gmp_binvert_limb_table has been fixed. Aarch64 alias ARM64 support now works. A possible buffer overrun in mpz_ior has been fixed. A rare sign flip in mpz_remove has been fixed. A bug causing problems with mpf numbers with absolute value ≥ 231 has been fixed. Several bugs in mini-gmp have been fixed. A bug caused by automake, related to the 'distcheck' target, has been fixed by upgrading the automake used for GMP release engineering. FEATURES Preliminary support for the x32 ABI under x86-64. MISC The mini-gmp testsuite now tests the entire set of functions. Various improvements of the GMP testsuite.
2013-02-11Update to 2.5.1:wiz2-6/+6
This is a non-scheduled bugfix release. hgk: support the old way of getting the current Ttk theme (issue3808) hgweb.cgi: fix internal WSGI emulation (issue3804) hgweb: make 'summary' work with hidden changesets (issue3810) incoming: fix incoming when a local head is remotely filtered (issue3805) largefiles: don't crash when trying to find default dest for url without path rebase: derive node from target rev (issue3802)
2013-02-11Add and enable ruby-term-ansicolor.taca1-1/+2
2013-02-11Add ruby-term-ansicolor package version 1.0.7.taca4-0/+45
= Term::ANSIColor - ANSI escape sequences in Ruby == Description This library can be used to color/decolor strings using ANSI escape sequences.
2013-02-11Add and enable ruby-path.taca1-1/+2
2013-02-11Add ruby-path package version 1.3.1.taca4-0/+52
Path - a Path manipulation library Path is a library to manage paths. It is similar to Pathname, but has some extra goodness. The method names are intended to be short and explicit, and avoid too much duplication like having 'name' or 'path' in the method name. I believe the object-oriented approach to manipulate paths is very elegant and useful. Paths are naturally the subject of their methods and even if they are simple Strings behind, they carry way much more information and deserve a first-class status. Also, using a path library like this avoid to remember in which class the functionality is implemented, everything is in one place (if not, please open an issue!).
2013-02-11Add and enable ruby-parslet.taca1-1/+2
2013-02-11Add ruby-parslet package version 1.4.0.taca4-0/+114
Parslet makes developing complex parsers easy. It does so by * providing the best error reporting possible * not generating reams of code for you to debug Parslet takes the long way around to make your job easier. It allows for incremental language construction. Often, you start out small, implementing the atoms of your language first; _parslet_ takes pride in making this possible.
2013-02-11Add and enable ruby-blankslate.taca1-1/+2
2013-02-11Add ruby-blankslate package version 2.1.2.4.taca4-0/+30
BlankSlate provides a base class where almost all of the methods from Object and Kernel have been removed. This is useful when providing proxy object and other classes that make heavy use of method_missing.
2013-02-11Add and enable ruby-backports.taca1-1/+2
2013-02-11Add ruby-backports package version 2.7.1.taca4-0/+148
= Backports Library * Yearning to use some of the new cool features in Ruby 2.0.0 while using 1.8.6? * One of your client is stuck with Ruby 1.8.6 but you want to use a gem using some features of 1.8.7? * Can't remember if you can use Array#sample or String#each_char on a friend's box? This gem is for you! The goal of 'backports' is to make it easier to write ruby code that runs across different versions of Ruby. All you need to bring any version of Ruby up to today's standards: require 'backports' This will bring in all the features of 1.8.7 (for Ruby 1.8.6) and many features of Ruby 1.9.1 (for Ruby 1.8.x), Ruby 1.9.2 and Ruby 1.9.3 (for all earlier versions)! +Note+: Although I am a Ruby committer, this gem is a personal project and is not endorsed by ruby-core.
2013-02-11Update ruby-thor to 0.17.0.taca3-8/+21
0.17.0, release 2013-01-24 Add better support for tasks that accept arbitrary additional arguments (e.g. things like bundle exec) Add #stop_on_unknown_option! Only strip from stdin.gets if it wasn't ended with EOF Allow "send" as a task name Allow passing options as arguments after "--" Autoload Thor::Group 0.16.0, release 2012-08-14 Add enum to string arguments 0.15.4, release 2012-06-29 Fix regression when destination root contains reserved regexp characters 0.15.3, release 2012-06-18 Support strict_args_position! for backwards compatibility Escape Dir glob characters in paths 0.15.2, released 2012-05-07 Added print_in_columns Exposed terminal_width as a public API 0.15.1, release 2012-05-06 Fix Ruby 1.8 truncation bug with unicode chars Fix shell delegate methods to pass their block Don't output trailing spaces when printing the last column in a table 0.15, released 2012-04-29 Alias method_options to options Refactor say to allow multiple colors Exposed error as a public API Exposed file_collision as a public API Exposed print_wrapped as a public API Exposed set_color as a public API Fix number-formatting bugs in print_table Fix "indent" typo in print_table Fix Errno::EPIPE when piping tasks to head More friendly error messages
2013-02-11Update ruby2ruby to 2.0.3.taca2-7/+7
=== 2.0.3 / 2013-02-07 * 2 minor enhancements: * 1.9: Added support for ! call to go back to (not ...). * 2nd and 3rd order testing now uses RubyPraser.for_current_ruby for maximal carnage. * 1 bug fix: * On failure (eg ruby 2.0), fall back to compound RubyParser instance for 2nd & 3rd order testing === 2.0.2 / 2013-01-16 * 1 minor enhancement: * Updated to ruby_parser 3.1 and up
2013-02-11Update ruby-parser to 3.1.1.taca2-6/+6
=== 3.1.1 / 2012-12-19 * 1 minor enhancement: * Added MOVE_TIMEOUT env var for ruby_parse_extract_error to move slow files to a sibling directory * 4 bug fixes: * 1.9: Fixed lexing of "0o". (whitequark) * 1.9: Fixed parsing of unary plus on literals. (whitequark) * Added timeout arg to RubyParser#process to pass through to the real parser * Updated Synopsis to reflect new options for running RP. (louismullie) === 3.1.0 / 2012-12-06 * 2 minor enhancements: * Added RubyParser.for_current_ruby to provide a parser that matches your runtime. (neilconway) * Duck-typed IDENT_CHAR_RE instead of using RUBY_VERSION * 3 bug fixes: * Cleared out body comments in class/module/defn/defs * Flipped lexer tests to US-ASCII to avoid encoding hell * yyerror is now an alias for syntax_error
2013-02-11Update ruby-test-unit to 2.5.4.taca3-7/+13
2.5.4 - 2013-01-23 It's a bug fix release. Improvements * Added documents for data driven test functionality. * Added TSV support for data driven test functionality. * Support tag inspection on JRuby. Fixes * Fixed a bug. It is too slow to filter tests when there are many tests. [GitHub#46] * Accept anonymous test suite. [GitHub:#49] [Reported by Matthew Rudy Jacobs] Thanks * Matthew Rudy Jacobs
2013-02-11Update ruby-sexp-processor to 4.1.4.taca2-6/+6
=== 4.1.4 / 2013-01-22 * 1 minor enhancement: * Gave Sexp#structure a ~10% boost * 2 bug fixes: * Fixed Sexp#mass lying when using auto_shifted sexps. * Stupid fix for ruby 2.0 method_missing 'bug'.
2013-02-11Update ruby-rbx-require-relative to 0.0.9.taca2-8/+6
Support not only Ruby 1.8.7 but newer versions.
2013-02-11Update ruby-mocha to 0.13.2.taca3-7/+9
# Release Notes ## 0.13.2 * Stubbing of methods re-declared with different visibilty. Fixes #109. * Add `Mock#responds_like_instance_of`. Fixes #119. * Make `Expectation#inspect` less verbose and more useful. Fixes #122. * Make unit tests more robust to changes in environment. Fixes #121. * Update README in an attempt to head Rails-related issues off at the pass. * Add a Gem Badge to provide a link to Mocha on Rubygems. * Make documentation example consistent with other examples.
2013-02-11Update ruby-kgio to 2.8.0.taca3-7/+9
=== kgio 2.8.0 - TCP Fast Open, writev/trywritev / 2013-01-18 10:52 UTC TCP Fast Open in Linux 3.7 and later is now supported in the client via Kgio::Socket#kgio_fastopen. This release also adds the kgio_writev and kgio_trywritev methods, thanks to funny-falcon
2013-02-11Update ruby-gettext_i18n_rails to 0.9.2.taca3-8/+10
A few bug fixes.
2013-02-11Update ruby-flexmock to 1.3.0.taca3-8/+13
= FlexMock 1.3.0 Released FlexMock is a flexible mocking library for use in unit testing and behavior specification in Ruby. This release is a minor release with a few bug fixes and some simple features. == Changes in 1.3.0 === Features * Add 'and' and 'on' modifiers for the RSpec spy matcher. * Add 'and' and 'on' options to the assert_spy_called test method. * General documentation improvement. === Bug Fixes * Fix bug in should_fail test helper that was not detecting failed failures.
2013-02-11Update ruby-rspec-mocks to 2.12.2.taca2-6/+6
### 2.12.2 / 2013-01-27 [full changelog](http://github.com/rspec/rspec-mocks/compare/v2.12.1...v.2.12.2) Bug fixes * Fix `and_call_original` to work properly for methods defined on a module extended onto an object instance (Myron Marston). * Fix `stub_const` with an undefined constnat name to work properly with constant strings that are prefixed with `::` -- and edge case I missed in the bug fix in the 2.12.1 release (Myron Marston). * Ensure method visibility on a partial mock is restored after reseting method stubs, even on a singleton module (created via `extend self`) when the method visibility differs between the instance and singleton versions (Andy Lindeman).
2013-02-11Allow depends to newer ruby-diff-lcs.taca1-2/+5
Bump PKGREVISION.
2013-02-11Update ruby-daemon_controller to 1.1.1.taca3-9/+8
Various bug fixes.
2013-02-11Update hoe to 3.5.0.taca2-6/+6
=== 3.5.0 / 2013-01-22 * 1 minor enhancement: * Added optional cmd field in blog setup for hoe/publish === 3.4.1 / 2013-01-16 * 1 bug fix: * Fixed MiniTest const for older stock ruby minitests. (illuminerdi)
2013-02-11Update ZenTest to 4.9.0.taca2-7/+7
=== 4.9.0 / 2013-02-07 * 1 minor enhancement: * Allow multiruby installs to be done entirely by symlink, bypassing build * 1 bug fix: * Fixes for maglev. === 4.8.4 / 2013-01-22 * 2 minor enhancements: * Set required rubygems version to be >= 1.8 and < 2.1. (sanemat) * multiruby now just builds main, which skips rdoc and other stuff
2013-02-10Fix build.ryoon1-2/+2
Set BUILDLINK_API_DEPENDS.sqlite3 as correct value.
2013-02-10bin/nbpatch require manifest file for UAC.obache1-1/+2
2013-02-09Bump PKGREVISION from audio/jack.ryoon7-14/+14
2013-02-09There is subversion16-base only.ryoon1-8/+8
2013-02-09Add subversion16 and subversion16-base.ryoon1-1/+3
2013-02-09Remove accidentally committed files.ryoon3-1436/+0
2013-02-09Import subversion16-base-1.6.20 as devel/subversion16-base.ryoon8-0/+1740
The goal of the Subversion project is to build a version control system that is a compelling replacement for CVS in the open source community. The software is released under an Apache/BSD-style open source license. This package contains all the Subversion programs and libraries except the Apache module mod_dav_svn (for which see the ap2-subversion package) and the Python bindings and some programs which use them (for which see the py-subversion package). Installing this package alone will satisfy most people's needs, providing all three repository access layers (local, svn, and dav) and the server for the svn access layer. This package tracks 1.6.x release branch.
2013-02-09Import subversion16-1.6.20 as devel/subversion16.ryoon11-0/+2570
The goal of the Subversion project is to build a version control system that is a compelling replacement for CVS in the open source community. The software is released under an Apache/BSD-style open source license. This is a meta-package. It installs no files, but it depends on all the Subversion components, including the base package with the subversion client and server, the apache module, and four language bindings. (If you just want the basic svn and svnadmin programs see devel/subversion-base.) This package tracks 1.6.x release branch.
2013-02-09Update to 1.7.8.ryoon13-871/+1196
Change to 1.7.x branch. Many changes are introduced. See http://subversion.apache.org/docs/release-notes/1.7.html .
2013-02-09-no-undefined LDFLAGS is required to be linked with Cygwin.obache1-1/+2
2013-02-09tell Cygwin to bmake.obache1-1/+6
2013-02-08Add google-glog to the devel Makefile.tonnerre1-1/+2
2013-02-08Initial import of the Google application level logging library,tonnerre4-0/+48
version 0.3.3. This package contains a C++ implementation of the Google logging module, a library implementing application level logging for C++
2013-02-07Update to 18.0.2.ryoon4-23/+19
* Include patch for FreeBSD from Jan Beich (patch-bf). Changelog: FIXED 18.0.2: Fix JavaScript related stability issues
2013-02-07+ruby-gnome2-gobject-introspectionobache1-1/+2