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 (28m)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (154d) 

2024-05-13 13:48:23 UTC Now

2014-01-19 13:12:30 UTC MAIN commitmail json YAML

2014-01-19 13:09:28 UTC MAIN commitmail json YAML

Fix PLIST for Python3.

(wiz)

2014-01-19 13:05:12 UTC MAIN commitmail json YAML

Updated net/libsoup24 to 2.44.2

(wiz)

2014-01-19 13:05:04 UTC MAIN commitmail json YAML

Update to 2.44.2:

Changes in libsoup from 2.44.1 to 2.44.2:

* Fixed a hang with internet radio streams in Rhythmbox (and
          some other places). [#710494, Dan]

* Fixed a connection leak when cancelling the close of
  a message GInputStream. [#711260, Dan]

* Plugged a few memory leaks [#711085, Christophe Fergeau]

* Fix build with --without-ntlm [#710267, Dan]

* Fixed a few warnings [Dan, Fabiano Fid棚ncio]

* Fixed connection-test to pass with current glib [#711361,
  Colin Walters]

* Tests are now more verbose by default under "make check",
          since current automake just redirects all the output to a
          log file anyway. [Dan]

Changes in libsoup from 2.44.0 to 2.44.1:

* If you called g_input_stream_close() on SoupMessage or
          SoupRequests's GInputStream before you finished reading it,
          it would block until the rest of the response had been read
          (which in the case of, eg, an infinite audio stream, meant
          that it would block forever). This was an unintended change
          from 2.42 and is now fixed. [#695652, Dan]

* soup_session_queue_message() on a plain SoupSession (not
          SoupSessionAsync) was operating synchronously rather than
          asynchronously as it should have. [#707711, Dan]

* soup-form methods now use the HTML5 x-www-form-urlencoded
          rules rather than the HTML4 ones. (In particular, they leave
  "-", "_", and "." unencoded.) [#708621, Alban Browaeys]

* The test programs now explicitly request the "memory"
          GSettings backend, meaning they won't print a warning if
          they get it accidentally, and they won't accidentally use
          the dconf proxy settings if the dconf backend is available.
          [Dan]

* Fix SoupSession so that if you override the proxy
          configuration at construct time, it doesn't try to resolve
          the default GProxyResolver. (This is important in particular
          for programs that expect to run outside a user session,
          which would otherwise spew errors from the dconf GSettings
          backend about not being able to connect to dconf.) Likewise
          with TLS settings and the TLS backend. [#708696, Dan]

* Fix the SoupServer:tls-certificate property;
          soup_server_is_https() had not been updated to recognize it,
          and so would return FALSE, which in turn meant that the
          server would return 400 Bad Request in response to https
          requests. [#709647, Fabiano Fid棚ncio]

* Fixed a sporadic failure in tests/connection-test. [Dan]

* Updated translations:
  Tajik

Changes in libsoup from 2.43.92 to 2.44.0:

* New/updated translations:
  Dutch, Indonesian

Changes in libsoup from 2.43.90 to 2.43.92:

* Fixed a bug in the connection-pool code, which would in
          certain cases accidentally keep using a connection after a
          message was cancelled while in progress, causing the next
          request on that connection to get the response to the
          previous request, etc. [#708006, David Woodhouse]

* Fixed some problems when falling back from samba
          single-sign-on-based NTLM to ordinary ask-for-a-password
          NTLM. [#703186, David Woodhouse]

* When sending a conditional GET request, SoupCache now
          preserves the original message's list of disabled features,
          ensure that it gets back the same kind of response the
          original message would have. [#706338, Andre Moreira
          Magalhaes]

* Fixed a warning when the remote host closes the connection
          while we are writing something using chunked encoding.
          [#703297, Dan]

* Added SoupServer:http-aliases and :https-aliases properties,
          to specify URI schemes that should be treated as though they
          were http (just like SoupSession:http-aliases and
          :https-aliases, but on the server side). [#703694, Dan]

* Fixed race conditions in cache-test and timeout-test that
          could case spurious failures. [#698305, #660581, Dan]

Changes in libsoup from 2.43.5 to 2.43.90:

* Fixed the handling of unsatisfiable range requests in
          SoupServer [pointed out on mailing list, Dan]. Also, added
          more documentation clarifying that you don't need to handle
          range requests yourself in many cases.

* Fixed the handling of IPv6 address literals with scope IDs.
          (Requires the latest glib as well for the complete fix.)
          [#669724, Dan]

Changes in libsoup from 2.43.4 to 2.43.5:

* SoupProxyURIResolver is now deprecated in favor of the
          SoupSession:proxy-resolver property (which takes a
          GProxyResolver). [#680273, Dan]

* The SoupKnownStatusCode enum is now called SoupStatus. The
          old name continues to exist as an alias, but is deprecated.
          (This change has no visible effect in C; it is primarily to
          help language bindings, so that, eg, SOUP_STATUS_NOT_FOUND
          maps to "Soup.Status.NOT_FOUND" rather than
          "Soup.KnownStatusCode.NOT_FOUND".) [#684409, Dan]

* Fixed the parsing of URI schemes in SoupURI (in particular,
          to allow scheme names with digits in them). [#703776, Dan]

* Fixed SoupLogger to print a message's response headers even
          if the message gets cancelled before the complete response
          body is received. [#703200, Andres Gomez]

* Fixed a build problem in non-UTF-8 locales [#702534, Ross
          Lagerwall]

* SoupSession now warns if you use
          soup_session_pause_message() or
          soup_session_unpause_message() on a synchronous message
          (which has never worked, though that fact wasn't
          documented). [#703461, Philip Withnall]

Changes in libsoup from 2.43.2 to 2.43.4:

* Fixed a bug that could cause synchronous sessions to get
          stuck in a state where no new messages would ever get
          processed. [#703463, Philip Withnall]

* Fixed another memory leak in SoupSocket (found while
  added a test case for #700472)

* Switched to using g_cclosure_marshal_generic() rather than
          using glib-genmarshal. [#686042, Olivier Blin]

* Changed SoupServer to call unref() on the query hash table
          after calling the handler, rather than destroy(), so that
          the handler can keep a copy of the query data if it wants.
          [#702793, Bernhard Schuster]

* Fixed a few introspection annotations

* Updated examples/get to use SoupLogger and to allow
          redirecting the output to a file [#703231, #703229, Andres
          Gomez]

Changes in libsoup from 2.43.1 to 2.43.2:

* Fixed an authentication error when using NTLM when
          connecting to an https site over a proxy; the code was
          getting confused and thinking that the 200 OK response to
          the CONNECT meant that NTLM auth had succeeded. [#698728,
          Dan]

* Fixed a memory leak in SoupSocket. [#700472, Richard
          Ræ—¦jfors]

* Fixed a missing include error on some platforms [#700003,
          Erik van Pienbroek]

* Fixed warnings when running against the "dummy" TLS backend.
  [#700518, Dan]

Changes in libsoup from 2.42.1 to 2.43.1:

* Including <libsoup/soup.h> no longer pulls in the system
  networking headers. This may cause some packages to no
  longer compile, if they were accidentally depending on this.
  Adding "#include <gio/gnetworking.h>" will fix them on both
  unix and Windows. (This was done as part of fixing the build
  on Windows.) [#692134, Dan]

* Fixed SoupSession:proxy-resolver [#698163, Dan]

* Added soup_message_set_priority(), to mark messages as being
          high, low, or normal priority, and update the message queue
          to prioritize them accordingly. [#696277, Sergio]

* Fixed several test programs to still work if glib-networking
          isn't installed [Dan], and fixed another to still work if
          the kernel has no IPv6 support. [#698220, Dan]

(wiz)

2014-01-19 12:57:42 UTC MAIN commitmail json YAML

Stop using RUBY_RDOC_VERSION for specifying current ruby-rdoc's version.
It isn't used any other place.

(taca)

2014-01-19 11:29:11 UTC MAIN commitmail json YAML

Updated net/omniORB to 4.1.7

(wiz)

2014-01-19 11:28:59 UTC MAIN commitmail json YAML

Update to 4.1.7:

Changes since omniORB 4.1.6
---------------------------

- Bug fixes and platform updates. See bugfixes-416.xml

- ZIOP support. See src/examples/ziop/README.txt for details.

Changes since omniORB 4.1.5
---------------------------

- Bug fixes. See bugfixes-415.xml

- New clientOpenConnection and serverAcceptConnection interceptors.

(wiz)

2014-01-19 10:59:21 UTC MAIN commitmail json YAML

Updated emulators/wine-devel to 1.7.11

(adam)

2014-01-19 10:58:23 UTC MAIN commitmail json YAML

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

Updated security/py-xmlsec to 0.3.1

(wiz)

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

Update to 0.3.1:

2013-07-26  Valery Febvre  <vfebvre@easter-eggs.com>

* License switch from GPL to MIT.

(wiz)

2014-01-19 09:59:57 UTC MAIN commitmail json YAML

Updated print/py-reportlab to 2.7

(wiz)

2014-01-19 09:59:47 UTC MAIN commitmail json YAML

Update to 2.7:

2.7:

This release, 2.7, will be the last major one to support Python
2.5, 2.6, and 2.7.  It contains a small number of fixes and additions
since our last release in September 2012.  You may think of it as
a 'long term stable' branch - if key bugs emerge we will issue
2.7.1, 2.7.2 releases and so on.

Charts / graphics

    Added SimpleTimeSeriesPlot
    added _computeMaxSpace
    added in lineStyle (for bars)
    improved SVG rendering
    Pie Chart now has an 'innerRadiusFraction' to allow doughnut-like
    appearance for 2d charts  (it has no effect with 3d charts).
    The separate 'doughnut' chart lacks many pie chart features
    and should only be used if you wanted multiple nested doughnuts.
    Bug fixes:
piecharts.py: fix Pie3d __init__ to call its superclass
linecharts.py: fix swatch creation
fixed y axis in the simple time series plot

PDF

    Fixes to testshapes & pdfform resetting
    colors.py
    various minor fixes

Platypus

    Defined a small bullet rather than a big circle as the default
    for unordered lists
    fixed attribute spelling bug
    fixed CJK + endDots

#################################################################################
#################### RELEASE 2.6  27/09/2012                    #################
#################################################################################

This is a minor release focusing mainly on improved documentation.  There are a
number of minor enhancements, and a larger number of previous-undocumented
enhancements which we have documented better.

###General changes
  * Manuals have been reformatted with more pleasing code snippets and tables of
    contents, and reviewed and expanded

###Flowing documents (Platypus):
  * Added support for HTML-style list objects
  * Added flexible mechanism for drawing bullets
  * Allowed XPreformatted objects to use Asian line wrapping
  * Added an 'autoNextPageTemplate' attribute to PageTemplates.  For example you
    can now set up a 'chapter first page template' which will always be followed
    by a 'continuation template' on the next page break, saving the programmer from
    having to issue control flow commands in the story.
  * added a TopPadder flowable, which will 'wrap' another Flowable and move it
    to the bottom of the current page.
  * More helpful error messages when large tables cannot be rendered
  * Documentation for images within text (test_032_images)
  * Trailing dots for use on contents pages

###Charts and graphics:
  * Support for UPCA bar codes
  * We now have a semi-intelligent system for labelling pie charts with
    callout lines.  Thanks to James Martin-Collar, a maths student at Warwick
    University, who did this as his summer internship.
  * Axes - added startOffset and endOffset properties; allowed for axis
    background annotations.
  * Bar charts - allow more control of z Index (i.e. drawing order of axes and
    lines)
  * Pie charts - fixed bugs in 3d appearance
  * SVG output back end has seen some bugs fixed and now outputs resizeable SVG

(wiz)

2014-01-19 09:51:20 UTC MAIN commitmail json YAML

Updated security/py-hsm to 1.0.4gnb1

(wiz)

2014-01-19 09:51:12 UTC MAIN commitmail json YAML

Adapt py-serial dependency. Fix PKGNAME. Bump PKGREVISION.

(wiz)

2014-01-19 09:50:04 UTC MAIN commitmail json YAML

Updated comms/py-serial to 2.7

(wiz)

2014-01-19 09:49:55 UTC MAIN commitmail json YAML

Update to 2.7. Fix PKGNAME.

Version 2.7      2013-10-17
---------------------------
- Win32: setRTS and setDTR can be called before the port is opened and it will
  set the initial state on port open.
- Posix: add platform specific method: outWaiting (already present for Win32)
- Posix: rename flowControl to setXON to match name on Win32, add
  flowControlOut function
- rfc2217: zero polls value (baudrate, data size, stop bits, parity) (Erik
  Lundh)
- Posix: [Patch pyserial:28] Accept any speed on Linux [update]
- Posix: [Patch pyserial:29] PosixSerial.read() should "ignore" errno.EINTR
- OSX: [Patch pyserial:27] Scan by VendorID/Product ID for USB Serial devices
- Ensure working with bytes in write() calls

Bugfixes:

- [Bug 3540332] SerialException not returned
- [Bug pyserial:145] Error in socket_connection.py
- [Bug pyserial:135] reading from socket with timeout=None causes TypeError
- [Bug pyserial:130] setup.py should not append py3k to package name
- [Bug pyserial:117] no error on lost conn w/socket://

Bugfixes (posix):

- [Patch 3462364] Fix: NameError: global name 'base' is not defined
- list_ports and device() for BSD updated (Anders Langworthy)
- [Bug 3518380] python3.2 -m serial.tools.list_ports error
- [Bug pyserial:137] Patch to add non-standard baudrates to Cygwin
- [Bug pyserial:141] open: Pass errno from IOError to SerialException
- [Bug pyserial:125] Undefined 'base' on list_ports_posix.py, function usb_lsusb
- [Bug pyserial:151] Serial.write() without a timeout uses 100% CPU on POSIX
- [Patch pyserial:30] [PATCH 1/1] serial.Serial() should not raise IOError.

Bugfixes (win32):

- [Bug 3444941] ctypes.WinError() unicode error
- [Bug 3550043] on Windows in tools global name 'GetLastError' is not defined
- [Bug pyserial:146] flush() does nothing in windows (despite docs)
- [Bug pyserial:144] com0com ports ignored due to missing "friendly name"
- [Bug pyserial:152] Cannot configure port, some setting was wrong. Can leave
  port handle open but port not accessible

(wiz)

2014-01-19 09:34:02 UTC MAIN commitmail json YAML

Updated print/py-cups to 1.9.66

(wiz)

2014-01-19 09:33:53 UTC MAIN commitmail json YAML

Update to 1.9.66:

2013-11-27  Tim Waugh  <twaugh@redhat.com>

* setup.py: Version 1.9.66.

2013-11-04  Jiri Popelka  <jpopelka@redhat.com>

* Python3 compatibility

2013-11-27  Tim Waugh  <twaugh@redhat.com>

* setup.py: Version 1.9.65.

2013-07-31  Jiri Popelka  <jpopelka@redhat.com>

* cupsconnection.c (PyObject_from_attr_value): Fix getting of booleans.

2013-04-12  Tim Waugh  <twaugh@redhat.com>

* cupsconnection.c (UTF8_from_PyObj): Propagate UTF-8 decoding
errors.

2013-04-10  Tim Waugh  <twaugh@redhat.com>

* cupsconnection.c: Don't just append printer name to base URI
to get printer URI. Need to actually encode the name.

2013-04-03  Tim Waugh  <twaugh@redhat.com>

* cupsconnection.c: Fixed documentation typo for
Connection.getPPDs2.

2013-03-20  Tim Waugh  <twaugh@redhat.com>

* setup.py: Version 1.9.63.

2013-03-20  Tim Waugh  <twaugh@redhat.com>

* cupsconnection.c (set_ipp_error): IPPError tuple now
contains a string describing the specific error encountered,
if available.

2012-08-01  Tim Waugh  <twaugh@redhat.com>

* setup.py: Version 1.9.62.

2012-03-28  Tim Waugh  <twaugh@redhat.com>

* cupsmodule.c: Define all constants regardless of which
version of CUPS is built against.

2012-03-22  Tim Waugh  <twaugh@redhat.com>

* cupsppd.c (PPD_dealloc): Add missing NULL check for
debugging message (Ubuntu #951001).  Patch from Till Kamppeter.

(wiz)

2014-01-19 09:31:42 UTC MAIN commitmail json YAML

Updated www/py-curl to 7.19.3

(wiz)

2014-01-19 09:31:33 UTC MAIN commitmail json YAML

Update to 7.19.3:

Version 7.19.3 [requires libcurl-7.19.0 or better] - 2014-01-09
---------------------------------------------------------------

        * Added CURLOPT_NOPROXY.

        * Added CURLINFO_LOCAL_PORT, CURLINFO_PRIMARY_PORT and
          CURLINFO_LOCAL_IP (patch by Adam Jacob Muller).

        * When running on Python 2.x, for compatibility with Python 3.x,
          Unicode strings containing ASCII code points only are now accepted
          in setopt() calls.

        * PycURL now requires that compile time SSL backend used by libcurl
          is the same as the one used at runtime. setup.py supports
          --with-ssl, --with-gnutls and --with-nss options like libcurl does,
          to specify which backend libcurl uses. On some systems PycURL can
          automatically figure out libcurl's backend.
          If the backend is not one for which PycURL provides crypto locks
          (i.e., any of the other backends supported by libcurl),
          no runtime SSL backend check is performed.

        * Default PycURL user agent string is now built at runtime, and will
          include the user agent string of libcurl loaded at runtime rather
          than the one present at compile time.

        * PycURL will now use WSAduplicateSocket rather than dup on Windows
          to duplicate sockets obtained from OPENSOCKETFUNCTION.
          Using dup may have caused crashes, OPENSOCKETFUNCTION should
          now be usable on Windows.

        * A new script, winbuild.py, was added to build PycURL on Windows
          against Python 2.6, 2.7, 3.2 and 3.3.

        * Added CURL_LOCK_DATA_SSL_SESSION (patch by Tom Pierce).

        * Added E_OPERATION_TIMEDOUT (patch by Romuald Brunet).

        * setup.py now handles --help argument and will print PycURL-specific
          configuration options in addition to distutils help.

        * Windows build configuration has been redone:
          PYCURL_USE_LIBCURL_DLL #define is gone, use --use-libcurl-dll
          argument to setup.py to build against a libcurl DLL.
          CURL_STATICLIB is now #defined only when --use-libcurl-dll is not
          given to setup.py, and PycURL is built against libcurl statically.
          --libcurl-lib-name option can be used to override libcurl import
          library name.

        * Added CURLAUTH_DIGEST_IE as pycurl.HTTPAUTH_DIGEST_IE.

        * Added CURLOPT_POSTREDIR option and CURL_REDIR_POST_301,
          CURL_REDIR_POST_302, CURL_REDIR_POST_303 and CURL_REDIR_POST_ALL
          constants. CURL_REDIR_POST_303 requires libcurl 7.26.0 or higher,
          all others require libcurl 7.19.1 or higher.

        * PycURL now supports Python 3.1 through 3.3. Python 3.0 might
          work but it appears to ship with broken distutils, making virtualenv
          not function on it.

        * PycURL multi objects now have the multi constants defined on them.
          Previously the constants were only available on pycurl module.
          The new behavior matches that of curl and share objects.

        * PycURL share objects can now be closed via the close() method.

        * PycURL will no longer call `curl-config --static-libs` if
          `curl-config --libs` succeeds and returns output.
          Systems on which neither `curl-config --libs` nor
          `curl-config --static-libs` do the right thing should provide
          a `curl-config` wrapper that is sane.

        * Added CURLFORM_BUFFER and CURLFORM_BUFFERPTR.

        * pycurl.version and user agent string now include both
          PycURL version and libcurl version as separate items.

        * Added CURLOPT_DNS_SERVERS.

        * PycURL can now be dynamically linked against libcurl on Windows
          if PYCURL_USE_LIBCURL_DLL is #defined during compilation.

        * Breaking change: opensocket callback now takes an additional
          (address, port) tuple argument. Existing callbacks will need to
          be modified to accept this new argument.
          https://github.com/pycurl/pycurl/pull/18

Version 7.19.0.3 [requires libcurl-7.19.0 or better] - 2013-12-24
-----------------------------------------------------------------

* Re-release of 7.19.0.2 with minor changes to build Windows packages
  due to botched 7.19.0.2 files on PyPi.
  http://curl.haxx.se/mail/curlpython-2013-12/0021.html

Version 7.19.0.2 [requires libcurl-7.19.0 or better] - 2013-10-08
-----------------------------------------------------------------

        * Fixed a bug in a commit made in 2008 but not released until 7.19.0.1
          which caused CURLOPT_POSTFIELDS to not correctly increment reference
          count of the object being given as its argument, despite libcurl not
          copying the data provided by said object.

        * Added support for libcurl pause/unpause functionality,
          via curl_easy_pause call and returning READFUNC_PAUSE from
          read callback function.

Version 7.19.0.1 [requires libcurl-7.19.0 or better] - 2013-09-23
-----------------------------------------------------------------

        * Test matrix tool added to test against all supported Python and
          libcurl versions.

        * Python 2.4 is now the minimum required version.

        * Source code, bugs and patches are now kept on GitHub.

        * Added CURLINFO_CERTINFO and CURLOPT_CERTINFO.

        * Added CURLOPT_RESOLVE.

        * PycURL can now be used with Python binaries without thread
          support.

        * gcrypt is no longer initialized when a newer version of gnutls
          is used.

        * Marked NSS as supported.

        * Fixed relative URL request logic.

        * Fixed a memory leak in util_curl_init.

        * Added CURLOPT_USERNAME and CURLOPT_PASSWORD.

        * Fixed handling of big timeout values.

        * Added GLOBAL_ACK_EINTR.

        * setopt(..., None) can be used as unsetopt().

        * CURLOPT_RANGE can now be unset.

        * Write callback can return -1 to signal user abort.

        * Reorganized tests into an automated test suite.

        * Added CURLOPT_SEEKFUNCTION and CURLOPT_SEEKDATA.

        * Cleaned up website.

        * Fix pycurl.reset() (patch by <johansen at sun.com>).

        * Fix install routine in setup.py where
          certain platforms (Solaris, Mac OSX, etc)
          would search for a static copy of libcurl (dbp).

        * Fixed build on OpenSolaris 0906 and other platforms on which
          curl-config does not have a --static-libs option.

        * No longer keep string options copies in the
          Curl Python objects, since string options are
          now managed by libcurl.

(wiz)

2014-01-19 09:26:04 UTC MAIN commitmail json YAML

Updated cad/gtkwave to 3.3.53

(mef)

2014-01-19 09:25:18 UTC MAIN commitmail json YAML

Bump version 3.3.28 to 3.3.53,
from the ChangeLog, the date lines are picked up:

3.3.29  31dec11 << short descriptions >>
3.3.30 17jan12  Updated ./configure to add --disable-mime-update flag.
3.3.31 30jan12  Added support for native file requesters in OSX Quartz.
3.3.32 13feb12  Turn off loader messages when Tcl is executing a command.
3.3.33 27feb12  Scan-build fix in vcd_recoder.c.
3.3.34 12mar12  Fix for marker time deltas when $timezero is used.
3.3.35 04apr12  Polarity fix for vcd_preserve_glitches in rcfile.  Default
3.3.36  04may12 Fixed destructive string convert in fstUtilityBinToEsc().
3.3.37  10jun12 Added patch for savefile.c that corrects an issue in which the
3.3.38  10jul12 Upgrading vermin parser to handle some > 1995 constructs.
3.3.39  08aug12 Fixed relative pathnames when generated in MinGW and used
3.3.40  10sep12 Fixed y-size of splash screen on MinGW with newest version
3.3.41  30sep12 Fix for gtkwave::addSignalsFromList when encountering
3.3.42  28nov12 Fix to prevent missing group openings from keeping other
3.3.43  26jan13 Fix for rtlbrowse for gtk_adjustment_get_page_increment and
3.3.44  16feb13 gdk_draw_layout assertion `GDK_IS_DRAWABLE (drawable)'
3.3.45  28feb13 Fix for VCDNAM_ESCAPE character in treesearch window.  This
3.3.46  29apr13 Upgraded to autoconf 2.69.
3.3.47  14may13 Fix for crash in 64-bit mode with array accesses in
3.3.48  04aug13 Fixed infinite loop hang on various helpers executables
3.3.49  11sep13 Fix crashed caused by X11 protocol limitation for pixmap size.
3.3.50  15oct13 Limit number of rows that can be displayed in mouseover in
3.3.51  27oct13 MAINTAINERS: Please add gedit to the list of dependencies
3.3.52  11nov13 Added LZ4 as compression type for FST.  When enabled with
3.3.53  15dec13 Made LZ4 the default compression routine selected for vcd2fst.

(mef)

2014-01-19 09:12:26 UTC MAIN commitmail json YAML

Updated time/py-icalendar to 3.6.1

(wiz)

2014-01-19 09:12:17 UTC MAIN commitmail json YAML

Update to 3.6.1:

3.6.1 (2014-01-13)
------------------

- Open text files referenced by setup.py as utf-8, no matter what the locale
  settings are set to. Fixes #122.
  [sochotnicky]

- Add tox.ini to source tarball, which simplifies testing for in distributions.
  [sochotnicky]

3.6 (2014-01-06)
----------------

- Python3 (3.3+) + Python 2 (2.6+) support [geier]

- Made sure to_ical() always returns bytes [geier]

- Support adding lists to a component property, which value already was a list
  and remove the Component.set method, which was only used by the add method.
  [thet]

- Remove ability to add property parameters via a value's params attribute when
  adding via cal.add (that was only possible for custom value objects and makes
  up a strange API), but support a parameter attribute on cal.add's method
  signature to pass a dictionary with property parameter key/value pairs.
  Fixes #116.
  [thet]

- Backport some of Regebro's changes from his regebro-refactor branch.
  [thet]

- Raise explicit error on another malformed content line case.
  [hajdbo]

- Correctly parse datetime component property values with timezone information
  when parsed from ical strings.
  [untitaker]

(wiz)

2014-01-19 09:09:22 UTC MAIN commitmail json YAML

Updated devel/py-daemon to 1.6

(wiz)

2014-01-19 09:09:13 UTC MAIN commitmail json YAML

Update to 1.6:

    Version 1.6 released.

    * Use absolute imports to disambiguate provenance of names.
    * setup.py: Require ���lockfile >=0.9���.
    * daemon/pidfile.py: Renamed from ���daemon/pidlockfile.py���. Change
      references elsewhere to use this new name.
    * test/test_pidfile.py: Renamed from ���test/test_pidlockfile.py���.
      Change references elsewhere to use this new name.
    * daemon/pidfile.py: Remove functionality now migrated to ���lockfile���
      library.

(wiz)

2014-01-19 09:00:23 UTC MAIN commitmail json YAML

Add missing extension.mk include; fixes packaging with python-3.x.

(wiz)

2014-01-19 08:45:16 UTC MAIN commitmail json YAML

Fix PKGNAME to include PKGVERSION.

(wiz)

2014-01-19 08:39:00 UTC MAIN commitmail json YAML

Remove FETCH_USING, not a package-setable variable.

(wiz)

2014-01-19 07:45:25 UTC MAIN commitmail json YAML

Updated cross/freemint-ldg to 20131104
Updated cross/freemint-mintlib to 20131219

(ryoon)

2014-01-19 07:43:14 UTC MAIN commitmail json YAML

Update to 20131219

Changelog:
* Improve multibyte string handling
* Improve umask, towupper/towlower, readdir, scandir, and nanosleep

(ryoon)

2014-01-19 07:36:18 UTC MAIN commitmail json YAML

2014-01-19 07:24:52 UTC MAIN commitmail json YAML

Updated cross/freemint-binutils to 2.24

(ryoon)

2014-01-19 07:23:49 UTC MAIN commitmail json YAML

2014-01-19 02:54:56 UTC MAIN commitmail json YAML

Make this build on FreeBSD. Patch addition taken from FreeBSD's ports.

(rodent)

2014-01-19 01:19:48 UTC MAIN commitmail json YAML

Update mozc packages to 1.13.1651.102

(ryoon)

2014-01-19 01:18:50 UTC MAIN commitmail json YAML

Update to 1.13.1651.102

* This version requires -std=c++11, then set GCC_REQD=4.7

Changelog:
r185 2014-01-06 1.13.1651.102

    FIX: Refactor placeholder management ( Issue 147 )
    FIX: Specify _NET_WM_WINDOW_TYPE to mozc_renderer ( Issue 195 )
    FIX: header-line-format breaks candidate window on Emacs 24 ( Issue 196 )
    Support Android NDK r9b.

(ryoon)

2014-01-19 00:49:07 UTC MAIN commitmail json YAML

2014-01-19 00:18:50 UTC MAIN commitmail json YAML

Updated textproc/py-jinja2 to 2.7.2

(rodent)

2014-01-19 00:18:37 UTC MAIN commitmail json YAML

Updated to latest stable version, 2.7.2. All dependent packages built with
this version. From CHANGES:

Version 2.7.2
-------------
(bugfix release, released on January 10th 2014)

- Prefix loader was not forwarding the locals properly to
  inner loaders.  This is now fixed.
- Security issue: Changed the default folder for the filesystem cache to be
  user specific and read and write protected on UNIX systems.  See `Debian bug
  734747`_ for more information.

.. _Debian bug 734747: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=734747

(rodent)

2014-01-18 20:19:27 UTC MAIN commitmail json YAML

2014-01-18 20:18:50 UTC MAIN commitmail json YAML

2014-01-18 20:17:49 UTC MAIN commitmail json YAML

2014-01-18 20:17:10 UTC MAIN commitmail json YAML

Update Python section and document versioned_dependencies.mk.

(wiz)

2014-01-18 19:56:36 UTC MAIN commitmail json YAML

Convert to versioned_dependencies.mk for Pmw.

(wiz)

2014-01-18 19:51:28 UTC MAIN commitmail json YAML

Revert unintended commit; pkgsrc not ready yet.

(wiz)

2014-01-18 19:50:27 UTC MAIN commitmail json YAML

2014-01-18 19:50:08 UTC MAIN commitmail json YAML

Added x11/py-Pmw2 version 2.0.0rc1

(wiz)

2014-01-18 19:49:57 UTC MAIN commitmail json YAML

2014-01-18 19:49:43 UTC MAIN commitmail json YAML

2014-01-18 19:49:32 UTC MAIN commitmail json YAML

Import py33-Pmw-2.0.0rc1 as x11/py-Pmw2.

Pmw is a toolkit for building high-level compound widgets in Python
using the Tkinter module.

It consists of a set of base classes and a library of flexible and
extensible megawidgets built on this foundation. These megawidgets
include notebooks, comboboxes, selection widgets, paned widgets,
scrolled widgets and dialog windows.

This is the python-3.x version of the module.

(wiz)

2014-01-18 19:48:57 UTC MAIN commitmail json YAML

Improve support for python-3.3.

(wiz)

2014-01-18 19:07:57 UTC MAIN commitmail json YAML

2014-01-18 19:05:56 UTC MAIN commitmail json YAML

2014-01-18 19:05:38 UTC MAIN commitmail json YAML

2014-01-18 19:05:32 UTC MAIN commitmail json YAML

Added www/py-flup3 version 1.0.3pre1

(wiz)

2014-01-18 19:05:13 UTC MAIN commitmail json YAML

Import py33-flup-1.0.3pre1 as www/py-flup3.

flup is a collection of modules for the Python Web Server Gateway
Interface, including support for AJP 1.3, FastCGI and SCGI. It also
offers a basic middleware.

This package contains the 3.x version of the module.

(wiz)

2014-01-18 17:53:18 UTC MAIN commitmail json YAML

Handle python-specific PLIST in the standard way.

(wiz)

2014-01-18 15:48:00 UTC MAIN commitmail json YAML

Mention it's the python-2.x version only.

(wiz)

2014-01-18 15:47:24 UTC MAIN commitmail json YAML

Add jsoblib support (currently unused).

(wiz)

2014-01-18 15:46:15 UTC MAIN commitmail json YAML

Added textproc/py-jsonlib3 version 1.6.1

(wiz)

2014-01-18 15:46:06 UTC MAIN commitmail json YAML

+ py-jsonlib3.

(wiz)

2014-01-18 15:45:30 UTC MAIN commitmail json YAML

Import py33-jsonlib-1.6.1 as textproc/py-jsonlib3.

JSON is a lightweight data-interchange format. It's often used for
exchanging data between a web server and user agent. This module
aims to produce a library for serializing and deserializing JSON
that conforms strictly to RFC 4627.

This package contains the python-3.x version of the module.

(wiz)

2014-01-18 15:13:26 UTC MAIN commitmail json YAML

Add quoting in the hope it fixes NetBSD 5's make(1)'s problems.

(wiz)

2014-01-18 15:02:27 UTC MAIN commitmail json YAML

fix type deforaos-libdesktop update

(mspo)

2014-01-18 12:59:19 UTC MAIN commitmail json YAML

Updated databases/ruby-ldap to 0.9.16

(obache)

2014-01-18 12:58:59 UTC MAIN commitmail json YAML

Update ruby-ldap to 0.9.16.

Fri Sep  6 07:04:07 UTC 2013 Alexey Chebotar <alexey.chebotar@gmail.com>
  * Version 0.9.16
  * Fixed undefined method 'each' in LDAP::LDIF.mods_to_ldif (GH-26).
    Thanks to Francesco Malvezzi.

Thu Aug 29 10:18:48 UTC 2013 Alexey Chebotar <alexey.chebotar@gmail.com>
  * Version 0.9.15
  * Accept nil for new_parent_dn for rename. Thanks to Kouhei Sutou.

Wed Aug 28 13:21:53 UTC 2013 Alexey Chebotar <alexey.chebotar@gmail.com>
  * Version 0.9.14
  * Fixed option parsing bug for LDAP::Conn.sasl_bind. Thanks to Brian Leake.
  * Added possibility to use :nocanon option in rb_ldap_conn_sasl_bind.
    See ldap_set_option(3) for more information. Thanks to Brian Leake.
  * Added function conn.rename(dn, new_rdn, new_parent_dn, delete_old_rdn, sctrls, cctrls)  => self
    Modify the RDN of the entry with DN, dn, giving it the new RDN in parent new_parent_dn,
    new_rdn. If delete_old_rdn is true, the old RDN value will be deleted from the entry.
    Thanks to Marek Veber.
  * Added option LDAP_OPT_NETWORK_TIMEOUT for openLDAP. Thanks to David Campbell.
  * Fixed build error with GCC 4.8.1. Thanks to Kouhei Sutou.
  * Add missing ldap_raname_s() function availability check. Thanks to Kouhei Sutou.

(obache)

2014-01-18 08:08:59 UTC MAIN commitmail json YAML

treat python version depended PLIST handling with standard way.

(obache)

2014-01-18 07:43:53 UTC MAIN commitmail json YAML

Updated www/py-httplib2 to 0.8

(wiz)

2014-01-18 07:43:44 UTC MAIN commitmail json YAML

Update to 0.8, and fix PLIST for python-3.x.

0.8
  More fixes for the App Engine support.

  Added a new feature that allows you to supply your own provider for the
  CA_CERTS file. Just create a module named ca_certs_locater that has a method
  get() that returns the file location of the CA_CERTS file.

  Lots of clean up of the code formatting to make it more consistent.

(wiz)

2014-01-18 07:40:24 UTC MAIN commitmail json YAML

Add separate PLISTs for python-2.x and python-3.x, to fix build with
python-3.x.

(wiz)

2014-01-18 06:11:37 UTC MAIN commitmail json YAML

Fix PR pkg/48530. Fix packaging under NetBSD/i386.

(ryoon)

2014-01-17 23:32:10 UTC MAIN commitmail json YAML

Updated textproc/py-html5lib to 0.999

(wiz)

2014-01-17 23:32:02 UTC MAIN commitmail json YAML

Update to 0.999:

0.999
~~~~~

Released on December 23, 2013

* Fix #127: add work-around for CPython issue #20007: .read(0) on
  http.client.HTTPResponse drops the rest of the content.

* Fix #115: lxml treewalker can now deal with fragments containing, at
  their root level, text nodes with non-ASCII characters on Python 2.

0.99
~~~~

Released on September 10, 2013

* No library changes from 1.0b3; released as 0.99 as pip has changed
  behaviour from 1.4 to avoid installing pre-release versions per
  PEP 440.

1.0b3
~~~~~

Released on July 24, 2013

* Removed ``RecursiveTreeWalker`` from ``treewalkers._base``. Any
  implementation using it should be moved to
  ``NonRecursiveTreeWalker``, as everything bundled with html5lib has
  for years.

* Fix #67 so that ``BufferedStream`` to correctly returns a bytes
  object, thereby fixing any case where html5lib is passed a
  non-seekable RawIOBase-like object.

1.0b2
~~~~~

Released on June 27, 2013

* Removed reordering of attributes within the serializer. There is now
  an ``alphabetical_attributes`` option which preserves the previous
  behaviour through a new filter. This allows attribute order to be
  preserved through html5lib if the tree builder preserves order.

* Removed ``dom2sax`` from DOM treebuilders. It has been replaced by
  ``treeadapters.sax.to_sax`` which is generic and supports any
  treewalker; it also resolves all known bugs with ``dom2sax``.

* Fix treewalker assertions on hitting bytes strings on
  Python 2. Previous to 1.0b1, treewalkers coped with mixed
  bytes/unicode data on Python 2; this reintroduces this prior
  behaviour on Python 2. Behaviour is unchanged on Python 3.

1.0b1
~~~~~

Released on May 17, 2013

* Implementation updated to implement the `HTML specification
  <http://www.whatwg.org/specs/web-apps/current-work/>`_ as of 5th May
  2013 (`SVN <http://svn.whatwg.org/webapps/>`_ revision r7867).

* Python 3.2+ supported in a single codebase using the ``six`` library.

* Removed support for Python 2.5 and older.

* Removed the deprecated Beautiful Soup 3 treebuilder.
  ``beautifulsoup4`` can use ``html5lib`` as a parser instead. Note that
  since it doesn't support namespaces, foreign content like SVG and
  MathML is parsed incorrectly.

* Removed ``simpletree`` from the package. The default tree builder is
  now ``etree`` (using the ``xml.etree.cElementTree`` implementation if
  available, and ``xml.etree.ElementTree`` otherwise).

* Removed the ``XHTMLSerializer`` as it never actually guaranteed its
  output was well-formed XML, and hence provided little of use.

* Removed default DOM treebuilder, so ``html5lib.treebuilders.dom`` is no
  longer supported. ``html5lib.treebuilders.getTreeBuilder("dom")`` will
  return the default DOM treebuilder, which uses ``xml.dom.minidom``.

* Optional heuristic character encoding detection now based on
  ``charade`` for Python 2.6 - 3.3 compatibility.

* Optional ``Genshi`` treewalker support fixed.

* Many bugfixes, including:

  * #33: null in attribute value breaks XML AttValue;

  * #4: nested, indirect descendant, <button> causes infinite loop;

  * `Google Code 215
    <http://code.google.com/p/html5lib/issues/detail?id=215>`_: Properly
    detect seekable streams;

  * `Google Code 206
    <http://code.google.com/p/html5lib/issues/detail?id=206>`_: add
    support for <video preload=...>, <audio preload=...>;

  * `Google Code 205
    <http://code.google.com/p/html5lib/issues/detail?id=205>`_: add
    support for <video poster=...>;

  * `Google Code 202
    <http://code.google.com/p/html5lib/issues/detail?id=202>`_: Unicode
    file breaks InputStream.

* Source code is now mostly PEP 8 compliant.

* Test harness has been improved and now depends on ``nose``.

* Documentation updated and moved to http://html5lib.readthedocs.org/.

(wiz)

2014-01-17 23:26:51 UTC MAIN commitmail json YAML

Updated textproc/py-Tempita to 0.5.2

(wiz)

2014-01-17 23:26:42 UTC MAIN commitmail json YAML

2014-01-17 23:11:28 UTC MAIN commitmail json YAML

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

Add py-dns/py-dns3 support.

(wiz)

2014-01-17 23:03:11 UTC MAIN commitmail json YAML

Added net/py-dns3 version 1.11.1

(wiz)

2014-01-17 23:02:58 UTC MAIN commitmail json YAML

2014-01-17 23:00:30 UTC MAIN commitmail json YAML

Import py33-dns-1.11.1 as net/py-dns3.

dnspython is a DNS toolkit for Python. It provides both high and low
level access to DNS. The high level classes perform queries for data
of a given name, type, and class, and return an answer set. The low
level classes allow direct manipulation of DNS zones, messages, names,
and records.

This is the python-3.x version of the module.

(wiz)

2014-01-17 22:49:02 UTC MAIN commitmail json YAML

Updated net/py-dns to 1.11.1

(wiz)

2014-01-17 22:48:53 UTC MAIN commitmail json YAML

Update to 1.11.1:

* (Version 1.11.1 released)

* dns/tsigkeyring.py (to_text): we want keyname.to_text(), not
  dns.name.to_text(keyname).  Thangs to wangwang for the fix.

* dns/tsig.py (sign): multi-message TSIGs were broken for
  algorithms other than HMAC-MD5 because we weren't passing the
  right digest module to the HMAC code.  Thanks to salzmdan for
  reporting the bug.

* dns/dnssec.py (_find_candidate_keys): we tried to extract the
  key from the wrong variable name.  Thanks to Andrei Fokau for the
  fix.

* dns/resolver.py: we want 'self.retry_servfail' not just
  retry_servfail.  Reported by many, thanks!  Thanks to
  Jeffrey C. Ollie for the fix.

* tests/grange.py: fix tests to use older-style print formatting
  for backwards compatibility with python 2.4.  Thanks to
  Jeffrey C. Ollie for the fix.

* (Version 1.11.0 released)

* dns/name.py (Name.to_wire): Do not add items with offsets >= 2^14
  to the compression table.  Thanks to Casey Deccio for discovering
  this bug.

* dns/ipv6.py (inet_ntoa): We now comply with RFC 5952 section
  5.2.2, by *not* using the :: syntax to shorten just one 16-bit
  field.  Thanks to David Waitzman for reporting the bug and
  suggesting the fix.

* lock caches in case they are shared

* raise YXDOMAIN if we see one

* do not print empty rdatasets

* Add contributed $GENERATE support (thanks uberj)

* Remove DNSKEY keytag uniqueness assumption (RFC 4034, section 8)
  (thanks James Dempsey)

* added set_flags() method to dns.resolver.Resolver

* added support for TLSA RR

* dns/rdtypes/ANY/NSEC3.py (NSEC3.from_text): The NSEC3 from_text()
  method could erroneously emit empty bitmap windows (i.e. windows
  with a count of 0 bytes); such bitmaps are illegal.

* (Version 1.10.0 released)

* dns/message.py (make_query): All EDNS values may now be
  specified when calling make_query()

* dns/query.py: Specifying source_port had no effect if source was
  not specified.  We now use the appropriate wildcard source in
  that case.

* dns/resolver.py (Resolver.query): source_port may now be
  specified.

* dns/resolver.py (Resolver.query): Switch to TCP when a UDP
  response is truncated.  Handle nameservers that serve on UDP
  but not TCP.

* dns/zone.py (from_xfr): dns.zone.from_xfr() now takes a
  'check_origin' parameter which defaults to True.  If set to
  False, then dnspython will not make origin checks on the zone.
  Thanks to Carlos Perez for the report.

* dns/rdtypes/ANY/SSHFP.py (SSHFP.from_text): Allow whitespace in
  the text string.  Thanks to Jan Andres for the report and the
  patch.

* dns/message.py (from_wire): dns.message.from_wire() now takes
  an 'ignore_trailing' parameter which defaults to False.  If set
  to True, then trailing junk will be ignored instead of causing
  TrailingJunk to be raised.  Thanks to Shane Huntley for
  contributing the patch.

* dns/resolver.py: Added LRUCache.  In this cache implementation,
  the cache size is limited to a user-specified number of nodes, and
  when adding a new node to a full cache the least-recently used
  node is removed.

* dns/resolver.py: dns.resolver.override_system_resolver()
    overrides the socket module's versions of getaddrinfo(),
  getnameinfo(), getfqdn(), gethostbyname(), gethostbyname_ex() and
  gethostbyaddr() with an implementation which uses a dnspython stub
  resolver instead of the system's stub resolver.  This can be
  useful in testing situations where you want to control the
  resolution behavior of python code without having to change the
  system's resolver settings (e.g. /etc/resolv.conf).
  dns.resolver.restore_system_resolver() undoes the change.

* dns/ipv4.py: dnspython now provides its own, stricter, versions
  of IPv4 inet_ntoa() and inet_aton() instead of using the OS's
  versions.

* dns/ipv6.py: inet_aton() now bounds checks embedded IPv4 addresses
  more strictly.  Also, now only dns.exception.SyntaxError can be
  raised on bad input.

* Old DNSSEC types (KEY, NXT, and SIG) have been removed.

* Bounds checking of slices in rdata wire processing is now more
  strict, and bounds errors (e.g. we got less data than was
  expected) now raise dns.exception.FormError rather than
  IndexError.

(wiz)

2014-01-17 22:44:24 UTC MAIN commitmail json YAML

Updated lang/py-basicproperty to 0.6.9a

(wiz)

2014-01-17 22:44:16 UTC MAIN commitmail json YAML

Update to latest version, 0.6.9a from 2007: changes not found.

XXX: let's think about removing this and py-table, shall we?

(wiz)

2014-01-17 20:27:05 UTC MAIN commitmail json YAML

+ py-IP-0.81, py-METAR-0.19, py-PDF2-1.19, py-PasteDeploy-1.5.2,
  py-Pillow-2.3.0, py-Tempita-0.5.2, py-Unidecode-0.04.14,
  py-Whoosh-2.5.6, py-bleach-1.4, py-bottle-0.11.6, py-ckanclient-0.10,
  py-coverage-3.7, py-creole-1.1.1, py-cssselect-0.9.1, py-cssutils-1.0,
  py-cups-1.9.66, py-daemon-1.6, py-darcsver-1.7.4, py-datapkg-0.9,
  py-decorator-3.4.0, py-django-cmsplugin_gallery-0.5.5,
  py-django-easy-thumbnails-1.4, py-django-photologue-2.7,
  py-django-registration-1.0, py-django-reversion-1.8.0,
  py-django-south-0.8.3, py-djangorestframework-2.3.12, py-dulwich-0.9.4,
  py-ephem-3.7.5.1, py-gammu-1.32.0, py-gmpy-1.17, py-greenlet-0.4.2,
  py-hgtools-4.0, py-icalendar-3.6.1, py-input-pad-1.4.2, py-irclib-8.5,
  py-keyring-0.6.2, py-kombu-3.0.9, py-lasso-2.4.0, py-libmtag-0.3.1,
  py-logilab-astng-0.24.3, py-logilab-common-0.60.1, py-markdown-2.3.1,
  py-markdown2-2.2.0, py-mezzanine-3.0.5, py-mpmath-0.18,
  py-msgpack-0.4.0, py-munkres-1.0.6, py-musicbrainz-0.7.4,
  py-netlib-0.9.2, py-networkx-1.8.1, py-notify-0.3.1, py-pandas-0.13.0,
  py-paramiko-1.12.1, py-pendrell-0.3.7, py-pep8-1.4.6, py-pexpect-3.0,
  py-prettytable-0.7.2, py-ptt-1.10.2, py-py-1.4.19, py-pyutil-1.9.7,
  py-quixote-2.7, py-relatorio-0.6.0, py-reportlab-2.7, py-rope-0.9.4,
  py-scgi-1.14, py-serial-2.7, py-setuptools-2.1, py-simpletal-5.1,
  py-smb-1.1.8, py-sphinx-theme-cloud-1.6, py-sqlalchemy-0.9.1,
  py-suds-0.4.1, py-test-2.5.1, py-testtools-0.9.34, py-tlslite-0.4.6,
  py-tornado-3.2, py-urwid-1.1.2, py-uwsgi-2.0, py-xdg-0.25,
  py-zbase32-1.1.5, py-zconfig-3.0.3, py-zfec-1.4.24.

(wiz)

2014-01-17 20:20:10 UTC MAIN commitmail json YAML

+ Added devel/py-test version 2.3.5 [drochner 2013-07-24]

(wiz)

2014-01-17 20:19:09 UTC MAIN commitmail json YAML

+ Added devel/py-rope version 0.9.3 [drochner 2010-08-15]

(wiz)

2014-01-17 20:17:55 UTC MAIN commitmail json YAML

+ Added devel/py-py version 1.4.15 [drochner 2013-07-24]

(wiz)

2014-01-17 19:13:37 UTC MAIN commitmail json YAML

Disable assembler code under Mac OS X which is broken in this release.

(tron)

2014-01-17 18:58:19 UTC MAIN commitmail json YAML

Add RUBY_VERSION_SUPPORTED= line since ruby 1.8 support was dropped.

(tsutsui)

2014-01-17 18:26:36 UTC MAIN commitmail json YAML

Updated misc/ruby-launchy to 2.4.2
Updated misc/ruby-parallel to 0.9.2
Updated misc/ruby-rainbow to 1.99.1
Updated net/ruby-twitter to 5.5.1
Updated net/ruby-tw to 1.0.6

(tsutsui)

2014-01-17 18:19:38 UTC MAIN commitmail json YAML

Update ruby-tw to 1.0.6.  PR/48447

Changelog (from History.txt)

=== 1.0.6 2014-01-17

* rescue Launchy::CommandNotFoundError #56

=== 1.0.5 2014-01-16

* use HTTPS for OAuth::Consumer #55
  * thank you for contributing @ymrl

=== 1.0.4 2014-01-08

* update gem dependencies

=== 1.0.3 2014-01-08

* bugfix for rainbow 1.99.x #54
* use launchy gem to open OAuth-URL #53

=== 1.0.2 2013-11-27

* fix syntax error on ruby1.8.7

=== 1.0.1 2013-11-23

* bugfix -user:add #51

=== 1.0.0 2013-11-21

* fix for twitter gem v5.0.0 #50

(tsutsui)

2014-01-17 18:17:37 UTC MAIN commitmail json YAML

Update ruby-twitter to 5.5.1. Part of PR/48447.

Changelog (from CHANGELOG.md)

5.5.1
-----
* [Fix bug where `Twitter::Error::AlreadyFavorited` would never be raised](https://github.com/sferik/twitter/issues/512) ([@polestarw](https://twitter.com/polestarw))
* [Fix bug where `Twitter::Error::AlreadyPosted` would never be raised](https://github.com/sferik/twitter/commit/e6b37b930c056a88d8ee1477246635caf579111d)
* [Restore `Twitter::Entities#entities?` as a public method](https://github.com/sferik/twitter/commit/234a9e3134eeee072bd511e1c1f1823ceb1531a2)

5.5.0
-----
* [Add entities to `Twitter::DirectMessage`](https://github.com/sferik/twitter/commit/d911deb456cb2da6e14d0b3c69ba4d068ca85868)
* [Add conversion methods to `Twitter::NullObject`](https://github.com/sferik/twitter/commit/4900fee474feaa1514c06d459a9da6d52c45a60e)

5.4.1
-----
* [Default to maximum number of tweets per request](https://github.com/sferik/twitter/commit/1e41b5d4dde8678f5968b57dafe9da63b092646c)

5.4.0
-----
* [Fix enumerable search interface](https://github.com/sferik/twitter/commit/e14cc3391ebe8229184e9e83806c870df3baa24c)

5.3.1
-----
* [Add `Twitter::Utils` module](https://github.com/sferik/twitter/commit/a1f47fbf19b859c8e680a0a92eff5e225a015090) ([@charliesome](https://twitter.com/charliesome))
* [Remove `Enumerable` monkey patch](https://github.com/sferik/twitter/commit/818b28d1621e843c0c6f9ef471076f4125623e52) ([@charliesome](https://twitter.com/charliesome))
* [Don't spawning a new thread if there's only one element](https://github.com/sferik/twitter/commit/c01ea8309c16eb77eeb368452df1dadd1e405532)
* [Introduce meaningful constant names](https://github.com/sferik/twitter/commit/215c80890d702535de83d8f849885a95ec153920) ([@futuresanta](https://twitter.com/futuresanta))
* [Automatically flatten `Twitter::Arguments`](https://github.com/sferik/twitter/commit/a556028ace04cb00c3c2b9cb8f72f792a86f04d6)

5.3.0
-----
* [Add `UNABLE_TO_VERIFY_CREDENTIALS` error code](https://github.com/sferik/twitter/commit/6a47e715ef7935cd36a2f78ed877deb3c09af162)
* [Don't suppress `Twitter::Error::Forbidden` in #follow and #follow!](https://github.com/sferik/twitter/commit/b949c0400dabc6774419025e7b131d0a18447c3a)
* [Update memoizable dependency to ~> 0.3.1](https://github.com/sferik/twitter/pull/501)

5.2.0
-----
* [Replace `URI` with `adressable`](https://github.com/sferik/twitter/commit/7ea2f5390dc7456950f55c90aa4e48f29dcd4604)
* [Make `Twitter::Streaming::FriendList` an array](https://github.com/sferik/twitter/commit/1a38e5e8182823c3060fc59c270ef754bd49a179)
* [Add `Twitter::Streaming::DeletedTweet`](https://github.com/sferik/twitter/commit/084025b5e348bd33b4c29c6b9e40565c0e77319c)
* [Add `Twitter::Streaming::StallWarning`](https://github.com/sferik/twitter/commit/b07ac50552f5063ee43a490fa40da8b6889df772)
* [Add error code for "User is over daily status update limit"](https://github.com/sferik/twitter/commit/76c088d38e594703ee391f2a524142aa357b0972)
* [`Twitter::Streaming::Client#site` can take a `String` or `Twitter::User`](https://github.com/sferik/twitter/commit/e3ad4f2da1f8fc82e1d3febbc2602f626bced8a8)
* [Update `http_parser.rb` dependency to `~> 0.6.0`](https://github.com/sferik/twitter/commit/6d2f81bfc5bd469d558868a0f65356f30ca9f5e7)

5.1.1
-----
* [Custom equalizer for `Twitter::Place`](https://github.com/sferik/twitter/commit/79c76a9bed4f0170c8c09fe38ad4f0ee6aa4505e)

5.1.0
-----
* [Use `Addressable::URI` everywhere](https://github.com/sferik/twitter/commit/97d7c68900c9974a1f6841f6eed2706df9030d64) ([@matthewrudy](https://twitter.com/matthewrudy))
* [Allow use of `Twitter::Place` instead of `place_id`](https://github.com/sferik/twitter/commit/c2b31dd2385fefa30a9ddccf15415a713cf5953a)
* [Allow use of `Twitter::Tweet` instead of `in_reply_to_status_id`](https://github.com/sferik/twitter/commit/6b7d6c2b637a074c348a56a51fb1e02252482fb2)

5.0.1
-----
* [Fix `buftok` delimiter handling](https://github.com/sferik/twitter/pull/484)
* [Started handling streaming deletes](https://github.com/sferik/twitter/commit/8860b97bce4bc36086116f380a2771af3c199ea2)

5.0.0
-----
* [Remove `Twitter::API::Undocumented#status_activity` and `#statuses_activity`](https://github.com/sferik/twitter/commit/7f970810af251b2fe80c38b30c54485c55bd2034)
* [Remove `Twitter::Tweet#favoriters`, `#repliers`, `#repliers_count`, and `#retweeters`](https://github.com/sferik/twitter/commit/77cc963381a68e8299ef6c6b7a306b440666d792)
* [Remove identity map](https://github.com/sferik/twitter/commit/ec7c2df78a200e2b0b1cd3a40983c6ce9dee552d)
* [Remove `Twitter::Cursor#all`](https://github.com/sferik/twitter/commit/72be4148b973153c6d3044c406b768ad832555ff)
* [Remove `Twitter::Cursor#collection`](https://github.com/sferik/twitter/commit/9ae4621610ba6c26950e6b77f950f698cdfc8dac)
* [Remove `Twitter#from_user`](https://github.com/sferik/twitter/commit/d2ae9f1cc1f5224bcdff06cda65fabdf9e7fbcb3)
* [Remove `ClientError`, `ServerError`, and `ParserError`](https://github.com/sferik/twitter/commit/72843948d8a6f66345adc254fa91cf1097592b22)
* [Remove global configuration](https://github.com/sferik/twitter/commit/239c5a8462fabb8c8ef9ec6a4cdded34561d572d)
* [Remove ability to configure client with environment variables](https://github.com/sferik/twitter/commit/17e958579f65abf8932841f20058a5989abb994f)
* [Remove Brittish English aliases](https://github.com/sferik/twitter/commit/572813b373a1c3001ff6c1bb729f092434d17bab)
* [Replace `multi_json` with `json`](https://github.com/sferik/twitter/commit/e5fc292fee078567664acf6be4ed31a8ad077780)
* [Rename `oauth_token` to `access_token`](https://github.com/sferik/twitter/commit/d360f8015c487c4599460abd0dd0bc7e59a522a3)
* [Move `Twitter::Arguments` out of `REST::API` namespace](https://github.com/sferik/twitter/commit/8faa15309d906dd46fccc1b914ea4aa7a5da7c2d)
* [Move `Twitter::Client` into `REST` namespace](https://github.com/sferik/twitter/commit/5b8c3fd243227888fc0886b0bf864ecd3a018f99)
* [Add `Twitter::Streaming::Client`](https://github.com/sferik/twitter/commit/23afe90aa494229a4389c3e51f753102b34fc551)
* [Add `Twitter::Error::AlreadyPosted`](https://github.com/sferik/twitter/commit/e11d2a27dd0dfbbe16c812a81b9c2ab2852a7790)
* [Add `Twitter::REST::Client#reverse_token`](https://github.com/sferik/twitter/commit/39139c4df35b54b86fae29d1ac83a08f4aa293cd)
* [Add `#url` methods to `Twitter::List`, `Twitter::Tweet`, and `Twitter::User`](https://github.com/sferik/twitter/commit/a89ec0f4e81097cc303b6c204e0375eb57ffd614)
* [Add `Twitter::Place#contained_within` and `#contained_within?`](https://github.com/sferik/twitter/commit/23cc247bd20001ecbafa544bfb4546bdfc630429)
* [Add `Twitter::GeoResults`](https://github.com/sferik/twitter/commit/be1a0a1425a6700267aae0f94a8835bff24dad56)
* [Add `NullObject`](https://github.com/sferik/twitter/commit/17880f491726cee77c1cbcf914887e95d5e6ae7e)
* [Add predicate methods for any possible `NullObject`](https://github.com/sferik/twitter/commit/eac5522edededacfc2a22d6f6879da43b8136d41)
* [Always return `URI` instead of `String`](https://github.com/sferik/twitter/commit/341f68d1a46667a820754d30ffa6ec2f50034afc)
* [Allow `URI` as argument](https://github.com/sferik/twitter/commit/c207567e674f108e4074e12c9e7343fb74e8a97c)
* [Allow `String` in addition to `URI` objects](https://github.com/sferik/twitter/commit/89a46fbd3560109da87d5f87262dcf6bd2a336c6)
* [Collection caching](https://github.com/sferik/twitter/commit/d484d7d7d7a0956f9b4fa6791a911ed7c9522cba)
* [Implement `Twitter::Cursor#each` without making an extra HTTP request](https://github.com/sferik/twitter/commit/8eeff57f5c6d6ca0a6f1ff5ebc31e652a71fc150)
* [Make `Twitter::SearchResults` enumerable](https://github.com/sferik/twitter/commit/d5ce8537164912e79dffc5a054ecd9ae6ecb8075)
* [Make `Twitter::Base` objects immutable](https://github.com/sferik/twitter/commit/69b1ef7edad32398b778c8449bc3605739a6c59a)
* [Missing key now raises `KeyError`, not `ArgumentError`](https://github.com/sferik/twitter/commit/f56698caff608527b9f3c2c3dd4c18306589cb3b)
* [Use `equalizer` instead of manually overwriting #==](https://github.com/sferik/twitter/commit/a7ddf718b119e9c5fc8b87e6784e8c3304707a72)
* [Give methods more natural names](https://github.com/sferik/twitter/commit/e593194fb7bd689fca561e6334db1e6af622590a)
* [Fix `Twitter::SearchResults#rpp` return value](https://github.com/sferik/twitter/commit/28d73200490ac2755c3e68d8d273fbc64a8d7066)

4.8.1
-----
* [Ignore case of profile image extension](https://github.com/sferik/twitter/commit/73760610e959ae868de23de3da661d237fbcb106)
* [Allow use of Twitter::Token in place of bearer token string](https://github.com/sferik/twitter/commit/13596bc60db36ecaf5a1df09ecb322d85d8c2922)
* [Add Twitter::API::Undocumented#tweet_count](https://github.com/sferik/twitter/commit/795458a25ec7b143a995e7f2f2043e523c11961c)
* [Add missing dependencies](https://github.com/sferik/twitter/commit/e07e034472df8b7aa44c779371cf1e25d8caa77d) ([@tmatilai](https://twitter.com/tmatilai))

4.8.0
-----
* [Add `Twitter::SearchResults#refresh_url`](https://github.com/sferik/twitter/commit/6bf08c008de139aad3ec173461e8633bfa5a3bd8) ([@mustafaturan](https://twitter.com/mustafaturan))
* [Fix issue with wrong signature being generated when multipart data is posted](https://github.com/sferik/twitter/commit/65ab90a6d51755e5901434a3568f8163ca3e262f) ([@mustafaturan](https://twitter.com/mustafaturan))
* [Restore compatibility with Ruby 1.8.7](https://github.com/sferik/twitter/commit/fb63970c1bd19792955d092a38b6adf53b558ec7)
* [Remove undocumented methods, retired in the APIpocalypse](https://github.com/sferik/twitter/commit/cf6a91f8df833dce5bffc7a0292402860e7d4da7)

4.7.0
-----
* [Add support for application-only authentication](https://github.com/sferik/twitter/pull/387) ([@paracycle](https://twitter.com/paracycle))
* [Add support for `Twitter::Entity::Symbol` entities](https://github.com/sferik/twitter/commit/a14a0cdc57ad5d7760392f71a280c7100a5b5936) ([@anno](https://twitter.com/anno))
* [Add `Twitter::API::OAuth#invalidate_token`](https://github.com/sferik/twitter/pull/372) ([@terenceponce](https://twitter.com/terenceponce))
* [Add `Twitter::API::Lists#lists_owned` method](https://github.com/sferik/twitter/commit/9e97b51c20aabf4485a91ae7db697ee3be131a89)
* [Add `Twitter::API::Tweets#retweeters_ids` method](https://github.com/sferik/twitter/commit/8cf5b2ddf3d2647084496c7c3f205b2468d84cbe)
* [Add `Twitter::SearchResults#next_results`](https://github.com/sferik/twitter/pull/365) ([@KentonWhite](https://twitter.com/KentonWhite))
* [Make consumer_key readable](https://github.com/sferik/twitter/commit/a318869c4827d6add781730cfb67fd2bdca5c584)
* [Loosen required_rubygems_version for compatibility with Ubuntu 10.04](https://github.com/sferik/twitter/commit/41bd5655c2e7eca813807d742cb7fdec8f0bb027)
* [Remove default SSL configuration options and override](https://github.com/sferik/twitter/commit/113b14bc05a9f8e513245fda057e7f16f8965357)

(tsutsui)

2014-01-17 18:16:27 UTC MAIN commitmail json YAML

Update ruby-rainbow to 1.99.1. Part of PR/48447.

Changelog (per Changelog.md)

## 1.99.0 (2013-12-26)

* preparation for dropping String monkey patching
* `require "rainbow/string"` if you want to use monkey patched String
* introduction of Rainbow() wrapper
* support for MRI 1.8.7, 1.9.2, 1.9.3, 2.0 and 2.1, JRuby and Rubinius
* deprecation of Sickill::Rainbow namespace (use Rainbow.enabled = true instead)

## 1.99.1 (2013-12-28)

* drop support for ruby 1.8
* `require "rainbow/string"` -> `require "rainbow/ext/string"`
* custom rainbow wrapper instances (with separate enabled/disabled state)
* shortcut methods for changing text color (`Rainbow("foo").red`)

(tsutsui)

2014-01-17 18:15:44 UTC MAIN commitmail json YAML

Update ruby-parallel to 0.9.2. Part of PR/48447.

No changelog is available in https://github.com/grosser/parallel
but looks misc bug fixes and improvements.

(tsutsui)

2014-01-17 18:13:34 UTC MAIN commitmail json YAML

Update ruby-launchy to 2.4.2.  Part of PR/48447.

pkgsrc change:
Update HOMEPAGE per http://rubygems.org/gems/launchy (the old page is 403)

Changes from HISTORY.md:

## Version 2.4.2 - 2013-11-28
* Fix kde issue - <https://github.com/copiousfreetime/launchy/issues/72> - colbell

## Version 2.4.1 - 2013-11-26
* Abstract out the argv of the commandline - <https://github.com/copiousfreetime/launchy/issues/71>

## Version 2.4.0 - 2013-11-12
* Support `Launchy.open( url, :debug => true )` - <http://github.com/copiousfreetime/launchy/issues/63> - schmich
* Fix inconsistencies in `debug?` and `dry_run?` methods - <http://github.com/copiousfreetime/launchy/issues/63> - schmich
* Fix detection of missing *nix desktops - <http://github.com/copiousfreetime/launchy/issues/70>
* Fix running tests in bare Linux environment - <http://github.com/copiousfreetime/launchy/issues/67> - gioele
* Fix mistaking windows drive as uri schema - <http://github.com/copiousfreetime/launchy/issues/65>
* Attempt fixing windows `start` command oddities, again - <http://github.com/copiousfreetime/launchy/issues/62>

(tsutsui)

2014-01-17 16:34:23 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg2 to 2.1.3

(adam)

2014-01-17 16:33:44 UTC MAIN commitmail json YAML

Changes 2.1.3:
* library.mak: only run asm strip if ASMSTRIP flags are set
* configure: remove code that disables striping in the absence of some flags
* This more closely matches the actual use, also we use plain strip without these flags for striping
* avformat/utils/av_probe_input_buffer2: fix buffer passed to ffio_rewind_with_probe_data()
* avformat/utils/av_probe_input_buffer2: fix offset check
* avformat/utils/av_probe_input_buffer2: Fix pd.buf_size

(adam)

2014-01-17 14:51:01 UTC MAIN commitmail json YAML

Updated devel/py-pexpect to 3.0

(wiz)

2014-01-17 14:50:52 UTC MAIN commitmail json YAML

Update to 3.0.

The new major version number doesn't indicate any deliberate API incompatibility.
We have endeavoured to avoid breaking existing APIs. However, pexpect is under
new maintenance after a long dormancy, so some caution is warranted.

* A new :ref:`unicode API <unicode>` was introduced.
* Python 3 is now supported, using a single codebase.
* Pexpect now requires at least Python 2.6 or 3.2.
* The modules other than pexpect, such as :mod:`pexpect.fdpexpect` and
  :mod:`pexpect.pxssh`, were moved into the pexpect package. For now, wrapper
  modules are installed to the old locations for backwards compatibility (e.g.
  ``import pxssh`` will still work), but these will be removed at some point in
  the future.
* Ignoring ``SIGHUP`` is now optional - thanks to Kimmo Parviainen-Jalanko for
  the patch.

(wiz)

2014-01-17 14:47:25 UTC MAIN commitmail json YAML

2014-01-17 14:45:26 UTC MAIN commitmail json YAML

Updated HOMEPAGE, remove obsolete MASTER_SITES.
Add patch for python-3.x compatibility.

(wiz)

2014-01-17 14:35:15 UTC MAIN commitmail json YAML

Updated audio/py-audioread to 1.0.1

(wiz)

2014-01-17 14:35:06 UTC MAIN commitmail json YAML

Update to 1.0.1 and fix python-3.x compatibility problem.

Changes:
1.0.1
    When GStreamer fails to report a duration, raise an exception
    instead of silently setting the duration field to None.

(wiz)

2014-01-17 14:29:50 UTC pkgsrc-2013Q4 commitmail json YAML

2014-01-17 14:29:29 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4305 - requested by obache
inputmethod/ibus-chewing: security update

Revisions pulled up:
- inputmethod/ibus-chewing/Makefile                            1.34
- inputmethod/ibus-chewing/PLIST                                1.4
- inputmethod/ibus-chewing/distinfo                            1.14
- inputmethod/ibus-chewing/patches/patch-po_zh__CN.po          1.2

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Thu Jan 16 11:14:51 UTC 2014

  Modified Files:
  pkgsrc/inputmethod/ibus-chewing: Makefile PLIST distinfo
  pkgsrc/inputmethod/ibus-chewing/patches: patch-po_zh__CN.po

  Log Message:
  Update ibus-chewing to 1.4.5.

  * Thu Jan 16 2014 Ding-Yi Chen <dchen at redhat.com> - 1.4.5
  - Resolves Bug 1013977 - ibus-chewing needs to have ibus write-cache --system in %post and %postun
  - Resolves Bug 1027031 - CVE-2013-4509 ibus-chewing: ibus: visible password entry flaw [rhel-7.0]
  - Resolves Bug 1028911 - [zh_TW]'Chinese<->English' switch does not work when clicking on the Chewing menu list.
  - Resolves Bug 1045868 - ibus-chewing *again* not built with $RPM_OPT_FLAGS
  - Option "Sync between caps lock and IM":
      + Default of  is changed to "disable",  because the previous default
        "keyboard" cause bug 1028911 for GNOME Shell.
      + Now Sync from "input method" can control Caps LED in GNOME shell.
  - Translation added: de_DE, es_ES, it_IT, pt_BR, uk_UA

(tron)

2014-01-17 14:18:19 UTC MAIN commitmail json YAML

+ abcmidi-20140112, calibre-1.20, cdialog-1.2.20140112,
  gnome-commander-1.2.8.17, highlight-3.17, kde4-4.12.2,
  konversation-1.5, libxmp-4.2.2, liferea-1.10.5, mksh-49,
  puzzles-10116, py-audioread-1.0.1, py-cassa-1.11.0, py-icalendar-3.6,
  py-jinja2-2.7.2, py-psycopg2-2.5.2, tcpreplay-4.0.1, veusz-1.20,
  viewvc-1.1.22, vttest-20140116, webmin-1.670, x264-devel-20140111.

(wiz)

2014-01-17 14:15:17 UTC MAIN commitmail json YAML

+ Added audio/py-audioread version 1.0.0 [drochner 2013-04-02]

(wiz)

2014-01-17 14:03:28 UTC MAIN commitmail json YAML

Fix PKGNAME to use PYPKGPREFIX.

(wiz)

2014-01-17 13:24:06 UTC MAIN commitmail json YAML

2014-01-17 13:23:08 UTC MAIN commitmail json YAML

Added www/ruby-http version 0.5.0

(obache)

2014-01-17 13:22:51 UTC MAIN commitmail json YAML

Import ruby-http-0.5.0 as www/ruby-http.
part of PR pkg/48447

The HTTP Gem is an easy-to-use client library for making requests from Ruby.
It uses a simple method chaining system for building requests, similar to
libraries like JQuery or Python's Requests.

(obache)

2014-01-17 13:19:39 UTC MAIN commitmail json YAML

Updated www/ruby-http_parser.rb to 0.6.0

(obache)

2014-01-17 13:19:19 UTC MAIN commitmail json YAML

Update ruby-http_parser.rb to 0.6.0.

jruby related improvements and bug fixes

(obache)

2014-01-17 13:13:28 UTC MAIN commitmail json YAML

Mark as PYTHON_VERSIONS_INCOMPATIBLE=26:

SyntaxError: ('invalid syntax',
('/usr/pkg/lib/python2.6/site-packages/billiard/_connection3.py',
851, 47, '    _ready_errors = {_winapi.ERROR_BROKEN_PIPE,
_winapi.ERROR_NETNAME_DELETED}\n'))

(wiz)

2014-01-17 13:02:45 UTC MAIN commitmail json YAML

+ruby-descendants_tracker
+ruby-equalizer
+ruby-memoizable
+ruby-thread_safe

(obache)

2014-01-17 13:01:22 UTC MAIN commitmail json YAML

Added misc/ruby-memoizable version 0.4.0

(obache)

2014-01-17 13:01:09 UTC MAIN commitmail json YAML

Import ruby-memoizable-0.4.0 as misc/ruby-memoizable.
part of PR pkg/48447

Memoization is an optimization that saves the return value of a method
so it doesn't need to be re-computed every time that method is called.

(obache)

2014-01-17 13:00:13 UTC MAIN commitmail json YAML

Added misc/ruby-thread_safe version 0.1.3

(obache)

2014-01-17 13:00:00 UTC MAIN commitmail json YAML

Import ruby-thread_safe-0.1.3 as misc/ruby-thread_safe.
part of PR pkg/48447

Threadsafe is a collection of thread-safe versions of common core
Ruby classes.

(obache)

2014-01-17 12:57:43 UTC MAIN commitmail json YAML

Added misc/ruby-equalizer version 0.0.9

(obache)

2014-01-17 12:57:28 UTC MAIN commitmail json YAML

Import ruby-equalizer-0.0.9 as misc/ruby-equalizer.
part of PR pkg/48447

Module to define equality, equivalence and inspection methods.

(obache)

2014-01-17 12:54:40 UTC MAIN commitmail json YAML

Added misc/ruby-descendants_tracker version 0.0.3

(obache)

2014-01-17 12:54:09 UTC MAIN commitmail json YAML

Import ruby-descendants_tracker-0.0.3 as misc/ruby-descendants_tracker.
part of PR pkg/48447

Small module to track descendants in an unobtrusive way.

(obache)

2014-01-17 12:50:59 UTC MAIN commitmail json YAML

2014-01-17 12:50:18 UTC MAIN commitmail json YAML

Added textproc/ruby-buftok version 0.2.0

(obache)

2014-01-17 12:49:50 UTC MAIN commitmail json YAML

Import ruby-buftok-0.2.0 as textproc/ruby-buftok.
part of PR pkg/48447.

BufferedTokenizer extracts token delimited entities from a sequence of
arbitrary inputs.

(obache)

2014-01-17 11:52:18 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.2.10

(adam)

2014-01-17 11:50:49 UTC MAIN commitmail json YAML

Changes 2.2.10:
+ auth: passdb/userdb dict rewrite to support much more complex
  setups. See doc/example-config/dovecot-dict-auth.conf.ext.
  The old settings will continue to work.
+ auth: Added userdb result_success/failure/tempfail and skip
  settings, similar to passdb's. See
  http://wiki2.dovecot.org/UserDatabase
+ imap: Implemented SETQUOTA command for admin user when quota_set is
  configured. See http://master.wiki2.dovecot.org/Quota/Configuration
+ quota: Support "*" and "?" wildcards in mailbox names in quota_rules
+ mysql: Added ssl_verify_server_cert=no|yes parameter. This currently
  defaults to "no" to make sure nothing breaks, but likely will become
  "yes" in Dovecot v2.3.
+ ldap: Added blocking=yes setting to use auth worker processes for
  ldap lookups. This is a workaround for now to be able to use multiple
  simultaneous LDAP connections.
+ pop3c+dsync performance improvements
- quota-status: quota_grace was ignored
- ldap: Fixed memory leak with auth_bind=yes and without
  auth_bind_userdn.
- imap: Don't send HIGHESTMODSEQ anymore on SELECT/EXAMINE when
  CONDSTORE/QRESYNC has never before been enabled for the mailbox.
- imap: Fixes to handling mailboxes without permanent modseqs.
  (When [NOMODSEQ] is returned by SELECT, mainly with in-memory
  indexes.)
- imap: Various fixes to METADATA support.
- stats plugin: Processes that only temporarily dropped privileges
  (e.g. indexer-worker) may have been logging errors about not being
  able to open /proc/self/io.

(adam)

2014-01-17 10:03:23 UTC MAIN commitmail json YAML

Fix build on Darwin 9.

(pho)

2014-01-17 09:54:14 UTC MAIN commitmail json YAML

Updated devel/git to 1.8.5.3

(adam)

2014-01-17 09:53:50 UTC MAIN commitmail json YAML

Also used by git-svn/Makefile

(adam)

2014-01-17 09:51:35 UTC MAIN commitmail json YAML

Quickly removed PKGREVISION, so no one will notice! :-)

(adam)

2014-01-17 09:50:38 UTC MAIN commitmail json YAML

Changes 1.8.5.3:
* The "--[no-]informative-errors" options to "git daemon" were parsed
  a bit too loosely, allowing any other string after these option
  names.
* A "gc" process running as a different user should be able to stop a
  new "gc" process from starting.
* An earlier "clean-up" introduced an unnecessary memory leak to the
  credential subsystem.
* "git mv A B/", when B does not exist as a directory, should error
  out, but it didn't.
* "git rev-parse <revs> -- <paths>" did not implement the usual
  disambiguation rules the commands in the "git log" family used in
  the same way.
* "git cat-file --batch=", an admittedly useless command, did not
  behave very well.
Also contains typofixes, documentation updates and trivial code clean-ups.

(adam)

2014-01-17 09:07:21 UTC MAIN commitmail json YAML

Updated wm/windowmaker to 0.95.5; emulators/wine to 1.6.2 (courtesy of Nat Sloss)

(adam)

2014-01-17 09:01:58 UTC MAIN commitmail json YAML

2014-01-17 08:48:06 UTC MAIN commitmail json YAML

Changes 0.95.5:
* Window Maker can now maximize windows to the top/bottom halves of the screen as well as to the corners (top left, top right etc). The keyboard shortcuts to do that can be configured via WPrefs
* Support for drawers in the dock has been added
* Keyboard shortcuts to move windows between workspaces
* Window border colours and width are now configurable
* The menu is now able to parse command-generated proplist style menus. WPrefs support for this has been added too
* Plus a few other new features and a lot of bug fixes and code cleanups by various people.

(adam)

2014-01-17 08:41:05 UTC MAIN commitmail json YAML

ruby version restriction from www/ruby-multipart-post

(obache)

2014-01-17 08:37:14 UTC MAIN commitmail json YAML

Updated www/ruby-faraday to 0.9.0

(obache)

2014-01-17 08:36:59 UTC MAIN commitmail json YAML

Update Faraday to 0.9.0.

## v0.9.0

* Add HTTPClient adapter (@hakanensari)
* Improve Retry handler (@mislav)
* Remove autoloading by default (@technoweenie)
* Improve internal docs (@technoweenie, @mislav)
* Respect user/password in http proxy string (@mislav)
* Adapter options are structs.  Reinforces consistent options across adapters
  (@technoweenie)
* Stop stripping trailing / off base URLs in a Faraday::Connection. (@technoweenie)
* Add a configurable URI parser. (@technoweenie)
* Remove need to manually autoload when using the authorization header helpers on `Faraday::Connection`. (@technoweenie)
* `Faraday::Adapter::Test` respects the `Faraday::RequestOptions#params_encoder` option. (@technoweenie)

(obache)

2014-01-17 08:32:24 UTC MAIN commitmail json YAML

Updated www/ruby-multipart-post to 2.0.0

(obache)

2014-01-17 08:32:07 UTC MAIN commitmail json YAML

Update ruby-multipart-post to 2.0.0.

=== 2.0.0 / 2013-12-21

- Drop Ruby 1.8 compatibility
- GH #21: Fix FilePart length calculation for Ruby 1.9 when filename contains
  multibyte characters (hexfet)
- GH #20: Ensure upload responds to both #content_type and #original_filename
  (Steven Davidovitz)
- GH #31: Support setting headers on any part of the request (Socrates Vicente)
- GH #30: Support array values for params (Gustav Ernberg)
- GH #32: Fix respond_to? signature (Leo Cassarani)
- GH #33: Update README to markdown (Jagtesh Chadha)
- GH #35: Improved handling of array-type parameters (Steffen Grunwald)

(obache)

2014-01-17 08:13:29 UTC MAIN commitmail json YAML

Record cocoa and quartz modules on Darwin in PLIST.

(pho)

2014-01-17 08:06:07 UTC MAIN commitmail json YAML

Enable XFree86-DGA mouse and keyboard inputs. Bump revision.

The configure script determines the availability of libXxf86dga only by the existence of X11/extensions/xf86dga.h. This leads to a linkage error on platforms (e.g. Darwin) where the header in question can be found in the system default path but the corresponding library is installed elsewhere. The problem goes away if we had the library buildlinked, and I see no reason for not enabling DGA input anyway.

(pho)

2014-01-17 07:55:35 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-chewing to 1.4.7

(obache)

2014-01-17 07:54:54 UTC MAIN commitmail json YAML

Update ibus-chewing to 1.4.7.

* Fri Jan 17 2014 Ding-Yi Chen <dchen at redhat.com> - 1.4.7
- Target "translation" is built separately with all,
  in order to tame multiple job make.

* Thu Jan 16 2014 Ding-Yi Chen <dchen at redhat.com> - 1.4.6
- Fixed Build for RHEL7

(obache)

2014-01-17 03:41:35 UTC MAIN commitmail json YAML

2014-01-17 03:40:48 UTC MAIN commitmail json YAML

Added net/py-hatop version 0.7.7

(rodent)

2014-01-17 03:40:35 UTC MAIN commitmail json YAML

Import py27-hatop-0.7.7 as net/py-hatop.

HATop is an interactive ncurses client and real-time monitoring, statistics
displaying tool for the HAProxy TCP/HTTP load balancer.

HATop's appearance is similar to top(1). It supports various modes for detailed
statistics of all configured proxies and services in near realtime. In addition,
it features an interactive CLI for the haproxy unix socket. This allows
administrators to control the given haproxy instance (change server weight, put
servers into maintenance mode, ...) directly out of hatop (using keybinds or
the CLI) and monitor the results immediately.

HATop is written in pure Python and has no external dependencies.

(rodent)

2014-01-17 02:33:20 UTC MAIN commitmail json YAML

2014-01-17 01:52:11 UTC MAIN commitmail json YAML

2014-01-17 01:50:00 UTC MAIN commitmail json YAML

2014-01-16 21:10:22 UTC MAIN commitmail json YAML

Note update of the "cacti" package to version 0.8.8bnb1.

(tron)

2014-01-16 21:10:00 UTC MAIN commitmail json YAML

Improve packaging of this package:
1.) Handle installation of the script to determine the amount of free
    memory and swap space on the local machine automatically.
2.) Fix the NetBSD implementation of the above script.
3.) Create a wrapper shell script for invoking Cacti's poller.
4.) Simplify the installation instrunctions using the above enhancements.
5.) Don't included the log file in the package list. It doesn't belong
    there and "pkg_delete" will correctly complain that it has been
    modified.

ToDo:
- The log file and the "rrdtool" database still need to be moved to
  a directory under "${VARBASE}".
- "config.php" should really be a config file to allow using a
  non-default password for the MySQL database. But the file would have
  to be readable by both the user of the webserver and that cacti user.

(tron)

2014-01-16 18:12:47 UTC MAIN commitmail json YAML

Updated sysutils/agedu to 9723

(schmonz)

2014-01-16 18:11:37 UTC MAIN commitmail json YAML

Update to r9723 (no changelog). Some highlights from the svn log:

* Add the --files option, to list individual files in the various
  reporting modes.
* Flexibly report sizes in Kb, Mb, Gb etc as appropriate. The
  previous fixed Mb was inconvenient at both ends. Original patch
  from James Beal, though I've polished it pretty much into
  unrecognisability.
* Make the existing -d (depth) option apply to the -H (static HTML
  report) mode, transforming its output from a single HTML file
  giving a report for one directory with no crosslinks to a collection
  of HTML files with crosslinks between them.
* Introduce a --cgi mode, to make it easy to plumb agedu's web
  reporting into an existing web server as an alternative to running
  a dedicated one of its own.
* Switch all the HTML-based reporting modes (the internal httpd, the CGI
  mode and the dump of static HTML files) to using URIs and filenames
  based on the text of the pathname being reported on, rather than
  its numeric index in the data file. The aim is that sub-URIs
  should remain valid when the data is updated - if, for instance,
  you're running the agedu CGI script permanently and changing the
  data file under it every so often.
* Suggestion from James Beal: support a '--title' option to override the
  'agedu:' prefix at the start of the title of output web pages.

(schmonz)

2014-01-16 18:09:46 UTC MAIN commitmail json YAML

malloc.h raises error on FreeBSD intentionally, use stdlib.h instead.

(asau)

2014-01-16 15:57:26 UTC MAIN commitmail json YAML

Note update of mail/postfix package to 2.10.3.

(taca)

2014-01-16 15:56:58 UTC MAIN commitmail json YAML

Update postfix to 2.10.3.

Postfix 2.10.3, 2.9.9, and 2.8.17:

  * Future proofing against OpenSSL library API changes. When support
    for a bug workaround is removed from OpenSSL, the corresponding
    named bit in tls_disable_workarounds will be ignored instead
    of causing existing Postfix configurations to fail.

All supported releases:

  * Future proofing against PCRE library API changes that introduce
    the pcre_free_study() function.

  * The postconf '-#' option reset prior options instead of adding
    to them.

  * Correct an error in MULTI_INSTANCE_README Makefile example.

  * Correct an error in SASL_README PostgreSQL example.

  * Correct a malformed error message in conf/post-install.

(taca)

2014-01-16 15:56:12 UTC MAIN commitmail json YAML

- drupal-7.24.

(taca)

2014-01-16 15:55:52 UTC MAIN commitmail json YAML

Note update of Drupal packages:

www/drupal6 6.30
www/drupal7 7.26

(taca)

2014-01-16 15:55:14 UTC MAIN commitmail json YAML

Update drupal7 to 7.26.

Drupal 7.26, 2014-01-15
----------------------
- Fixed security issues (multiple vulnerabilities). See SA-CORE-2014-001.

Drupal 7.25, 2014-01-02
-----------------------
- Fixed a bug in node_save() which prevented the saved node from being updated
  in hook_node_insert() and other similar hooks.
- Added a meta tag to install.php to prevent it from being indexed by search
  engines even when Drupal is installed in a subfolder (minor markup change).
- Fixed a bug in the database API that caused frequent deadlock errors when
  running merge queries on some servers.
- Performance improvement: Prevented block rehashing from writing blocks to the
  database on every cache clear and cron run when the blocks have not changed.
  This fix results in an extra 'saved' key which is added and set to TRUE for
  each block returned by _block_rehash() that actually is saved to the database
  (data structure change).
- Added an optional 'skip on cron' parameter to hook_cron_queue_info() to allow
  queues to avoid being automatically processed on cron runs (API addition).
- Fixed a bug which caused hook_block_view_MODULE_DELTA_alter() to never be
  invoked if the block delta had a hyphen in it. To implement the hook when the
  block delta has a hyphen, modules should now replace hyphens with underscores
  when constructing the function name for the hook implementation.
- Fixed a bug which caused cached pages to sometimes be sent to the browser
  with incorrect compression. The fix adds a new 'page_compressed' key to the
  $cache->data array returned by drupal_page_get_cache() (minor data structure
  change).
- Fixed broken tests on PHP 5.5.
- Made the File and Image modules more robust when saving entities that have
  deleted files attached. The code in file_field_presave() will now remove the
  record of the deleted file from the entity before saving (minor data
  structure change).
- Standardized menu callback functions throughout Drupal core to return
  MENU_NOT_FOUND and MENU_ACCESS_DENIED rather than printing their own "page
  not found" or "access denied" pages (minor API change in the return value of
  these functions under some circumstances).
- Fixed a bug in which caches were not properly cleared when a node was deleted
  via the administrative interface.
- Changed the Bartik theme to render content contained in <pre>, <code> and
  similar tags in a larger font size, so it is easier to read.
- Fixed a bug in the Search module that caused exceptions to be thrown during
  searches if the server was not configured to represent decimal points as a
  period.
- Fixed a regression in the Image module that made image_style_url() not work
  when a relative path (rather than a complete file URI) was passed to it.
- Added an optional feature to the Statistics module to allow node views to be
  tracked by Ajax requests rather than during the server-side generation of the
  page. This allows the node counter to work on sites that use external page
  caches (string change and new administrative option:
  https://drupal.org/node/2164069).
- Added a link to the drupal.org documentation page for cron to the Cron
  settings page (string change).
- Added a 'drupal_anonymous_user_object' variable to allow the anonymous user
  object returned by drupal_anonymous_user() to be overridden with a classed
  object (API addition).
- Changed the database API to allow inserts based on a SELECT * query to work
  correctly.
- Changed the database schema of the {file_managed} table to allow Drupal to
  manage files larger than 4 GB.
- Changed the File module's hook_field_load() implementation to prevent file
  entity properties which have the same name as file or image field properties
  from overwriting the field properties (minor API change).
- Numerous small bug fixes.
- Numerous API documentation improvements.
- Additional automated test coverage.

(taca)

2014-01-16 15:54:32 UTC MAIN commitmail json YAML

Update drupal6 to 6.30.

Drupal 6.30, 2014-01-15
----------------------
- Fixed security issues (multiple vulnerabilities), see SA-CORE-2014-001.

(taca)

2014-01-16 13:49:00 UTC MAIN commitmail json YAML

2014-01-16 13:48:26 UTC MAIN commitmail json YAML

Fix DEPENDS pattern.

(wiz)

2014-01-16 13:32:10 UTC MAIN commitmail json YAML

2014-01-16 11:15:58 UTC MAIN commitmail json YAML

Updated inputmethod/ibus-chewing to 1.4.5

(obache)

2014-01-16 11:14:51 UTC MAIN commitmail json YAML

Update ibus-chewing to 1.4.5.

* Thu Jan 16 2014 Ding-Yi Chen <dchen at redhat.com> - 1.4.5
- Resolves Bug 1013977 - ibus-chewing needs to have ibus write-cache --system in %post and %postun
- Resolves Bug 1027031 - CVE-2013-4509 ibus-chewing: ibus: visible password entry flaw [rhel-7.0]
- Resolves Bug 1028911 - [zh_TW]'Chinese<->English' switch does not work when clicking on the Chewing menu list.
- Resolves Bug 1045868 - ibus-chewing *again* not built with $RPM_OPT_FLAGS
- Option "Sync between caps lock and IM":
  + Default of  is changed to "disable",  because the previous default
    "keyboard" cause bug 1028911 for GNOME Shell.
  + Now Sync from "input method" can control Caps LED in GNOME shell.
- Translation added: de_DE, es_ES, it_IT, pt_BR, uk_UA

(obache)

2014-01-16 11:14:49 UTC pkgsrc-2013Q4 commitmail json YAML

2014-01-16 11:14:39 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup ticket #4303 - requested by obache
emulators/suse131_x11: security update

Revisions pulled up:
- emulators/suse131_x11/Makefile                                1.4
- emulators/suse131_x11/distinfo                                1.4

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Thu Jan 16 08:11:24 UTC 2014

  Modified Files:
  pkgsrc/emulators/suse131_x11: Makefile distinfo

  Log Message:
  Update rpm to libXfont1-1.4.6-2.1.2 for CVE-2013-6462.

  Bump PKGREVISION.

(tron)

2014-01-16 11:06:47 UTC MAIN commitmail json YAML

Updated inputmethod/ibus to 1.5.5

(obache)

2014-01-16 11:04:26 UTC MAIN commitmail json YAML

Update ibus to 1.5.5.

* Add french layout variant oss to simple engine
* Replace datadir/man with mandir.
* Implement lookup-table-orientation in ibus-ui-gtk3.
* Always save the content-type cache for gnome-shell password.
* Update en-us compose table and add locale tables for xkb engines.
* Wayland: Fix Small typo
* Fix gir annotations.
* simple.xml.in: add Slovak qwerty layout variant
* Delete the up/down button message on ibus-setup.
* Fix candidate panel not to be out of screen.
* Update translations.
* Remove -Werror in autogen.sh since the build still have errors.
* Add Property Panel to show IME properties.

(obache)

2014-01-16 10:59:58 UTC MAIN commitmail json YAML

Ugly hacks to make it buildable with gcc 4.8 (some need closer investigation
sometime(tm))

(martin)

2014-01-16 10:47:24 UTC MAIN commitmail json YAML

2014-01-16 10:41:53 UTC MAIN commitmail json YAML

2014-01-16 10:27:36 UTC MAIN commitmail json YAML

Add support for python package modules having different pkgsrc packages
depending on python major version.

For now, this supports the dateutil module.

(wiz)

2014-01-16 10:26:30 UTC MAIN commitmail json YAML

Added time/py-dateutil2 version 2.0

(wiz)

2014-01-16 10:26:17 UTC MAIN commitmail json YAML

+ py-dateutil2

(wiz)

2014-01-16 10:26:00 UTC MAIN commitmail json YAML

Import py33-dateutil-2.0 as time/py-dateutil2.

The dateutil module provides powerful extensions to the standard datetime
module.

Features

* Computing of relative deltas (next month, next year, next monday, last week
  of month, etc);
* Computing of relative deltas between two given date and/or datetime objects;
* Computing of dates based on very flexible recurrence rules, using a superset
  of the iCalendar specification. Parsing of RFC strings is supported as well.
* Generic parsing of dates in almost any string format;
* Timezone (tzinfo) implementations for tzfile(5) format files
  (/etc/localtime, /usr/share/zoneinfo, etc), TZ environment string (in all
  known formats), iCalendar format files, given ranges (with help from
  relative deltas), local machine timezone, fixed offset timezone, and UTC
  timezone.
* Computing of Easter Sunday dates for any given year, using Western, Orthodox
  or Julian algorithms;
* More than 400 test cases.

This package contains the Python-3.x version of the module.

Changes compared to py-dateutil-1.5:

Version 2.0
-----------

- Ported to Python 3, by Brian Jones.  If you need dateutil for Python 2.X,
  please continue using the 1.X series.

- There's no such thing as a "PSF License".  This source code is now
  made available under the Simplified BSD license.  See LICENSE for
  details.

(wiz)

2014-01-16 10:25:03 UTC MAIN commitmail json YAML

Mention that this is the Python-2.x version of the module.

(wiz)

2014-01-16 10:14:19 UTC MAIN commitmail json YAML

Updated nih/gnutls to 3.2.8.1

(wiz)

2014-01-16 10:14:09 UTC MAIN commitmail json YAML

Update to 3.2.8.1.

Changes in 3.2.8.1:
Note, that I've realized that this release has issues with the
assembly files in win32 and macosx systems. In these systems
use gnutls 3.2.8.1.

3.2.8:

* Version 3.2.8 (released 2013-12-20)

** libgnutls: Updated code for AES-NI. That prevents an uninitialized
variable complaint from valgrind.

** libgnutls: Enforce a maximum size for DH primes.

** libgnutls: Added SSSE3 optimized SHA1, and SHA256, using Andy Polyakov's
code.

** libgnutls: Added SSSE3 optimized AES using Mike Hamburg's code.

** libgnutls: It only links to librt if the required functions are
not present in libc. This also prevents an indirect linking to libpthread.

** libgnutls: Fixed issue with gnulib strerror replacement by adding
the strerror gnulib module.

** libgnutls: The time provided in the TLS random values is only precise
on its first 3 bytes. That prevents leakage of the precise system
time (at least on the client side when only few connections are
done on a single server).

** certtool: The --verify option will use the system CAs if the
load-ca-certificate option is not provided.

** configure: Added option --with-default-blacklist-file to allow
specifying a certificate blacklist file.

** configure: Added --disable-non-suiteb-curves option. This option
restricts the supported curves to SuiteB curves.

** API and ABI modifications:
gnutls_record_check_corked: Added

(wiz)

2014-01-16 09:52:39 UTC MAIN commitmail json YAML

Updated security/clamav to 0.98.1

(adam)

2014-01-16 09:51:54 UTC MAIN commitmail json YAML

ClamAV 0.98.1 provides improved support of Mac OS X platform, support for new file types, and
quality improvements. These include:

    - Extraction, decompression, and scanning of files within Apple Disk Image (DMG) format.

    - Extraction, decompression, and scanning of files within Extensible Archive (XAR) format.
      XAR format is commonly used for software packaging, such as PKG and RPM, as well as
      general archival.

    - Decompression and scanning of files in "Xz" compression format.

    - Improvements and fixes to extraction and scanning of ole formats.

    - Option to force all scanned data to disk. This impacts only a few file types where
      some embedded content is normally scanned in memory. Enabling this option
      ensures that a file descriptor exists when callback functions are used, at a small
      performance cost. This should only be needed when callback functions are used
      that need file access.

    - Various improvements to ClamAV configuration, support of third party libraries,
      and unit tests.

(adam)

2014-01-16 09:37:09 UTC MAIN commitmail json YAML

Updated lang/icc11 to 11.1.080nb2

(wiz)

2014-01-16 09:37:01 UTC MAIN commitmail json YAML

Switch to gcc48. Bump PKGREVISION.

(wiz)

2014-01-16 09:34:27 UTC MAIN commitmail json YAML

Reference git-svn.

(wiz)

2014-01-16 08:11:40 UTC MAIN commitmail json YAML

Updated emulators/suse131_x11 to 13.1nb3

(obache)

2014-01-16 08:11:24 UTC MAIN commitmail json YAML

Update rpm to libXfont1-1.4.6-2.1.2 for CVE-2013-6462.

Bump PKGREVISION.

(obache)

2014-01-16 02:59:39 UTC MAIN commitmail json YAML

Updated devel/py-virtualenv to 1.11

(rodent)

2014-01-16 02:57:42 UTC MAIN commitmail json YAML

Update to latest release, 1.11. From doc/news.rst:

1.11 (2014-01-02)
~~~~~~~~~~~~~~~~~

* **BACKWARDS INCOMPATIBLE** Switched to using wheels for the bundled copies of
  setuptools and pip. Using sdists is no longer supported - users supplying
  their own versions of pip/setuptools will need to provide wheels.
* **BACKWARDS INCOMPATIBLE** Modified the handling of ``--extra-search-dirs``.
  This option now works like pip's ``--find-links`` option, in that it adds
  extra directories to search for compatible wheels for pip and setuptools.
  The actual wheel selected is chosen based on version and compatibility, using
  the same algorithm as ``pip install setuptools``.
* Upgraded pip to v1.5
* Upgraded setuptools to v1.4

(rodent)

2014-01-16 02:56:22 UTC MAIN commitmail json YAML

Updated devel/py-requests to 2.2.0

(rodent)

2014-01-16 02:52:19 UTC MAIN commitmail json YAML

Updated to latest release, 2.2.0. Some PLIST changes, but two packages that
depend on it still build and install fine. From HISTORY.rst:

2.2.0 (2014-01-09)
++++++++++++++++++

**API Changes**
- New exception: ``ContentDecodingError``. Raised instead of ``urllib3``
  ``DecodeError`` exceptions.

**Bugfixes**
- Avoid many many exceptions from the buggy implementation of ``proxy_bypass``
  on OS X in Python 2.6.
- Avoid crashing when attempting to get authentication credentions from
  ~/.netrc when running as a user without a home directory.
- Use the correct pool size for pools of connections to proxies.
- Fix iteration of ``CookieJar`` objects.
- Ensure that cookies are persisted over redirect.
- Switch back to using chardet since charade has merged with it

(rodent)

2014-01-16 02:44:59 UTC MAIN commitmail json YAML

2014-01-16 02:40:15 UTC MAIN commitmail json YAML

Updated to latest release, 1.5. Included lang/python/application.mk to
REPLACE_PYTHON in two installed files. Lots of PLIST additions/moves. From
CHANGES.txt:

Changelog
=========

1.5 (2014-01-01)
----------------

* **BACKWARD INCOMPATIBLE** pip no longer supports the ``--use-mirrors``,
  ``-M``, and ``--mirrors`` flags. The mirroring support has been removed. In
  order to use a mirror specify it as the primary index with ``-i`` or
  ``--index-url``, or as an additional index with ``--extra-index-url``. (Pull #1098, CVE-2013-5123)

* **BACKWARD INCOMPATIBLE** pip no longer will scrape insecure external urls by
  default nor will it install externally hosted files by default. Users may opt
  into installing externally hosted or insecure files or urls using
  ``--allow-external PROJECT`` and ``--allow-unverified PROJECT``. (Pull #1055)

* **BACKWARD INCOMPATIBLE** pip no longer respects dependency links by default.
  Users may opt into respecting them again using ``--process-dependency-links``.

* **DEPRECATION** ``pip install --no-install`` and ``pip install
  --no-download`` are now formally deprecated.  See Issue #906 for discussion on
  possible alternatives, or lack thereof, in future releases.

* **DEPRECATION** ``pip zip`` and ``pip unzip`` are now formally deprecated.

* pip will now install Mac OSX platform wheels from PyPI. (Pull #1278)

* pip now generates the appropriate platform-specific console scripts when
  installing wheels. (Pull #1251)

* Pip now confirms a wheel is supported when installing directly from a path or
  url. (Pull #1315)

* Fixed #1097, ``--ignore-installed`` now behaves again as designed, after it was
  unintentionally broke in v0.8.3 when fixing Issue #14 (Pull #1352).

* Fixed a bug where global scripts were being removed when uninstalling --user
  installed packages (Pull #1353).

* Fixed #1163, --user wasn't being respected when installing scripts from wheels (Pull #1176).

* Fixed #1150, we now assume '_' means '-' in versions from wheel filenames (Pull #1158).

* Fixed #219, error when using --log with a failed install (Pull #1205).

* Fixed #1131, logging was buffered and choppy in Python 3.

* Fixed #70,  --timeout was being ignored (Pull #1202).

* Fixed #772, error when setting PIP_EXISTS_ACTION (Pull #1201).

* Added colors to the logging output in order to draw attention to important
  warnings and errors. (Pull #1109)

* Added warnings when using an insecure index, find-link, or dependency link. (Pull #1121)

* Added support for installing packages from a subdirectory using the ``subdirectory``
  editable option. ( Pull #1082 )

* Fixed #1192. "TypeError: bad operand type for unary" in some cases when
  installing wheels using --find-links (Pull #1218).

* Fixed #1133 and #317. Archive contents are now written based on system
  defaults and umask (i.e. permissions are not preserved), except that regular
  files with any execute permissions have the equivalent of "chmod +x" applied
  after being written (Pull #1146).

* PreviousBuildDirError now returns a non-zero exit code and prevents the
  previous build dir from being cleaned in all cases (Pull #1162).

* Renamed --allow-insecure to --allow-unverified, however the old name will
  continue to work for a period of time.

* Fixed #1006, error when installing local projects with symlinks in Python 3.

* The previously hidden ``--log-file`` otion, is now shown as a general option.

1.4.1 (2013-08-07)
------------------

* **New Signing Key** Release 1.4.1 is using a different key than normal with
  fingerprint: 7C6B 7C5D 5E2B 6356 A926 F04F 6E3C BCE9 3372 DCFA
* Fixed issues with installing from pybundle files
* Fixed error when sysconfig module throws an exception
* Don't ignore already installed pre-releases
* Fixes related to upgrading setuptools
* Fixes so that --download works with wheel archives
* Fixes related to recognizing and cleaning global build dirs

(rodent)

2014-01-16 02:24:14 UTC MAIN commitmail json YAML

Updated converters/py-simplejson to 3.3.2

(rodent)

2014-01-16 02:24:02 UTC MAIN commitmail json YAML

Updated to latest release, 3.3.2. From CHANGES.txt:

* Docstring fix for decoded string types

(rodent)

2014-01-15 22:08:00 UTC pkgsrc-2013Q4 commitmail json YAML

Pullup tickets #4301 and #4302.

(tron)