Commit graph

170360 commits

Author SHA1 Message Date
taca
9588318bbd Update ISC DHCP package to 4.2.1p1 (4.2.1-P1), fixes a few security
problems.  For more detail, please refer:

	http://ftp.isc.org/isc/dhcp/dhcp-4.2.1-P1-RELNOTES
2011-04-08 14:09:23 +00:00
drochner
9f20b44705 sync w/ base pkg 2011-04-08 14:09:05 +00:00
drochner
d9b7df97be update to 2.5
changes:
-based on Scintilla v2.25
-API additions
API changes possible breaking binary compatibility, this bl3 requirement
bumped
2011-04-08 14:06:15 +00:00
drochner
7359f852b5 update to 2.25
changes: minor bug fix and improvement release
2011-04-08 14:01:07 +00:00
drochner
168df1f989 update to 2.25
change: improves ability of lexers to remember complex state between lines
2011-04-08 13:59:31 +00:00
drochner
be4f0ed4f8 update to 3.0.8
changes:
-theming related improvements
-bugfixes
-translation updates
2011-04-08 13:54:25 +00:00
drochner
db98692798 this was moved to gst-plugins-good 2011-04-08 13:50:34 +00:00
adam
21c073e38e Updated www/py-uwsgi to 0.9.7.2; textproc/py-markdown to 2.0.3; devel/py-cheetah to 2.4.4 2011-04-08 12:56:50 +00:00
adam
aa73efc41a Changes 2.4.2:
* Fix issue where subclasses of Template failed to pick up attributes in the
  searchlist
* Remove old/outdated bundled memcached python client
* Allow for #encoding directives to exist after a comment (i.e. not the first
  line in a module)
* Remove support for WebWare servlets (which caused significant performance
  slowdowns on Mac OS X)
* Old/stale code pruned in preparation for Python 3 support

Changes 2.4.1:
* --quiet flag added to `cheetah` to silence printing to stdout
* Refactoring to minimize the amount of forked code for Python3
* Template.compile() will no longer create class names with numerous leading
  underscores
* DirectiveAnalyzer (cheetah-analyze script) added to report directive usage in
  templates
* Older LaTeX docs converted to rst for Sphinx
* Prevent #raw blocks from evaluating $-placeholders and escaped strings
* New tests added to verify PSP behavior and other untested internals

Changes 2.4.0:
* Fix a major performance regression in Template.__init__()
* More graceful handling of unicode when calling .respond() to render a template
* Minor code updates
* Update the default filter
2011-04-08 12:54:20 +00:00
taca
21e52f7a96 Note updated of net/rsync package to 3.0.8. 2011-04-08 12:37:26 +00:00
adam
62d985933d Changes 2.0.3:
Bug-fix release.


We are happy to release Python-Markdown 2.0, which has been over a year in the
making. We have rewritten significant portions of the code, dramatically
extending the extension API, increased performance, and added numerous
extensions to the distribution (including an extension that mimics PHP Markdown
Extra), all while maintaining backward compatibility with the end user API in
version 1.7.
2011-04-08 12:37:19 +00:00
taca
ea72ae1773 Update rsync package to 3.0.8.
NEWS for rsync 3.0.8 (26 Mar 2011)
Protocol: 30 (unchanged)
Changes since 3.0.7:

  BUG FIXES:

    - Fixed two buffer-overflow issues: one where a directory path that is
      exactly MAXPATHLEN was not handled correctly, and one handling a
      --backup-dir that is extra extra large.

    - Fixed a data-corruption issue when preserving hard-links without
      preserving file ownership, and doing deletions either before or during
      the transfer (CVE-2011-1097).  This fixes some assert errors in the
      hard-linking code, and some potential failed checksums (via -c) that
      should have matched.

    - Fixed a potential crash when an rsync daemon has a filter/exclude list
      and the transfer is using ACLs or xattrs.

    - Fixed a hang if a really large file is being processed by an rsync that
      can't handle 64-bit numbers.  Rsync will now complain about the file
      being too big and skip it.

    - For devices and special files, we now avoid gathering useless ACL and/or
      xattr information for files that aren't being copied.  (The un-copied
      files are still put into the file list, but there's no need to gather
      data that is not going to be used.)  This ensures that if the user uses
      --no-D, that rsync can't possibly complain about being unable to gather
      extended information from special files that are in the file list (but
      not in the transfer).

    - Properly handle requesting remote filenames that start with a dash.  This
      avoids a potential error where a filename could be interpreted as a
      (usually invalid) option.

    - Fixed a bug in the comparing of upper-case letters in file suffixes for
      --skip-compress.

    - If an rsync daemon has a module configured without a path setting, rsync
      will now disallow access to that module.

    - If the destination arg is an empty string, it will be treated as a
      reference to the current directory (as 2.x used to do).

    - If rsync was compiled with a newer time-setting function (such as
      lutimes), rsync will fall-back to an older function (such as utimes) on a
      system where the newer function is not around.  This helps to make the
      rsync binary more portable in mixed-OS-release situations.

    - Fixed a batch-file writing bug that would not write out the full set of
      compatibility flags that the transfer was using.  This fixes a potential
      protocol problem for a batch file that contains a sender-side I/O error:
      it would have been sent in a way that the batch-reader wasn't expecting.

    - Some improvements to the hard-linking code to ensure that device-number
      hashing is working right, and to supply more information if the hard-link
      code fails.

    - The --inplace code was improved to not search for an impossible checksum
      position.  The quadruple-verbose chunk[N] message will now mention when
      an inplace chunk was handled by a seek rather than a read+write.

    - Improved ACL mask handling, e.g. for Solaris.

    - Fixed a bug that prevented --numeric-ids from disabling the translation
      of user/group IDs for ACLs.

    - Fixed an issue where an xattr and/or ACL transfer that used an alt-dest
      option (e.g. --link-dest) could output an error trying to itemize the
      changes against the alt-dest directory's xattr/ACL info but was instead
      trying to access the not-yet-existing new destination directory.

    - Improved xattr system-error messages to mention the full path to the
      file.

    - The --link-dest checking for identical symlinks now avoids considering
      attribute differences that cannot be changed on the receiver.

    - Avoid trying to read/write xattrs on certain file types for certain OSes.
      Improved configure to set NO_SYMLINK_XATTRS, NO_DEVICE_XATTRS, and/or
      NO_SPECIAL_XATTRS defines in config.h.

    - Improved the unsafe-symlink errors messages.

    - Fixed a bug setting xattrs on new files that aren't user writable.

    - Avoid re-setting xattrs on a hard-linked file w/the same xattrs.

    - Fixed a bug with --fake-super when copying files and dirs that aren't
      user writable.

    - Fixed a bug where a sparse file could have its last sparse block turned
      into a real block when rsync sets the file size (requires ftruncate).

    - If a temp-file name is too long, rsync now avoids truncating the name in
      the middle of adjacent high-bit characters.  This prevents a potential
      filename error if the filesystem doesn't allow a name to contain an
      invalid multi-byte sequence.

    - If a muli-protocol socket connection fails (i.e., when contacting a
      daemon), we now report all the failures, not just the last one.  This
      avoids losing a relevant error (e.g. an IPv4 connection-refused error)
      that happened before the final error (e.g. an IPv6 protocol-not-supported
      error).

    - Generate a transfer error if we try to call chown with a -1 for a uid or
      a gid (which is not settable).

    - Fixed the working of --force when used with --one-file-system.

    - Fix the popt arg parsing so that an option that doesn't take an arg will
      reject an attempt to supply one (can configure --with-included-popt if
      your system's popt library doesn't yet have this fix).

    - A couple minor option tweaks to the support/rrsync script, and also some
      regex changes that make vim highlighting happier.

    - Fixed some issues in the support/mnt-excl script.

    - Various manpage improvements.

  ENHANCEMENTS:

    - Added ".hg/" to the default cvs excludes (see -C & --cvs-exclude).

  DEVELOPER RELATED:

    - Use lchmod() whenever it is available (not just on symlinks).
    - A couple fixes to the socketpair_tcp() routine.
    - Updated the helper scripts in the packaging subdirectory.
    - Renamed configure.in to configure.ac.
    - Fixed configure's checking for iconv routines for newer OS X versions.
    - Fixed the testsuite/xattrs.test script on OS X.
2011-04-08 12:36:24 +00:00
adam
3c456fefd3 Changes 0.9.7.2:
* new option --touch-reload <file> to reload the stack on <file> modification
*  --static-map <mountpoint=documentroot> allows to serve static files
* fixed --post-limit management
* disallow empty socket names
* implemented exception_info WSGI support
* new options --reload-on-as <n> and --reload-on-rss <n> allows
  to recycle workers when their memory usage is higher than <n> MB
* fixed syslog support (use --log-syslog[=facility] to enable it)
* improved plugin loading system
* added support for RabbitMQ as event dispatcher for the Emperor
* fixed FreeBSD memory report
* PSGI plugin can be compiled without ithreads
* various Emperor fixes
* fixed a regression with setgroups()
* support for shared sockets (used in jails within network namespaces)
2011-04-08 12:26:29 +00:00
drochner
e3ded8e7b8 update to 1.0.9
changes:
Create shell-escape-safe cpp options in the non-pathetic-cpp case.
Fixes CVE-2011-0465.
2011-04-08 12:26:03 +00:00
obache
8056232d8e Updated www/asp2php to 0.77.3 2011-04-08 12:23:20 +00:00
obache
5a0772ef5b Update asp2php to 0.77.3.
November 26, 2006 -0.77.3

Fixed bugs:
1) A=0.65  now converts properly to $A=0.65;
2) Raised the length of parameters on function calls

Also changed
1) Request.ServerVariables("URL") to convert to $_SERVER["PHP_SELF"]

Not really a bug, but an issue when moving servers.

May 16, 2006 - 0.77.1

Matt Brown made the following additions/changes:

1) fixes key bugs in dictionary object support
2) fixes bug in filesystemobject.GetBaseName
3) fixes a couple of semi-colon generation issues
4) adds some support for filesystemobject.Attributes
5) an equal sign in an expression now gets recognized as a comparison
operator

Michael Kohn made the following changes:

1) fixed FormatCurrency so it adds a dollar sign infront of the number

May 14, 2006 - 0.77.0

Matt Brown made the following additions/changes:

1) support for server.execute
2) support for querystring("a").count and form("a").count
3) changed semantics of -phpx options. These now specify the target version.
Added -php5. Added -chgext option to include php version in the extensions
of the output files.
4) support for class constructors with -php4 and -php5.
5) support for class destructors, public and private with -php5.
6) fixed a few more bugs with single line if/then
7) added #define's for all token types and database types -- just for
readability.
8) changed gettoken so that it only returns single quote tokens when
processing jscript.
9) fixed response.expires
10) support for response.cachecontrol
11) improved "<" detection in parse_for_script
12) rudimentary support for virtual includes: a new -v option can be used to
specify a base path for virtual includes.
13) support for ByVal and ByRef
14) support for "is" in conditionals
15) support for vbSunday, etc constants
16) when parsing "sub(x,y,z)", eval_element is no longer called to process
x, y, and z.
17) support for DateSerial and DatePart functions
18) improved support for Now, Date, and Time functions (can call time() or
strftime depending on context)
19) added a -d option, which specifies a file and works like #include (calls
preparse). Useful for converting include files that depend on other
20) support for dictionary objects!

* several more FileSystemObject methods/properties (files, subfolders, size,
name, DateLastModified, GetBaseName)
* "\" in strings (gets converted to \\)
* some support for the ERR object
* in some cases getobject was getting called multiple times per token --
changed things around so that it is only called once
* limited support when "for each" is called against a collection of objects
(target var gets tracked as an object, just like set). As currently coded,
it correctly detects:

  Set colFiles=objFolder.Files
  For each objFile in colFiles

But does not detect:

  For each objFile in objFolder.Files

Michael Kohn made the following changes:

* Removed double dim array's sessionpool and aspextension.
* Changed the way session's are done by using $_SESSION

April 11, 2006 - 0.76.26

Matt Brown made the following changes:

1) mapped vbscript SPLIT function to php EXPLODE  (evalelement.c)

2) added support for vbscript MOD operator (evalelement.c)

3) corrected bug in handling of single-line if/then/else statements
(main_parser.c)

August 17, 2005 - 0.76.25

- Fixed a problem with Now()

June 23, 2005 - 0.76.24

- I was using system() calls to mkdir -p to make directories for a couple
of reasons 1) cause it would automatically create all dirs that didn't exist
and 2) cause it set up file permissions the way the system would want it.
this fails miserably on DOS (aka, Microsoft Windows) so I switched it now
to mkdir().  I'd still rather use mkdir -p, but owell.  Anyway, this should
fix problems with people using DOS (aka Microsoft Windows).

September 8, 2004 - 0.76.23

- Fixed a bug with &'s from version 0.76.22

September 6, 2004 - 0.76.22

- mysql.c was modified by Tursi to add a semicolon after mysql_query($arg)
- rnd() with a parameter added an extra ).  This is now fixed.
- date function changes
- added new command line switch for changing .asp text in response.write to .php
- hex literals are fixed

August 10, 2004 - 0.76.21
- the postgres conversion code has been updated.

January 11, 2004

Added FRAME to list of tags to change links from .asp to .php

December 8, 2003 - 0.76.19

Along with little bug fixes here and there, fixed a problem in the way functions
were converted. Also added a -fulltags option for creating PHP with tags that
look like this: <?php instead of <?.

May 3, 2002

Fixed a problem parsing functions that didn't have parenthesis around them.
Added some Filesystem conversion code. Added an option to convert DOS path's
with backslashes to Unix forward slashes (-fixwinpaths). Fixed a problem with
preparsing include files.
2011-04-08 12:23:04 +00:00
drochner
129c98a36b add a patch from upstream to avoid an endless loop in the extensions
parser on malicious packets (CVE-2010-3609)
2011-04-08 12:19:17 +00:00
obache
fa64dc24f1 Updated misc/fd to 3.00j 2011-04-08 11:35:01 +00:00
obache
f62cab3190 Update fd to 3.00j.
Ver. 3.00j	Failure of some HTTP redirection is fixed.
 (09/25/10)	Needless network access when URLDRIVE=1 is suppressed.
		Mis-parsing of the file list from some HTTP servers is fixed.
		Failure of INFO_FILESYS on MINIX is fixed.

Ver. 3.00i	Support MINIX 3.
 (07/24/10)	Support NetBSD 5.0.
		Changing to directory on some pseudo file system is allowed.
		Freezing of pseudo terminal with utf8-mac is fixed.
		Failure to convert Kanji code of startup argument is fixed.
		Broken shell output string with effective DEFKCODE is fixed.
		Failure to convert case letter on ShiftJIS is fixed.
		Miscount of items on customizer when changing tab is fixed.
		Misprint of string to map key code is fixed.
		Column overflow of Japanese filename on status line is fixed.
		Wrong cursor position when closing archive browser is fixed.
		Failed archive browser with here-document is fixed.
		Illegal newline code with archive browser is fixed. (MS-DOS)
		Invalid terminal input with internal shell on DJGPP is fixed.
		Unloadable newline (^J) from command history file is fixed.

Ver. 3.00h	Hang-up when 'PS1' internal variable includes \[...\] is fixed.
 (06/14/10)	Failure to compile with non-standard C compiler is fixed.
		Recursive call of malloc() in abortion is fixed.

Ver. 3.00g	Broken tree screen with unprintable directory name is fixed.
 (06/04/10)	Abortion when accessing directory with Japanese is fixed.
		Buffer overflow in Japanese string parser is fixed.

Ver. 3.00f	Mis-action of 'dir' builtin which differs from MS-DOS is fixed.
 (05/29/10)	Invalidated default attribute mask of 'dir' builtin is fixed.
		Abortion when canceling in COPY_TREE/MOVE_TREE is fixed.

Ver. 3.00e	Add mkdir_p.c for installation.
 (02/27/10)	Support Cygwin 1.7.1.
		Failure to compile with some non-ANSI C compilers is fixed.

Ver. 3.00d	Freezing by filename completion on some environments is fixed.
 (11/30/08)	Mis-identified path invoked as login shell via su(1) is fixed.
		Freezing by the large value set as 'HISTSIZE' is fixed.
		Bug that 'echo' builtin ignores anyone starts with - is fixed.
		Support function keys with some VT100 compatible terminals.
		Warning by ioctl() on 64bits BSDs is fixed.

Ver. 3.00c	Bug to garble the pasted string when INPUTKCODE=utf8 is fixed.
 (07/27/08)	Failure to access the root directory is fixed. (MS-DOS)
		Failure to be invoked on Windows NT is fixed. (MS-DOS)
		Illegal newline code for input/output is fixed. (MS-DOS)
		Failure to replace some strings in 'fc' builtin is fixed.

Ver. 3.00b	Failure to replace with $()/$(()) is fixed.
 (07/06/08)	Bug that some temporary files may remain is fixed.
		Freezing by here-document with huge size is fixed.
		Mis-substitution of variables with exit status is fixed.
		Failure to treat argument with '=' as substitution is fixed.
		Buffer overflow with the undefined floppy drive is fixed.
		Mis-operation for redirections with complex sentences is fixed.
		Bug that trap on exit cannot be executed suitably is fixed.
		Inaccurate value of 'LINENO' internal variable is fixed.
		Bug that newline cannot be allowed in 'case' sentence is fixed.
		Bug that ${} cannot include meta characters within "" is fixed.
		Mis-replacement for meta characters in here-document is fixed.
		Adjust representations for 'FD_VERSION' of each documents.
		Bug that 'FD_VERSION' may not be set is fixed.

Ver. 3.00a	Failure to replace the alias with no argument is fixed.
 (06/21/08)	Abortion with recursively invoked archive browser is fixed.
		Resolve a directory traversal vulnerability on the URL drive.
		Mis-implementation of telnet commands in FTP is fixed.
		Failure to compile on Solaris 8 is fixed.
		Adjust representations of each documents to Ver. 3.00.

Ver. 3.00	Add the URL drive function.
 (05/31/08)	Add scheme moditiers to access socket as redirect file.
		Support the message catalog.
		Abolish limits of each registrations.
		Support argument of EDIT_CONFIG as environment variable name.
		Add 'AUTOUPDATE' internal variable.
		Add 'VERSION' internal variable.
		Add 'URLDRIVE', 'URLKCODE', 'HIDEPASSWD' internal variables.
		Add 'URLOPTIONS', 'URLTIMEOUT' internal variables.
		Add 'FTPPROXY', 'FTPLOGFILE', 'FTPADDRESS' internal variables.
		Add 'HTTPPROXY', 'HTTPLOGFILE' internal variables.
		Add 'HTMLLOGFILE' internal variable.
		Add 'accept', 'socketinfo', 'addcr' builtins.
		Add -N option in 'echo' builtin.
		Add -N option in 'read' builtin.
		Add the formats of %w, %p, %B, %b, %/, %! for archive browser.
		Add the redirectees of '<>&', '><&' for duplication.
		Add the redirectees of '<>-', '<>&-', '><-', '><&-' for close.
		Change default file descriptor of '><' redirectee to stdout.

Ver. 2.09i	Failure to compile on Darwin 9.x (Mac OS X 10.5) is fixed.
 (04/19/08)	Odd screen when displaying some long file names is fixed.
		Failure to write directory for FAT file system is fixed.

Ver. 2.09h	Bug that ATTR_FILE/ATTR_DIR have sometimes no effect is fixed.
 (03/15/08)	Unsuitable error message with no controlling terminal is fixed.
		Odd completion choice list while shifting filename is fixed.

Ver. 2.09g	Abortion with no controlling terminal is fixed.
 (01/26/08)	Failure to find the startup directory is resolved partly.
		Failure to input some special keys is reduced.

Ver. 2.09f	Bug to garble the pasted string in some environments is fixed.
 (10/28/07)	Mis-inputted keys after dynamic variation of 'TERM' is fixed.
		Bug to ignore some configuration files on NFS is fixed.
		Failure with some builtins in non-interactive shell is fixed.
		Bug not to expand variables after '~' is fixed.

Ver. 2.09e	Freezing sometimes caused in 'copy' builtin is fixed.
 (09/16/07)	Abortion when missing the current directory is fixed.
		Wrong default file descriptor of '<>'/'><' redirectee is fixed.
		Incomplete check for the supplementary group is fixed.

Ver. 2.09d	Support Linux kernel 2.6.20.
 (04/26/07)	Progress key responses when INPUTKCODE=utf8.
		Abortion with accessing the empty directory is fixed.
		Inaccessiblity of the floppy drive with large size is fixed.

Ver. 2.09c	Failure to support Linux kernel 2.6.18 is fixed.
 (01/17/07)

Ver. 2.09b	Support Linux kernel 2.6.18.
 (12/22/06)	Bug that '..' is not accessible in floppy drive is fixed.
2011-04-08 11:34:44 +00:00
obache
1af1df7803 Updated mail/milter-manager to 1.6.7 2011-04-08 07:58:48 +00:00
obache
c8836c9911 Update milter-manager to 1.6.7.
== [release-1-6-7] 1.6.7: 2011-04-08

A bug fix release of 1.6.6.

=== All

==== Improvements

  * Don't create needless directories on install.
    [Reported by OBATA Akio]

==== Fixes

  * Fixed a bug that Ruby/GLib2 in system can't be found.
    [Reported by OBATA Akio]

=== Package

==== Fixes

  * [RPM] Fixed dependencies.
  * [Debian] Fixed dependencies.
  * [Debian] Don't use deprecated option in init script.
  * [RPM] Don't use deprecated option in init script.

=== milter-manager

==== Fixes

  * [S25R] Fixed a bug that milter is always run.

=== milter-core

==== Improvements

  * Added "+LEVEL1|LEVEL2|..." syntax to add log levels.
  * Added "-LEVEL1|LEVEL2|..." syntax to remove log levels.

=== milter-client

==== Improvements

  * Added --log-level option.
  * Added --quiet option.

=== Thanks

  * OBATA Akio

== [release-1-6-6] 1.6.6: 2011-04-07

This release improves Ruby support and Solaris support.

=== All

==== Improvements

  * Added --with-bundled-ruby-glib2 configure option for
    using bundled Ruby/GLib2 anytime.
  * Supported Solaris.

=== Document

==== Fixes

  * [Debian] add missing GROUP=postfix in configuration.
    [Reported by Jordao]

=== Package

==== Improvements

  * Supported Solaris.
  * Fedora 13 -> 14.

=== milter-core

==== Improvements

  * Set 'warning' log level by default.
  * Set 'statistics' log level by default.
  * Set 'message' log level by default.
  * Changed syslog level for statistics log to LOG_NOTICE
    level from LOG_INFO level .

==== Fixes

  * Fixed a memory leak on read error.

=== milter-manager

==== Improvements

  * Supported database connection.
  * Disabled S25R applicable condition for IPv6 connection
    by default. It's customizable by s25r.check_only_ipv4=.
  * Added --n-workers option.
  * Added --event-loop-backend option.
  * Supported log configuration in configuration file.

==== Fixes

  * Fixed a crash bug on reloading.
    [Reported by Kenji Shiono]

=== libmilter-compatible

==== Improvements

  * Supported event loop backend customize by environment
    variable:
    * MILTER_EVENT_LOOP_BACKEND=libev -> libev is used
    * MILTER_EVENT_LOOP_BACKEND=glib -> GLib is used (default)

=== milter-test-client

==== Improvements

  * Added --pid-file option.
  * Supported shutdown by SIGTERM.

=== milter-test-server

==== Improvements

  * Added --envelope-from option.
  * Deprecated --from option.
  * Added --envelope-recipient option.
  * Deprecated --recipient option.
  * Added --connect-macro option.
  * Added --helo-macro option.
  * Added --envelope-from-macro option.
  * Added --envelope-recipient-macro option.
  * Added --data-macro option.
  * Added --end-of-header-macro option.
  * Added --end-of-message-macro option.
  * Supported result body output in non-ASCII encoding.

=== milter-report-statistics

==== Improvements

  * Supported Solaris.
  * Added --pid option.
  * Added --pid-directory option.

=== Ruby milter

==== Improvements

  * Added --maintenance-interval option.
  * Added --run-gc-on-maintain option.
  * Added --environment option.
  * Added --max-file-descriptors option.
  * Added --pid-file option.
  * Added Milter::ClientSession#delete_header.
  * Added Milter::ClientSession#insert_header.
  * Added Milter::ClientSession#replace_body.
  * Added Milter::ClientSession#change_from.
  * Added. Milter::ClientSession#add_recipient.
  * Added Milter::ClientSession#delete_recipient.
  * Added Milter::ClientSession#delay_response.
  * Added Milter::ClientSession#progress.
  * Added Milter::ClientSession#discard.
  * Added Milter::EventLoop.
  * Supported configuration file.
  * Added Milter::SocketAddress#ipv4?.
  * Added Milter::SocketAddress#ipv6?.
  * Added Milter::SocketAddress#unix?.

==== Fixes

  * Fixed a crash bug.

=== Thanks

  * Jordao
  * Kenji Shiono
2011-04-08 07:58:16 +00:00
adam
e1325edca1 Updated devel/scmgit to 1.7.4.4 2011-04-08 07:29:30 +00:00
adam
d30bc123e8 Changes 1.7.4.4:
* Compilation of sha1_file.c on BSD platforms were broken due to our
  recent use of getrlimit() without including <sys/resource.h>.
* "git config" did not diagnose incorrect configuration variable names.
* "git format-patch" did not wrap a long subject line that resulted from
  rfc2047 encoding.
* "git instaweb" should work better again with plackup.
* "git log --max-count=4 -Sfoobar" now shows 4 commits that changes the
  number of occurrences of string "foobar"; it used to scan only for 4
  commits and then emitted only matching ones.
* "git log --first-parent --boundary $c^..$c" segfaulted on a merge.
* "git pull" into an empty branch should have behaved as if
  fast-forwarding from emptiness to the version being pulled, with
  the usual protection against overwriting untracked files.
* "git submodule" that is run while a merge in the superproject is in
  conflicted state tried to process each conflicted submodule up to
  three times.
* "git status" spent all the effort to notice racily-clean index entries
  but didn't update the index file to help later operations go faster in
  some cases.
2011-04-08 07:28:39 +00:00
taca
a78954fe5f Fix last ruby-actionpack3 line, it is www not devel. 2011-04-08 00:07:08 +00:00
hauke
52124e79be Updated mail/mailman to 2.1.14.1 2011-04-07 15:46:51 +00:00
hauke
72fa43728c Update Mailman to 2.1.14.1
Partly addresses pkg/25165.

From the package's NEWS file:

2.1.14 (20-Sep-2010)

  Security

    - Two potential XSS vulnerabilities have been identified and fixed.

  New Features

    - A new feature for controlling the addition/replacement of the Sender:
      header in outgoing mail has been implemented.  This allows a list owner
      to set include_sender_header on the list's General Options page in the
      admin GUI.  The default for this setting is Yes which preserves the prior
      behavior of removing any pre-existing Sender: and setting it to the
      list's -bounces address.  Setting this to No stops Mailman from adding or
      modifying the Sender: at all.

      Additionally, there is a new Defaults.py/mm_cfg.py setting
      ALLOW_SENDER_OVERRIDES which defaults to Yes but which can be set to No
      to remove the include_sender_header setting from General Options, and
      thus preserve the prior behavior completely.

    - Bounce processing has been enhanced so that if a bounce is returned to a
      list from a non-member who is a member of a regular_include_list, the
      bounce will be processed as a bounce for the included list.

  i18n

    - Fixed a missing format character in the German bin/mailmanctl docstring.

    - Updated Dutch translation from Jan Veuger.

    - Updated Japanese Translation from Tokio Kikuchi.

    - Updated Finnish translation from Joni Töyrylä.

    - Made a few corrections to some Polish templates.  Bug #566731.

    - Made a minor change to the Chinese (China) message catalog.  Bug #545772.

    - Changed a few DOCTYPE directives in templates for compliance.
      Bug #500952 and Bug #500955.

  Bug Fixes and other patches

    - Made minor wording improvements and typo corrections in some messages.
      Bug #426979.

    - Fixed i18n._() to catch exceptions due to bad formats.  Bug #632660.

    - Fixed admindb interface to decode base64 and quoted-printable encoded
      message body excerpts for display.  Bug #629738.

    - Fixed web CGI tracebacks to properly report sys.path.  Bug #615114.

    - Changed the member options login page unsubscribe request to include the
      requesters IP address in the confirmation request.  Bug #610527.

    - Changed fix_url to lock the list if not locked.  Bug #610364.

    - Made a minor change to the English subscribeack.txt (welcome message)
      template to emphasize that a password is only required to unsubscribe
      *without confirmation*.

    - Fixed an issue in admindb that could result in a KeyError and "we hit a
      bug" response when a moderator acts on a post that had been handled by
      someone else after the first moderator had retrieved it.  Bug #598671.

    - Fixed a bug which would fail to show a list on the admin and listinfo
      overview pages if its web_page_url contained a :port.  Bug # 597741.

    - Fixed bin/genaliases to not throw TypeError when MTA = None.
      Bug #587657.

    - Provided the ability to specify in mm_cfg.py a local domain (e.g.
      'localhost') for the local addresses in the generated virtual-mailman
      when MTA = 'Postfix'.  See VIRTUAL_MAILMAN_LOCAL_DOMAIN in Defaults.py.
      Bug #328907.

    - Made a minor change to the removal of an Approved: pseudo-header from
      a text/html alternative to allow for an inserted '\xA0' before the
      password.

    - Fixed Content Filtering collapse_alternatives to work on deeply nested
      multipart/alternative parts.  Bug #576675.

    - We now accept/remove X-Approved: and X-Approve: headers in addition to
      Approved: and Approve: for pre-approving posts.  Bug #557750.

    - Reordered the 'cancel' and 'subscribe' buttons on the subscription
      confirmation web page so the default action upon 'enter' will be the
      subscribe button in browsers that pick the first button.  Bug #530654.

    - Fixed a bug in the admindb interface that could apply a moderator
      action to a message not displayed.  Bug #533468.

    - Added a traceback to the log message produced when processing the
      digest.mbox throws an exception.

    - Added a urlhost argument to the MailList.MailList.Create() method to
      allow bin/newlist and the the create CGI to pass urlhost so the host
      will be correct in the listinfo link on the emptyarchive page.
      Bug #529100.

    - Added the List-Post header to the default list of headers retained in
      messages in the MIME digest.  Bug #526143.

    - When daemonizing mailmanctl, we now ensure terminal files are closed.

    - Fixed a bug in pipermail archiving that caused fallback threading by
      subject to fail.  Bug #266572.

    - We now give an HTTP 401 status for authentication failures from admin,
      admindb, private, options and roster CGIs, and an HTTP 404 status from
      all the CGIs for an invalid list name.

    - Backported the listinfo template change from the 2.2 branch to fix
      Bug #514050.

    - Fixed a bug where going to an archives/private/list.mbox/list.mbox URL
      would result in a munged URL if authentication was required. Bug #266164.

    - Fixed a bug where check_perms would throw an OSError if an entry in
      Mailman's lists/ directory was not a directory.  Bug #265613.

    - Fixed a bug where a message with an Approved: header held by a handler
      that precedes Approve (SpamDetect by default) would not have the
      Approved: header removed if the held message was approved.  Bug #501739.

2.1.13 (22-Dec-2009)

  i18n

    - Updated Dutch message catalog from Jan Veuger.

    - Added Asturian translation from Marcos Costales and the Asturian
      Language Team.

  Bug Fixes and other patches

    - Added "white-space: pre-wrap" style for <pre> tag in archives.
      Bug #266467.

    - Added vette logging for rejected and discarded (un)subscribe requests.

    - Fixed a bug in admindb.py that could erroneously discard an unsubscribe
      request as a duplicate.

    - Decoded RFC 2047 encoded message subjects for a few reports.
      Bug #266428.

    - Fixed the French, Spanish and Hebrew translations which improperly
      translated the 'coding:' line in bin/config_list output.

    - Fixed the auto-responder to treat messages to -confirm, -join, -leave,
      -subscribe and -unsubscribe as requests rather than posts.  Bug #427962.

    - Configure/make no longer builds Japanese and Korean codecs in
      pythonlib if Python already has them.

    - Inadvertently setting a null site or list password allowed access
      to a list's web admin interface without authentication.  Fixed by
      not accepting null passwords.

    - Changed VERP_CONFIRM_REGEXP  in Defaults.py to work if the replying
      MUA folds the To: header and in cases where the list name includes '+'.

    - Fixed some paths in contrib/check_perms_grsecurity.py. Bug #411192.

    - Replies to commands sent to list-request now come From: list-owner
      instead of list-bounces.

    - Mailman no longer folds long sub-part headers in multipart messages.
      In addition, Mailman no longer escapes From_ lines in the body of
      messages sent to regular list members, although MTA's may do it anyway.
      This is to avoid breaking signatures per Bug #265967.

    - XSS protection in the web interface went too far in escaping HTML
      entities.  Fixed.

    - Removed or anonymized additional headers in posts to anonymous lists.

    - Fixed a bug that could cause incorrect threading of replies to archived
      messages that arrive with timestamps in the same second.

    - Scrubbed HTML attachments containing tab characters would get the tabs
      replaced by a string of '&nbsp' without a semicolon.  Fixed.

    - Caught a TypeError in content filtering, collapse alternatives that
      occurred with a malformed message if a multipart/alternative part
      wasn't multi-part.  Reported in comments to bug #266230.

    - Fixed a few things in bin/update:
      - Changed some old messages for more current meaning.
      - Fixed qfiles update to not lose metadata from 2.1.5+ format entries.
      - Fixed 2.0.x template migration to not die if the templates/ tree
        contains subdirectories from a version control system.

    - Fixed a bug that would show a list on the admin and listinfo overview
      pages if its web_page_url host contained the current host as a
      substring.  Bug #342162.

    - Fixed a bug in Utils.canonstr() that would throw a UnicodeDecodeError
      if the string contained an HTML entity > 255 and also characters in the
      128-255 range.  Bug #341594.

    - Added recognition for more bounces.

    - Updated contrib/mmdsr to report preserved messages and to use mktemp to
      create temp files.
2011-04-07 15:45:37 +00:00
adam
db98dad112 Updated lang/clang to 2.9 2011-04-07 15:36:40 +00:00
hauke
5a4c8f9663 Point to the UPGRADING file, for those unhappy fellows who have to
upgrade an existing mailman installation.

Relevant for pkg/25165
2011-04-07 13:57:23 +00:00
is
0c7d254bcb format police 2011-04-07 13:18:23 +00:00
wiz
d8f994067c Sprinkle a few ${DESTDIR}. Most probably not enough, but I can't test this. 2011-04-07 13:17:14 +00:00
is
944ae569e5 DESTDIRize. 2011-04-07 12:53:05 +00:00
wiz
7f88fae30c Bump PKGREVISION for folks -> libfolks dependency change. 2011-04-07 12:28:45 +00:00
wiz
421bf61611 Make PKGNAME match directory name. Ok drochner@ 2011-04-07 12:28:02 +00:00
adam
d12c5a0d81 LLVM 2.9 includes several major new capabilities:
* Type Based Alias Analysis (TBAA) is now implemented and turned on by default
  in Clang. This allows substantially better load/store optimization in some
  cases. TBAA can be disabled by passing -fno-strict-aliasing.
* This release has seen a continued focus on quality of debug information. LLVM
  now generates much higher fidelity debug information, particularly when
  debugging optimized code.
* Inline assembly now supports multiple alternative constraints.
* A new backend for the NVIDIA PTX virtual ISA (used to target its GPUs) is
  under rapid development. It is not generally useful in 2.9, but is making
  rapid progress.
2011-04-07 09:26:33 +00:00
wiz
5ec58cf823 Revert most parts of previous, obache notes correctly it does not
work because everything is rebuilt when prefix changes.
2011-04-07 09:23:10 +00:00
obache
6016018e97 Updated security/policykit-gnome to 0.9.2nb6 2011-04-07 08:58:26 +00:00
obache
77638188c3 * set LICENSE=gnu-gpl-v2(tools part) AND gnu-lgpl-v2(library part).
* let to depend on dbus-glib, this package use it directly and already in
  buildlink3.mk.
* using desktopdb.mk for *.desktop files.

Bump PKGREVISION.
2011-04-07 08:58:12 +00:00
wiz
8132cf0337 Support destdir installation. 2011-04-07 08:37:24 +00:00
wiz
11d5907f04 Make USE_DESTDIR=yes default, and warn if a package is not converted
to destdir yet. Based on a patch by Greg Troxel.
2011-04-07 08:08:45 +00:00
wiz
259d383da0 Remove unneeded patch after update. 2011-04-07 07:36:05 +00:00
adam
2718f9f105 Added www/py-cherrypy version 3.2.0 2011-04-07 06:09:54 +00:00
obache
a5e4667052 Add RCS Id and remove redundant last part.
regen and let to be formal distinfo format.
2011-04-07 05:23:52 +00:00
taca
00d3e01ea4 Note update of lang/perl5 package to 5.12.2nb2. 2011-04-07 04:04:38 +00:00
taca
95d961dda2 Add a patch to fix for http://secunia.com/advisories/43921/ from perl's
git repository (539689e74a).

Bump PKGREVISION.
2011-04-07 04:03:57 +00:00
rh
916033cfff Note update of gnustep to 2.4.0 2011-04-07 02:26:55 +00:00
rh
c044ec7db5 Update the gnustep meta-package to 2.4.0 to reflect the changes in the
underlying packages.
2011-04-07 02:26:02 +00:00
rh
0fa9394f5c Note update of ProjectCenter to 0.6.0 2011-04-07 02:23:46 +00:00
rh
f245293c31 Update ProjectCenter to 0.6.0. Changes are mainly bugfixes and minor
improvements.
2011-04-07 02:23:06 +00:00
rh
283a71920f Note update of Gorm to 1.2.12 2011-04-07 02:21:21 +00:00
rh
f611cf0016 Update Gorm to 1.2.12. Notable changes include:
* Added a DO server which allows modification of internal data
     structures using a simple interface.

   * Tooltips now show the object name and the object type for
     informational purposes.

   * Opens default document when using NSWindows95InterfaceStyle.

   * Correction for some nib loading issues.

   * Limited support for standalone views.

   * Fixes for various bugs.
2011-04-07 02:20:30 +00:00