summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-10-16Add bzip2/zlib support to links. Add destdir support. Bump rev.bjs4-5/+29
2007-10-16Note update of qdbm to 1.8.76.obache1-1/+7
2007-10-16Update qdbm to 1.8.76.obache7-59/+25
Changes: 2007-03-07 - The hash function of on-memory map was optimized. - A bug related to large object was fixed. - Release: 1.8.76
2007-10-16Allow PKGLOCALEDIR to be overridden.tnn2-4/+4
2007-10-16The previous commit needs all platforms to be correct abouttnn1-3/+5
separating LOWER_OPSYS and LOWER_OPSYS_VERSUFFIX, since numbers are now removed from LOWER_OPSYS when forming MACHINE_GNU_PLATFORM. Fix the remaining to platforms: Interix and IRIX.
2007-10-16OSF1 and HPUX: Separate the version component from ${LOWER_OPSYS}tnn1-6/+8
into ${LOWER_OPSYS_VERSUFFIX}. When assigning GNU_MACHINE_PLATFORM, strip numerical characters from LOWER_OPSYS. (final component is eg. osf5.1 not osf15.1)
2007-10-16add a note about updating mtree files to avoid insecurity complaintjnemeth2-2/+13
2007-10-16Added the variable CCACHE_BASE, so that a ccache other than the onerillig1-26/+35
installed by devel/ccache can be used. This is especially important for cross-builds. Documented IGNORE_CCACHE. Fixed the double use of the directory ${WRKDIR}/.ccache, which was used both as wrapper directory and as cache directory.
2007-10-16 Updated devel/scmgit to 1.5.3.4 [bjs 2007-10-16]bjs1-1/+2
2007-10-16Update to version 1.5.3.4.bjs2-6/+6
See ${WRKSRC}/Documentation/RelNotes-1.5.3.{3,4}.txt for changes.
2007-10-16Solaris needs -lm.rillig1-1/+2
2007-10-16 Updated chat/irssi-icb to 0.14nb10 [bjs 2007-10-16]bjs1-1/+2
2007-10-16Update distinfo for ircssi-0.8.12. Bump revision.bjs2-6/+6
2007-10-16Note udpate of ruby-tzinfo.minskim1-1/+2
2007-10-16Update ruby-tzinfo to 0.3.5.minskim3-9/+14
Changes: * Updated to tzdata version 2007h.
2007-10-16Note udpate of ruby-daemons.minskim1-1/+2
2007-10-16Update ruby-daemons to 1.0.8.minskim2-7/+7
Changes: * new Pid.running? function. Checking whether a process exists by sending signal '0' * Patch to fix wrong ARGV when using :exec (in def start_exec: Kernel.exec(script(), *(@app_argv || [])))
2007-10-16Note update of rails.minskim1-1/+2
2007-10-16Update rails to 1.2.5.minskim4-26/+31
Changes: * Correct RAILS_GEM_VERSION regexp. Use =version gem requirement instead of ~>version so you don't get surprised by a beta gem in production. This change means upgrading to 1.2.5 will require a boot.rb upgrade. * Move custom inflections example so available before route generation. * Add a new rake task to aid debugging of named routes. * use Gem.find_name instead of search when freezing gems. Prevent false positives for other gems with rails in the name. Closes #8729 [wselman] * Fix syntax error in dispatcher than wrecked failsafe responses. * Add Active Resource to rails:freeze:edge and drop Action Web Service. * Give generate scaffold a more descriptive database message. Closes #7316 * Canonicalize RAILS_ROOT by using File.expand_path on Windows, which doesn't have to worry about symlinks, and Pathname#realpath elsewhere, which respects symlinks in relative paths but is incompatible with Windows. #6755 [Jeremy Kemper, trevor]
2007-10-16Note update of ruby-actionwebservice.minskim1-1/+2
2007-10-16Update ruby-actionwebservice to 1.2.5.minskim2-9/+9
Changes: * Depend on Action Pack 1.13.5 * Depend on Active Record 1.15.5
2007-10-16Note update of ruby-actionmailer.minskim1-1/+2
2007-10-16Update ruby-actionmailer to 1.3.5.minskim2-8/+8
Changes: * Depend on Action Pack 1.13.5
2007-10-16Note update of ruby-actionpack.minskim1-1/+2
2007-10-16Update ruby-actionpack to 1.13.5.minskim3-9/+10
Changes: * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. #6765, #7047, #7462 [bgipsy, Jeremy McAnally, Dan Kubb, brendan, Diego Algorta Casamayou] * Fix in place editor's setter action with non-string fields. #7418 [Andreas] * Only accept session ids from cookies, prevents session fixation attacks. * Change the resource seperator from ; to / change the generated routes to use the new-style named routes. e.g. new_group_user_path(@group) instead of group_new_user_path(@group). [pixeltrix] * Integration tests: introduce methods for other HTTP methods. #6353 [caboose] * Improve performance of action caching. Closes #8231 [skaes] * Fix errors with around_filters which do not yield, restore 1.1 behaviour with after filters. Closes #8891 [skaes] * Allow you to delete cookies with options. Closes #3685 * Deprecate pagination. Install the classic_pagination plugin for forward compatibility, or move to the superior will_paginate plugin. #8157 * Fix filtered parameter logging with nil parameter values. #8422 [choonkeat] * Integration tests: alias xhr to xml_http_request and add a request_method argument instead of always using POST. #7124 * Document caches_action. #5419 [Jarkko Laine] * observe_form always sends the serialized form. #5271 * Update UrlWriter to accept :anchor parameter. Closes #6771. [octopod] * Replace the current block/continuation filter chain handling by an implementation based on a simple loop. Closes #8226 [Stefan Kaes] * Return the string representation from an Xml Builder when rendering a partial. #5044 [tpope] * Cleaned up, corrected, and mildly expanded ActionPack documentation. Closes #7190 [jeremymcanally] * Small collection of ActionController documentation cleanups. Closes #7319 * Performance: patch cgi/session/pstore to require digest/md5 once rather than per #initialize. #7583 [Stefan Kaes] * Deprecation: verification with :redirect_to => :named_route shouldn't be deprecated. #7525 [Justin French]
2007-10-16Note update of ruby-activesupport.minskim1-1/+2
2007-10-16Update ruby-activerecord to 1.15.5.minskim2-8/+8
Changes: * Depend on Action Pack 1.4.4 * Fix #count on a has_many :through association so that it recognizes the :uniq option. Closes #8801 [lifofifo] * Don't clobber includes passed to has_many.count [danger] * Make sure has_many uses :include when counting [danger] * Save associated records only if the association is already loaded. #8713 * Changing the :default Date format doesn't break date quoting. #6312 * Allow nil serialized attributes with a set class constraint. #7293 * belongs_to assignment creates a new proxy rather than modifying its target in-place. #8412 [mmangino@elevatedrails.com] * Fix column type detection while loading fixtures. Closes #7987 [roderickvd] * Document deep eager includes. #6267 [Josh Susser, Dan Manges] * Oracle: extract column length for CHAR also. #7866 [ymendel] * Small additions and fixes for ActiveRecord documentation. Closes #7342 * SQLite: binary escaping works with $KCODE='u'. #7862 [tsuka] * Improved cloning performance by relying less on exception raising #8159
2007-10-16Note update of ruby-activesupport.minskim1-1/+2
2007-10-16Update ruby-activesupport to 1.4.4.minskim2-7/+7
Changes: * Backport: allow array and hash query parameters. Array route parameters are converted/to/a/path as before. * Demote Hash#to_xml to use XmlSimple#xml_in_string so it can't read files or stdin. * Document Object#blank?. * Update Dependencies to ignore constants inherited from ancestors. * Improved multibyte performance by relying less on exception raising
2007-10-16Make thunderbird also obey the mozilla-single-profile package option thatdmcmahill4-8/+7
is used already for firefox and thunderbird.
2007-10-16patch for nkf-2.07 in pkg/37132obache1-2/+2
2007-10-16Updated sysutils/findutils to 4.2.31tnn2-3/+3
2007-10-16Update to findutils-4.2.31 and enable DESTDIR support.tnn15-231/+97
The list of changes from 4.1 is long and includes a range of performance improvements, portability fixes and a locate(1) security fix. Most of the pkgsrc patches have also been merged or otherwise fixed upstream.
2007-10-15We can nowadays bootstrap using the native compiler, so note this.tnn1-28/+15
g/c some obsolete text.
2007-10-15Updated mail/exim to 4.68adam2-3/+3
2007-10-15Honor inet6 option. Based on patch provided by Yakovetsky Vladimir in PR 37121.obache1-2/+8
2007-10-15-courier, -courier-imapjlam1-3/+1
2007-10-15Update Courier mail packages to latest versions.jlam1-1/+9
2007-10-15Update mail/sqwebmail to 5.2.0. Changes from version 5.1.6 include:jlam11-134/+35
* Missing </table> when displaying folder list. * Use SQWEBMAIL_RANDSEED if it's set, instead of sendit.sh's inode. * Remove hardcoded reference to TIMEOUTHARD * Global footer wasn't being added correctly to HTML-formatted mail. * Fixes to inferred HTML formatting. * Fix signing of multipart messages that contain 8 bit content.
2007-10-15Update meta-pkgs/courier to 0.57.1. Changes from version 0.56.0 includejlam1-7/+11
using the latest matching versions of the Courier mail bits and including the latest courier-analog.
2007-10-15Update mail/courier-analog to 0.15. Changes from version 0.14 includejlam2-6/+8
understanding the new IMAP/POP log format generated by courier-imap>=4.2.0.
2007-10-15Update mail/courier-imap to 4.2.1. Changes from version 4.1.3 include:jlam9-125/+52
* Try to autodetect clock skew. * Include remote port number in IMAP and POP3 logs. * Optimization: skip over folders not in the current scope, avoiding unnecessary overhead of checking their ACLs.
2007-10-15Update mail/courier-mta to 0.57.1. Changes from version 0.56.0 include:jlam23-376/+97
* Major code cleanup. * "User unknown" reports complete local address, including extensions. * Only run courierfilters after all control files are closed. * "opt BOFHHEADERLIMIT" replaces hardcoded limit of 100,000 bytes of headers per message. * Reject <@domain.com> for a recipient's address. * Tolerate newline-less responses from the filter. * Document that sysexit 100 from .courier is a permanent failure. * "courier show all" and "courier clear all" commands for managing backscatter suppression list.
2007-10-15Update mail/courier-maildir to maildir code from courier-0.57.1 release.jlam3-7/+8
No changes.
2007-10-15Update net/couriertcpd to 0.57.1. Changes from version 0.56.0 include:jlam4-55/+6
* Avoid hardcoding file descriptor numbers where possible. * Include remote port number in IMAP and POP3 logs. * Ignore SIGPIPE errors in couriertcpd, preventing couriertcpd from being terminated if the stderr logger crashes. * Looping SPF query should abort with SPF UNKNOWN, as per specs. * "SSL23" tries SSLv3 before falling back to SSLv2. * Prime the OpenSSL entropy pool on platforms that don't have a ready source available.
2007-10-15Update security/courier-authlib to 0.60.1. Changes from version 0.59.3jlam5-41/+34
include: * MYSQL_CHARACTER_SET option. * Allow underscores, colons and plusses, in account names. * Add {MD5RAW} hash method. * Fix runtime problems with hardcoded file descriptors in the daemon code by using OPEN_MAX instead.
2007-10-15Update to xhost-1.0.2nb1: Explicitly pass inet6 setting to configure - from ↵abs2-1/+16
Yakovetsky Vladimir in PR/37115
2007-10-15Update udfclient to version 0.5.6 : important fixes in VAT searching onreinoud5-10/+12
CD-R/DVD*R allowing more discs to be read. Also better dumping of TOC's in cd_discect and sequential dumping of files using a different sectorsize than the media allowing disc images of CD's to be dumped.
2007-10-15Update to libSM-1.0.3: Explicitly pass inet6 setting to configure - from ↵abs2-1/+16
Yakovetsky Vladimir in PR/37116
2007-10-15Fix references to OPENLDAP (where this bl3 files was originally copied from).ghen1-3/+3