Commit graph

251099 commits

Author SHA1 Message Date
agc
86a5db1536 Note addition of net/libquic-0.0.3 2016-07-01 20:34:54 +00:00
agc
4ecc1f7ac4 Add libquic-0.0.3 to the packages collection.
QUIC is an experimental protocol aimed at reducing web latency over
	that of TCP.  On the surface, QUIC is very similar to TCP+TLS+SPDY
	implemented on UDP.  Because TCP is implement in operating system
	kernels, and middlebox firmware, making significant changes to TCP is
	next to impossible.  However, since QUIC is built on top of UDP, it
	suffers from no such limitations.

	Key features of QUIC over existing TCP+TLS+SPDY include

	+ Dramatically reduced connection establishment time
	+ Improved congestion control
	+ Multiplexing without head of line blocking
	+ Forward error correction
	+ Connection migration
2016-07-01 20:32:35 +00:00
jperkin
c43e8d9265 The recent libarchive update changed the library major. Increase the
ABI depends and perform a PKGREVISION bump for dependents.

Noticed by OSX binary package users.
2016-07-01 17:55:22 +00:00
fhajny
32d79f1b10 Updated databases/*sqlrelay* child packages to 0.65.0 2016-07-01 17:05:16 +00:00
fhajny
f08c4a449e Updated databases/sqlrelay to 0.65.0 2016-07-01 17:02:59 +00:00
fhajny
61b8e257f1 Update databases/sqlrelay to 0.65.0
- SQL Relay now supports Kerberos encryption and authentication
- SQL Relay now supports TLS/SSL encryption and authentication
- Python 3 support
- Node.js 4.x and higher are now correctly detected and supported.
- Separate "database" and "proxied" Authentication Options
- Various ODBC-related bugs have been fixed
- A subtle bug that caused incompatibilities with the popular
  logrotate utility has been fixed
- A long standing problem that occurred when using a
  listenertimeout with a threaded listener (the default) has been
  fixed.
- After a graceful restart, Apache workers would get stuck in the
  Closing Connection state after running a PHP script that used
  SQL Relay. This is now fixed.

See full changelog:

  http://software.firstworks.com/2016/03/sql-relay-0650-release-announcement.html
2016-07-01 17:02:38 +00:00
fhajny
dd9f55f89c Fix missed krb bl3. Ride previous commit revision. 2016-07-01 17:00:15 +00:00
bouyer
69951e7415 Updated geography/qgis to 2.14.3 2016-07-01 16:16:16 +00:00
bouyer
8e25a172f1 Update to 2.14.3. Changes since 2.12.3 (for more detailed changelog see
http://www.qgis.org/en/site/forusers/visualchangelog214/index.html)

    General
        Feature: Changed behaviour of strpos function
        Feature: Zoom to feature with right-click in attribute table
        Feature: Speed and memory improvements
        Feature: More expression variables
        Feature: Better control over placement of map elements
        Feature: Paid bugfixing programme
        Feature: Field calculator can be used to update feature's geometry
        Feature: New expression functions in 2.14
    Analysis tools
        Feature: More statistics available in merge attributes tool
        Feature: z/m values are shown when using the identify tool
        Feature: Unified handling of distance and area units and coordinate formats
    Browser
        Feature: Browser Improvements
    Data Providers
        Feature: Cache WMS capabililies
        Feature: Curved geometry support expanded
        Feature: Better handling of time and datetime fields
        Feature: Z/M support in delimited text provider
        Feature: Transaction groups for postgres editing
        Feature: Postgres provider PKI authentication
        Feature: Virtual layers
        Feature: More file extensions for GDAL and OGR providers file selectors
        Feature: Use ST_RemoveRepeatedPoints for server-side simplification with PostGIS 2.2 (or newer) layers
    Data management
        Feature: Removal of SPIT plugin
        Feature: DXF export: option to use title instead of name as DXF layer name in application and server
        Feature: Geometry type can be overridden in the vector save as dialog
        Feature: Vector joins are now saved within QLR layer-definition-files
        Feature: External Resource widget
        Feature: N:M relation editing
    Digitising
        Feature: Configurable rubber band color
        Feature: Trace digitising tool
    Labelling
        Feature: "Cartographic" placement mode for point labels
        Feature: Applying label distance from symbol bounds
        Feature: Control over label rendering order
        Feature: Actual rendered symbol is now considered as an obstacle for point feature labels
    Layer Legend
        Feature: Paste a style to multiple selected layers or to all layers in a legend group
        Feature: Filter legend by expression
    Map Composer
        Feature: New options for filtering legend elements
        Feature: Additional paths for composer templates
        Feature: Multiple selection of compositions in manager
    Plugins
        Feature: Authentication system support for plugin manager
    Processing
        Feature: New algorithms in 2.14
            QGIS geoalgorithms:
            GDAL/OGR geoalgorithms:
        Feature: Unit Tests Q/A
        Feature: Improved toolbox
        Feature: Batch processes can be saved and later recovered from the batch processing interface
        Feature: More informative algorithm dialog
        Feature: GRASS7 v.net modules
    Programmability
        Feature: Redesign expression function editor
        Feature: Store python init code into the project
        Feature: New filtering and sorting options for QgsFeatureRequest
        Feature: Custom feature form Python code options
        Feature: New PyQGIS classes in 2.14
        New core classes
        New GUI classes
            Reusable widgets:
            Reusable dialogs:
    QGIS Server
        Feature: STARTINDEX param in WFS GetFeature Request
        Feature: showFeatureCount in GetLegendGraphic
        Feature: Option to avoid rendering artefacts at edges of tiles
        Feature: Configuration checker in project properties
        Feature: WMS INSPIRE Capabilities
        Feature: Add short name to layers, groups and project
    Symbology
        Feature: Size assistant for varying line width
        Feature: Support for transparency in SVG color parameters
        Feature: Easy duplication of symbol layers
        Feature: 2.5D Renderer
        Feature: Allow definition of rendering order for features
        Feature: Geometry generator symbols
        Examples
            Translate a geometry
            Fill style for polygon border
    User Interface
        Feature: Attribute table can be refreshed
        Feature: Directly set renderer and class symbol colors from context menu in legend
        Feature: Edit legend symbols directly from layer tree
        Feature: Show/hide all legend items via the context menu
2016-07-01 16:15:18 +00:00
fhajny
ecf85ce677 Updated devel/rudiments to 0.55.0 2016-07-01 16:02:22 +00:00
fhajny
2ef644a49e Update devel/rudiments to 0.55.0.
Major new features:

- Security Framework
  * A securitycontext may now be attached to a filedescriptor to
    enable encrypted reads and writes. The securitycontext class
    is just an interface though, and there are currently gsscontext
    and tlscontext implementations of it.
  * The gsscontext class and associated classes implement a
    wrapper on top of the GSSAPI on Linux/Unix and SSPI on Windows.
    This primarily provides Kerberos encryption and authentication,
    though on Windows it could be used for NTLM as well.
  * The tlscontext class and associated classes implement a wrapper
    on top of OpenSSL on Linux/Unix and, again, SSPI on Windows.
    This provides Transport Layer Security, or it's predecessor Secure
    Socket Layer, on both platforms.
- Thread Class Improvements
- Semantic Versioning
- General Bug Fixes

See full changelog:

  http://software.firstworks.com/2016/03/rudiments-0550-release-announcement.html
2016-07-01 16:02:12 +00:00
fhajny
5abc242b6e Updated lang/nodejs4 to 4.4.7 2016-07-01 15:41:38 +00:00
fhajny
8428c366dc Update lang/nodejs4 to 4.4.7.
Notable Changes

- debugger:
  * All properties of an array (aside from length) can now be printed
    in the repl
- npm:
  * Upgrade npm to 2.15.8
- stream:
  * Fix for a bug that became more prevalent with the stream changes
    that landed in v4.4.5.
- V8:
  * Fix for a bug in crankshaft that was causing crashes on arm64
  * Add missing classes to postmortem info such as JSMap and JSSet
2016-07-01 15:41:28 +00:00
leot
90a3c4b322 Updated multimedia/mpv to 0.18.0 2016-07-01 07:47:48 +00:00
leot
4c4bc89680 Update multimedia/mpv to 0.18.0
Changes:
Release 0.18.0
==============
Build System Changes
--------------------
- build: Do not link to libGL for egl-drm
- build: also use the iconv check on FreeBSD
- build: don't install tests, only build them
- build: re-enable encoding mode by default
- vo_opengl: hwdec: remove build-dependency on dxva2 (#3150)
- wscript: make at least 1 OpenGL output mandatory


Features
--------
New
~~~
- csputils: add SMPTE ST2084 support
- demux_mkv: support Matroska webvtt (#3247)
- demux_playlist: read directories recursively
- stream_memory: add hex:// protocol
- vf_crop: support opaque hardware decoding formats
- vf_d3d11vpp: add a D3D11 video processor filter
- vo_opengl: D3D11VA + ANGLE interop
- vo_opengl: add an angle-es2 backend
- vo_opengl: angle: dynamically load ANGLE
- vo_opengl: d3d11egl: native NV12 sampling support
- vo_opengl: enable color management on GLES
- vo_opengl: implement HDR (SMPTE ST2084)
- vo_opengl: implement tone mapping algorithms
- vo_opengl: make PBOs work on GLES 3.x
- vo_opengl: support external user hooks, enhancing the flexibility of user shaders
- vo_opengl: vdpau interop without RGB conversion
- wayland: implement HIDPI support

Removed
~~~~~~~
- vo_opengl: remove nnedi3 prescaler (replaced by user shaders)
- vo_opengl: remove prescaling framework with superxbr prescaler (replaced by user shaders)


Options and Commands
--------------------
Added
~~~~~
- Windows: make taskbar progress indication optional (#2535)
- af_lavcac3enc: make encoder configurable
- command: add playlist-pos-1 property (#2828)
- command: introduce hwdec-current and hwdec-interop properties.
- options: add --fit-border video option (currently Windows only)
- video: add --hwdec=auto-copy mode
- vo_opengl: always autoselect ANGLE as backend if available
- vo_opengl: expose performance timers as properties
- x11: add --x11-bypass-compositor=never
- x11: extend --x11-bypass-compositor with fs-only option (#2582)

Changed
~~~~~~~
- command: allow setting panscan etc. properties if no video is active
- command: don't seek immediately when setting a-b loop while paused
- command: if only ab-loop-b is set, loop from start of file
- options: --geometry: center window position after applying size (#2397)
- player: loop on end of file if ab-loop-b is unset
- sd_add: replace --sub-ass=no with --ass-style-override=strip

Removed
~~~~~~~
- vo_opengl: remove non-working rgb/rgba FBO formats


Fixes and Minor Enhancements
----------------------------
- TOOLS/zsh.pl: add .f4v extension in zsh completions
- TOOLS/zsh.pl: complete --audio-device
- Windows: center window on original window center on resize to fit screen
- Windows: fix size calculations for window resize (#2935)
- Windows: fix wrong behavior with window-scale when window size exceeds screen size
- Windows: make VOCTRL_SET_UNFS_WINDOW_SIZE resize the window around its center (#3164)
- af_lavcac3enc: fix custom bitrates
- ao_alsa: add more workarounds for hardware with broken drivers (e.g. ODROID-C2)
- ao_opensles: remove 32-bit audio formats (not supported by Android)
- cocoa: fix actual display refresh rate retrieval
- cocoa: use displaylink without manually tracking the display id (#2392)
- command: improve playlist* properties change notifications (#3267)
- command: slightly nicer OSD list formatting
- compatibility with recent FFmpeg APIs
- d3d: fix hardware decoding of most MPEG2 things
- d3dva: move Intel_H264_NoFGT_ClearVideo to lower priority (#3059)
- demux_mkv: better resync behavior for broken google-created webms
- demux_mkv: fix seeking with files that miss the first index entry
- demux_playlist: recognize m3u8 as playlist extension (#3154)
- input: fix parsing multiple input command prefixes
- lcms: don't warn/error on 3dlut cache misses
- lcms: improve black point handling (especially BT.1886)
- macOS: handle multiple dropped files on the window (#3076)
- player: always show the first frame in DS mode
- player: assume video forwards timestamps jumps only with some formats (#3027)
- player: do not update OSD all the time when paused
- player: eagerly redraw OSD when seeking with coverart
- player: fix use-after-free with --screenshot-directory (#3049)
- player: force VO reconfig when unselecting video track
- player: really start audio only once video is ready
- sd_lavc: work around bug in older FFmpeg releases (#3109)
- stream_cdda: enable cache by default
- sub: fix --sub-gauss
- vd_lavc: better hwdec wrapper decoder selection
- vo_opengl: EGL: fix hwdec probing
- vo_opengl: angle: avoid fullscreen FBO copy for flipping
- vo_opengl: angle: enable DirectComposition (lowers vsync jitter)
- vo_opengl: angle: prevent DXGI hooking Alt+Enter
- vo_opengl: avoid outputting ultra-wide-gamut by default
- vo_opengl: correctly disable interpolation if tscale can't be used
- vo_opengl: fix bicubic_fast in ES mode
- vo_opengl: fix d3d11 hardware decoding probing on Windows 7
- vo_opengl: improve scale=oversample performance
- vo_opengl: make the screen blue on shader errors
- vo_opengl: partially fix 0bgr format support
- vo_opengl: possibly update icc profile after changing options
- vo_opengl: request core profile on X11/EGL too
- vo_opengl: require at least ES 3.0 for float textures
- vo_opengl: vdpau: fix certain cases of preemption recovery failures
- vo_rpi: attempt to survive display mode changes
- vo_rpi: fix destroying overlays (#3100)
- vo_rpi: wait for vsync with a timeout
- vo_sdl: fix pixel formats.
- vo_xv: Handle incorrect size returned by Xv(Shm)CreateImage (#320)
- wayland: correctly report display refresh rate
- wayland: use the advertised size in fullscreen (#3021, #2657)
- x11: tell GNOME to use dark window decorations
- ytdl_hook: fix brightcove urls
- ytdl_hook: just check if protocol is rtmp (#3090)
- ytdl_hook: support multi-arc subtitles
2016-07-01 07:47:38 +00:00
adam
9c014db717 Updated net/ntopng to 2.4 2016-07-01 04:54:44 +00:00
adam
0623d89242 Added patches/patch-configure.ac 2016-07-01 04:51:57 +00:00
adam
512bb2f0ff Changes 2.4:
* Memory-management, stability and speed have been fundamentally improved
* We have kept an eye on security and hardened the code to prevent privileges escalation and XSS
* Alerts have been extended to include support for
  . Re-arming to avoid raising trains of identical alerts in short periods of time
  . Alert propagation to the infrastructure monitoring software Nagios
  . CIDR-based triggers to monitor the behavior of whole networks
  . The detection of suspicious probing attempts
* Netfilter support has been added together with optional packet dropping features
* Routing visibility is now possible through RIPE RIS
* Availability of fine-grained historical data drill-down features, including top talkers, top applications, and interactions between hosts (more details here)
* Integrations with other software
  . LDAP authentication support
  . alerts forwarding/withdrawal to Nagios
  . nBox integration to request full packet pcaps of monitored flows
  . Data export to Apache Kafka
* We have extended and improved traffic monitoring
  . Visibility of TCP sessions throughput estimations and state breakdown (e.g., connections established, connections reset, etc.)
  . Goodput monitoring
  . Trends detection
  . Highlight of low-goodput flows and hosts
  . Visibility of hosts top-visited sites
* Built-in support is now included for
  . GRE detunnelling
  . per-VLAN historical statistics
  . ICMP and ICMPv6 dissection
* We have extended the set of supported OSes to include: Ubuntu 16, Debian 7, EdgeOS
* There is also an optional support for hosts categorization via service flashstart.it
2016-07-01 04:51:15 +00:00
agc
448c44c9b9 Note update of netpgpverify and libnetpgpverify to 20160625 2016-06-30 21:21:01 +00:00
agc
6f7acbaf3f Update netpgpverify and libnetpgpverify to 20160625
+ Perform digest on correctly dash-escaped text, per RFC 4880.
Problem pointed out by Dimitri John Ledkov, fixed in a different way
(in case the last line is itself dash-escaped).

+ add test case
2016-06-30 21:19:59 +00:00
agc
e967518a55 Note update of netpgpverify and libnetpgpverify to 20160624 2016-06-30 21:11:51 +00:00
agc
7a3207d024 Update netpgpverify and libnetpgpverify to 20160624
+ Get rid of the tiger digest - only specified in RFC 2440, not specified
in RFC 4880.
2016-06-30 21:10:59 +00:00
agc
9b0c909938 Note updates to netpgpverify and libnetpgpverify 2016-06-30 21:05:00 +00:00
agc
6485a3d0fe Update netpgpverify and libnetpgpverify to 20160623
+ remove use of asprintf and vasprintf from libverify. Inspired
by work from Dimitri John Ledkov. Should allow building on Linux
without superfluous definitions.

+ also free the BIGNUM struct in PGPV_BN_clear() - from Dimitri
John Ledkov
2016-06-30 21:03:51 +00:00
wiz
173ed9a1f3 Add upstream bug report URL. 2016-06-30 18:14:23 +00:00
wiz
3ad3de8dfa Updated emulators/mame to 0.175 2016-06-30 18:06:05 +00:00
wiz
ef3d74f6b9 Update mame to 0.175.
Get ready for your vacation and grab MAME 0.175!

We're proud to say MAME now supports a number of previously unemulated
prototypes, alternate versions of games, and unusual systems.
Prototypes include the super-rare Konami Kyuukoukabakugekitai, Home
Data's Mahjong Joshi Pro-wres Give Up 5 Byou Mae, and an early
Japanese version of E.D.F.: Earth Defense Force. Atari Moto Frenzy,
previously lacking protection emulation, is now fully playable.
We've also added a number of gambling games, including some Flaming
7's variants.

Many more Game Boy peripherals are now supported, including real-time
clocks, light sensors and tilt sensors. This makes several previously
unsupported games fully playable.

This release includes improvements to the Sega Master System and
SG-1000 emulation, including better SG-1000 expansion slot support,
and drivers with correct clock speeds for South American Master
System variants.

There's some big news in Sun emulation: all sun3 models will now
POST, MAME has a SPARCv7 CPU core, and there has been substantial
progress towards emulating the SPARCstation 1 (sun4c). Using unidasm
(built with TOOLS=1) you can disassemble SPARCv7 SPARCv7 or SPARCv9
code, incuding all VIS variants up to VIS-3B.

As usual, there are many emulation improvements, including fixes
for keyboard controls in some TRS-80 games, and better Seibu COP
emulation in Legionnaire, Heated Barrel and Godzilla.

In less visible changes, MAME's memory system got a nice cleanup
exposing a number of existing issues which are now fixed, and the
netlist-based discrete circuit simulation code has had a major
overhaul with lots of performance improvements. There are a number
of improvements to MAME's debugger modules in this release,
particularly the imgui-based debugger.
2016-06-30 18:05:55 +00:00
wiz
b564621767 regen 2016-06-30 18:05:02 +00:00
wiz
376f99eeee Switch to direct py-dns dependency.
py-dns now supports all python versions, so versioned_dependencies
is not needed any longer.
2016-06-30 18:03:46 +00:00
wiz
e88d9c7cc6 Add ALTERNATIVES file for py-fonttools. 2016-06-30 17:56:35 +00:00
wiz
2971c45699 Updated fonts/py-fonttools to 3.0 2016-06-30 17:56:25 +00:00
wiz
303d07283c Updated py-fonttools to 3.0.
Make parallel-installable.

Changes to 2.4 not found, but now supports Python-3.x.
2016-06-30 17:56:14 +00:00
wiz
a975bcb3cc Added net/py-dnsdiag version 1.5.0 2016-06-30 17:48:37 +00:00
wiz
5a25e91db0 + py-dnsdiag. 2016-06-30 17:48:27 +00:00
wiz
e3c9ee5a20 Import py-dnsdiag-1.5.0 as net/py-dnsdiag.
Ever been wondering if your ISP is hijacking your DNS traffic? Ever
observed any misbehavior with your DNS responses? Ever been redirected
to wrong address and suspected something is wrong with your DNS?
Here we have a set of tools to perform basic audits on your DNS
requests and responses to make sure your DNS is working as you
expect.

You can measure the response time of any given DNS server for
arbitrary requests using dnsping. Just like traditional ping utility,
it gives you similar functionality for DNS requests.

You can also trace the path your DNS request takes to destination
to make sure it is not being redirected or hijacked. This can be
done by comparing different DNS queries being sent to the same DNS
server using dnstraceroute and observe if there is any difference
between the path.

dnseval evaluates multiple DNS resolvers and helps you choose the
best DNS server for your network. While it is highly recommended
to use your own DNS resolver and never trust any third-party DNS
server, but in case you need to choose the best DNS forwarder for
your network, dnseval lets you compare different DNS servers from
performance (latency) and reliability (loss) point of view.
2016-06-30 17:48:21 +00:00
wiz
230125b7c3 Added net/py-cymruwhois version 1.5 2016-06-30 17:47:30 +00:00
wiz
e1033aa6e4 + py-cymruwhois. 2016-06-30 17:47:20 +00:00
wiz
9ec3399821 Import py-cymruwhois-1.5 as net/py-cymruwhois.
Client for the whois.cymru.com service

Perform lookups by ip address and return ASN, Country Code, and
Netblock Owner.
2016-06-30 17:47:02 +00:00
wiz
f72b459a22 Removed py-dns3. 2016-06-30 17:46:08 +00:00
wiz
89ae6f8060 Remove py-dns3, py-dns now supports python 3. 2016-06-30 17:45:59 +00:00
wiz
9d976d8c43 py-dns supports both py2 and py3 now. 2016-06-30 17:45:30 +00:00
wiz
5ecff47cff Updated net/py-dns to 1.14.0 2016-06-30 17:45:15 +00:00
wiz
fc9ebd42f8 Updated py-dns to 1.14.0.
2016-05-27  Bob Halley  <halley@dnspython.org>

	* (Version 1.14.0 released)

	* Add CSYNC RR support

	* Fix bug in LOC which destroyed N/S and E/W distinctions within
	  a degree of the equator or prime merdian respectively.

	* Misc. fixes to deal with fallout from the Python 2 & 3 merge.
	  [issue #156], [issue #157], [issue #158], [issue #159],
	  [issue #160].

	* Running with python optimization on caused issues when
	  stripped docstrings were referenced. [issue #154]

	* dns.zone.from_text() erroneously required the zone to be provided.
	  [issue #153]

2016-05-13  Bob Halley  <halley@dnspython.org>

	* dns/message.py (make_query): Setting any value which implies
	  EDNS will turn on EDNS if 'use_edns' has not been specified.

2016-05-12  Bob Halley  <halley@dnspython.org>

	* TSIG signature algorithm setting was broken by the Python 2
	  and Python 3 code line merge.  Fixed.

2016-05-10  Bob Halley  <halley@dnspython.org>

	* (Version 1.13.0 released)

2016-05-10  Bob Halley  <halley@dnspython.org>

	* Dropped support for Python 2.4 and 2.5.

	* Zone origin can be specified as a string.

	* Support string representation for all DNSExceptions.

	* Use setuptools not distutils

	* A number of Unicode name bug fixes.

	* Added support for CAA, CDS, CDNSKEY, EUI48, EUI64, and URI RR
	  types.

	* Names now support the pickle protocol.

	* NameDicts now keep the max-depth value correct, and update
	  properly.

	* resolv.conf processing rejects lines with too few tokens.

	* Ports can be specified per-nameserver in the stub resolver.

2016-05-03  Arthur Gautier

        * Single source support for python 2.6+ and 3.3+

2014-09-04  Bob Halley  <halley@dnspython.org>

	* Comparing two rdata is now always done by comparing the binary
	  data of the DNSSEC digestable forms.  This corrects a number of
	  errors where dnspython's rdata comparison order was not the
	  DNSSEC order.

	* Add CAA implementation.  Thanks to Brian Wellington for the
	  patch.
2016-06-30 17:45:04 +00:00
wiz
a4aeac64d7 Updated devel/p5-List-AllUtils to 0.11 2016-06-30 17:44:48 +00:00
wiz
614956764c Updated p5-List-AllUtils to 0.11.
0.11    2016-06-26

- Added List::UtilsBy to the list of included modules. Based on a patch from
  Yanick Champoux. GH #3.
2016-06-30 17:44:38 +00:00
wiz
07df8a6535 Updated security/p5-IO-Socket-SSL to 2.029 2016-06-30 17:44:28 +00:00
wiz
dd45f973e1 Updated p5-IO-Socket-SSL to 2.029.
2.029 2016/07/26
- fix del_session method in case a single item was in the cache
- use SSL_session_key as the real key for the cache and not some derivate of it,
  so that it works to remove the entry using the same key
2.028 2016/07/26
- add del_session method to session cache
2016-06-30 17:44:18 +00:00
wiz
fa3595b906 Updated time/p5-DateTime-Locale to 1.05 2016-06-30 17:44:11 +00:00
wiz
0bfb2cce6a Updated p5-DateTime-Locale to 1.05.
1.05     2016-06-26

- Instead of using the DATA handle to get at as-yet-unloaded locale data in
  DateTime::Locale::Data, we now read the raw data into memory once, and use
  eval to turn it into Perl data structures as a particular locale is
  requested. This may fix a problem where reading from the DATA handle somehow
  returned the wrong chunk of data (or overlapped multiple locales). The
  downside is that loading DateTime::Locale now uses an additional 4MB of
  memory on my system, regardless of how many individual locales are
  instantiated. Reported by Greg Oschwald. GitHub #3.
2016-06-30 17:44:01 +00:00
wiz
bb76c00f0a Updated finance/gnucash-docs to 2.6.13 2016-06-30 17:43:52 +00:00