summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2011-09-16Revert. Doesn't follow the patch rules for libtool, wasn't discussedjoerg2-53/+5
with the OWNER.
2011-09-16Updated mail/dovecot2 to 2.0.15.ghen1-1/+2
2011-09-16Update to Dovecot 2.0.15.ghen2-6/+6
+ doveadm altmove: Added -r parameter to move mails back to primary storage. - v2.0.14: Index reading could have eaten a lot of memory in some situations - doveadm index no longer affects future caching decisions - mbox: Fixed crash during mail delivery when mailbox didn't yet have GUID assigned to it. - zlib+mbox: Fetching last message from compressed mailboxes crashed. - lib-sql: Fixed load balancing and error handling when multiple hosts are used.
2011-09-16add missing dependencies so that it builds.christos1-1/+3
2011-09-16Make patch apply.wiz2-7/+7
2011-09-16Not just CONFLICTS with , but SUPERSEDES ctorrent.obache1-1/+2
2011-09-16Project Home should be set to HOMEPAGE, instead of noted in DESCR.obache2-4/+2
2011-09-16Note removal of mail/cyrus-imapd21.obache1-1/+2
2011-09-16Remove cyrus-imapd21, unsupported version by upstream.obache22-735/+1
2011-09-16Note removal of net/hobbit{mon,client}, successor net/xymon{,client}.obache1-1/+3
2011-09-16Hobbit Monitor has been renamed to Xymon.obache20-711/+1
2011-09-16Added games/lincity-ng version 2.0ryoon1-1/+2
2011-09-16Add lincity-ngryoon1-1/+2
2011-09-16Import lincity-ng-2.0 as games/lincity-ng from wip/lincity-ng.ryoon5-0/+1680
LinCity-NG is a City Simulation Game. It is a polished and improved version of the classic LinCity game. Within the scope of the GoTM project at happypenguin we have created a new iso-3D graphics engine, with a completely redone and modern GUI.
2011-09-16Remove umefont-ttfryoon1-2/+1
2011-09-16Updated fonts/umefont-ttf to 0.431ryoon1-1/+2
2011-09-16Update to 0.431ryoon2-6/+6
Changelog: In Gothic (Sans-serif) family * Fix glyphs in Unicode : 0020-668f, 9b4d-ffff (first check) * Fix glyphs in SJIS : second check completed In Minchi (Serif) family * Fix glyphs in Unicode : 0020-668f, 9b4d-ffff (first check) * Fix glyphs in SJIS : second check completed
2011-09-16Fix for intereger overflow when compiled with Clangadam1-1/+8
2011-09-16One again, fix for Clang and interger overflow, this time is should be correctadam3-15/+11
2011-09-16Updated lang/gauche to 0.9.2.enami2-3/+3
2011-09-16- Update gauche to 0.9.2. See below for the list of changes.enami3-11/+17
- Replace the HOMEPAGE with the url used in the document such as README etc. - Drop minoura@ from MAINTAINER as per his request on twitter. Brief summary of Gauche 0.9.2: [New Features] * Case mapping and character properties are fully supported, compatible to R6RS and R7RS draft (both based on Unicode standard). Character-wise case mapping (char-upcase etc.) and property queries (char-alphabetic?, char-general-category, etc.) are built-in. Context-aware string case mapping (string-upcase etc.) is provided in the new text.unicode module. (Note: srfi-13's string-upcase etc. are unchanged; they are defined to use simple case mappings.) The text.unicode module also provides conversion between utf-8/utf-16 and Unicode codepoints. * Windows binary distribution is now in MS installer (*.msi) format, created with WiX. It's safer than the previous *.exe format created by NSIS, which had a bug that smashes PATH settings when it is too long. * A convenient wrapper for atomic execution is added in gauche.threads. See this intro post. * Benchmarking utilities resembles to Perl's Benchmark module is now available in gauche.time. See this post for an introduction. * with-lock-file: A long-awaited feature to use lock files conveniently. It is in file.util module. * Added full support of srfi-60, integer bitwise operations. * gauche.cgen: Some API that Gauche uses to generate C code become public. See the manual for the details. [Incompatibile Changes] * control.thread-pool: add-job! now takes timeout argument. If it is omitted and the job queue is full, add-job! blocks. It is a change from 0.9.1, in which add-job! returns immediately in such case. To get the same behavior, pass 0 explicitly to the timeout argument. The argument order of wait-all is also changed to take timeout optional argument first. In 0.9.1 it never timeouts. * If --enable-multibyte flag is given to ./configure without explicit encoding, we now assume utf-8. It used to be euc-jp. This is for the consistency. We don't think this change affects many, for the document has always been told to give explicit encoding name for this option. * The --enable-ipv6 configure option is turned on by default. It shouldn't cause problems on modern OSes. If you ever get a compile error in gauche.net module on a platform that lacks modern API, specify --disable-ipv6 option to ./configure. * (This is an internal change of undocumented feature. We mention it just in case if some extension packages depend on this.) In the initialization code generated by genstub or precomp, it used to be possible to refer to the current module by mod. Now you should use Scm_CurrentModule() instead. Also, gauche.cgen.unit now doesn't include <gauche.h> automatically. [Improvements] * The compiler is improved to avoid creating a closure at execution time when it doesn't close local environment. For example, (map (^x (* x x)) lis) doesn't create a closure; instead, the internal lambda is compiled as if it is a toplevel-defined procedure. (Yeah, it's a simple lambda lifting. We didn't do it since it could slow down the compiler. Now the compiler is efficient enough to handle it.) * Supports zero or multi-argument unquote/unquote-splicing, as defined in R6RS. * sys-exec and sys-fork-and-exec now supports :detached keyword argument to make the child process detached from the parent's process group. * Buliltin reverse and reverse! takes optional list-tail argument. * A new builtin procedure map* that can deal with dotted list. * Common Lisp-like ecase macro is added. * The extended lambda formals (:key, :optional, etc) are now available in define-method as well. * New built-in function sys-clearenv, useful to fork subprocess securely. * rxmatch-case accepts (else => proc) form, just like case. * Socket address objects (e.g. <sockaddr-un>) can now be compared by equal? based on its content. Useful to put them in a hashtable, for example. * gauche.uvector: A new procedure uvector-copy! that can copy any type of uvectors. * gauche.test: A new test expected result constructor test-one-of allows to check if the test result matches any one of possible outcomes. * control.thread-pool: Now a pool raises <thread-pool-shut-down> condition if the pool has already be shut down and no longer accepting new jobs. terminate-all now takes :cancel-queued-jobs keyword argument to stop the pool immediately, instead of waiting for all the jobs to be finished. Canceled jobs are marked as killed . New APIs: thread-pool-results, thread-pool-shut-down?. * rfc.json: Allow construct-json to take optional output port for the consistency. * rfc.uri: A new procedure uri-merge that can be resolve a relative uri in regart to a base uri. * rfc.cookie: Recognize :http-only cookie attribute introduced in RFC6265. * Now the tilde `~' expansion of sys-normalize-pathname works on Windows as well to refer to the current user's home directory; it tries environment variables heuristically to find it. To refer to other user's home directory by ~user is still only available on Unix platforms, though. * util.combinations: combinations is optimized to handle leaf cases efficiently. [Bux fixes] * Fixed a bug that the number parser hangs when reading 2.2250738585072012e-308. * Integer multiplication routine had a code that depended on undefined behavior of C; it worked on gcc but revealed the bug on clang-llvm. * Fixed a module bug on the visibility of bindings of extended modules. * gauche.parameter: Fixed a couple of bugs on parameter objects. * Numeric comparison procedures such as < didn't work correctly when more than four arguments were given. The bug was introduced by incorrect optimization. * Fixed bugs in lognot, logand, logior and logxor, which crashed when non-integer ratinoal numbers are passed. * port->string, port->string-list: These procedures returned prematurely when the input contains an illegal byte sequence for internal encoding. Now they return an incomplete string instead. * srfi-1: Some srfi-1 procedures that are built-in were not exported, causing errors when you wanted to import them selectively, e.g. (use srfi-1 :only (fold)). * util.queue: Fixed list->queue to work. * binary.pack: Fixed a bug that the result may be truncated if the input contains byte sequences that can be interpreted as invalid character multibyte sequences. * srfi-42: Fixed a hygiene bug; the previous versions failed when only toplevel macros are imported using :only import option. * rfc.json: Fixed a bug that didn't escape double-quotes in the string, and didn't handle empty array. * Coding-aware ports didn't count lines correctly in CR-only or CRLF line endings. * Fixed a problem that caused crash after changing metaclasses of a class metaobject. An additional protection mechanism is in place in the class metaobject so that it won't be in an inconsistent state unexpectedly. * Fixed sys-setenv in which you couldn't omit the overwrite argument, even if it was described optional. * Fixed build problem of gauche.net on Solaris. * Fixed a bug in gauche-package that caused an error when *load-path* contained a nonexistent path. * Fixed a bug in string comparison routine that surfaces in a special architecture. * The printed output of <time> was incorrect when its value was negative. * There was a bug in the reader it reads ().() incorrectly. * Fixed a bug in format to allow ~* to position after the last argument. * Fixed GC compliation problem on OSX Lion.
2011-09-16Updated databases/mysql55-{client,server} to 5.5.16adam1-1/+3
2011-09-16Changes 5.5.16:adam5-24/+28
* The default thread-handling model in MySQL Server executes statements using one thread per client connection. * Commercial distributions of MySQL now include two plugins that enable MySQL Server to use external authentication methods to authenticate MySQL users * Important Change: Replication: The RESET SLAVE statement has been extended with an ALL keyword. * A new utility, mysql_plugin, enables MySQL administrators to manage which plugins a MySQL server loads. * Bugs fixed.
2011-09-16Bump PKGREVISION from PHP_VERSION_DEFAULT changes.obache29-46/+61
2011-09-16ruby-posix-spawn cannot be built on NetBSD, which doesn't haveminskim1-1/+3
posix_spawn(). Noted by joerg@.
2011-09-16Make tmux build on Darwin/amd64.minskim3-3/+237
Patches from tmux Subversion Revisions 2565 and 2568.
2011-09-16Bump PKGREVISION from RUBY_VERSION_DEFAULT changes.obache14-22/+28
2011-09-15Copy __got section when copying data segment on Mac OS X.minskim2-1/+16
Patch provided by Tom Yu in PR 45240.
2011-09-15Note update of misc/ruby-commander package to 4.0.6.taca1-1/+2
2011-09-15Update misc/ruby-commander package to 4.0.6.taca2-6/+6
4.0.6 / 2011-09-15 ================== * Improved load time on Ruby 1.9. (thanks to Jonathon M. Abbott) * Updated documentation.
2011-09-15Note update of net/ruby-net-ping package to 1.5.1.taca1-1/+2
2011-09-15Update net/ruby-net-ping package to 1.5.1.taca2-6/+6
== 1.5.1 - 15-Sep-2011 * Use RbConfig on Ruby 1.9 and later. Thanks go to Torsten Sch«Ónebaum for the patch.
2011-09-15Update description for cce, from Snader_LB.wiz1-2/+2
2011-09-15Files related to libdbi DB drivers have been moved tocheusov7-8/+66
databases/libdbi-driver-sqlite3 directory. This fixes pkglint warnings for databases/libdbi.
2011-09-15Add a pthread option for MirBSD, regenerate patch-ac using autoconf-2.65nb1bsiegert3-548/+21
to minimize its size. No change for other platforms, thus no package revision bump.
2011-09-15Fix "root" entries.ghen1-4/+4
2011-09-15+ umefont-ttf-0.431.taca1-1/+2
2011-09-15Note update of graphics/ruby-chunky_png package to 1.2.4.taca1-1/+2
2011-09-15Update ruby-chunky_png package to 1.2.4.taca3-7/+9
* Added Canvas.from_data_url to import an canvas from a PNG data URL.
2011-09-15Updated mail/dovecot2-pigeonhole to 0.2.4.ghen1-1/+2
2011-09-15Update pigeonhole plugin to 0.2.4.ghen2-7/+6
Changelog: + Vacation extension: finally added support for using the original recipient in vacation address check. It is also possible to disable the recipient address check entirely. Check doc/vacation.txt for configuration information. + Include extension: made limits on the include depth and the total number of included scripts configurable. Check doc/include.txt for configuration information. + Implemented ihave extension. This allows checking for the availability of Sieve language extensions at 'runtime'. Actually, this is checked at compile time. At runtime the interpreter checks whether extensions that were not previously available are still unavailable. If the situation changed, the script is re-compiled and the ihave tests are evaluated again. + Sieve: optimized compilation of tests that yield constant results (i.e. known at compile tme), such as 'true' and 'false'. No code is produced anymore for script sections that are never executed. Also, semantics are not verified anymore in uncompiled script sections. + Made vnd.dovecot.debug extension available to the LDA plugin instead of only the command line tools. + Sieve: redirect action now adds X-Sieve-Redirected-From header (mainly for people using SPF/SRS). - Sieve: fixed bug in handling flags and keywords; in case of error an assertion was triggered. - Script storage: improved handling of unconfigured user home directory. Originally this would produce an unhelpful error message. - Imap4flags extension: prevent forcibly enabling imap4flags when imapflags is enabled. - Fixed various -Wunused-but-set-variable compiler warnings. - Include extension: forgot to check variable identifier syntax for 'global' command. - Sieve: fixed debug mode; no messages were logged in some situations. - sievec tool: forgot to enable -D (debug) parameter.
2011-09-15+ abcmidi-20110913, colortail-0.3.3, diffutils-3.2, munin-doc-1.4.6,wiz1-4/+7
munin-node-1.4.6, munin-server-1.4.6. Most noted by Snader_LB.
2011-09-15Split and clean up tommath patches. Requested by wiz.hans4-1085/+1086
2011-09-15Add a line describing which part of munin is in this package.wiz3-0/+6
Requested by Snader_LB.
2011-09-15Updated firefox36 to 3.6.22.obache1-1/+4
2011-09-15Update firefox36-l10n to 3.6.22, sync with www/firefox36.obache2-228/+228
2011-09-15Update firefox36 to 3.6.22obache2-6/+6
* Removed trust exceptions for certificates issued by Staat der Nederlanden (MFSA-2011-35) * Resolved an issue with gov.uk websites
2011-09-15+ cdrtools-3.01alpha06, curl-7.22.0, digikam-2.1.1, libaudiofile-0.3.0,wiz1-4/+6
solfege-3.20.2.
2011-09-15Remove CVS keywords from patch, so that distinfo has a chance of everwiz2-15/+7
being right. XXX: this patch should be split up, it contains more than one file.
2011-09-15Sort.wiz2-4/+4