* Remove descriptino about gnuradio incompatibility since it related
packages are already using swig2.
Version: 1.3.38 (31 January 2009)
Tagline: SWIG is a compiler that integrates C and C++ with languages
including Perl, Python, Tcl, Ruby, PHP, Java, Ocaml, Lua,
Scheme (Guile, MzScheme, CHICKEN), Pike, C#, Modula-3,
Common Lisp (CLISP, Allegro CL, CFFI, UFFI), Octave and R.
SWIG reads annotated C/C++ header files and creates wrapper code (glue
code) in order to make the corresponding C/C++ libraries available to
the listed languages, or to extend C/C++ programs with a scripting
language.
- remove patch-aa, no longer necessary.
(comment was: Avoid interactive configuration during build.)
(upstream)
- Update 2.08 to 2.19
-------------------
2.19 2014-12-17
- Fixed failing tests - caused by updated dictionaries on dict.org
- Added a TODO.md file with the things I want to get around to doing.
2.18 2014-06-26
- Some of the dict.org databases have been updated, needing updates
to databases. Reported by RJBS.
- Converted tests to use eq_or_diff() from Test::Differences,
also suggested by RJBS.
2.17 2014-04-25
- Converted all remaining tests to use Test::More
- Tidied up SEE ALSO, including fixing of broken links
- Tidied up code snippets in the doc
- Reformatted code according to my current conventions,
and got rid of a few rogue tab characters
2.16 2014-04-20
- Test server config in Net::Dict::TestConfig in t/lib.
We no longer prompt for test config -- it hasn't changed in years.
- Refactored t/connection.t to use Test::More
2.15 2014-04-04
- tkdict script had a very site-specific #! path. Changed to use env.
RT#92184
2.14 2014-03-28
- We weren't correctly handling dictionary db names containing a '-'.
Fix from RJBS.
2.13 2013-12-23
- Added "use warnings" to Net::Dict
- Specified min perl version as 5.006 in Makefile.PL
2.12 2013-11-18
- Corrected the dependency I meant to add in the previous release.
I added a dependency on Net::Dict (ie itself) instead.
2.11 2013-11-15
- Added missing dependency (AppConfig::Std) to Makefile.PL
2.10 2013-07-20
- Reformatted this file according to CPAN::Changes::Spec
- Repository details added to metadata (Makefile.PL) and pod
- License type added to metadata (Makefile.PL)
2.09 2011-12-18
- Fixed tests that started breaking due to changes in the dict.org server
- Renamed ChangeLog to Changes & tweaked formatting to CPAN::Changes::Spec
- drop two patches, upstream corrected.
(the comments on patches were):
The key argument of std::map must not be const as it can't be assigned
internally otherwise.
- Add buildlink to audio/libvorbis, sysutils/dbus
- Add sysutils/desktop-file-utils/desktopdb.mk to include
- Add post-patch: target to removed patched *.orig files
(otherwise those are installed)
- Adjust several REPLACE_PYTHON and REPLACE_BASH
- Add patch to correct missing shebang lines necessary for REPLACE_.*
Update 1.10.7 to 1.12.1
-----------------------
- changelog is too huge to list here, instead pick only for 1.12.1
from: http://www.wesnoth.org/
Wesnoth 1.12.1
Sunday, January 25 2015
Wesnoth 1.12.1 is now available. This is a maintenance release
for the stable 1.12.x series and, as such, it delivers an
assortment of bug fixes and other improvements over version
1.12.0. Check the forum thread for a list of the most notable
changes in this version.
As on previous occasions, we also offer two versions of the
changelog: a trimmed-down players changelog including only
those items considered to be relevant in regular gameplay, and
a more technical full changelog for enthusiasts and content
creators.
The source code, Windows, and Apple OS X packages are already
available on the downloads page. You may also find packages
for other platforms there as they become available. You may
comment on this release in the forums.
- MASTER_SITES moved, patch-Makefile removed (was to fix help typo)
(upstream)
- Update to 0.2.7
---------------
version 0.2.7, 09.03.15 -- included a patch from NetBSD
need to link with it but might have included x11/xf86driproto's bl3.mk first,
because we have:
x11/xf86driproto/buildlink3.mk:BUILDLINK_DEPMETHOD.libpciaccess?= build
(This issue appears only on non-x86 because on x86 we get libpciaccess
through libdrm)
Bump PKGREVISION to get the dependency expressed.
These releases address a security issue in the Django admin.
* Issue: XSS attack via properties in ModelAdmin.readonly_fields
* Advisory: HTML escaping when calling template filters from Python code
Changes
2.5.3 (2015-02-24)
Bugfixes
Revert changes to our vendored certificate bundle. For more context see (#2455, #2456, and http://bugs.python.org/issue23476)
2.5.2 (2015-02-23)
Features and Improvements
Add sha256 fingerprint support. (shazow/urllib3#540)
Improve the performance of headers. (shazow/urllib3#544)
Bugfixes
Copy pip’s import machinery. When downstream redistributors remove requests.packages.urllib3 the import machinery will continue to let those same symbols work. Example usage in requests’ documentation and 3rd-party libraries relying on the vendored copies of urllib3 will work without having to fallback to the system urllib3.
Attempt to quote parts of the URL on redirect if unquoting and then quoting fails. (#2356)
Fix filename type check for multipart form-data uploads. (#2411)
Properly handle the case where a server issuing digest authentication challenges provides both auth and auth-int qop-values. (#2408)
Fix a socket leak. (shazow/urllib3#549)
Fix multiple Set-Cookie headers properly. (shazow/urllib3#534)
Disable the built-in hostname verification. (shazow/urllib3#526)
Fix the behaviour of decoding an exhausted stream. (shazow/urllib3#535)
Security
Pulled in an updated cacert.pem.
Drop RC4 from the default cipher list. (shazow/urllib3#551)
0.9.2 (2015-02-24)
Fixed compatibility with Requests 2.5.1
Changed the default JSON Content-Type to application/json as UTF-8 is the default JSON encoding
Changelog
1.4.0 (2015-02-11)
Using insecure SSL configuration (verify_cert=False) raises a warning
reindex accepts a query parameter
enable reindex helper to accept any kwargs for underlying bulk and scan calls
when doing an initial sniff (via sniff_on_start) ignore special sniff timeout
option to treat TransportError as normal failure in bulk helpers
fixed an issue with sniffing when only a single host was passed in
1.3.0 (2014-12-31)
Timeout now doesn't trigger a retry by default (can be overriden by setting retry_on_timeout=True)
Introduced new parameter retry_on_status (defaulting to (503, 504, )) controls which http status code should lead to a retry.
Implemented url parsing according to RFC-1738
Added support for proper SSL certificate handling
Required parameters are now checked for non-empty values
ConnectionPool now checks if any connections were defined
DummyConnectionPool introduced when no load balancing is needed (only one connection defined)
Fixed a race condition in ConnectionPool
Changes
1.10.1 (2015-02-10)
Pools can be used as context managers. (Issue #545)
Don’t re-use connections which experienced an SSLError. (Issue #529)
Don’t fail when gzip decoding an empty stream. (Issue #535)
Add sha256 support for fingerprint verification. (Issue #540)
Fixed handling of header values containing commas. (Issue #533)
1.10 (2014-12-14)
Disabled SSLv3. (Issue #473)
Add Url.url property to return the composed url string. (Issue #394)
Fixed PyOpenSSL + gevent WantWriteError. (Issue #412)
MaxRetryError.reason will always be an exception, not string. (Issue #481)
Fixed SSL-related timeouts not being detected as timeouts. (Issue #492)
Py3: Use ssl.create_default_context() when available. (Issue #473)
Emit InsecureRequestWarning for every insecure HTTPS request. (Issue #496)
Emit SecurityWarning when certificate has no subjectAltName. (Issue #499)
Close and discard sockets which experienced SSL-related errors. (Issue #501)
Handle body param in .request(...). (Issue #513)
Respect timeout with HTTPS proxy. (Issue #505)
PyOpenSSL: Handle ZeroReturnError exception. (Issue #520)
1.9.1 (2014-09-13)
Apply socket arguments before binding. (Issue #427)
More careful checks if fp-like object is closed. (Issue #435)
Fixed packaging issues of some development-related files not getting included. (Issue #440)
Allow performing only fingerprint verification. (Issue #444)
Emit SecurityWarning if system clock is waaay off. (Issue #445)
Fixed PyOpenSSL compatibility with PyPy. (Issue #450)
Fixed BrokenPipeError and ConnectionError handling in Py3. (Issue #443)
1.9 (2014-07-04)
Shuffled around development-related files. If you’re maintaining a distro package of urllib3, you may need to tweak things. (Issue #415)
Unverified HTTPS requests will trigger a warning on the first request. See our new security documentation for details. (Issue #426)
New retry logic and urllib3.util.retry.Retry configuration object. (Issue #326)
All raised exceptions should now wrapped in a urllib3.exceptions.HTTPException-extending exception. (Issue #326)
All errors during a retry-enabled request should be wrapped in urllib3.exceptions.MaxRetryError, including timeout-related exceptions which were previously exempt. Underlying error is accessible from the .reason propery. (Issue #326)
urllib3.exceptions.ConnectionError renamed to urllib3.exceptions.ProtocolError. (Issue #326)
Errors during response read (such as IncompleteRead) are now wrapped in urllib3.exceptions.ProtocolError. (Issue #418)
Requesting an empty host will raise urllib3.exceptions.LocationValueError. (Issue #417)
Catch read timeouts over SSL connections as urllib3.exceptions.ReadTimeoutError. (Issue #419)
Apply socket arguments before connecting. (Issue #427)
1.8.3 (2014-06-23)
Fix TLS verification when using a proxy in Python 3.4.1. (Issue #385)
Add disable_cache option to urllib3.util.make_headers. (Issue #393)
Wrap socket.timeout exception with urllib3.exceptions.ReadTimeoutError. (Issue #399)
Fixed proxy-related bug where connections were being reused incorrectly. (Issues #366, #369)
Added socket_options keyword parameter which allows to define setsockopt configuration of new sockets. (Issue #397)
Removed HTTPConnection.tcp_nodelay in favor of HTTPConnection.default_socket_options. (Issue #397)
Fixed TypeError bug in Python 2.6.4. (Issue #411)
cwdiff is a part of cj-overlay, and it has three modes, with
(textproc/) wdiff, diff, or without them, stand alone.
With wdiff or diff, it wraps output of those commands to
support directories and colorize the output.
cwdiff -h or cwdiff --help
will tell you how to use it, and command line examples.