summaryrefslogtreecommitdiff
path: root/devel
AgeCommit message (Collapse)AuthorFilesLines
2011-04-01Fix more gemspec format. Fix build problem with ruby19-base.taca2-11/+27
2011-04-01Remove the monotone-el package: the .el file it was installing has beenjmmv5-70/+1
deprecated in monotone-1.0 because it does not work with recent versions of monotone.
2011-04-01Update to 1.0: depend on monotone-1.0.jmmv1-4/+4
2011-04-01Update to 1.0; oked by wiz@:jmmv3-97/+72
Changes - The database scheme was changed; please execute 'mtn db migrate' on all your local and remote databases. - In 'mtn conflicts resolve_first interactive', the result file name now defaults to _MTN/resolutions/<left_path>. (fixes monotone issue 103) - The French monotone translation has been updated and is now part of the main distribution again. Many thanks to Steve Petruzzello <dlist@bluewin.ch> for the outstanding work! - get_netsync_(read|write)_permitted have been extended to not only read the files read-permissions and write-permissions, but also the files in the subdirectories read-permissions.d and write-permissions.d. - monotone now also tracks the workspaces of databases which do not reside in a "managed" location. - automate now resets the locale to "POSIX" internally. This means that all scripts can expect the same untranslated messages from mtn automate, regardless of the locale of the calling process. - The hook 'get_netsync_key' has been split up into two separate hooks, one for client usage ('get_netsync_client_key', with the same arguments as the original 'get_netsync_key') and one for server usage ('get_netsync_server_key', with a single table argument containing all the given '--bind' options). Please review your custom hooks accordingly. - Short options ('-b', '-d', ...) are no longer completed. This fixes an invariant failure originating from wrong option usage. (closes monotone issue 141) New Features - 'mtn conflicts store' now outputs a count of the conflicts, and the name of the conflicts file. (fixes monotone issue 108) - New 'mtn list workspaces' command which outputs all the known workspaces for a specific database. (closes monotone issue 129) Bugs fixed - The internal line merger will actually preserve your line endings now, instead of changing everything to "\n". - Improved the help and fixed the argument indexing in 'conflicts resolve_first' (fixes monotone issue 101) - A regression from 0.48 prevented monotone from ordering the diff output of individual files alphabetically. (fixes monotone issue 102) - 'mtn privkey' did not recognize private keys solely available in the key store. This has been fixed. - Added compatibility with Botan 1.9.9 and newer. (fixes monotone issue 104) - 'mtn pull' and 'mtn sync' would always say that your workspace has not been updated. Now, it only does that when you used the '--update' option and there were no updates. (fixes monotone issue 106) - 'mtn automate remote' and 'mtn automate remote_stdio' now use a given database given by an alias to read, store and validate a remote server's key fingerprint (fixes monotone issue 95) - monotone gives a proper error message now if a netsync URI with the 'mtn' scheme misses the required host part (fixes monotone issue 110) - Whenever a binary file was removed and one would try to get a diff using mtn diff, it would report that "/dev/null is binary". This has been changed to it reports the actual name of the removed file instead. (fixes monotone issue 111) - monotone no longer wrongly falls back on a :memory: database when no database option is given. It also prints out an informational message for commands like 'setup' and 'clone' that fall back on the configured default database, again, if no database is specified for these commands. (fixes monotone issue 113) - If 'mtn serve' is called with one or more '--bind' options, then the arguments to these options can now be specified again as follows: '<ip-or-host>' to listen to IP or host on the default port '<ip-or-host>:<port>' to listen to IP or host on the specified port - or ':<port>' to listen on all interfaces on the specified port (fixes monotone issue 119) - monotone no longer enforces ".mtn" as file extension for managed databases. A new Lua hook, get_default_database_glob(), is used instead to determine a pattern which matches accepted database filenames and this pattern by default accept files ending with both, ".mtn" and ".db". (fixes monotone issue 128) - monotone now gives a proper error message when an incomplete or partial identifier contains non-hex digits. (fixes monotone issue 143) - Performance of "mtn ls changed" has been improved and is now comparable to "mtn status". (fixes monotone issue 120) Internal - The source tree has been reorganized. Sources, tests and documentation now reside in specific directories and many smaller improvements in terms of source code cleanup, developer documentation and general build infrastructure accompany this big change. Other - Added a new directory extra/, which contains monotone hooks and related scripts that have been shown to work. Most of these get installed, usually somewhere under $(prefix)/share/monotone. Please read extra/README for further information. - Added the mtn-cleanup Perl script that returns a workspace to its pristine state with the minimum amount of change. This script is in the extra/bin directory.
2011-03-31Update atf to 0.13:jmmv3-8/+18
Experimental version released on March 31st, 2011. This is the first release after the creation of the Kyua project, a more modular and reliable replacement for ATF. From now on, ATF will change to accomodate the transition to this new codebase, but ATF will still continue to see development in the short/medium term. Check out the project page at http://code.google.com/p/kyua/ for more details. The changes in this release are: * Added support to run the tests with the Kyua runtime engine (kyua-cli), a new package that aims to replace atf-run and atf-report. The ATF tests can be run with the new system by issuing a 'make installcheck-kyua' from the top-level directory of the project (assuming the 'kyua' binary is available during the configuration stage of ATF). * atf-run and atf-report are now in maintenance mode (but *not* deprecated yet!). Kyua already implements a new, much more reliable runtime engine that provides similar features to these tools. That said, it is not complete yet so all development efforts should go towards it. * If GDB is installed, atf-run dumps the stack trace of crashing test programs in an attempt to aid debugging. Contributed by Antti Kantee. * Reverted default timeout change in previous release and reset its value to 5 minutes. This was causing several issues, specially when running the existing NetBSD test suite in qemu. * Fixed the 'match' output checker in atf-check to properly validate the last line of a file even if it does not have a newline. * Added the ATF_REQUIRE_IN and ATF_REQUIRE_NOT_IN macros to atf-c++ to check for the presence (or lack thereof) of an element in a collection. * PR bin/44176: Fixed a race condition in atf-run that would crash atf-run when the cleanup of a test case triggered asynchronous modifications to its work directory (e.g. killing a daemon process that cleans up a pid file in the work directory). * PR bin/44301: Fixed the sample XSLT file to report bogus test programs instead of just listing them as having 0 test cases.
2011-03-31Forgot to mention compiler.mkadam1-1/+2
2011-03-31Restrict -std=c++0x to GCC 4.4 and above; fix for PR#42746adam1-2/+5
2011-03-30Add -std=c++0x to CXXFLAGS; fix for PR#42746adam1-1/+2
2011-03-28Switch to use RUBY_RAILS.taca1-2/+4
No functional change.
2011-03-27Needs pkg-configjoerg1-2/+2
2011-03-27Move assignment into conditional block where it belongsjoerg1-3/+3
2011-03-27Switch to use RUBY_RAILS.taca2-5/+9
No functional change.
2011-03-27Specify RUBYGEMS_REQD to fix build problem; now always build withtaca1-1/+3
misc/rubygems both ruby18 and ruby19.
2011-03-25Update ruby-activemodel pacakge which I forgot to commit to 3.0.5.taca3-12/+15
It is version update only. * Switch to use lang/ruby/rails.mk.
2011-03-24revert last PLIST change.obache1-2/+4
It probably came from failed to detect xf86dga2, it should be fixed instead.
2011-03-24Add patches accidently missed at last commit.obache2-0/+50
2011-03-23update PLIST. Fix install.zafer1-3/+1
2011-03-23Remove bl3 on tex; should have been removed with previousgdt1-3/+1
commit switching to minskim@'s fine-grained tex dependency.
2011-03-23Add latex option, currently defaulting to on.gdt3-1052/+1076
With latex option, depend on latex at both build and runtime. Without latex option, avoid both build- and run-time dependencies. (This commit should have no effect unless one adds PKG_OPTIONS.doxygen=-latex.) (Opinions were generally in favor of changing the default to not require latex, but it seems best not to do that right before a freeze, so I'm leaving it for another day.)
2011-03-23Update devel/ruby-subexec package to 0.1.0.taca2-6/+6
Changes are unavailable but added support of specifying LANG environment variable.
2011-03-23Update ruby-hoe package to 2.9.1.taca3-8/+15
=== 2.9.1 / 2011-02-05 * 1 minor enhancement: * Sow now creates all template directories before dealing with anything else * 3 bug fixes: * Fixed dependency order bug with prereleases [erikh] * Fixed sanity check for prereleases. * Fixed sow when passed no args. [erikh] === 2.9.0 / 2011-01-31 * 11 minor enhancements: * Added Hoe::Package#pkg_path to make package hook writing easier. * Added Hoe::Test#test_prelude to allow for code to run before test loading. * Added plugin?(name) to allow for easier plugin guarding in hoe spec. * Added support for multiple template dirs for sow. * Added support for rubygems-test. See http://www.gem-testers.org/ * Clean up sow a LOT using: include FileUtils::Verbose * Don't warn about missing plugins without rake -t * Hoe requires Gem::PackageTask from RubyGems 1.4+ * Moved post_news from publish to rubyforge * Plugins can now be loaded from a +plugins+ array in ~/.hoerc * rubyforge plugin now uses plain globs to push. Fixes releases for rubygems itself * 4 bug fixes: * Failed plugins should notify on both trace and debug. * Fixed rdoc_dir for custom rdoc locations * Fixed require 'rubyforge' that was too late * Fixed sow to properly rename dirs depth first === 2.8.0 / 2010-12-08 * 6 minor enhancements: * Added PRE=a.1 variable to package and release tasks. (ged) * Added compiler plugin to support rake-compiler. (tenderlove) * Added known_plugins task and updated included and 3rd party plugins doco * Added racc/rex plugin! * Extended sow's Rakefile template to dynamically include installed plugins * Turned off rubyforge plugin by default. (tenderlove's whining) === 2.7.0 / 2010-11-15 * 2 minor enhancements: * Added new plugin: gem_prelude_sucks. (jbarnette) * Activate under 1.9 if you don't want it messing with you. * Added rspec2 support (bleything) * 1 bug fix: * require uri in hoe/deps (raggi)
2011-03-23Update ruby-ZenTest package to 4.5.0.taca3-7/+11
=== 4.5.0 / 2011-02-18 * 6 minor enhancements: * Added autotest -w flag to turn on warnings. Turned off warnings by default. * Added autotest/preload.rb to deal with rails being egregiously slow. * Added child process handling/cleanup on signals. * Added postinitialize hook. * Improved restart mechanism to include all flags. * Refactored restart plugin to Autotest#restart. * 5 bug fixes: * Added sigquit handler to restart app straight up. * Fixed autotest/isolate so it works * Fixed parse_options to take args array (default ARGV) and to be non-destructive. * Strip ascii color to avoid false positives. (graemeworthy) * Use RbConfig to remove warning === 4.4.2 / 2010-12-10 * 2 bug fixes: * Added a temporary hack to deal with rspec(2?) discovery hacks. * Fixed windoze detection for unit_diff (thyresias) === 4.4.1 / 2010-12-01 * 12 minor enhancements: * Merged in most things from the autotest gem: * Added --no-full-after-failed. (grosser) * Added --rc path-to-dot-autotest. (grosser) * Added --style autotest-style. (grosser) * Added clarification comments. (grosser) * Added rake task descriptions. (grosser) * Switched to optparse. (grosser) * Switched windoze detection. (grosser, tenderlove) * Did not merge test parallelization. It should be a plugin. Awaiting patch. * Added autotest/bundler plugin. * Added autotest/isolate plugin. * Added capture of skips (for minitest) from result line. * Added focus_re to focus.rb. * Added latest_results hash. * Cleaned up unit_diff matcher by using any? * Enhanced the help/usage for autotest and zentest. (hugh sasse) * Refactored autotest runner discovery. * Refactored ruby_cmd to allow plugins to affect ruby execution. * Removed befuddling override of Dir.[] from 2007. *shrug* * Removed deny method in favor of aliasing refute. * 2 bug fixes: * 1.9 shadowed variable fix * autotest/restart now passes ARGV back through to exec. yay!
2011-03-23Backport Haiku support, taken from upstream.obache5-109/+441
(I'm using this patch over 10 months).
2011-03-23Update apel to 10.8.minskim3-11/+22
Changes: * EMU-ELS (emu-modules): Add setting for GNU Emacs 23 or later. * invisible.el: In GNU Emacs 23, inv-19.el overrides builtin function `invisible-p'. To fix the bug, require `inv-23' when running with GNU Emacs 23 or later. * poe.el (format-time-string): Fix problem on GNU Emacs 22.2
2011-03-23Update ruby-railties package to 3.0.5.taca2-8/+10
Version update only.
2011-03-23Update ruby-activesupport3 package to 3.0.5.taca2-6/+8
Version update only.
2011-03-23Switch to utilize lang/ruby/rail.mk.taca1-2/+4
2011-03-22No need to buildlink with cairo, so reset bump ABI from libpng via cairo.obache1-3/+1
2011-03-22require gobject-introspection>=0.9.5.obache2-2/+4
2011-03-21Add a patch to fix bug #54193 (Integer overflow in shmop_read()) referringtaca1-1/+2
r309018 from PHPs' repository. (CVE-2011-1092) Bump PKGREVISION of devel/php-shmop.
2011-03-21Add destdir installation support.obache1-10/+17
2011-03-21* add destdir installation support.obache1-1/+9
* fix installation for platfoms that have no 'root' user and no 'bin' group.
2011-03-21Add user-destdir installation support.obache1-3/+5
2011-03-21Add user-destdir installation support.obache3-24/+26
2011-03-21No need custom do-extract target, cpio will take care well automatically.obache1-7/+1
2011-03-21* LICENSE=gnu-gpl-v2obache1-1/+4
* marked as user-destdir installation support.
2011-03-20glib2 depends on pcre 8.11. Fixes configure check failure.cegger1-2/+2
2011-03-18Reduce TeX dependencies of doxygen.minskim1-4/+17
2011-03-18Add pstricks packages.minskim1-1/+3
2011-03-18Import tex-pst-uml-doc-0.83 as devel/tex-pst-uml-doc.minskim4-0/+31
This is documentation for tex-pst-uml.
2011-03-18Import tex-pst-uml-0.83 as devel/tex-pst-uml.minskim4-0/+30
pst-uml is a PSTricks package that provides support for drawing moderately complex UML (Universal Modelling Language) diagrams. (The PDF documentation is written in French.)
2011-03-18reset PKGREV for base pkg updatedrochner1-2/+2
2011-03-18update to 2.32.1drochner2-6/+6
changes: -bugfixes -translation updates
2011-03-18update to 2.28.3drochner3-9/+9
changes: -bugfixes -translation updates
2011-03-18Fix patching on Mac OSX; fix installing the library; fix some pkglint issuesadam4-82/+85
2011-03-18Changes 1.46.1:adam1-1/+3
Asio: * EV_ONESHOT seems to cause problems on some versions of Mac OS X, with the io_service destructor getting stuck inside the close() system call. Changed the kqueue backend to use EV_CLEAR instead. * Fixed compile failures with some versions of g++ due to the use of anonymous enums. * Fixed a bug on kqueue-based platforms, where some system calls that repeatedly fail with EWOULDBLOCK are not correctly re-registered with kqueue. * Changed asio::streambuf to ensure that its internal pointers are updated correctly after the data has been modified using std::streambuf member functions. * Fixed a bug that prevented the linger socket option from working on platforms other than Windows. Fusion: * Fix disable_if for Visual C++ 7.1/8.0 Filesystem: * Fix for STLPort. * PGI large file support Graph: * Bug fixes Icl: * Intersects for interval_maps and segment_type/element_type. * Fixed some ambiguous calls to functions in boost and std namespaces. * Other bug fixes, and documentation fixes. Math: * Several minor bug fixes. Polygon: * Disabled 45-degree booleans optimization. Proto: * Make display_expr copyable. * Fix const correctness problem in pass_through. Property Tree: * Fix compile error in JSON parser. Signals2: * Fix unused parameter warning. TR1: * Allow specialization of std::tr1::hash. * Improved support for Pathscale and Sun compilers. Unordered: * Add missing copy constructors and assignment operators when using rvalue references.
2011-03-17Remove pylint option until someone imports pylint.wiz1-5/+5
2011-03-16Update HOMEPAGE and MASTER_SITES per Aleksey Cheusov in PR 44729.wiz1-4/+4
Improve COMMENT while here.
2011-03-16Add tex-multido{,-doc}.minskim1-1/+3
2011-03-16Import tex-multido-doc-1.42 as devel/tex-multido-doc.minskim4-0/+22
This is documentation for tex-multido.