Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (1h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 01:48:37 UTC Now

2014-05-12 09:01:09 UTC MAIN commitmail json YAML

Updated sysutils/monit to 5.8

(imil)

2014-05-12 09:00:54 UTC MAIN commitmail json YAML

Updated monit to version 5.8

Version 5.8

New: Monit no longer purge the environment for sub-processes

New: Add command line option to view Monit ID (-i/--id)

New: Add command line option to reset Monit ID (-r/--resetid)

New: Add client support for using TLS version 1.1 and 1.2. A recent
1.x version of OpenSSL is required and of course that the server
speaks this TLS version. At this time, not many does. Example:
if failed port 443 with type TCPSSL tlsv11 protocol http  then alert

New: Process UID, EUID and GID tests. Allows to test if the
process is running as a given user. Example:
    check process syslog with pidfile /var/run/rsyslogd.pid
        if failed uid  "syslog" then alert
        if failed euid "syslog" then alert
        if failed gid  "syslog" then alert

New: Add WebSocket protocol test support for port check. Example:
    check host websocket.org with address "echo.websocket.org"
        if failed
          port 80 protocol websocket
          host "echo.websocket.org"
          request "/"
          origin "http://www.websocket.com"
          version 13
        then alert

New: Simplified HTTP protocol test to allow testing content without
creating an URL object. It is now possible to say in a more natural way,
check host mmonit.com with address mmonit.com
      if failed
          port 80 protocol http
          and request /monit/ with content = "Monit 5.7"
      then alert
meaning that if the page mmonit.com/monit does not contain the text
"Monit 5.7" then the test will fail. To reverse the test, i.e. to test
that the page should not contain a specific string simply use '!='
instead, like,
    if failed
      port 80 protocol http
      with content != "Nagios"
    then alert
Remember also that the string to test can be a regular expression

New: The HTTP protocol test now support testing the HTTP status code
returned by the server by using "status <operator> <number>".
Backward compatible defaults (return error if status >= 400):
    if failed
      port 80 protocol http
      and status < 400
    then alert
Return error if a page DOES exist (for success 404 is expected):
    if failed
      port 80 protocol http
      request "/non/existent.php"
      status = 404
    then alert

Fixed: Unix Socket test now use the communication type (TCP or UDP)
specified in port statement. Previously TCP was always used.

Fixed: Improved test to check if a socket was connected. Since we use
non-blocking connect, we now poll a few ms to avoid "connection failed,
XXX is not ready for i|o" errors which could occur, especially on high
latency networks or long distance connect.

Fixed: Simplified if-statements reported in UI

Fixed: Ignore lines starting with '#' in an 'allow htpasswd' file
statement. Thanks to Michael Bakker for reporting the issue

Fixed: Show service restart program on Monit startup in debug mode.
Thanks to Michael Bakker for reporting the issue

Version 5.7

New: Merged https://bitbucket.org/tildeslash/monit/pull-request/1/
from Philippe Kueck:
1) Handle sockets (unix domain) as regular files when checking timestamp.
2) Use mysql 4.1 protocol in MySQL check, required for checking mysql-proxy
3) Skip connection checks during startup timeout.

New: Arguments added to 'check program'. Arguments are whitespace
separated strings. For instance:

  check program list-files with path "/bin/ls -l -r -t /tmp"
        if status != 0 then alert

New: Implemented restart as an optional service action. When Monit
is called to restart a service, it previously called the stop
program registered with the service and then the start program.
Now, if a restart program is registred with the service, this
will be called instead, otherwise Monit fall back to its old
behaviour. Example:

  check process apache with pidfile /var/run/httpd.pid
        start  = "/usr/sbin/apachectl start"
        stop    = "/usr/sbin/apachectl stop"
        restart = "/usr/sbin/apachectl restart" <- New

New: Improved communication with M/Monit. Thanks to Hippo Lin. For
scalability purpose, this Monit version should only be used with
M/Monit version 3.1 or later.

BUGFIXES:

* Monit stopped if an error occurred during MTA connection close.
* Make the Memcache protocol test faster.
* Solaris zone: fix system memory usage report.
* Use chiper list with SSL server instead of relying on default

(imil)

2014-05-12 07:08:59 UTC MAIN commitmail json YAML

+ libnice-0.1.7, memcached-1.4.20, notmuch-0.18, py-gstreamer0.10-1.2.1,
  py-markupsafe-0.23, py-setuptools-3.6, py-tornado-3.2.1,
  raptor2-2.0.14, redland-1.0.17.1, solarus-1.2.0, x264-devel-20140510.

(wiz)

2014-05-12 03:12:14 UTC MAIN commitmail json YAML

Note PKGREVISION bump of doxygen

(minskim)

2014-05-12 03:10:57 UTC MAIN commitmail json YAML

Let doxygen depend on Type 1 CM font packages

This prevents mktexpk from being called to create bitmap fonts for
TS1-encoded CM fonts.

This should fix PR 48762.

(minskim)

2014-05-11 23:42:10 UTC MAIN commitmail json YAML

State the package's licence.

(dsainty)

2014-05-11 20:56:16 UTC MAIN commitmail json YAML

2014-05-11 16:55:17 UTC MAIN commitmail json YAML

2014-05-11 16:30:08 UTC MAIN commitmail json YAML

really fixed manu's typo this time...

(imil)

2014-05-11 16:28:55 UTC MAIN commitmail json YAML

Added devel/py-daemonize version 2.2.3 (and fixed manu typo)

(imil)

2014-05-11 16:27:05 UTC MAIN commitmail json YAML

add & enable py-daemonize

(imil)

2014-05-11 16:26:14 UTC MAIN commitmail json YAML

Initial import of py-daemonize, version 2.2.3, into the NetBSD Packages
Collection.

daemonize is a library for writing system daemons in Python. It has some bits
from daemonize.sourceforge.net. It is distributed under MIT license.

(imil)

2014-05-11 13:23:03 UTC MAIN commitmail json YAML

Update distinfo after reverting patch files by joerg@.

(taca)

2014-05-11 11:20:48 UTC MAIN commitmail json YAML

2014-05-11 10:16:40 UTC MAIN commitmail json YAML

2014-05-11 10:15:34 UTC MAIN commitmail json YAML

2014-05-11 10:07:44 UTC MAIN commitmail json YAML

Note update of Ruby on Rails 3.2.18 related packages.

devel/ruby-activesupport32
devel/ruby-activemodel32
databases/ruby-activerecord32
www/ruby-activeresource32
www/ruby-actionpack32
mail/ruby-actionmailer32
devel/ruby-railties32
www/ruby-rails32

(taca)

2014-05-11 10:07:03 UTC MAIN commitmail json YAML

+ Mesa-10.1.3, MesaLib-10.1.3, cdrtools-3.01alpha24, clang-3.4.1,
  easytag-2.2.2, glu-10.1.3, lftp-4.4.16, mcabber-0.10.3,
  phpmyadmin-4.2.0, silc-1.1.11, silc-server-1.1.19, typo3-6.2.2.

(wiz)

2014-05-11 10:06:17 UTC MAIN commitmail json YAML

Update www/ruby-rails32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:05:44 UTC MAIN commitmail json YAML

Update devel/ruby-railties32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:04:58 UTC MAIN commitmail json YAML

Update mail/ruby-actionmailer32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:04:15 UTC MAIN commitmail json YAML

Update www/ruby-actionpack32 to 3.2.18.

## Rails 3.2.18 (May 6, 2014) ##

*  Only accept actions without File::SEPARATOR in the name.

    This will avoid directory traversal in implicit render.

    Fixes: CVE-2014-0130

    *Rafael Mendonça França*

(taca)

2014-05-11 10:03:00 UTC MAIN commitmail json YAML

Update www/ruby-activeresource32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:02:32 UTC MAIN commitmail json YAML

Update databases/ruby-activerecord32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:02:01 UTC MAIN commitmail json YAML

Update devel/ruby-activemodel32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:01:28 UTC MAIN commitmail json YAML

Update devel/ruby-activesupport32 to 3.2.18.

No change except version number.

(taca)

2014-05-11 10:00:59 UTC MAIN commitmail json YAML

Start update of Ruby on Rails to 3.2.18.

(taca)

2014-05-11 09:59:58 UTC MAIN commitmail json YAML

Note update of www/drupal7 package to 7.28.

(taca)

2014-05-11 09:59:21 UTC MAIN commitmail json YAML

Update drupal7 to 7.28.

Drupal 7.28, 2014-05-08
-----------------------
- Fixed a regression introduced in Drupal 7.27 that caused JavaScript to break
  on older browsers (such as Internet Explorer 8 and earlier) when Ajax was
  used.
- Increased the timeout used by the Update Manager module when it fetches data
  from drupal.org (from 5 seconds to 30 seconds), to work around a problem
  which causes incomplete information about security updates to be presented to
  site administrators. This fix may lead to a performance slowdown on the
  Update Manager administration pages, when installing Drupal distributions,
  and (for sites that use the automated cron feature) on occasional page loads
  by site visitors.
- Fixed the behavior of the token system's "[node:summary]" token when the body
  field does not have a manual summary.
- Changed the behavior of db_query_temporary() so that it works on SELECT
  queries even when they have leading comments/whitespace. A side effect of
  this fix is that db_query_temporary() will now fail with an error if it is
  ever used on non-SELECT queries.
- Added a "node_admin_filter" tag to the database query used to build the list
  of nodes on the content administration page, to make it easier to alter.
- Made the cron queue system log any exceptions that are thrown while an item
  in the queue is being processed, rather than stopping the entire PHP request.
- Improved screen reader support by adding an aria-live HTML attribute to file
  upload fields when there is an error uploading the file (minor markup
  change).
- Made the pager on the Tracker module listing pages show the same number of
  items as other pagers throughout Drupal core (minor UI change).
- Fixed a bug which caused caches not to be properly cleared when a file entity
  was saved or deleted.
- Added several missing countries to the default list returned by
  country_get_list() (string change).
- Replaced the term "weight" with "influence" in the content ranking settings
  for search, and added help text for administrators (string change).
- Fixed untranslatable text strings in the administrative interface for the
  "Crop" effect provided by the Image module (minor string change).
- Fixed a bug in the Taxonomy module update function introduced in Drupal 7.26
  that caused memory and CPU problems on sites with very large numbers of
  unpublished nodes.
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

(taca)

2014-05-11 09:57:47 UTC MAIN commitmail json YAML

Note update of mail/sylpheed package to 3.4.1.

(taca)

2014-05-11 09:57:22 UTC MAIN commitmail json YAML

Update sylpheed to 3.4.1.

* 3.4.1 (stable)

    * Fixed Bug #193: Lose mails when mailbox is inaccessible.

* 3.4.0 (stable)
* 3.4.0rc (release candidate)

    * SSL wildcard certificate is also validated now (#167).
    * The compile error with OpenSSL disabled was fixed.

* 3.4.0beta8 (development)

    * Mac OS X support was improved.
    * SSL certificate hostname is validated now (#167).
    * The Japanese manual was modified so that IE correctly detect its
      character encoding.
    * The rightmost column of folder view and summary view became easier to
      resize.
    * Appropriate columns of folder view, summary view, etc. are
      auto-expanded by window resize when using GTK+ 2.14 or later.
    * The initial setup dialog is now resizabe.
    * PGP encrypt-to-self feature was added.
    * The display period of notification window became configurable.

* 3.4.0beta7 (development)

    * Win32: the tray icon is recreated when explorer.exe crashes now.
    * The bug that 'File - Folder - Move folder...' menu didn't work was
      fixed.
    * The bug that MIME nest level restriction was not working was fixed.
    * Many defects discovered by Coverity Scan were fixed:
      - FILE handle resource leaks
      - memory leaks
      - possible buffer overrun
      - strict error checks
      - correct null pointer checks

* 3.4.0beta6 (development)

    * Icon theme feature was added.
    * HTML mail is distinguished from other messages with attachments now.
    * 'Last 30 days' was added to the quick search menu.
    * Attached images are rotated based on Exif orientation tag.
    * Config.guess and config.sub included in the tarball were updated to the
      latest version.

* 3.4.0beta5 (development)

    * Basque translation was added.
    * Escaped special characters in HTML links are now properly unescaped
      (#120).
    * IMAP: parsing of folder names that contain brackets was fixed.
    * Config.guess and config.sub included in the tarball were updated.
    * The order of templates became stable.

* 3.4.0beta4 (development)

    * The feature to save message as plain text was added.
    * Printing now prints all texts in messages, not only the first one.
    * The HTML parser now supports <blockquote> tag.
    * An option to prefer HTML part in multipart/alternative was added
      (default: off).
    * Compose window is raised when the external editor exits.
    * Bugfixes of HTML display were made.

* 3.4.0beta3 (development)

    * Rebuilding of folder tree which was broken at 3.4.0beta1 was fixed
      (#103).
    * The bug that double-quote (") and backslash (\) in
      folder/username/password were not escaped and could not be used on IMAP4
      was fixed.
    * Quotation of forwarded messages is enabled for template now.
    * When marking a message as junk and moving it to a junk folder, proper
      junk folder is selected instead of default one.
    * When applying a template for a new message, current date is inserted
      with '%d'.

* 3.4.0beta2 (development)

    * New message notification window was added.
    * An option to the junk filter setting was added:
      'Do not classify message as junk if sender is in the address book'.
    * Some non-standard Date header patterns are handled now.
    * Win32: start menu shortcuts are translated.

* 3.4.0beta1 (development)

    * Safe mode (which does not load plug-ins) was added (--safe-mode).
    * The existence of destination folders are checked when creating a filter
      rule.
    * The recursion level is restricted up to 64 when scanning local mailbox
      (prevents infinite loop with symlink. Note: Linux automatically limits
      the symlink loop up to 40)
    * The labels used in POP3 remote mailbox dialog was modified.
    * POP3: do not disconnect immediately but send QUIT command on normal
      POP3 errors (prevents deleted messages appear again).
    * IMAP: "INBOX" folder became case insensitive as specified in RFC 3501.
    * IMAP: server name for cache directory is escaped now
      (fixes cache creation when using IPv6 address for server name on Windows).
    * Win32: socket timeout setting now works on Windows.

(taca)

2014-05-11 09:55:50 UTC MAIN commitmail json YAML

Note update of mail/postfix package to 2.11.1.

(taca)

2014-05-11 09:54:54 UTC MAIN commitmail json YAML

Update postfix to 2.11.1.

Bugfixes (fixed in Postfix 2.11 and Postfix 2.12):

  * With connection caching enabled (the default), recipients could
    be given to the wrong mail server. The root cause was an incorrect
    predicate. Due to this, the Postfix SMTP client could under
    rare conditions save and restore plaintext connections that
    should not be cached, under a fixed lookup key that did not
    distinguish by destination.  Problem reported by Sahil Tandon.

  * Enforce TLS when TLSA records exist, but all are unusable.

  * Don't leak memory when TLSA records exist, but all are unusable.

Workarounds:

  * Prepend "-I. -I../../include" to the compiler command-line
    options, to avoid name clashes with non-Postfix header files.

Documentation cleanup:

  * Corrected postconf(1) manpage for missing version attribution
    and incorrect "author" formatting.

  * The documentation for Postfix > 2.8 TLS activity logging was
    incorrect. Loglevel 0 produces no logging. Instead, information
    is logged only with loglevel 1 or higher.

Logging cleanup:

  * The TLS client logged that an "Untrusted" TLS connection was
    established instead of "Anonymous".

  * For consistency, TLS policy lookup errors are now logged as
    warnings.

(taca)

2014-05-11 04:59:07 UTC MAIN commitmail json YAML

Fix build failure on platforms where O_CLOEXEC is not available (e.g. MacOS X < 10.7)

(pho)

2014-05-11 02:25:34 UTC MAIN commitmail json YAML

Not MAKE_JOBS_SAFE, it appears.

(dsainty)

2014-05-11 02:19:23 UTC MAIN commitmail json YAML

2014-05-11 02:19:04 UTC MAIN commitmail json YAML

Fall back to fixed (like elsewhere in the program) if helvetica is
missing, instead of bombing. Helps if people forget to install X
fonts, or if their native X fonts are messed up. PKGREVISION -> 8

(dholland)

2014-05-10 23:03:25 UTC MAIN commitmail json YAML

Remove hack for OpenBSD
The problem should be fixed with PR pkg/48793.

(ryoon)

2014-05-10 23:01:26 UTC MAIN commitmail json YAML

Update to 20140510
Fix PR pkg/48793: treat OpenBSD 5.4 or later as ELF platform
Patch from obache@, thank you.

(ryoon)

2014-05-10 22:45:42 UTC MAIN commitmail json YAML

2014-05-10 22:41:03 UTC MAIN commitmail json YAML

2014-05-10 22:38:40 UTC MAIN commitmail json YAML

Updated multimedia/libhdhomerun to 20140121

(jakllsch)

2014-05-10 22:37:52 UTC MAIN commitmail json YAML

Update libhdhomerun to 20140121.

Upstream changelog:
- License changed to LGPL 2.1.
- Improvements to socket handling on Mac/Linux.
- Corrections to EU channel map.
- Increase firmware upload chunk size.

(jakllsch)

2014-05-10 16:47:46 UTC MAIN commitmail json YAML

Updated devel/git to 1.9.3

(adam)

2014-05-10 16:39:07 UTC MAIN commitmail json YAML

Autoconfigure NetBSD VM on OpenStack

(manu)

2014-05-10 16:38:03 UTC MAIN commitmail json YAML

2014-05-10 15:46:52 UTC MAIN commitmail json YAML

Add missing six dependency. Bump revision.

(joerg)

2014-05-10 15:32:08 UTC MAIN commitmail json YAML

2014-05-10 15:19:40 UTC MAIN commitmail json YAML

Updated fonts/koruri-ttf to 20140510

(nonaka)

2014-05-10 15:17:22 UTC MAIN commitmail json YAML

Update koruri-ttf to 20140510.

20140510:
* Fixed the problem that Koruri-Light.ttf is not a valid font file in the Windows environment.

(nonaka)

2014-05-10 14:38:26 UTC MAIN commitmail json YAML

Fix INSTALLATION_DIRS to only append allowing SunOS smf support to work
adding -lresolv to prevent linker unresolved symbols in site.config.m4
for SunOS as well.

(richard)

2014-05-10 14:14:59 UTC MAIN commitmail json YAML

2014-05-10 13:45:57 UTC MAIN commitmail json YAML

revbump perl after update

(richard)

2014-05-10 13:45:20 UTC MAIN commitmail json YAML

revbump cups after update

(richard)

2014-05-10 13:42:08 UTC MAIN commitmail json YAML

2014-05-10 13:39:57 UTC MAIN commitmail json YAML

Put back -fstack-protector on solaris in perl after libtool fix.

(richard)

2014-05-10 13:35:59 UTC MAIN commitmail json YAML

revbump libtool-base after libtool patches

(richard)

2014-05-10 13:35:10 UTC MAIN commitmail json YAML

2014-05-10 13:29:41 UTC MAIN commitmail json YAML

Permit libtool to generate -fstack-protector* on all platforms in --mode=link
while suppressing -nostdlib (for the moment on SunOS g++ platforms only)
allowing it to actually work with g++... gcc was never affected by -nostdlib.

(richard)

2014-05-10 11:44:29 UTC MAIN commitmail json YAML

Hack for PR pkg/48500 is also required by OpenBSD-*-alpha.

(obache)

2014-05-10 11:43:30 UTC MAIN commitmail json YAML

Changes 1.9.3:
* "git p4" dealing with changes in binary files were broken by a
  change in 1.9 release.
* The shell prompt script (in contrib/), when using the PROMPT_COMMAND
  interface, used an unsafe construct when showing the branch name in
  $PS1.
* "git rebase" used a POSIX shell construct FreeBSD /bin/sh does not
  work well with.
* Some more Unicode codepoints defined in Unicode 6.3 as having
  zero width have been taught to our display column counting logic.
* Some tests used shell constructs that did not work well on
  FreeBSD.

(adam)

2014-05-10 10:00:38 UTC MAIN commitmail json YAML

2014-05-10 09:53:43 UTC MAIN commitmail json YAML

threads supports for OpenBSD (not completed yet)
PR pkg/48786

(obache)

2014-05-10 08:38:04 UTC MAIN commitmail json YAML

2014-05-10 08:11:02 UTC MAIN commitmail json YAML

2014-05-10 06:52:03 UTC MAIN commitmail json YAML

2014-05-10 06:10:19 UTC MAIN commitmail json YAML

GCC >= 4.4 is not required for architectures without ssse3.

(pho)

2014-05-10 04:35:55 UTC MAIN commitmail json YAML

fixes again, for the case pkgsrc openssl is prefered than builtin old openssl.

(obache)

2014-05-10 04:32:36 UTC MAIN commitmail json YAML

fixes again, for the case pkgsrc openssl is prefered than builtin old openssl.

(obache)

2014-05-10 04:25:40 UTC MAIN commitmail json YAML

Let to be failed if no suituable python version.

(obache)

2014-05-10 04:09:41 UTC MAIN commitmail json YAML

2014-05-10 00:00:05 UTC MAIN commitmail json YAML

www/aws-demos: Fix libz and libssl paths

The libz and libssl paths were not correctly specified. To correct,
BUILDLINK_PREFIX has been used.

(marino)

2014-05-09 23:58:21 UTC MAIN commitmail json YAML

www/aws: Link aws tools with runpath to libssl

The aws tools were linked to libssl without rpath.  If libssl is not
located in a standard library search path, the rtld will not be able
to find it (as seen on Joyent dev area).

This change links the libssl runpath to the tools.

(marino)

2014-05-09 22:45:15 UTC MAIN commitmail json YAML

www/aws: Fix build for different zlib and libssl locations

The configuration for the location of libz and libssl both were wrong,
and they were corrected with their respective BUILDLINK_PREFIX.

In addition, regardless of where libssl is located, the standard location
(/usr/include) was searched instead of relative to the library.  This
required a patch to the GPR build in order to pass -I<loc> to the
compilation of C files.

The unnecessary removal of empty directories was removed as SunOS find
does not support the -empty switch.

Tested on Joyent dev area where both libz and libssl are not at /usr/lib.

(marino)

2014-05-09 21:37:19 UTC MAIN commitmail json YAML

Updated net/py-irclib to 8.9

(imil)

2014-05-09 21:37:03 UTC MAIN commitmail json YAML

Updated to version 8.9

8.9
    Documentation is now published at https://pythonhosted.org/irc.

8.8
    Issue #35: Removed the mutex during process_once.
    Issue #37: Deprecated buffer.LineBuffer for Python 3.

8.7
    Issue #34: Introduced buffer.LenientDecodingLineBuffer for handling input
    in a more lenient way, preferring UTF-8 but falling back to latin-1 if the
    content cannot be decoded as UTF-8.

8.6
    Introduced 'Manifold' as an alias for irc.client.IRC. This better name will
    replace the IRC name in a future version.
    Introduced the 'manifold' property of SimpleIRCClient as an alias for
    ircobj.
    Added 'manifold_class' property to the client.SimpleIRCClient to allow
    consumers to provide a customized Manifold.

(imil)

2014-05-09 21:32:20 UTC MAIN commitmail json YAML

Added devel/py-jaraco_util version 10.0.2

(imil)

2014-05-09 21:31:10 UTC MAIN commitmail json YAML

add & enable py-jaraco_util

(imil)

2014-05-09 21:30:26 UTC MAIN commitmail json YAML

Initial import of py-jaraco_util, version 10.0.2, into the NetBSD Packages
Collection.

jaraco.util contains a number of nominally useful, reusable classes and
functions. They're designed to be intuitively named and self-documenting
(many with extensive doctests).

(imil)

2014-05-09 21:25:47 UTC MAIN commitmail json YAML

Added devel/py-more-itertools version 2.2

(imil)

2014-05-09 21:23:49 UTC MAIN commitmail json YAML

add & enable py-more-itertools

(imil)

2014-05-09 21:22:37 UTC MAIN commitmail json YAML

Initial import of py-more-itertools, version 2.2, into the NetBSD Packages
Collection.

A collection of several routines not found in itertools, meant to operate on
itertables.

(imil)

2014-05-09 18:37:34 UTC MAIN commitmail json YAML

devel/gps: Fix build on SunOS by using COMPILER_RPATH_FLAG

The SunOS linker doesn't understand -rpath, so replace it with
COMPILER_RPATH_FLAG to fix build on SunOS.

Also removing empty directories in the post-install target is not
necessary on pkgsrc.  The SunOS find program doesn't recognize -empty
switch, remove the redundant command to avoid error messages.

(marino)

2014-05-09 18:10:16 UTC MAIN commitmail json YAML

Fix build on NetBSD-current, patch from Anon.
While here: set LICENSE, add comments to patches.

(wiz)

2014-05-09 17:19:49 UTC MAIN commitmail json YAML

Note update of rxvt-unicode

(morr)

2014-05-09 17:18:48 UTC MAIN commitmail json YAML

Update to version 9.20, including security fix.

Changes:
- (libptytty) fix bug that prevented urxvtd from writing utmp
  entries when using --fork (reported by Ryan Kavanagh).
- security bugfix: window property values could be queried even
  in secure mode (reported by Phillip Hallam-Baker).
- fix build when perl is enabled and fading is disabled.
- fix regression that broke continuous scrolling when pressing
  and holding the scrollbar up or down button, gentoo bug #493992.
- increase the maximum length of a command sequence to 32k bytes,
  to allow longer OSC sequences (previous limit was 2k).
- new Ctrl-Meta-c and Ctrl-Meta-v bindings to interact with
  the CLIPBOARD selection.
- new extension: selection-to-clipboard.
- the extensions macosx-clipboard and macosx-clipboard-native
  are deprecated and will be removed in the next release.
  Support for the clipboard on OS X can be more generally
  enabled by setting the XQuartz preference to sync the OS X
  pasteboard and the X11 clipboard.

(morr)

2014-05-09 16:53:27 UTC MAIN commitmail json YAML

Updated misc/calibre to 1.36.0

(wiz)

2014-05-09 16:53:16 UTC MAIN commitmail json YAML

Update to 1.36.0:

- version: 1.36.0
  date: 2014-05-09

  new features:
    - title: "Edit Book: A new tool to filter style information
    (Tools->Filter style information). Useful to easily remove some
    CSS properties from the entire book."

    - title: "DOCX Input: Add support for cross references. Cross
    references that are used to insert hyperlinks are now converted
    into hyperlinks in the output document. Features to insert
    paragraph/page numbers are not supported."

    - title: "Add support for viewing kepub files in the calibre
    viewer, by treating them as plain epub files"

    - title: "Edit book: In the Insert Link tool show a few words
    of text alongside the location anchor name, to make it easier
    to know what a location is"

    - title: "Manage user dictionaries: Allow copying all selected
    words by right clicking them and choosing 'Copy to clipboard'."

    - title: "Content server: Make .ibook format files available
    in OPDS feeds"

    - title: "Edit book: Allow copying the list of errors from the
    Check Book tool to the clipboard by right clicking on the list
    of errors"

    - title: "Book polishing: If the books being polished have an
    ORIGINAL_EPUB/AZW3 format, warn the user that polishing will
    use it as the source and ask for confirmation."

  bug fixes:
    - title: "Fix metadata plugin to download metadata from OZON
    for website changes."

    - title: "Subsetting embedded fonts: Fix an error when subsetting
    embedded fonts on windows if the username contains quotes or
    apostrophes."

    - title: "Edit Book: Fix error when checking spelling if one
    of the files in the book declares an invalid (empty) language
    code."

    - title: "Linux install: Have the calibre GUI programs redirect
    stdout and stderr to null when launched via .desktop files to
    workaround systems where the GUI launchers are broken."

    - title: "Edit Book: Fix inserting a < in text that contains
    a colon causing a hang."

    - title: "DOCX Input: Fix error when converting document with
    nested frames."

  improved recipes:
    - Various Japanese news sources
    - National Geographic

(wiz)

2014-05-09 16:33:56 UTC MAIN commitmail json YAML

2014-05-09 16:33:29 UTC MAIN commitmail json YAML

2014-05-09 16:20:33 UTC MAIN commitmail json YAML

Updated wm/notion to 3.2014010900

(wiz)

2014-05-09 16:20:24 UTC MAIN commitmail json YAML

Update to 20140109.
Changes not found, but notionflux now has a man page, and the
support scripts were reorganized.

(wiz)

2014-05-09 15:48:27 UTC MAIN commitmail json YAML

Updated databases/p5-MARC-XML to 1.0.3

(wen)

2014-05-09 15:46:12 UTC MAIN commitmail json YAML

Update to 1.0.3

Upstream changes:
1.0.3 Thu Jan 23 05:02:52 UTC 2014
      - fix t/external-entities.t to pass on Strawberry

1.0.2 Tue Jan 21 17:18:37 UTC 2014
      - MARC::File::XML will now die upon parsing a record that
        declares an external entity and tries to use it. This
        prevents the potential unwanted disclosure of the contents
        of files on the server by applications that embed this module.
        If, for some reason, an application needs to process MARCXML
        records that contain external entities, set_parser() can be
        used to force the use of an XML::LibXML parser that is
        configured to process external entities.

        The issue was reported by John Lightsey.

1.0.1 Fri Feb 15 08:25:04 PST 2013
      - RT#83284: return empty MARC::Record given empty <record/>

1.0  Sun Feb 10 21:32:32 PST 2013
      - Use XML::LibXML rather than XML::SAX to parse MARCXML records.
        This offers a significant speed improvement for record parsing;
        in some tests, parsing time on a large file was reduced by 80%.
        This also avoids problems caused by character encoding bugs in
        XML::SAX::PurePerl.
      - Add method to let client code give MARC::File::XML a shared
        XML::LibXML parser object.

(wen)

2014-05-09 15:29:41 UTC MAIN commitmail json YAML

Updated net/fping to 3.10. OK abs@

(sborrill)

2014-05-09 15:28:53 UTC MAIN commitmail json YAML

Update to fping 3.10.

Changes:
2014-05-03  David Schweikert  <david@schweikert.ch>
  * Version 3.10
  * Fix confusing error message with -g and IPv6 addresses (#58, reported by
  * Axel Beckert)
  * Allow option '-f' also for non-root (since setuid privileges are
  * dropped)
  * Do not retry twice DNS lookup on DNS lookup problem
  * Remove support for NIS groups
  * Better document -B backoff-factor and when it can be used (#33, Oleksiy
  * Zagorskyi)
  * More tests added

2014-03-08  David Schweikert  <david@schweikert.ch>
  * Version 3.9
  * Fix random output on socket error (reported by Aleksandrs Saveljevs,
  * #56)
  * Support ppc64le architecture by including alpha libtool version
    (reported by Amit Kumar Gupta and Aravinda B Thunug)
  * Fix compilation problem on FreeBSD (#57)
  * Initial test suite and continous intergration (with travis-ci.org /
  * coveralls.io)
  * Don't output usage information on error

2013-11-08  David Schweikert  <david@schweikert.ch>
  * Version 3.8
  * Fix segmentation fault introduced in version 3.7 with loop mode
  * (reported
    by Vlad Glagolev, #55)

2013-11-04  David Schweikert  <david@schweikert.ch>
  * Version 3.7
  * Allow running as non-root on Mac OS X by using non-privileged ICMP (#7)
  * Remove unnecessary IPv6 socket options
  * Fix again compatibility issue with FreeBSD (Shawn Chu)
  * Fix fping hanging forever on permanent sendto failure (Shawn Chu)
  * Fix duplicate echo reply packets causing early stop in count mode
    (reported by Ramon Schwammberger, #53)

2013-10-10  David Schweikert  <david@schweikert.ch>
  * Version 3.6
  * Fix loop issue after 65536 pings (reported by Peter Folk and GBert, #12)
  * Minimum ping data size is now 0
  * Removed setsockopt IPV6_CHECKSUM, which shouldn't be set and breaks
    compiling on Solaris (reported by Juergen Arndt)
  * Fix wrong min RTT value with -Q option (reported by Alexander Ivanov,
  * #51)

2013-05-22  David Schweikert  <david@schweikert.ch>
  * Version 3.5
  * Fix sprint_tm buffer size crash (reported by Japheth Cleaver)
  * Addded -D flag to print timestamps (Toke H�iland-J�rgensen)
  * Fix fping6 build on OS X 10.8 (unknown contributor)
  * Fix compatibility issue with FreeBSD (Alexandre Raynaud, Jason Harris,
  * #39)
  * Fping.spec: fix setuid permissions and provides fping6 (Marcus Vinicius
  * Ferreira)
  * Re-create configure script with autoconf 2.69 for aarch64 support (Chuck
  * Anderson, #45)

2012-09-04  David Schweikert  <david@schweikert.ch>
  * Version 3.4
  * Revert "Output statistics to stdout instead of stderr", because it
  * breaks
    tools assuming the output goes to stderr

2012-08-19  David Schweikert  <david@schweikert.ch>
  * Version 3.3
  * Do not output icmp errors with -q (#1)
  * Add --enable-ipv4 and --enable-ipv6 options to configure (Niclas
  * Zeising)
  * Fix removing of unreachable hosts when doing loop (Thomas Liske, #13
  * #23)
  * Fix -A for fping6 (reported by Matt LaPlante, #14)
  * Fix "options inet6" breaking IPv4 name resolution (reported by Matt
  * LaPlante, #17)
  * Output statistics to stdout instead of stderr (suggested by Simon
  * Leinen, #9)
  * Set default data size to 56 bytes on all architectures (#18)
  * Added contrib/fping.spec (Stephen Schaefer, #24)
  * Convert man-page source to POD for easier maintenance
  * Fix error message on DNS error for IPv6 hosts (#27)
  * Fix -n flag in fping6 (#28)
  * Man-page fix: TOS option typo (Thomas Liske, #23)
  * Man-page fix: inconsistency in regards to numeric arguments (Robert
  * Henney)
  * Man-page fix: better description of option -q (#15)

2012-05-29  David Schweikert  <david@schweikert.ch>
  * Version 3.2
  * Improve documentation for -g option (G.W. Haywood)
  * Performance optimization for big select timeouts (#10, Andrey
  * Bondarenko)
  * Fix restart of select call after interrupt signal (#8, Boian Bonev)
  * Fix infinite loop caused by linked list corruption (#11, Boian Bonev)

2012-04-26  David Schweikert  <david@schweikert.ch>
  * Version 3.1
  * -g option (generate): exclude network and broadcast address for cidr
    ranges (idea by Eric Brander)
  * do not explicitely check if running as root, to make it possible to
    install fping with linux capabilities instead of making it setuid
    (setcap cap_net_raw+ep fping)
  * ANSI C (C89) compiler now a requirement
  * Portability fixes
  * Reorganized source directory
  * Bugfix: fix timeout issue on Solaris (Sandor Geller)
  * Man-page fixes (Axel Beckert)
  * Added -H option to specify number of hops (Paul Duda)
  * Output usage information to stdout when called with -h (Paul Duda)

2011-12-28  David Schweikert  <david@schweikert.ch>
  * Version 3.0
  * rewritten main loop for improved performance
  * -T parameter (select timeout) now obsolete
  * Maintenance taken over from unresponsive previous maintainer
    (anybody please step up, if you disagree)
  * New homepage: www.fping.org

2009-12-21  Tobi Oetiker  <tobi@oetiker.ch>
  * Version v2.4b2-to3-ipv6
  * added -On option to set the TOS octet
  * Removed unused variables from code
  * updated to current autoconf standards
  * Merged Debian changes (see below)

----------------------------------------------------------------------

fping (2.4b2-to-ipv6-16.1) unstable; urgency=low

  * NMU during Moenchengladbach BSP
  * Fixes FTBFS on kfreebsd (Closes: #555398)
  * Fixes typo "Paramter" in binary

-- Axel Beckert <abe@deuxchevaux.org>  Sat, 23 Jan 2010 16:22:02 +0100

fping (2.4b2-to-ipv6-16) unstable; urgency=low

  * Fix the following bugs
    - Network byte order sensitivity was missing completely.
      Added hopefully all missing calls.
    - The sequence numbering scheme used led to packet drops.
      Changed it to a more senseful numbering scheme.
    - Some minor C programming mistakes ('=' instead of '==').
    Patch by Stephan Fuhrmann; closes: #502569
  * Add support for command line select timeout setting
    Patch by Marton Balint; closes: #502575
  * Remove symlinks in /usr/sbin; closes: #377732
  * Standards-Version is 3.8.0

-- Anibal Monsalve Salazar <anibal@debian.org>  Sat, 18 Oct 2008 12:04:52
-- +1100

fping (2.4b2-to-ipv6-15) unstable; urgency=low

  * Added interface binding (-I) for fping
    Patch by Peter Naulls <peter@mushroomnetworks.com>
    Closes: #439014
  * Fixed a couple of typos in fping.8. Closes: #423180
  * Added homepage control header
  * Bumped Standards-Version to 3.7.3
  * Fixed the following lintian issue:
    - debian-rules-sets-DH_COMPAT

-- Anibal Monsalve Salazar <anibal@debian.org>  Mon, 03 Mar 2008 17:46:17
-- +1100

fping (2.4b2-to-ipv6-13) unstable; urgency=low

  * Fixed stdout flush problem, closes: #340146.
    Patch by Bart Martens <bart.martens@advalvas.be>.

-- Anibal Monsalve Salazar <anibal@debian.org>  Fri, 30 Dec 2005 08:30:09
-- +1100

fping (2.4b2-to-ipv6-12) unstable; urgency=low

  * Fixed "problem with option -r (retry limit)", closes: #318402.
    Patch by Qingning Huo <qingningh@lanware.co.uk>.

-- Anibal Monsalve Salazar <anibal@debian.org>  Sat, 08 Oct 2005 21:26:35
-- +1000

fping (2.4b2-to-ipv6-11) unstable; urgency=low

  * Fixed "would be useful to specify 'source address' like ping for multi
    homed machines", closes: #198486.
    Patch by Marc Haber <mh+debian-bugs@zugschlus.de>.

-- Anibal Monsalve Salazar <anibal@debian.org>  Thu, 02 Jun 2005 08:14:54
-- +1000

fping (2.4b2-to-ipv6-10) unstable; urgency=low

  * Fixed "unnecessary delay with the -c option after the last packet"
    (Closes: #293856). Patch by Niko Tyni <ntyni@iki.fi>

-- Anibal Monsalve Salazar <anibal@debian.org>  Sun, 06 Feb 2005 23:25:57
-- +1100

fping (2.4b2-to-ipv6-9) unstable; urgency=low

  * Fixed "fping6 always does reverse lookup" (Closes: #273647).
    Patch by Jeroen Massar and forwarded by Bernhard Schmidt
<berni@birkenwald.de>

-- Anibal Monsalve Salazar <A.Monsalve.Salazar@IEEE.org>  Mon, 10 Jan 2005
-- 00:01:32 +1100

fping (2.4b2-to-ipv6-7) unstable; urgency=low

  * Build fping in build/ipv[46] instead of build and build-ipv6.
  * Made DNS errors non-fatal for IPv6 (closes: #198056).

-- Herbert Xu <herbert@debian.org>  Fri, 20 Jun 2003 21:36:30 +1000

fping (2.4b2-to-ipv6-6) unstable; urgency=low

  * Do not use incorrect linux.h file (closes: #85468).

-- Herbert Xu <herbert@debian.org>  Sat, 17 May 2003 14:13:11 +1000

fping (2.4b2-to-ipv6-5) unstable; urgency=low

  * Fixed yet another divide by zero bug (closes: #148445).

-- Herbert Xu <herbert@debian.org>  Tue,  4 Jun 2002 12:18:03 +1000

fping (2.4b2-to-ipv6-4) unstable; urgency=low

  * Made fping6 setuid (closes: #136386).
  * Moved fping back into bin.
  * Partially applied IPv6 patch to fix IPv6 checksums (closes: #136479).

-- Herbert Xu <herbert@debian.org>  Sun,  7 Apr 2002 20:36:56 +1000

fping (2.4b2-to-ipv6-3) unstable; urgency=low

  * Added compatibility symlink for fping (closes: #135203).

-- Herbert Xu <herbert@debian.org>  Sat, 23 Feb 2002 08:34:11 +1100

fping (2.4b2-to-ipv6-2) unstable; urgency=low

  * Fixed another divide by zero error (closes: #132370).

-- Herbert Xu <herbert@debian.org>  Thu,  7 Feb 2002 20:10:48 +1100

fping (2.4b2-to-ipv6-1) unstable; urgency=low

  * New upstream release.
  * Install fping into sbin as done by upstream.

(sborrill)

2014-05-09 15:25:31 UTC MAIN commitmail json YAML

Updated databases/p5-MARC-Record to 2.0.6

(wen)

2014-05-09 15:24:03 UTC MAIN commitmail json YAML

Update to 2.0.6

Upstream changes:
2.0.6 Tue Oct 22 16:17:06 UTC 2013
        [ENHANCEMENTS]
        - MARC::Field->as_string() now accepts an optional second
          parameter to specify the delimiter to use between
          subfields. (Tomas Cohen Arazi)
        - MARC::Field->delete_subfield() can now accept a regexp
          to specify the subfields to remove.  For example, to
          remove all numeric subfields, one can say:

          $field->delete_subfield(code => qr/\d/);

          (Jason Stephenson)
        [FIXES]
        - the warnings pragma is now used throughout MARC::Record
        - $field->as_string('0') now returns the contents of
          subfield $0 rather than the contents of all of the
          subfields in the field.
        - RT#88421: add newline after printing warnings
          (Jason Stephenson)
        - RT#85804: fix spelling glitch (Gregor Herrmann)

2.0.5 Mon Feb 11 20:39:10 PST 2013
        - fix use of qw(...) in test case so that module passes
          tests with Perl 5.17.x.

2.0.4 Sat Feb  9 19:01:47 PST 2013
        [ENHANCEMENTS]
        - add MARC::Field->set_indicator($indpos, $indval), a mutator
          for indicators
        - add MARC::Field->set_tag to allow tags to be renamed
          (Robin Sheat)
        - delete_subfield(), if given a single subfield label as its
          argument, will delete all instances of the specified
          subfield, increasing its DWIM factor
        - improved POD for MARC::Field->delete_subfield()
        [FIXES]
        - RT#70346: delete_subfield() no longer clears entire field if
          arguments are badly formatted
        - croak if invalid arguments are passed to delete_subfield()
        - fix error in tutorial (thanks to Tom Burton-West for the
          catch)
        - RT#76990: emit leader of correct length even if record longer
          than 99,999 octets (Julian Maurice)
        - RT#67094: croak with correct error if attempting to create
          MARC::Field sans subfields
        - corrected POD for indicator() method
        - move tag validity check to new class method,
          is_valid_tag($tagno)
        - move indicator validity check to new class method,
          is_valid_indicator($indval)
        - have MARC::Record pass perlcritic --gentle (mostly)
        - remove function prototypes
          (see http://www.perlmonks.org/?node_id=861966)

(wen)

2014-05-09 12:14:58 UTC MAIN commitmail json YAML

devel/gprbuild-aux: Remove unnecessary post-install target

SunOS find does not support -empty.  This was used by the post-install
target to remove empty directories, and the command consequently failed
there.  It turns out that pkgsrc just ignores empty directories when it
is creating the package list so we don't need the target at all.

(marino)

2014-05-09 11:59:27 UTC MAIN commitmail json YAML

use configured  in check-perms

(richard)

2014-05-09 11:47:05 UTC MAIN commitmail json YAML

lang/gnat_util: Don't silence tsort for sake of SunOS support

The native tsort on SunOS apparently doesn't understand the -q switch.

(marino)

2014-05-09 11:38:27 UTC MAIN commitmail json YAML

Update to Django 1.4.12:
- fix a potential execution of undesired code via reverse()
- avoid leaking the CSRF token via caching of anonymous requests
- fix missing explicit typecasts for MySQL

(joerg)

2014-05-09 09:58:52 UTC MAIN commitmail json YAML

2014-05-09 09:50:47 UTC MAIN commitmail json YAML

lang/gcc-aux: Primarily add Solaris i386 and x86_64 targets

I was never able to build gcc-aux with multilib support when it was
based on gcc 4.7.  It turns out that this is because Ada support for
multilib was broken per GCC's bugzilla.  It's been fixed since.  After
some significant effort and many hours, I finally produced a multilib
bootstrap for Solaris.  It can produce other multilib compilers (x86-64)
and it can produce 32-bit only compilers (i386).  This was tested on a
stock OmniOS x86-64 installation and the Joyent dev area (i386).

Solaris has not supported static linking since Solaris 9, so it is not
possible to create a static bootstrap like the BSDs have, nor is it
possible to build the compiler statically, so that option is disabled.
That means it is unlikely that the bootstrap will run on Solaris 10 or
Solaris 11, but this theory has not been tested.

Much of the changes to the diff-* patchsets are a result of OpenBSD work.
An OpenBSD static bootstrap has been created against devel/binutils, and
as a result it fails to find system libraries such as libc and libm. That
is a side note explaining the OpenBSD additions.  There are some DragonFly
and NetBSD changes in the diff-* patches though.

The bootstrap target was significantly modified, mainly to capture the
special needs of creating a Solaris bootstrap.  The creation of the
bootstrap tarball was put in it's own target.  The zlib and math libraries
were connected to the bootstrap option.  It's not a good idea to use
system zlib on Illumos because the zlib header is not guaranteed to be
installed.

The feature to rebuild the compiler with the installed gcc-aux was fixed;
it should use it's own c++ compiler instead of the system c++ compiler.

OpenBSD 5.5 does not support "cp -a", so this was changed to "cp -RpP" for
portability reasons.

(marino)

2014-05-09 09:45:27 UTC MAIN commitmail json YAML

Describe about ALTERNATIVES.

(obache)

2014-05-09 09:33:03 UTC MAIN commitmail json YAML

Remove cargo-cult message file.

(jperkin)

2014-05-09 09:19:35 UTC pkgsrc-2014Q1 commitmail json YAML

2014-05-09 09:19:06 UTC MAIN commitmail json YAML

2014-05-09 09:18:38 UTC pkgsrc-2014Q1 commitmail json YAML

Pullup ticket #4402 - requested by tron
databases/openldap-server: security patch

Revisions pulled up:
- databases/openldap-server/Makefile                            1.41
- databases/openldap/distinfo                                  1.95
- databases/openldap/patches/patch-libraries_librewrite_session.c 1.1

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: tron
  Date: Fri May  9 08:12:00 UTC 2014

  Modified Files:
  pkgsrc/databases/openldap: distinfo
  pkgsrc/databases/openldap-server: Makefile
  Added Files:
  pkgsrc/databases/openldap/patches: patch-libraries_librewrite_session.c

  Log Message:
  Add patch from OpenLDAP GIT repository to fix CVE-2013-4449 (SA55238).

  To generate a diff of this commit:
  cvs rdiff -u -r1.94 -r1.95 pkgsrc/databases/openldap/distinfo
  cvs rdiff -u -r1.40 -r1.41 pkgsrc/databases/openldap-server/Makefile
  cvs rdiff -u -r0 -r1.1 \
      pkgsrc/databases/openldap/patches/patch-libraries_librewrite_session.c

(spz)

2014-05-09 09:18:20 UTC MAIN commitmail json YAML

Remove patch that looks highly bogus.

(wiz)

2014-05-09 09:11:26 UTC MAIN commitmail json YAML

Remove noop patch.

(wiz)

2014-05-09 08:31:15 UTC MAIN commitmail json YAML

Updated devel/p5-Test-File to 1.36

(wen)

2014-05-09 08:29:39 UTC MAIN commitmail json YAML

Update to 1.36

Upstream changes:
1.36 - Wed Jan  1 16:38:13 PST 2014
    * Fix RT #89849 - bad line counts on latest dev version of Perl

1.35 - Thu Oct 10 01:36:55 PDT 2013
    * Fix RT #89175 - don't distribute MYMETA*
    * add dir_exists_ok and dir_contains_ok
    * add file_contains_* functions

(wen)

2014-05-09 08:21:23 UTC MAIN commitmail json YAML

Updated devel/p5-Test-File-ShareDir to 1.000000

(wen)

2014-05-09 08:16:55 UTC MAIN commitmail json YAML

Update to 1.000000
Update DEPENDS

Upstream changes:
1.000000 2014-01-30T15:23:48Z
[00 Tooling and Version replacement]
- Switched to EUMM to accelerate clean-install time.
- Build-time requirements are now softened
- Readvertise higher requirements as recommendations
- version schema moved from x.y.z to x.YYYzzz and is the primary reason
  for incrementing the major

[Dependencies::Stats]
- Dependencies changed since 0.4.1, see Changes.deps{,.all,.dev} for
  details
- build: -1
- configure: +2 -1
- develop: +7 ..1 -9
- test: +8 ..1

0.4.1 2013-11-21T06:51:24Z
[00 Trivial Doc Fix]
- Escaping of code containing > was done wrong.

0.4.0 2013-11-21T06:38:44Z
[00 Major Changes]
- New Modules/Interfaces to make life easier for people who only need one
  of (Dist|Module) shares.

[Dependencies::Noteworthy]
- use Class::Tiny
- use new MB and TestMore

[Dependencies::Stats]
- Dependencies changed since 0.3.3, see Changes.deps{,.all,.dev} for
  details
- build: ..1
- configure: ..1
- develop: +46 -3
- runtime: +1
- test: +1 ..1 -1

[Documentation]
- Encoding specified
- MetaPOD annotations added

[Packaging]
- use new MB syntax for fallback

[Tests]
- use Test::Compile::PerFile
- Regenerate ReportVersions::Tiny to not report develop deps.
- Regenerate CPAN::Changes test
- Regenerate Kwalitee test

(wen)

2014-05-09 08:14:06 UTC MAIN commitmail json YAML

PKGNAME must be set if no DISTNAME too.

(obache)

2014-05-09 08:12:50 UTC MAIN commitmail json YAML

Note update of the "openldap-server" package to version 2.4.39nb2.

(tron)

2014-05-09 08:12:00 UTC MAIN commitmail json YAML

2014-05-09 08:10:41 UTC MAIN commitmail json YAML

Added devel/p5-Class-Tiny version 0.014

(wen)

2014-05-09 08:08:28 UTC MAIN commitmail json YAML

Add p5-Class-Tiny

(wen)

2014-05-09 08:06:52 UTC MAIN commitmail json YAML

Import Class-Tiny-0.014 as devel/p5-Class-Tiny.

This module offers a minimalist class construction kit in around 120
lines of code.

(wen)

2014-05-09 07:43:17 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 4.98

(wen)

2014-05-09 07:42:25 UTC MAIN commitmail json YAML

Update to 4.98

Upstream changes:
4.98  2014-05-09
  - Removed deprecated get_line function from Mojo::Util.
  - Removed deprecated content_xml, replace_content, text_before, text_after
    and to_xml methods from Mojo::DOM.
  - Improved accept performance in Mojo::IOLoop::Server.

(wen)

2014-05-09 07:37:28 UTC MAIN commitmail json YAML

2014-05-09 07:31:57 UTC MAIN commitmail json YAML

Updated devel/p5-Perl-Tidy to 20140328

(wen)

2014-05-09 07:30:09 UTC MAIN commitmail json YAML

Update to 20140328

Upstream changes:
2014 03 28
      - Fixed RT #94190 and debian Bug #742004: perltidy.LOG file left behind.
        Thanks to George Hartzell for debugging this.  The problem was
        caused by the memoization speedup patch in version 20121207.  An
        unwanted flag was being set which caused a LOG to be written if
        perltidy was called multiple times.

      - New default behavior for LOG files: If the source is from an array or
        string (through a call to the perltidy module) then a LOG output is only
        possible if a logfile stream is specified.  This is to prevent
        unexpected perltidy.LOG files.

      - Fixed debian Bug #740670, insecure temporary file usage.  File::Temp is now
        used to get a temporary file.  Thanks to Don Anderson for a patch.

      - Any -b (--backup-and-modify-in-place) flag is silently ignored when a
        source stream, destination stream, or standard output is used.
        This is because the -b flag may have been in a .perltidyrc file and
        warnings break Test::NoWarnings.  Thanks to Marijn Brand.

(wen)

2014-05-09 07:04:16 UTC MAIN commitmail json YAML

"KDE" is ambiguous, this example is for KDE3.

(obache)

2014-05-09 06:59:19 UTC MAIN commitmail json YAML

Change example, lang/lua is not a package now.

(obache)

2014-05-09 06:52:16 UTC MAIN commitmail json YAML

Remove deprecated matters, mtree and bootstrap tools.

(obache)

2014-05-09 06:29:57 UTC MAIN commitmail json YAML

Note SMF support

(obache)

2014-05-09 05:59:09 UTC MAIN commitmail json YAML

2014-05-09 05:23:41 UTC MAIN commitmail json YAML

Add python34 support and simplify.

(obache)

2014-05-09 02:39:48 UTC MAIN commitmail json YAML

- python-3.4.0

(wen)

2014-05-09 02:35:38 UTC MAIN commitmail json YAML

Added lang/python34 version 3.4.0

(wen)

2014-05-09 02:29:18 UTC MAIN commitmail json YAML

Add python34

(wen)

2014-05-09 02:29:10 UTC MAIN commitmail json YAML

Restrict to find openssl header files in SSLBASE/include.
Fixes unwanted detection of builtin openssl over prefered pkgsrc one.

(obache)

2014-05-09 02:27:14 UTC MAIN commitmail json YAML

Import python-3.4.0 as lang/python34.

Python is an interpreted, interactive, object-oriented
programming language that combines remarkable power with
very clear syntax. For an introduction to programming in
Python you are referred to the Python Tutorial. The
Python Library Reference documents built-in and standard
types, constants, functions and modules. Finally, the
Python Reference Manual describes the syntax and semantics
of the core language in (perhaps too) much detail.

Python's basic power can be extended with your own modules
written in C or C++. On most systems such modules may be
dynamically loaded. Python is also adaptable as an exten-
sion language for existing applications. See the internal
documentation for hints.

This package provides Python version 3.4.x.

(wen)

2014-05-08 23:41:52 UTC MAIN commitmail json YAML

Make tex-wasysym option-conditional, like all the other Tex dependencies.

(dsainty)

2014-05-08 21:52:40 UTC MAIN commitmail json YAML

2014-05-08 20:48:55 UTC MAIN commitmail json YAML

Configure with --with-wx-single-threaded when using wxwidgets.
Makes wxt terminal usable again on NetBSD.  Also required on some Linux
versions with newer Haswell cpus.
PKGREVISION++
Fixes PR pkg/47177.

(bad)

2014-05-08 16:01:22 UTC MAIN commitmail json YAML

Updated security/clamav to 0.98.3

(jperkin)

2014-05-08 16:01:10 UTC MAIN commitmail json YAML

Update to clamav-0.98.3.  Changes:

- Support for common raw disk image formats using 512 byte sectors,
  specifically GPT, APM, and MBR partitioning.

- Experimental support of OpenIOC files. ClamAV will now extract file
  hashes from OpenIOC files residing in the signature database location,
  and generate ClamAV hash signatures. ClamAV uses no other OpenIOC
  features at this time. No OpenIOC files will be delivered through
  freshclam. See openioc.org and iocbucket.com for additional information
  about OpenIOC.

- All ClamAV sockets (clamd, freshclam, clamav-milter, clamdscan, clamdtop)
  now support IPV6 addresses and configuration parameters.

- Use OpenSSL file hash functions for improved performance. OpenSSL
  is now prerequisite software for ClamAV 0.98.3.

- Improved detection of malware scripts within image files. Issue reported
  by Maarten Broekman.

- Change to circumvent possible denial of service when processing icons within
  specially crafted PE files. Icon limits are now in place with corresponding
  clamd and clamscan configuration parameters. This issue was reported by
  Joxean Koret.

- Improvements to the fidelity of the ClamAV pattern matcher, an issue
  reported by Christian Blichmann.

- Opt-in collection of statistics. Statistics collected are: sizes and MD5
  hashes of files, PE file section counts and section MD5 hashes, and names
  and counts of detected viruses. Enable statistics collection with the
  --enable-stats clamscan flag or StatsEnabled clamd configuration
  parameter.

- Improvements to ClamAV build process, unit tests, and platform support with
  assistance and suggestions by Sebastian Andrzej Siewior, Scott Kitterman,
  and Dave Simonson.

- Patch by Arkadiusz Miskiewicz to improve error handling in freshclam.

- ClamAV 0.98.3 also includes miscellaneous bug fixes and documentation
  improvements.

(jperkin)

2014-05-08 15:43:46 UTC MAIN commitmail json YAML

Updated cad/gtkwave to 3.3.59

(mef)

2014-05-08 15:42:41 UTC MAIN commitmail json YAML

(Upstream) Bump 3.3.57 to 3.3.59
----------
3.3.58  16mar14 Added /Data Format/Popcnt function for ones counting.
                Warnings fixes from new Clang 3.4 scan-build.
                Updated VCD ID generation in various helpers to use a faster,
                equivalent algorithm.
                Change [1] at end of struct to C99 [] notation with appropriate
                allocation size modification.
                System_profiler speed fix for OSX.
3.3.59  26apr14 Use Duff's Device for 8 byte -> 1 byte binary value compression
                algorithm in FST writer.
                Warnings fixes from cppcheck.
                Moved MinGW for FST to using different windows tempfile
                generation instead of tmpfile().
                Removed fflush() in FST for MinGW in places that can cause
                crashes with read only files.
                Updated man page for gtkwave.1 indicating that XID is in hex.
                Allow decimal conversions on popcnt filtered vectors that are
                greater than 64 bits (they will never overflow).

(mef)

2014-05-08 15:36:57 UTC MAIN commitmail json YAML

Added dependency over security/py-requests-oauthlib needed for Twitter
authentication.

(imil)

2014-05-08 15:28:19 UTC MAIN commitmail json YAML

Added security/py-requests-oauthlib version 0.4.0

(imil)

2014-05-08 15:27:10 UTC MAIN commitmail json YAML

add & enable py-requests-oauthlib

(imil)

2014-05-08 15:25:54 UTC MAIN commitmail json YAML

Initial import of py-requests-oauthlib, version 0.4.0, into the NetBSD Packages
Collection.

This project provides first-class OAuth library support for Python Requests.

(imil)

2014-05-08 15:22:51 UTC MAIN commitmail json YAML

add & enable py-oauthlib

(imil)

2014-05-08 15:19:14 UTC MAIN commitmail json YAML

Added security/py-oauthlib version 0.6.1

(imil)

2014-05-08 15:18:10 UTC MAIN commitmail json YAML

Initial import of py-oauthlib, version 0.6.1, into the NetBSD Packages
Collection.

OAuth often seems complicated and difficult-to-implement. There are several
prominent libraries for handling OAuth requests, but they all suffer from one
or both of the following:

  *  They predate the OAuth 1.0 spec, AKA RFC 5849.
  *  They predate the OAuth 2.0 spec, AKA RFC 6749.
  *  They assume the usage of a specific HTTP request library.

OAuthLib is a generic utility which implements the logic of OAuth without
assuming a specific HTTP request object or web framework. Use it to graft OAuth
client support onto your favorite HTTP library, or provider support onto your
favourite web framework. If you're a maintainer of such a library, write a thin
veneer on top of OAuthLib and get OAuth support for very little effort.

(imil)

2014-05-08 14:44:42 UTC MAIN commitmail json YAML

Added net/py-twython version 3.1.2

(imil)

2014-05-08 14:43:23 UTC MAIN commitmail json YAML

add & enable py-twython

(imil)

2014-05-08 14:41:49 UTC MAIN commitmail json YAML

Initial import of py-twython, version 3.1.2, into the NetBSD Packages
Collection.

Twython is the premier Python library providing an easy (and up-to-date) way to
access Twitter data. Actively maintained and featuring support for Python 2.6+
and Python 3. It's been battle tested by companies, educational institutions
and individuals alike.

(imil)

2014-05-08 12:46:51 UTC MAIN commitmail json YAML

Updated emulators/suse131_libpng to 13.1nb3

(obache)

2014-05-08 12:46:36 UTC MAIN commitmail json YAML

Apply openSUSE Security Update: openSUSE-SU-2014:0618-1
update for libpng12

Description:

  This libpng12 update fixes the following two security
  issues.

  - bnc#873123: Fixed integer overflow leading to a
  heap-based buffer  overflow in png_set_sPLT() and
  png_set_text_2() (CVE-2013-7354).
  - bnc#873124: Fixed integer overflow leading to a
  heap-based buffer  overflow in png_set_unknown_chunks()
  (CVE-2013-7353).

Bump PKGREVISION.

(obache)

2014-05-08 11:22:42 UTC MAIN commitmail json YAML

Added misc/mbuffer version 20140310

(jperkin)

2014-05-08 11:21:55 UTC MAIN commitmail json YAML

2014-05-08 11:21:24 UTC MAIN commitmail json YAML

Import mbuffer-20140310 into pkgsrc, packaged by Brian Bennett.

mbuffer is a tool for buffering data streams with a large set of
unique features:

* direct support for TCP based network targets (IPv4 and IPv6)
* ability to send to multiple targets in parallel (distribution mode)
* support for multiple volumes
* I/O rate limitation
* high/low watermark based restart criteria
* configurable buffer size
* on the fly MD5 hash calculation
* highly efficient, multi-threaded implementation

It is especially useful, if you are writing backups to fast tape drives
or libraries.

(jperkin)

2014-05-08 11:11:16 UTC MAIN commitmail json YAML

Re-add iij mirror of sourceforge.jp, and re-corder mirror sites.
Thank you, Shuji SADO and obache@.

(ryoon)

2014-05-08 10:36:23 UTC MAIN commitmail json YAML

Updated pkgtools/url2pkg to 2.19

(rodent)

2014-05-08 10:35:58 UTC MAIN commitmail json YAML

Don't consider ${WRKDIR}/pax_global_header as a possibility for ${WRKSRC}.
Bump PKGVERSION.

(rodent)

2014-05-08 10:19:53 UTC MAIN commitmail json YAML

Pull in libxml2 for additional functionality, from Matthias Ferdinand.

(jperkin)

2014-05-08 10:14:56 UTC MAIN commitmail json YAML

+py-python-bitcoinlib

(rodent)

2014-05-08 10:14:46 UTC MAIN commitmail json YAML

Darwin: Fix an issue that gcc producing binaries linked with a wrong libgcc_s

If we don't install libgcc_s.10.[45].dylib, our gcc links binaries
with *both* /usr/lib/libgcc_s.1.dylib and
${GCC_PREFIX}/lib/libgcc_s.1.dylib, which is certainly a bad thing.

The problem was already reported to the upstream but it caught
seemingly no attention:
http://gcc.gnu.org/ml/gcc-help/2010-07/msg00164.html

(pho)

2014-05-08 10:14:23 UTC MAIN commitmail json YAML

Added finance/py-python-bitcoinlib version 0.1

(rodent)

2014-05-08 10:14:10 UTC MAIN commitmail json YAML

Import py27-python-bitcoinlib-0.1 as finance/py-python-bitcoinlib.

This Python2/3 library provides an easy interface to the bitcoin data structures
and protocol. The approach is low-level and "ground up", with a focus on
providing tools to manipulate the internals of how Bitcoin works.

(rodent)

2014-05-08 09:15:40 UTC MAIN commitmail json YAML

2014-05-08 09:08:30 UTC MAIN commitmail json YAML

Added www/py-gunicorn version 18.0

(imil)

2014-05-08 09:06:50 UTC MAIN commitmail json YAML

add & enable py-gunicorn

(imil)

2014-05-08 09:05:51 UTC MAIN commitmail json YAML

Initial import of py-gunicorn, version 18.0, into the NetBSD Packages
Collection.

Gunicorn 'Green Unicorn' is a Python WSGI HTTP Server for UNIX. It's a
pre-fork worker model ported from Ruby's Unicorn project. The Gunicorn
server is broadly compatible with various web frameworks, simply
implemented, light on server resource usage, and fairly speedy.

(imil)

2014-05-08 02:31:50 UTC MAIN commitmail json YAML

2014-05-08 02:05:29 UTC MAIN commitmail json YAML

Fix build failure on Darwin

See ${WRKSRC}/libgcc/config/t-slibgcc-darwin: It uses strip(1) to
create a stub library, not just to remove symbols, so we must not
let strip(1) be a no-op regardless of ${INSTALL_UNSTRIPPED} or the
build fails for missing files.

(pho)

2014-05-08 02:03:58 UTC MAIN commitmail json YAML

Remove the whitespace between $(LINKER_RPATH_FLAG) and the path. Otherwise the flag may be misinterpreted by linker (e.g. Apple's ld)

(pho)

2014-05-07 20:26:13 UTC MAIN commitmail json YAML

2014-05-07 20:23:22 UTC MAIN commitmail json YAML

Bump PKGREVISION, fix native HTML5 audio playback

* Set MOZ_SAMPLE_TYPE_FLOAT32 for non-Android platforms.

(ryoon)

2014-05-07 19:44:20 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg2 to 2.2.2

(adam)

2014-05-07 19:43:03 UTC MAIN commitmail json YAML

Changes 2.2.2:
* lavd/opengl_enc: fix pixel data alignment
* ffmpeg: print an error at the end if conversion failed
* avfilter/graphdump: Fix pointer to local outside scope
* ffmpeg_filter: fix pointer to local outside scope
* avcodec/mjpegdec: Fix undefined shift
* avformat/h263dec: Fix h263 probe
* avfilter/filtfmts: Support dynamically allocated in/outputs
* iavcodec/vc1dec: Fix missing {}
* more...

(adam)

2014-05-07 18:52:00 UTC MAIN commitmail json YAML

2014-05-07 18:44:39 UTC MAIN commitmail json YAML

Updated multimedia/xine-ui to 0.99.8

(wiz)

2014-05-07 18:44:29 UTC MAIN commitmail json YAML

Updated devel/liblangtag to 0.5.3nb1

(jaapb)

2014-05-07 18:44:28 UTC MAIN commitmail json YAML

Update to 0.99.8. Set LICENSE. Add comments to patches.
Remove unnecessary patches. Report other patches upstream and add bug
report URL.

Changes:
xine-ui (0.99.8)
  * Fixed opening file using menus
  * Fixed exit on panel close
  * Fixed deadlocks
  * Fixed segfault at exit
  * Fixed keymap editor deadlock

(wiz)

2014-05-07 18:44:07 UTC MAIN commitmail json YAML

Revised package (rev 1) - there is a problem with dlopen detection on
NetBSD that results in modules not being built (as opposed to other OSes).
Patch solves problem - reported by Richard Palo (and confirmed fixed).

(jaapb)

2014-05-07 18:23:43 UTC MAIN commitmail json YAML

Updated devel/apache-ant to 1.9.4

(wiz)

2014-05-07 18:23:31 UTC MAIN commitmail json YAML

Update to 1.9.4. Add comment to patch.

Changes from Ant 1.9.3 TO Ant 1.9.4
===================================

Changes that could break older environments:
-------------------------------------------

* the prefixValues attribute of <property> didn't work as expected
  when set to false (the default).
  It is quite likely existing build files relied on the wrong
  behavior and expect Ant to resolve the value side against the
  properties defined in the property file itself - these build files
  must now explicitly set the prefixValues attribute to true.
  Bugzilla Report 54769

* when matching an entry of a zip/tarfileset against a pattern a
  leading slash will be stripped from the entry name.  Most archives
  don't contain paths with leading slashes anyway.
  This may cause include/exclude patterns that start with a / to stop
  matching anything.  Such patterns only used to work by accident and
  only on platforms with multiple file system roots.
  Bugzilla Report 53949

* DirectoryScanner and thus fileset/dirset will now silently drop all
  filesystem objects that are neither files nor directories according
  to java.io.File.  This prevents Ant from reading named pipes which
  might lead to blocking or other undefined behavior.
  Bugzilla Report 56149

* BuildFileTest and BaseSelectorTest have both been deprecated in
  favour of BuildFileRule and BaseSelectorRule respectively, and the
  tests that previously extended these base tests have been converted to
  JUnit 4 tests using the new "rule"s. Any external test that sub-classed
  a test in the Ant workspace, rather than BuildFileTest, will need
  changed to either use JUnit4's annotations, or be modified to
  extend BuildFileTest directly. This will not affect any tests that are
  being executed by Ant's junit or batchtest tasks that are not specifically
  testing Ant's code.

Fixed bugs:
-----------

* <import>/<include> failed when the importing file was loaded from an
  URI or a jar and it imported a file from the local file system via
  an absolute path.
  Bugzilla Report 50953

* <import> could import the same resource twice when imported via
  different resource types.
  Bugzilla Report 55097

* several calls to File#mkdirs could fall victim to a race condition
  where another thread already created the same directory.
  Bugzilla Report 55290

* <manifestclasspath> created '/' rather than './' for the parent
  directory of the given jarfile.
  Bugzilla Report 55049

* <concat>'s fixlastline="true" didn't work when using certain filter
  readers.
  Bugzilla Report 54672

* several places where resources are read from jars will now
  explicitly disable caching to avoid problems with reloading jars.
  Bugzilla Report 54473

* AntClassloader will now ignore files that are part of the classpath
  but not zip files when scanning for resources.  It used to throw an
  exception.
  Bugzilla Report 53964

* <javadoc> caused a NullPointerException when no destdir was set.
  Bugzilla Report 55949

* <jar filesetmanifest="mergewithoutmain"> would still include the
  Main section of the fileset manifests if there was no nested
  manifest or manifest attribute.
  Bugzilla Report 54171

* reading of compiler args has become more defensive
  Bugzilla Report 53754

* <copy> without force="true" would not only fail to overwrite a
  read-only file as expected but also remove the existing file.
  Bugzilla Report 53095

* <delete removeNotFollowedSymlinks="true"> would remove symbolic
  links to not-included files.  It will still delete symlinks to
  directories that would have been followed even if they are not
  explicitly included.  exclude-Patterns can still be used to
  preserve symbolic links.
  Bugzilla Report 53959

* Sometimes copy-operations using NIO FileChannels fail.  Ant will
  now try to use a Stream based copy operation as fallback when the
  Channel based copy fails.
  Bugzilla Reports 53102 and 54397

* Javadoc.postProcessGeneratedJavadocs() fails for Classes that
  extend Javadoc
  Bugzilla Report 56047

* TarInputStream will now read archives created by tar
  implementations that encode big numbers by not adding a trailing
  NUL.

* the isExists() method of URLResource returned false positives for
  HTTP and FTP URLs.

Other changes:
--------------

* initial support for Java 1.9

* <sshexec> can optionally pass System.in to the remote process
  Bugzilla Report 55393

* <sshexec> now supports capturing error output of the executed
  process and setting a property from the return code.
  Bugzilla Report 48478

* <javadoc> now has an option to fail if javadoc issues warnings.
  Bugzilla Report 55015

* <sql> has a new outputencoding attribute.
  Bugzilla Report 39541

* changes to JUnitTestRunner and PlainJUnitResultFormatter to make
  OutOfMemoryErrors less likely.
  Bugzilla Report 45536

* changes to DOMElementWriter to make OutOfMemoryErrors less likely.
  Bugzilla Report 54147

* <redirector> has a new attribute binaryOutput that prevents Ant
  from splitting the output into lines.  This prevents binary output
  from being corrupted but may lead to error and normal output being
  mixed up.
  Bugzilla Report 55667
  Bugzilla Report 56156

* the nested <message> elements of <mail> now have an optional
  inputEncoding attribute that can be used to specify the encoding of
  files read that don't use the platform's default encoding.
  Bugzilla Report 56258

* The <get> task now explicitly accepts and supports the gzip content encoding.
  Bugzilla Report 49453

* A new resourcecollection type <multirootfileset> acts like a union
  of <fileset>s and <dirset>s that share the same configuration but
  have different base directories.
  Bugzilla Report 48621

* <get> has a quiet attribute that makes the task log errors only
  when enabled.
  GitHub Pull Request #1

* <junit> has now a threads attribute allowing to run the tests in several threads.
  Bugzilla Report 55925

* addition of a new ProcessUtil class providing the process id of the current process

* changes to allow to run the JUnit testcases of Ant in parallel,
  by making them use unique temporary directories

(wiz)

2014-05-07 15:48:14 UTC MAIN commitmail json YAML

2014-05-07 15:47:58 UTC MAIN commitmail json YAML

Add mongo-c-driver

(fhajny)

2014-05-07 15:47:14 UTC MAIN commitmail json YAML

Added databases/mongo-c-driver version 0.94.2

(fhajny)

2014-05-07 15:47:00 UTC MAIN commitmail json YAML

2014-05-07 15:44:56 UTC MAIN commitmail json YAML

2014-05-07 15:44:15 UTC MAIN commitmail json YAML

Added devel/libbson version 0.6.8

(fhajny)

2014-05-07 15:43:59 UTC MAIN commitmail json YAML

Import libbson as devel/libbson.

libbson is a library providing useful routines related to building,
parsing, and iterating BSON documents. It is a useful base for those
wanting to write high-performance C extensions to higher level
languages such as python, ruby, or perl.

(fhajny)

2014-05-07 15:41:20 UTC MAIN commitmail json YAML

Updated security/cyrus-sasl to 2.1.26nb4

(fhajny)

2014-05-07 15:41:08 UTC MAIN commitmail json YAML

2014-05-07 11:30:37 UTC MAIN commitmail json YAML

Updated net/rabbitmq to 3.3.1

(fhajny)

2014-05-07 11:30:27 UTC MAIN commitmail json YAML

Update rabbitmq to 3.3.1

Changes in 3.3.1
- Bug and security fixes

See full release notes:

http://www.rabbitmq.com/release-notes/README-3.3.1.txt

Changes in 3.3.0
- Performance improvements
- Monitoring information to identify performance bottlenecks
- Dynamically manageable shovels
- Automatic reconnection of Java-based clients
- Bug fixes and minor new features

See full release notes:

http://www.rabbitmq.com/release-notes/README-3.3.0.txt

(fhajny)

2014-05-07 10:34:31 UTC MAIN commitmail json YAML

2014-05-07 07:47:34 UTC MAIN commitmail json YAML

Updated devel/php-memcached to 2.2.0

(fhajny)

2014-05-07 07:47:17 UTC MAIN commitmail json YAML

Update php-memcached to 2.2.0.

Changes in 2.2.0:
- Added the OPT_SERVER_TIMEOUT_LIMIT behaviour

Changes in 2.2.0RC1
- Fixes incorrect size when compressing serialized objects
- Fixes endianess of compressed values

Changes in 2.2.0b1
- Reinstate support for libmemcached 0.x series
- Added SASL support to session handler
- Added Memcached::flushBuffers as per GH #78
- Fixes GH #54: Fixed UDP server adding with newer libmemcached
- Fixed PHP bug #65334: (Segfault if uncompress value failed)
- Fixes GH #14: get with cas token fails to fetch all results
- Fixes GH #68: memcached 2.1.0 requires libmemcached 1.0.10
- Fixes GH #69: compiling on CentOS 6.4 with libmemcached 1.0.17
- Merged PR #91: More granular session locking support
- Added session handler settings:
* memcached.sess_number_of_replicas
* memcached.sess_randomize_replica_read
* memcached.sess_remove_failed
* memcached.sess_connect_timeout
- Added support for memcached protocol handlers
- Added Memcached::setBucket for virtual bucket support
- Added support for msgpack serialization
- Memcached::setSaslAuthData returns correct status on success
- Added support for user-defined flags in set and get operations

(fhajny)

2014-05-07 07:45:44 UTC pkgsrc-2014Q1 commitmail json YAML