Automatic conversion of the NetBSD pkgsrc CVS module, use with care
Find a file
wiz 26ede8193a 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]
2014-01-19 13:05:04 +00:00
archivers Avoid existing ERR macros. Fixes SunOS. 2014-01-09 15:54:44 +00:00
audio Add patch for python-3.x compatibility. 2014-01-17 14:47:25 +00:00
benchmarks Needs openssl. 2014-01-09 11:37:31 +00:00
biology Convert to versioned_dependencies.mk for Pmw. 2014-01-18 19:56:36 +00:00
bootstrap Suggest placing pkgdb under prefix. 2013-12-16 10:43:09 +00:00
cad Bump version 3.3.28 to 3.3.53, 2014-01-19 09:25:17 +00:00
chat Convert to versioned_dependencies.mk (for dns) 2014-01-17 23:11:27 +00:00
comms Update to 2.7. Fix PKGNAME. 2014-01-19 09:49:55 +00:00
converters Updated to latest release, 3.3.2. From CHANGES.txt: 2014-01-16 02:24:02 +00:00
cross Update to 20131219 2014-01-19 07:43:14 +00:00
databases Update ruby-ldap to 0.9.16. 2014-01-18 12:58:59 +00:00
devel Stop using RUBY_RDOC_VERSION for specifying current ruby-rdoc's version. 2014-01-19 12:57:42 +00:00
distfiles
doc Updated net/omniORB to 4.1.7 2014-01-19 11:29:11 +00:00
editors Convert to use versioned_dependencies.mk. 2014-01-16 10:41:53 +00:00
emulators Changes 1.7.11: 2014-01-19 10:58:23 +00:00
filesystems Update to 0.051 2014-01-12 10:20:12 +00:00
finance Accept non-32 python as well. 2014-01-12 09:41:07 +00:00
fonts No need to use special variable, PKGVERSION=PKGVERSION_NOREV in PLIST. 2014-01-11 12:32:25 +00:00
games Revbump after updating tcl/tk. 2014-01-11 14:42:00 +00:00
geography Switch to use clutter-gtk0.10. 2014-01-04 13:46:55 +00:00
graphics Record cocoa and quartz modules on Darwin in PLIST. 2014-01-17 08:13:29 +00:00
ham Disable RPC support on SmartOS. 2014-01-10 11:14:44 +00:00
inputmethod Update to 1.13.1651.102 2014-01-19 01:18:50 +00:00
lang Stop using RUBY_RDOC_VERSION for specifying current ruby-rdoc's version. 2014-01-19 12:57:42 +00:00
licenses Add arrl-license. 2013-09-13 14:18:36 +00:00
mail Changes 2.2.10: 2014-01-17 11:50:49 +00:00
math malloc.h raises error on FreeBSD intentionally, use stdlib.h instead. 2014-01-16 18:09:46 +00:00
mbone Build fixes for new Tcl 2014-01-14 17:07:37 +00:00
meta-pkgs == Ruby-GNOME2 2.1.0: 2013-12-29 2014-01-14 12:01:51 +00:00
misc Convert to versioned_dependencies.mk (for dns) 2014-01-17 23:11:27 +00:00
mk Improve support for python-3.3. 2014-01-18 19:48:57 +00:00
multimedia Changes 2.1.3: 2014-01-17 16:33:44 +00:00
net Update to 2.44.2: 2014-01-19 13:05:04 +00:00
news Remove Dragonfly hack and use tradcpp for cpp'ing the makefiles. 2014-01-02 08:00:32 +00:00
packages
parallel Mark as PYTHON_VERSIONS_INCOMPATIBLE=26: 2014-01-17 13:13:28 +00:00
pkgtools Format string annotations. 2014-01-15 13:52:10 +00:00
print Update to 2.7: 2014-01-19 09:59:47 +00:00
regress
security Update to 0.3.1: 2014-01-19 10:05:10 +00:00
shells increment the pkgrevision as we've fixed a bug 2014-01-11 18:18:46 +00:00
sysutils Update to r9723 (no changelog). Some highlights from the svn log: 2014-01-16 18:11:36 +00:00
templates
textproc Remove FETCH_USING, not a package-setable variable. 2014-01-19 08:39:00 +00:00
time Update to 3.6.1: 2014-01-19 09:12:17 +00:00
wm Changes 0.95.5: 2014-01-17 08:48:06 +00:00
www Update to 7.19.3: 2014-01-19 09:31:33 +00:00
x11 Mark as python-2.x version. 2014-01-18 19:49:56 +00:00
Makefile
pkglocate
README

$NetBSD: README,v 1.18 2005/05/07 22:18:28 wiz Exp $

Please see doc/pkgsrc.txt for information.