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 (2h)  pkgsrc-2024Q1 (15d)  pkgsrc-2023Q4 (43d)  pkgsrc-2023Q2 (75d)  pkgsrc-2023Q3 (155d) 

2024-05-13 18:22:39 UTC Now

2013-07-09 17:24:46 UTC MAIN commitmail json YAML

Update py-flask to 0.10.1.

Version 0.10.1
--------------

(bugfix release, released on June 14th 2013)

- Fixed an issue where ``|tojson`` was not quoting single quotes which
  made the filter not work properly in HTML attributes.  Now it's
  possible to use that filter in single quoted attributes.  This should
  make using that filter with angular.js easier.
- Added support for byte strings back to the session system.  This broke
  compatibility with the common case of people putting binary data for
  token verification into the session.
- Fixed an issue were registering the same method twice for the same endpoint
  would trigger an exception incorrectly.

Version 0.10
------------

Released on June 13nd 2013, codename Limoncello.

- Changed default cookie serialization format from pickle to JSON to
  limit the impact an attacker can do if the secret key leaks.  See
  :ref:`upgrading-to-010` for more information.
- Added ``template_test`` methods in addition to the already existing
  ``template_filter`` method family.
- Added ``template_global`` methods in addition to the already existing
  ``template_filter`` method family.
- Set the content-length header for x-sendfile.
- ``tojson`` filter now does not escape script blocks in HTML5 parsers.
- ``tojson`` used in templates is now safe by default due.  This was
  allowed due to the different escaping behavior.
- Flask will now raise an error if you attempt to register a new function
  on an already used endpoint.
- Added wrapper module around simplejson and added default serialization
  of datetime objects.  This allows much easier customization of how
  JSON is handled by Flask or any Flask extension.
- Removed deprecated internal ``flask.session`` module alias.  Use
  ``flask.sessions`` instead to get the session module.  This is not to
  be confused with ``flask.session`` the session proxy.
- Templates can now be rendered without request context.  The behavior is
  slightly different as the ``request``, ``session`` and ``g`` objects
  will not be available and blueprint's context processors are not
  called.
- The config object is now available to the template as a real global and
  not through a context processor which makes it available even in imported
  templates by default.
- Added an option to generate non-ascii encoded JSON which should result
  in less bytes being transmitted over the network.  It's disabled by
  default to not cause confusion with existing libraries that might expect
  ``flask.json.dumps`` to return bytestrings by default.
- ``flask.g`` is now stored on the app context instead of the request
  context.
- ``flask.g`` now gained a ``get()`` method for not erroring out on non
  existing items.
- ``flask.g`` now can be used with the ``in`` operator to see what's defined
  and it now is iterable and will yield all attributes stored.
- ``flask.Flask.request_globals_class`` got renamed to
  ``flask.Flask.app_ctx_globals_class`` which is a better name to what it
  does since 0.10.
- `request`, `session` and `g` are now also added as proxies to the template
  context which makes them available in imported templates.  One has to be
  very careful with those though because usage outside of macros might
  cause caching.
- Flask will no longer invoke the wrong error handlers if a proxy
  exception is passed through.
- Added a workaround for chrome's cookies in localhost not working
  as intended with domain names.
- Changed logic for picking defaults for cookie values from sessions
  to work better with Google Chrome.
- Added `message_flashed` signal that simplifies flashing testing.
- Added support for copying of request contexts for better working with
  greenlets.
- Removed custom JSON HTTP exception subclasses.  If you were relying on them
  you can reintroduce them again yourself trivially.  Using them however is
  strongly discouraged as the interface was flawed.
- Python requirements changed: requiring Python 2.6 or 2.7 now to prepare
  for Python 3.3 port.
- Changed how the teardown system is informed about exceptions.  This is now
  more reliable in case something handles an exception halfway through
  the error handling process.
- Request context preservation in debug mode now keeps the exception
  information around which means that teardown handlers are able to
  distinguish error from success cases.
- Added the ``JSONIFY_PRETTYPRINT_REGULAR`` configuration variable.
- Flask now orders JSON keys by default to not trash HTTP caches due to
  different hash seeds between different workers.
- Added `appcontext_pushed` and `appcontext_popped` signals.
- The builtin run method now takes the ``SERVER_NAME`` into account when
  picking the default port to run on.
- Added `flask.request.get_json()` as a replacement for the old
  `flask.request.json` property.

(kleink)

2013-07-09 17:13:44 UTC MAIN commitmail json YAML

Updated www/py-werkzeug to 0.9.1.
Updated www/py-werkzeug-docs to 0.9.1.

(kleink)

2013-07-09 17:11:42 UTC MAIN commitmail json YAML

Update py-werkzeug and py-werkzeug-docs to 0.9.1.

Version 0.9.1
-------------

(bugfix release, released on June 14th 2013)

- Fixed an issue with integers no longer being accepted in certain
  parts of the routing system or URL quoting functions.
- Fixed an issue with `url_quote` not producing the right escape
  codes for single digit codepoints.
- Fixed an issue with :class:`~werkzeug.wsgi.SharedDataMiddleware` not
  reading the path correctly and breaking on etag generation in some
  cases.
- Properly handle `Expect: 100-continue` in the development server
  to resolve issues with curl.
- Automatically exhaust the input stream on request close.  This should
  fix issues where not touching request files results in a timeout.
- Fixed exhausting of streams not doing anything if a non-limited
  stream was passed into the multipart parser.
- Raised the buffer sizes for the multipart parser.

Version 0.9
-----------

Released on June 13nd 2013, codename Planierraupe.

- Added support for :meth:`~werkzeug.wsgi.LimitedStream.tell`
  on the limited stream.
- :class:`~werkzeug.datastructures.ETags` now is nonzero if it
  contains at least one etag of any kind, including weak ones.
- Added a workaround for a bug in the stdlib for SSL servers.
- Improved SSL interface of the devserver so that it can generate
  certificates easily and load them from files.
- Refactored test client to invoke the open method on the class
  for redirects.  This makes subclassing more powerful.
- :func:`werkzeug.wsgi.make_chunk_iter` and
  :func:`werkzeug.wsgi.make_line_iter` now support processing of
  iterators and streams.
- URL generation by the routing system now no longer quotes
  ``+``.
- URL fixing now no longer quotes certain reserved characters.
- The :func:`werkzeug.security.generate_password_hash` and
  check functions now support any of the hashlib algorithms.
- `wsgi.get_current_url` is now ascii safe for browsers sending
  non-ascii data in query strings.
- improved parsing behavior for :func:`werkzeug.http.parse_options_header`
- added more operators to local proxies.
- added a hook to override the default converter in the routing
  system.
- The description field of HTTP exceptions is now always escaped.
  Use markup objects to disable that.
- Added number of proxy argument to the proxy fix to make it more
  secure out of the box on common proxy setups.  It will by default
  no longer trust the x-forwarded-for header as much as it did
  before.
- Added support for fragment handling in URI/IRI functions.
- Added custom class support for :func:`werkzeug.http.parse_dict_header`.
- Renamed `LighttpdCGIRootFix` to `CGIRootFix`.
- Always treat `+` as safe when fixing URLs as people love misusing them.
- Added support to profiling into directories in the contrib profiler.
- The escape function now by default escapes quotes.
- Changed repr of exceptions to be less magical.
- Simplified exception interface to no longer require environmnts
  to be passed to recieve the response object.
- Added sentinel argument to IterIO objects.
- Added pbkdf2 support for the security module.
- Added a plain request type that disables all form parsing to only
  leave the stream behind.
- Removed support for deprecated `fix_headers`.
- Removed support for deprecated `header_list`.
- Removed support for deprecated parameter for `iter_encoded`.
- Removed support for deprecated non-silent usage of the limited
  stream object.
- Removed support for previous dummy `writable` parameter on
  the cached property.
- Added support for explicitly closing request objects to close
  associated resources.
- Conditional request handling or access to the data property on responses no
  longer ignores direct passthrough mode.
- Removed werkzeug.templates and werkzeug.contrib.kickstart.
- Changed host lookup logic for forwarded hosts to allow lists of
  hosts in which case only the first one is picked up.
- Added `wsgi.get_query_string`, `wsgi.get_path_info` and
  `wsgi.get_script_name` and made the `wsgi.pop_path_info` and
  `wsgi.peek_path_info` functions perform unicode decoding.  This
  was necessary to avoid having to expose the WSGI encoding dance
  on Python 3.
- Added `content_encoding` and `content_md5` to the request object's
  common request descriptor mixin.
- added `options` and `trace` to the test client.
- Overhauled the utilization of the input stream to be easier to use
  and better to extend.  The detection of content payload on the input
  side is now more compliant with HTTP by detecting off the content
  type header instead of the request method.  This also now means that
  the stream property on the request class is always available instead
  of just when the parsing fails.
- Added support for using :class:`werkzeug.wrappers.BaseResponse` in a with
  statement.
- Changed `get_app_iter` to fetch the response early so that it does not
  fail when wrapping a response iterable.  This makes filtering easier.
- Introduced `get_data` and `set_data` methods for responses.
- Introduced `get_data` for requests.
- Soft deprecated the `data` descriptors for request and response objects.
- Added `as_bytes` operations to some of the headers to simplify working
  with things like cookies.
- Made the debugger paste tracebacks into github's gist service as
  private pastes.

Version 0.8.4
-------------

(bugfix release, release date to be announced)

- Added a favicon to the debugger which fixes problem with
  state changes being triggered through a request to
  /favicon.ico in Google Chrome.  This should fix some
  problems with Flask and other frameworks that use
  context local objects on a stack with context preservation
  on errors.
- Fixed an issue with scolling up in the debugger.
- Fixed an issue with debuggers running on a different URL
  than the URL root.
- Fixed a problem with proxies not forwarding some rarely
  used special methods properly.
- Added a workaround to prevent the XSS protection from Chrome
  breaking the debugger.
- Skip redis tests if redis is not running.
- Fixed a typo in the multipart parser that caused content-type
  to not be picked up properly.

(kleink)

2013-07-09 17:02:40 UTC MAIN commitmail json YAML

Updated emulators/qemu to 1.5.1

(tsutsui)

2013-07-09 17:00:58 UTC MAIN commitmail json YAML

Update qemu to 1.5.1.

pkgsrc changes:

- remove now unnecessary SUBST for audio.h conflicts
- update PLIST for new files
- adjust patches for hw directory reorganization
- update counting semaphore patches per comments on qemu-devel

Upstream changes:

Changes mentioned in 1.5.1 announcement:
http://lists.nongnu.org/archive/html/qemu-devel/2013-06/msg04798.html

295d81c: Update VERSION for 1.5.1 release (Anthony Liguori)
cc0bd7e: wdt_i6300esb: fix vmstate versioning (Michael Roth)
12e5b2b: virtio-rng: Fix crash with non-default backend (Cole Robinson)
cb55efe: iscsi: reorganize iscsi_readcapacity_sync (Paolo Bonzini)
1b94fc4: iscsi: simplify freeing of tasks (Paolo Bonzini)
5e690bb: vhost-scsi: fix k->set_guest_notifiers() NULL dereference (Stefan
        Hajnoczi)
129db36: scsi-disk: scsi-block device for scsi pass-through should not be
        removable (Pavel Hrdina)
637d640: scsi-generic: check the return value of bdrv_aio_ioctl in
        execute_command (Pavel Hrdina)
9c4f5dd: scsi-generic: fix sign extension of READ CAPACITY(10) data (Paolo
        Bonzini)
3abd71c: scsi: reset cdrom tray statuses on scsi_disk_reset (Pavel Hrdina)
5fcb9bf: nbd: strip braces from literal IPv6 address in URI (Jan Tomko)
6c8cf5f: qemu-socket: allow hostnames starting with a digit (Jan Tomko)
ce4e8f0: vmdk: byteswap VMDK4Header.desc_offset field (Stefan Hajnoczi)
c683f1b: target-i386: cpu: Fix potential buffer overrun in
        get_register_name_32() (Igor Mammedov)
75e4aa9: pc: Fix crash when attempting to hotplug CPU with negative ID (Igor
        Mammedov)
055a7fc: smbios: Check R in -smbios type=0, release=R parses okay (Markus
        Armbruster)
93bc624: smbios: Fix -smbios type=0, release=... for big endian hosts (Markus
        Armbruster)
61fbaee: smbios: Clean up smbios_add_field() parameters (Markus Armbruster)
685ee2d: smbios: Convert to error_report() (Markus Armbruster)
fa0f47d: log.h: Supply missing includes (Markus Armbruster)
7552569: error-report.h: Supply missing include (Markus Armbruster)
02d2672: tcg-ppc64: rotr_i32 rotates wrong amount (Anton Blanchard)
2917f6b: tcg-ppc64: Fix add2_i64 (Anton Blanchard)
9534f66: tcg-ppc64: bswap64 rotates output 32 bits (Anton Blanchard)
d208f05: tcg-ppc64: Fix RLDCL opcode (Anton Blanchard)
6b6f105: ivshmem: add missing error exit(2) (Stefan Hajnoczi)
3202c02: Makefile: Install qemu-img and qemu-nbd man pages only if built
        (Andreas Farber)
5a893b0: tap: fix NULL dereference when passing invalid parameters to tap
        (Jason Wang)
0817fa9: create qemu_openpty_raw() helper function and move it to a separate
        file (Michael Tokarev)
5810174: blockdev: reset werror/rerror on drive_del (Stefan Hajnoczi)
eeaa8d3: q35: set fw_name (Michael S. Tsirkin)
c127070: target-i386: Fix aflag logic for CODE64 and the 0x67 prefix (Richard
        Henderson)
252a7c6: qemu-char: don't issue CHR_EVENT_OPEN in a BH (Michael Roth)
6f3718c: xilinx_axidma: Do not set DMA .notify to NULL after notify (Wendy
        Liang)
1fb147f: virtio-ccw: Fix unsetting of indicators. (Cornelia Huck)
72762f2: s390x/css: Fix concurrent sense. (Cornelia Huck)
31ba701: ui/gtk.c: Fix *BSD build of Gtk+ UI (Brad Smith)
9ca80c7: vmxnet3: fix NICState cleanup (Stefan Hajnoczi)
a548bac: Fix usage of USB_DEV_FLAG_IS_HOST flag. (Michael Marineau)
9b5751e: host-libusb: Correct test for USB packet state (Ed Maste)
032ce1b: qdev: fix get_fw_dev_path to support to add nothing to fw_dev_path
        (Amos Kong)
baa8a8b: do not check pointers after dereferencing them (Paolo Bonzini)
327e75b: xen: start PCI hole at 0xe0000000 (same as pc_init1 and
        qemu-xen-traditional) (Stefano Stabellini)
9e7fdaf: Remove OSS support for OpenBSD (Brad Smith)
d503afb: target-i386: fix abort on bad PML4E/PDPTE/PDE/PTE addresses (Luiz
        Capitulino)
5b3ca29: update seabios to release 1.7.2.2 (Gerd Hoffmann)
7b9cdc5: Revert "roms: switch oldnoconfig to olddefconfig" (Gerd Hoffmann)
0565700: ide: Set BSY bit during FLUSH (Andreas Farber)
ddaa83e: chardev: fix "info chardev" output (Gerd Hoffmann)
38ec6c1: xen_machine_pv: do not create a dummy CPU in machine->init (Stefano
        Stabellini)
951411f: main_loop: do not set nonblocking if xen_enabled() (Stefano Stabellini)
5c26608: xen: simplify xen_enabled (Stefano Stabellini)
3541912: qom/object: Don't poll cast cache for NULL objects (Peter Crosthwaite)
749806d: rtl8139: flush queued packets when RxBufPtr is written (Stefan
        Hajnoczi)
a6fc2cd: hw/9pfs: use O_NOFOLLOW for mapped readlink operation (Aneesh Kumar
        K.V)
eabdf85: hw/9pfs: Fix segfault with 9p2000.u (Aneesh Kumar K.V)

Changelog 1.5:
http://wiki.qemu.org/ChangeLog/1.5

General
-------

- The default for log output enabled via the '-d' command line switch is now
  standard error rather than a file. You can obtain the previous behaviour
  using the '-D' command line switch to specify a file to send the logging to.
- QEMU now uses poll rather than select, and thus does not have any
  restriction on the number of open file descriptors.

System emulation
----------------

Device emulation

  Audio

  - The --audio-card-list configure option is not used anymore. Instead, you
    can modify default-configs/pci.mak (for the PCI soundcards AC97, HDA and
    ES1370) and default-configs/sound.mak (for the ISA soundcards) before
    running "make".
  - The "shortcut" -soundhw option is now available for all targets that have
    a PCI bus.

  Device assignment

  - VFIO supports primary VGA passthrough using the experimental "x-vga=on"
    option. The following devices seem to work: Nvidia 8400gs, 73001e, NVS290;
    ATI/AMD Radeon HD5450 and HD7850.
  - VFIO devices support the bootindex= property to override the default boot
    order for assigned PCI devices.

  USB

  - Experimental support for USB 3.0 streams, both in the nec-usb-xhci
    controller and in the usb-uas USB-attached SCSI device emulation.
  - USB device passthrough has been rewritten to use libusb. For Linux, the
    two backends can be compiled in a single QEMU executable (if libusb is
    enabled, usb-host-linux will be the legacy implementation, usb-host will
    be the libusb-based one; if libusb is disabled, usb-host will be the
    legacy implementation). For BSD, it has to be chosen at configure time
    using --enable/disable-libusb (the default is to use libusb if it is
    available, otherwise use the legacy implementation).

  SCSI

  - QEMU can now emulate the VMware PVSCSI device using "-device pvscsi".
  - QEMU can now use tcm_vhost, a virtio-scsi device model based on the
    Linux-iSCSI implementation of SCSI.

  Network cards

  - QEMU can now emulate the VMware paravirtualized network card using
    "-device vmxnet3".

ARM

  - This release has initial support of KVM for the ARM architecture.
    This requires a 3.9 or better Linux kernel and a Cortex-A15 CPU.
  - The Zynq board provides a SD host controller interface.
  - The PCI controller model for VersatilePB and Realview boards has been
    significantly improved in functionality (including MMIO BAR support and
    a correct PCI IRQ mapping). Note that Linux kernels currently do not take
    advantage of this; however we autodetect kernels that expect the behaviour
    of an old broken QEMU and fall back to that. (The old IRQ behaviour can
    be forced with "-global versatile_pci.broken-irq-mapping=1" if absolutely
    necessary.)
  - Incorrect handling of the SRS instruction in Thumb mode has been fixed.
  - Performance of TCG emulation of ARM targets is improved over previous
    releases.
  - Migration and vm save/load now works correctly on the vexpress-a15 and
    vexpress-a9 models.

PPC

  - Various improvements to TCG code generation
  - KVM synchronizes more state
  - Fix a few issues that blocked Mac OS X from working (still not 100% there
    though!)
  - Refactoring and improvement of soft mmu emulation for book3s
  - Implement various new instructions for ISA 2.05 and ISA 2.06 compatibility
    (-cpu POWER7)
  - Implement support for KVM based e500 family watchdog

s390x

  - Various accuracy fixes for device emulation
  - Faster I/O hypercalls
  - Add firmware to boot from virtio-ccw disks
  - Guest kernel panics are notified to the host

SPARC

  - Improve sun4u interrupt mapping, so that multiple PCI devices can be used
    simultaneously

x86

  - x86 supports emulation of a TPM (Trusted Platform Module) on machines
    that have a hardware TPM
  - Various speedups in TCG emulation of x86
  - The iPXE ROMs that are distributed with QEMU support EFI
  - TCG supports the SSE4.1, SSE4.2, PCLMULQDQ, AES-NI, BMI and ADX extensions.
  - A paravirtual device is included that lets the guest notifies kernel
    panics to the host.
  - CPU hot-add support with cpu-add QMP command. More details
    Features/CPUHotplug.
  - new CPU properties "feature-words" and "filtered-features" to allow
    introspection of supported and not supported CPU features.
  - For reference and examples of how the new properties can be used by
    libvirt and other components, see:
http://wiki.qemu.org/Features/CPUModels#Interfaces.2Frequirements_for_libvirt

QMP

  - QEMU now generates a DEVICE_DELETED event when the guest acknowledges
    a device hot-unplug operation.
  - Much better handling for non-ASCII codepoints in JSON strings

Character devices

  - Character devices gained support for flow control. More details in
    Features/ChardevFlowControl
  - All kinds of character devices can now be hot-plugged. Character device
    hotplug is also supported from the "human" monitor.

Block devices

  - IDE and SCSI disks always have the ability to issue "discard" (aka TRIM or
    UNMAP) commands. However, by default "discard" commands are silently
    ignored as they can cause performance degradation and fragmentation.
    To enable them, the "-drive" option now supports a "discard" suboption;
    the default value is "ignore" (or its synonym "off"), and the other valid
    value is "unmap" (or "on").
  - Sheepdog drives can also be specified with URIs.
  - iSCSI disks support on-line resizing using block_resize. Similar to block
    devices, the resize has to be done first outside QEMU.
  - Various performance improvements in qcow2 internal snapshots (savevm).
  - The NBD backend has improved latency.
  - qemu-nbd can now skip image format probing using the -f/--format
    command-line option.
  - VHDX (MS Hyper-V) image format has initial read-only support. Dynamic and
    fixed sized disks are supported, but not differencing images (e.g. VHDX
    images with a backing file). Read-only is strictly enforced, and the
    'readonly=on' option must be used for any VHDX images.
  - Secure Shell (ssh) support. Access remote disks over ssh using
    qemu -drive file=ssh://host/path/to/file

Live Migration

  - Further improvements in throughput (up to +130%: 4.2 Gbps in 1.5 vs
    1.8 Gbps in 1.4) and latency.

User interface

  - QEMU now provides a GTK+ interface. The interface uses the VTE library
    to provide better terminal emulation for serial consoles and the monitor.
  - A new VNC extension has been added to communicate LED state changes for
    the keyboard.

VNC

  - Websocket connections can now be encrypted with TLS.

User-mode emulation
-------------------

- Threaded programs are now more stable, though still experimental.

Guest agent
-----------

- New commands in qemu-ga let the host put CPUs online/offline with help
  from the guest OS (Linux only)
- Low impact CVE-2013-2007 ("qemu: guest agent creates files with insecure
  permissions in daemon mode") is fixed.
  - Note for guest administrators: unix domain sockets, logfiles etc.
    created by previous versions of qemu-ga do not have their file mode
    bits reset by this change; only newly created files have mode 0600
    when daemonizing. Please delete your old files or change their
    permissions manually when upgrading.
  - The guest-file-open QMP command continues to create files with mode
    0666 for compatibility reasons.

Host support
------------
- QEMU is now a lot faster on Windows hosts than in previous versions
- libcacard has been ported to Windows.

Known issues

  - The GTK+ backend does not compile on BSD systems (including Mac OS X).
    This will likely be fixed in a later stable update.

(tsutsui)

2013-07-09 16:56:47 UTC MAIN commitmail json YAML

Updated devel/py-blinker to 1.3.

(kleink)

2013-07-09 16:55:42 UTC MAIN commitmail json YAML

Update py-blinker to 1.3.

Version 1.3
-----------

Released July 3, 2013

- The global signal stash behind blinker.signal() is now backed by a
  regular name-to-Signal dictionary. Previously, weak references were
  held in the mapping and ephermal usage in code like
  ``signal('foo').connect(...)`` could have surprising program behavior
  depending on import order of modules.
- blinker.Namespace is now built on a regular dict. Use
  blinker.WeakNamespace for the older, weak-referencing behavior.
- Signal.connect('text-sender') uses an alterate hashing strategy to
  avoid sharp edges in text identity.

(kleink)

2013-07-09 16:50:25 UTC MAIN commitmail json YAML

Updated security/py-itsdangerous to 0.22.

(kleink)

2013-07-09 16:49:16 UTC MAIN commitmail json YAML

Update py-itsdangerous to 0.22.

Version 0.22
~~~~~~~~~~~~

- Added support for `TimedJSONWebSignatureSerializer`.
- made it possible to override the signature verification function
  to allow implementing asymmetrical algorithms.

(kleink)

2013-07-09 15:52:32 UTC MAIN commitmail json YAML

Updated math/fftw to 3.3.3nb2
Updated x11/py-gtk2 to 2.24.0nb14

(tsutsui)

2013-07-09 15:49:44 UTC MAIN commitmail json YAML

Disable py-numpy option (which requires lang/g95 support) by default
until lang/g95 issue is resolved.
Also bump PKGREVISION for the option default change.

"Please do that" from wiz@ in PR/48023.

(tsutsui)

2013-07-09 15:46:46 UTC MAIN commitmail json YAML

Disable fftw-fortran option by default until lang/g95 issue is resolved.
Also bump PKGREVISION for the option default change.

"Please do that" from wiz@ in PR/48023.

(tsutsui)

2013-07-09 15:22:31 UTC MAIN commitmail json YAML

Allow the system bison to be used.  The comment that it was too old is
from 2006 and the OSX bison has been upgraded long since then.  In any
case, if the bison is too old, the BISON_REQD check will ensure that a
working version is pulled in if necessary.

(jperkin)

2013-07-09 14:57:20 UTC MAIN commitmail json YAML

Describe py-numpy option, used by x11/py-gtk2.

(tsutsui)

2013-07-09 14:13:30 UTC MAIN commitmail json YAML

Handle PKG_OPTIONS.py-gtk2=-py-numpy properly in buildlink3.mk.  PR/48024

(tsutsui)

2013-07-09 11:20:53 UTC MAIN commitmail json YAML

Updated mail/thunderbird-l10n to 17.0.7

(ryoon)

2013-07-09 11:20:23 UTC MAIN commitmail json YAML

2013-07-09 11:19:19 UTC MAIN commitmail json YAML

Updated www/firefox17-l10n to 17.0.7

(ryoon)

2013-07-09 11:18:37 UTC MAIN commitmail json YAML

Update to 17.0.7.

* Sync with firefox17-17.0.7.

(ryoon)

2013-07-09 11:11:11 UTC MAIN commitmail json YAML

Jæ—¦rn Clausen reports that this needs librt on SunOS.

(wiz)

2013-07-09 10:57:47 UTC MAIN commitmail json YAML

Updated mail/thunderbird to 17.0.7

(ryoon)

2013-07-09 10:57:20 UTC MAIN commitmail json YAML

Update to 17.0.7

Changelog:
    FIXED
    Security fixes can be found here

Fixed in Thunderbird 17.0.7
MFSA 2013-59 XrayWrappers can be bypassed to run user defined methods in a privileged context
MFSA 2013-56 PreserveWrapper has inconsistent behavior
MFSA 2013-55 SVG filters can lead to information disclosure
MFSA 2013-54 Data in the body of XHR HEAD requests leads to CSRF attacks
MFSA 2013-53 Execution of unmapped memory through onreadystatechange event
MFSA 2013-51 Privileged content access and execution via XBL
MFSA 2013-50 Memory corruption found using Address Sanitizer
MFSA 2013-49 Miscellaneous memory safety hazards (rv:22.0 / rv:17.0.7)

(ryoon)

2013-07-09 10:55:15 UTC MAIN commitmail json YAML

Updated devel/xulrunner17 to 17.0.7
Updated www/firefox17 to 17.0.7

(ryoon)

2013-07-09 10:54:04 UTC MAIN commitmail json YAML

Update to 17.0.7

* SYnc with xulrunner17-17.0.7.

(ryoon)

2013-07-09 10:53:14 UTC MAIN commitmail json YAML

Update to 17.0.7

Changelog:
FIXED
Security fixes can be found here

Fixed in Firefox ESR 17.0.7
MFSA 2013-59 XrayWrappers can be bypassed to run user defined methods in a privileged context
MFSA 2013-56 PreserveWrapper has inconsistent behavior
MFSA 2013-55 SVG filters can lead to information disclosure
MFSA 2013-54 Data in the body of XHR HEAD requests leads to CSRF attacks
MFSA 2013-53 Execution of unmapped memory through onreadystatechange event
MFSA 2013-51 Privileged content access and execution via XBL
MFSA 2013-50 Memory corruption found using Address Sanitizer
MFSA 2013-49 Miscellaneous memory safety hazards (rv:22.0 / rv:17.0.7)

(ryoon)

2013-07-09 10:25:01 UTC MAIN commitmail json YAML

Note update of emulators/x48 to 0.6.4nb1.

(he)

2013-07-09 10:24:23 UTC MAIN commitmail json YAML

Fix problem related to search of X11 application defaults: pick
it up from the path specified in the package Makefile.
Also fix the default ROM path fixup so that it actually works.
Bump PKGREVISION.

(he)

2013-07-09 10:16:02 UTC MAIN commitmail json YAML

devel/gps: Upgrade GNAT Programming Studio to version 5.2.1

This is a significant upgrade over version 5.0.1 which is currently in
pkgsrc, representing approximately two years of work.  The latest online
documentation can be browsed here:

  http://docs.adacore.com/gps-docs/users_guide/_build/html/

Changes to the package itself include:
* python now works and is a default option
* readline support is now an option and is default
* Multiple job support enable
* Documentation now generated by sphinx

Also the problem described in PR#47824 no longer occurs, so this PR will
be closed.

(marino)

2013-07-09 10:14:53 UTC MAIN commitmail json YAML

2013-07-09 10:13:43 UTC MAIN commitmail json YAML

Match against CC_VERSION rather than _GCC_VERSION, the latter is not defined
in the USE_PKGSRC_GCC case.

(jperkin)

2013-07-09 08:50:34 UTC MAIN commitmail json YAML

Fix build issue with texinfo-5.1, as reported by Jæ—¦rn Clausen
in PR 48032. More complete fix already scheduled for next release
upstream, see http://sourceforge.net/p/gnuplot/bugs/1226/

(wiz)

2013-07-09 08:36:47 UTC MAIN commitmail json YAML

Updated net/wireshark to 1.10.0nb1

(wiz)

2013-07-09 08:36:38 UTC MAIN commitmail json YAML

Replace python scripts in tools/. Needed during build as indicated by
Joern Clausen in PR 48033. Add build dependency on python.

Bump PKGREVISION because python missing might have affected the generated
files.

(wiz)

2013-07-09 08:11:05 UTC MAIN commitmail json YAML

2013-07-09 05:21:56 UTC MAIN commitmail json YAML

restore checsum of bootstrap binaries, lost during last update.

(obache)

2013-07-08 22:39:21 UTC MAIN commitmail json YAML

Fix incomplete build under Mac OS X.

(tron)

2013-07-08 20:18:52 UTC MAIN commitmail json YAML

Split the extract phase into fetch and extract, to ensure that distfiles
can be fetched correctly, keeping in sync with devel/gmp inplace.mk

(jperkin)

2013-07-08 19:50:15 UTC MAIN commitmail json YAML

Add gettext-tools dependency.  Bump PKGREVISION.

(markd)

2013-07-08 17:49:32 UTC MAIN commitmail json YAML

Revert PLIST. Problem is caused by PKG_DEVELOPER.

(jklos)

2013-07-08 16:29:52 UTC MAIN commitmail json YAML

Remove patch that's not in distinfo any longer.

(wiz)

2013-07-08 16:17:20 UTC MAIN commitmail json YAML

2013-07-08 15:25:26 UTC MAIN commitmail json YAML

Note update of mail/dovecot2-pigeonhole package to 0.4.1.

(taca)

2013-07-08 15:24:58 UTC MAIN commitmail json YAML

Update dovecot2-pigeonhole to 0.4.1.  Here is quote from release announce.

Subject: [Dovecot-news] Released Pigeonhole v0.4.1 for Dovecot v2.2.4.
Date: Wed, 03 Jul 2013 22:15:31 +0200
To: dovecot-news@dovecot.org, Dovecot Mailing List <dovecot@dovecot.org>
Reply-To: dovecot@dovecot.org
Content-Transfer-Encoding: 7bit

Hello Dovecot users,

Now that I am not preoccupied anymore, I quickly release a new version
of Pigeonhole for Dovecot v2.2. This consists mainly of bug fixes. One
new feature is that the Sieve plugin will try to pass temporary
failures (e.g. from mail storage) back to LDA/LMTP as much as
possible. However, this change turned out a little bigger than I would
have liked, so experiment with it a bit before you deploy it in
production.

Changelog v0.4.1:

+ Added support for handling temporary failures. These are passed back
  to LDA/LTMP to produce an appropriate response towards the MTA.
- Sieve storage: Removed PATH_MAX limitation for active symlink. This
  caused problems for GNU/Hurd.
- Fixed line endings in X-Sieve headers added by redirect command.
- ManageSieve: Fixed '[' ']' stupidity for response codes (only
  happened before login).
- Fixed setting name in example-config/conf.d/20-managesieve.conf.
- Sieve extprograms plugin: Fixed interaction between pipe command and
  remote script service. The output from the script service was never
  read, causing a broken pipe error at the script service. Apparently,
  this was broken since the I/O handling for extprograms was last
  revised.
- Fixed assertion failure due to datastack problem in message header
  composition.

(taca)

2013-07-08 14:26:52 UTC MAIN commitmail json YAML

Updated www/apache-tomcat7 to 7.0.42

(ryoon)

2013-07-08 14:26:15 UTC MAIN commitmail json YAML

Updte to 7.0.42

Changelog:
    Add support for time to first byte in the AccessLogValve. Patch provided by Jeremy Boynes.
    Correct a regression introduced in 7.0.39 (refactoring of base 64 encoding and decoding) that broke the JNDI Realm when userPassword was set and passwords were hashed with MD5 or SHA1.
    Ensure that the build process produces Javadoc that is not vulnerable to CVE-2013-1571. Based on a patch by Uwe Schindler.

(ryoon)

2013-07-08 13:56:26 UTC MAIN commitmail json YAML

Updated www/moodle to 2.5.1

(wen)

2013-07-08 13:52:08 UTC MAIN commitmail json YAML

Update to 2.5.1

Upstream changes:
2.5.1
Highlights
MDL-39824 - Simplification of themes
MDL-38434 - Functional tests added for the Chat activity
MDL-39723 - Two unnecessary course queries were removed from most pages
Functional changes
MDL-39790 - My Latest badges block appears on the course page
API changes
MDL-40137 - Correct naming of functions in theme/clean/lib.php
Security issues
A number of security related issues were resolved. Details of these issues will be released after a period of approximately one week to allow system administrators to safely update to the latest version.

Fixes and improvements
MDL-39778 - Course deletion now functions with badges.
MDL-40120 - Issue when recent PostgreSQL versions retrieve the number of records from course table fixed.
MDL-39697 - Bootstrap layouts now have 'Maintenance' layout and related options.
MDL-40065 - Bootstrap Theme only sends content to "side-pre" if necessary.
MDL-40088 - Can now edit course settings if course is in a hidden category.
MDL-39979 - Teachers no longer see errors when Show Activity Reports is set to yes.
MDL-39363 - SCORM pass/fail status is set for a grade of 0.
MDL-39227 - SCORM navigation panel is no longer hidden when a Bootstrap theme is active.
MDL-39177 - Overwriting files always observes the "alias" attribute.
MDL-33719 - When overwriting a copy of a file with an alias/shortcut of a file, the file thumbnail is refreshed.
MDL-40142 - No JavaScript error is caused by the navigation block in relation to course categories.
MDL-40289 - Badges capabilities now have correct risks, levels and archetypes. Note for sites which are upgrading from 2.5: See the section 'Upgrading from Moodle 2.5 to 2.5.1' in Upgrading for details of how to correctly set badge permissions for each role archetype.

(wen)

2013-07-08 13:16:22 UTC MAIN commitmail json YAML

Correct condition for NetBSD 6.0 and later to fix build problem on NetBSD
6.0.  Reported by Jörn Clausen as PR pkg/48029.

(taca)

2013-07-08 12:16:26 UTC MAIN commitmail json YAML

Downgraded x11/gtksourceview3 to 3.6.0nb4

(ryoon)

2013-07-08 12:14:46 UTC MAIN commitmail json YAML

2013-07-08 11:39:45 UTC pkgsrc-2013Q2 commitmail json YAML

2013-07-08 11:39:31 UTC pkgsrc-2013Q2 commitmail json YAML

Pullup ticket #4173 - requested by rodent
audio/libfishsound: build fix

Revisions pulled up:
- audio/libfishsound/Makefile                                  1.2

---
  Module Name:    pkgsrc
  Committed By:  rodent
  Date:          Sun Jul  7 18:15:55 UTC 2013

  Modified Files:
          pkgsrc/audio/libfishsound: Makefile

  Log Message:
  Remove -Wl,--version-script=Version_script to fix build on SunOS.

(tron)

2013-07-08 10:16:54 UTC MAIN commitmail json YAML

Updated finance/gnucash-docs to 2.4.2

(wiz)

2013-07-08 10:16:44 UTC MAIN commitmail json YAML

Update to 2.4.2:

2.4.2  - 17 Nov 2012
o Updated to release 2.4.2.
o New or improved documentation for
  o Data migration
o New documentation formats: epub and mobi
o Translation updates: Japanese, Italian
o Several small updates and fixes

2.4.1  - 4 Aug 2010
o Updated to release 2.4.1.
o New or improved documentation for
  o Python invoice import plugin
  o Scheduled transactions
  o Style sheets
o Translation updates: Italian
o Several small updates and fixes

2.4.0  - 11 Feb 2012
o Updated to release 2.4.0.
o Many changes to line up with the GnuCash 2.4 series
o New Japanese translation of the concepts guide
o Initial German translation, still incomplete
o Lots of markup improvements
o Fix generation of pdf files
o Several small updates and fixes

2.2.2  - 2 July 2011
o Updated to release 2.2.2.
o This release contains improvements and fixes that got
  backported from the 2.4 release

2.2.1  - 4 Aug 2010
o Updated to release 2.2.1.
o Several small updates and fixes

(wiz)

2013-07-08 09:19:02 UTC MAIN commitmail json YAML

Updated finance/gnucash to 2.4.13

(wiz)

2013-07-08 09:18:51 UTC MAIN commitmail json YAML

Update to 2.4.13:

Between 2.4.12 and 2.4.13, the following bugfixes was included:

    Bug #697133: OFX file handling was broken in the Windows versions

In 2.4.13, the following languages had their translations updated:
Danish, Dutch, German

Between 2.4.11 and 2.4.12, the following bugfixes were included:

    Bug #696469: Renumbering subaccounts does not preserve original order
    Bug #695423: Fix OFX Commodity Account handling. Patch by Burke.
    Bug #661832: MySQL database error after wireless reconnect

    After suggestion by Wang Xiaozhe <chaoslawful@gmail.com>
    Bug #667093: Update taxtxf.scm to fix beginning balance sign
    and signs for Transfer From/To amounts for liability/equity
    accounts
    Bug #680086: Each Tip of the Day has an n shown at the end
    Bug #672364: does not properly handle XML parse errors, leading to possible data loss

    Author: S辿bastien Villemot <sebastien@debian.org>

    Bug-Debian: http://bugs.debian.org/696282
    Fix #638955: Connect the `Help' button in the `Close Book'
    dialog box (Tools > Close Book) to newly-written help section
    on book closing.
    Bug #638971: Multicolumn report does not show more than one graph
    Bug #680887: Updated RELAX NG schema for v2.4.11 XML file format
    Bug #677488: DROP INDEX missing ON <table>
    Bug #632931: Advanced portfolio: add "rate of gain" column

    Author: Sebastien Alborini <salborini@gmail.com>
    Bug #610648: Change Reconciled Split Dialog ignores pressing Cancel

    Author: Robert Fewell <14ubobit@gmail.com>
    Bug 680402: Tests fail due to unused translations

    Add all scheme files to POTFILES.skip so that intltool-update
    > 0.50 will ignore them. Scheme file translation strings are
    handled by intl-scm/.

    Bug #680613: Date format setting seems to be ignored since
    version 2.4.9

    Work around strange side-effect of r21665 which caused LC_TIME
    to be changed after it had been set by setlocale(LC_ALL) in
    set_mac_locale().

    Bug #680887: RELAX NG schema for 2.4.11 XML file format

    Contributed by Baptiste Carvello

    Bug #680576: Transaction report: date takes up two lines when
    using Canadian locale format.

    Change date cells type from text-cell to date-cell to apply
    white-space: nowrap style.
    Bug #680671: Configure should check for the python-devel package
    if called with --enable-python

In 2.4.12, the following languages had their translations updated:
Russian, German, Ukrainian, Italian, Lithuanian

(wiz)

2013-07-08 08:50:18 UTC MAIN commitmail json YAML

Updated devel/py-distribute to 0.6.49

(wiz)

2013-07-08 08:50:09 UTC MAIN commitmail json YAML

Update to 0.6.49:

------
0.6.49
------

* Move warning check in ``get_cache_path`` to follow the directory creation
  to avoid errors when the cache path does not yet exist. Fixes the error
  reported in #375.

------
0.6.48
------

* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
  0.6.46 (redo).

------
0.6.47
------

* Correct AttributeError in ``ResourceManager.get_cache_path`` introduced in
  0.6.46.

(wiz)

2013-07-08 08:49:26 UTC MAIN commitmail json YAML

Updated time/py-icalendar to 3.5

(wiz)

2013-07-08 08:49:16 UTC MAIN commitmail json YAML

Update to 3.5:

3.5 (2013-07-03)
----------------

- Let to_unicode be more graceful for non-unicode strings, as like CMFPlone's
  safe_unicode does it.
  [thet]

(wiz)

2013-07-08 08:48:08 UTC MAIN commitmail json YAML

+ apache2-2.0.65, apache22-2.2.25, eric4-4.5.13, gnucash-2.4.13,
  p5-glib2-1.301, py-distribute-0.6.49, py-icalendar-3.5,
  x264-devel-20130706

(wiz)

2013-07-08 08:39:20 UTC MAIN commitmail json YAML

Updated x11/xterm to 295

(wiz)

2013-07-08 08:39:10 UTC MAIN commitmail json YAML

Update to 295:
This release fixes a minor regression introduced by the --as-needed
loader option.

(wiz)

2013-07-08 08:37:58 UTC MAIN commitmail json YAML

Note update of emulators/x48 to 0.6.4.

(he)

2013-07-08 08:37:10 UTC MAIN commitmail json YAML

Update x48 from version 0.4.1 to 0.6.4.

Pkgsrc changes;
* HOMEPAGE & distribution site moved.
* HP has released the ROMs, and copies of these are now automatically
  installed.
* I could not get the X11 shm option to work (native X11, NetBSD 6.1/i386),
  so it is disabled in the Makefile.
* Patch with updated pty handling code, borrowing some from FreeBSD's
  package here.

Upstream changes:
2011-08-08 "G. Allen Morris III" <gam3@gam3.net> release 0.6.4
  * Default to throttling speed only when key-pressed
  * Add throttle switch for speed emulation
  * Fix buffer overflow bug
  * release keys on loss of focus
  * typo in access_time adjust

2010-02-01 "G. Allen Morris III" <gam3@gam3.net> release 0.6.3
  * made updates to x48.spec
  * put debian directory in dist file
  * install X48 app data in correct place
    using pkg-config appdefaultdir xt
  * removed more debugging messages
  * added 'netbook' look for small/short screens
    use +netbook on the command line

2010-01-30 "G. Allen Morris III" <gam3@gam3.net> release 0.6.2
  * remove setlocal code that was causing a bug.
  * removed some debugging code.

2009-06-31 "G. Allen Morris III" <gam3@gam3.net> release 0.6.1
  * Fix to XShm to solve the 'LCD' Scramble problem.

2006-04-20 "G. Allen Morris III" <gam3@gam3.net>
  * Added simple paste feature
  * Repaired debugger non-readline input
  * Changed from building with Imakefile to using GNU autoconfig

2005-03-20 "G. Allen Morris III" <gam3@gam3.net>
  * added equal key for + and Meta Keys for Alpha
  * applied a different fix for the arrow repeat key bug
  * fixed a bug in the timer one logic.  The cursor now flashes on input.

2005-03-20 "G. Allen Morris III" <gam3@gam3.net>
  * added patch [000390] time.h compile bug
  * added patch [000391] Arrow key repeat patch
  * added ChangeLog file

2005-03-18 "G. Allen Morris III" <gam3@gam3.net>
  * starting from x48 0.4.0.

(he)

2013-07-08 08:30:12 UTC MAIN commitmail json YAML

Updated security/gnutls to 3.2.1

(wiz)

2013-07-08 08:30:01 UTC MAIN commitmail json YAML

Update to 3.2.1.

* Version 3.2.1 (released 2013-06-01)

** libgnutls: Allow ECC when in SSL 3.0 to work-around a bug in certain
openssl versions.

** libgnutls: Fixes in interrupted function resumption. Report
and patch by Tim Kosse.

** libgnutls: Corrected issue when receiving client hello verify requests
in DTLS.

** libgnutls: Fixes in DTLS record overhead size calculations.

** libgnutls: gnutls_handshake_get_last_in() was fixed. Reported
by Mann Ern Kang.

** API and ABI modifications:
gnutls_session_set_id: Added

* Version 3.2.0 (released 2013-05-10)

** libgnutls: Use nettle's elliptic curve implementation.

** libgnutls: Added Salsa20 cipher

** libgnutls: Added UMAC-96 and UMAC-128

** libgnutls: Added ciphersuites involving Salsa20 and UMAC-96.
As they are not standardized they are defined using private ciphersuite
numbers.

** libgnutls: Added support for DTLS 1.2.

** libgnutls: Added support for the Application Layer Protocol Negotiation
(ALPN) extension.

** libgnutls: Removed support for the RSA-EXPORT ciphersuites.

** libgnutls: Avoid linking to librt (that also avoids unnecessary
linking to pthreads if p11-kit isn't used).

** API and ABI modifications:
gnutls_cipher_get_iv_size: Added
gnutls_hmac_set_nonce: Added
gnutls_mac_get_nonce_size: Added

* Version 3.1.10 (released 2013-03-22)

** certtool: When generating PKCS #12 files use by default the
ARCFOUR (RC4) cipher to be compatible with devices that don't
support AES with PKCS #12.

** libgnutls: Load CA certificates in android 4.x systems.

** libgnutls: Optimized CA certificate loading.

** libgnutls: Private keys are overwritten on deinitialization.

** libgnutls: PKCS #11 slots are scanned only when needed, not
on initialization. This speeds up gnutls initialization when smart
cards are present.

** libgnutls: Corrected issue in the (deprecated) external key
signing interface, when used with TLS 1.2. Reported by Bjorn H. Christensen.

** libgnutls: Fixes in openpgp handshake with fingerprints. Reported by
Joke de Buhr.

** libgnutls-dane: Updated DANE verification options.

** configure: Trust store file must be explicitly set or unset when
cross compiling.

** API and ABI modifications:
gnutls_x509_crt_get_issuer_dn2: Added
gnutls_x509_crt_get_dn2: Added
gnutls_x509_crl_get_issuer_dn2: Added
gnutls_x509_crq_get_dn2: Added
gnutls_x509_trust_list_remove_trust_mem: Added
gnutls_x509_trust_list_remove_trust_file: Added
gnutls_x509_trust_list_remove_cas: Added
gnutls_session_get_desc: Added
gnutls_privkey_sign_raw_data: Added
gnutls_privkey_status: Added

* Version 3.1.9 (released 2013-02-27)

** certtool: Option --to-p12 will now ask for a password to generate
a PKCS #12 file from an encrypted key file. Reported by Yan Fiz.

** libgnutls: Corrected issue in gnutls_pubkey_verify_data().

** libgnutls: Corrected parsing issue in XMPP within a subject
alternative name. Reported by James Cloos.

** libgnutls: gnutls_pkcs11_reinit() will reinitialize all PKCS #11
modules, and not only the ones loaded via p11-kit.

** libgnutls: Added function to check whether the private key is
still available (inserted).

** libgnutls: Try to detect fork even during nonce generation.

** API and ABI modifications:
gnutls_handshake_set_random: Added
gnutls_transport_set_int2: Added
gnutls_transport_get_int2: Added
gnutls_transport_get_int: Added
gnutls_record_cork: Exported
gnutls_record_uncork: Exported
gnutls_pkcs11_privkey_status: Added

* Version 3.1.8 (released 2013-02-10)

** libgnutls: Fixed issue in gnutls_x509_privkey_import2() which didn't return
GNUTLS_E_DECRYPTION_FAILED in all cases, and affect certtool operation
with encrypted keys. Reported by Yan Fiz.

** libgnutls: The minimum DH bits accepted by priorities NORMAL and
PERFORMANCE was set to previous defaults 727 bits. Reported by Diego
Elio Petteno.

** libgnutls: Corrected issue which prevented gnutls_pubkey_verify_hash()
to operate with long keys. Reported by Erik A Jensen.

** API and ABI modifications:
No changes since last version.

* Version 3.1.7 (released 2013-02-04)

** certtool: Added option "dn" which allows to directly set the DN
in a template from an RFC4514 string.

** danetool: Added options: --dlv and --insecure. Suggested by Paul Wouters.

** libgnutls-xssl: Added a new library to simplify GnuTLS usage.

** libgnutls-dane: Added function to specify a DLV file.

** libgnutls: Heartbeat code was made optional.

** libgnutls: Fixes in server side of DTLS-0.9.

** libgnutls: DN variable 'T' was expanded to 'title'.

** libgnutls: Fixes in record padding parsing to prevent a timing attack.
Issue reported by Kenny Paterson and Nadhem Alfardan.

** libgnutls: Added functions to directly set the DN in a certificate
or request from an RFC4514 string.

** libgnutls: Optimizations in the random generator. The re-seeding of
it is now explicitly done on every session deinit.

** libgnutls: Simplified the DTLS sliding window implementation.

** libgnutls: The minimum DH bits accepted by a client are now set
by the specified priority string. The current values correspond to the
previous defaults (727 bits), except for the SECURE128 and SECURE192
strings which increase the minimum to 1248 and 1776 respectively.

** libgnutls: Added the gnutls_record_cork() and uncork API to enable
buffering in sending application data.

** libgnutls: Removed default random padding, and added a length-hiding interface
instead.  Both the server and the client must support this extension. Whether
length-hiding can be used on a given session can be checked using
gnutls_record_can_use_length_hiding(). Contributed by Alfredo Pironti.

** libgnutls: Added the experimental %NEW_PADDING priority string. It enables
a new padding mechanism in TLS allowing arbitrary padding in TLS records
in all ciphersuites, which makes length-hiding more efficient and solves
the issues with timing attacks on CBC ciphersuites.

** libgnutls: Corrected gnutls_cipher_decrypt2() when used with AEAD
ciphers (i.e., AES-GCM). Reported by William McGovern.

** API and ABI modifications:
gnutls_db_check_entry_time: Added
gnutls_record_set_timeout: Added
gnutls_record_get_random_padding_status: Added
gnutls_x509_crt_set_dn: Added
gnutls_x509_crt_set_issuer_dn: Added
gnutls_x509_crq_set_dn: Added
gnutls_range_split: Added
gnutls_record_send_range: Added
gnutls_record_set_max_empty_records: Added
gnutls_record_can_use_length_hiding: Added
gnutls_rnd_refresh: Added
xssl_deinit: Added
xssl_flush: Added
xssl_read: Added
xssl_getdelim: Added
xssl_write: Added
xssl_printf: Added
xssl_sinit: Added
xssl_client_init: Added
xssl_server_init: Added
xssl_get_session: Added
xssl_get_verify_status: Added
xssl_cred_init: Added
xssl_cred_deinit: Added
dane_state_set_dlv_file: Added
GNUTLS_SEC_PARAM_EXPORT: Added
GNUTLS_SEC_PARAM_VERY_WEAK: Added

* Version 3.1.6 (released 2013-01-02)

** libgnutls: Fixed record padding parsing issue. Reported by Kenny
Patterson and Nadhem Alfardan.

** libgnutls: Several updates in the ASN.1 string handling subsystem.

** libgnutls: gnutls_x509_crt_get_policy() allows for a list of zero
policy qualifiers.

** libgnutls: Ignore heartbeat messages when received out-of-order,
instead of issuing an error.

** libgnutls: Stricter RSA PKCS #1 1.5 encoding and decoding. Reported
by Kikuchi Masashi.

** libgnutls: TPM support is disabled by default because GPL programs
cannot link with it. Use --with-tpm to enable it.

** libgnutls-guile: Fixed parallel compilation issue.

** gnutls-cli: It will try to connect to all possible returned addresses
before failing.

** API and ABI modifications:
No changes since last version.

* Version 3.1.5 (released 2012-11-24)

** libgnutls: Added functions to parse the certificates policies
extension.

** libgnutls: Handle BMPString (UCS-2) encoding in the Distinguished
Name by translating it to UTF-8 (works on windows or systems with iconv).

** libgnutls: Added PKCS #11 key generation function that returns the
public key on generation.

** libgnutls: Corrected bug in priority string parsing, that mostly
affected combined levels. Patch by Tim Kosse.

** certtool: The --pubkey-info option can be combined with the
--load-privkey or --load-request to print the corresponding public keys.

** certtool: It is able to set certificate policies via a template.

** certtool: Added --hex-numbers option which prints big numbers in
an easier to parse format.

** p11tool: After key generation, outputs the public key (useful in
tokens that do not store the public key).

** danetool: It is being built even without libgnutls-dane (the
--check functionality is disabled though).

** API and ABI modifications:
gnutls_pkcs11_privkey_generate2: Added
gnutls_x509_crt_get_policy: Added
gnutls_x509_crt_set_policy: Added
gnutls_x509_policy_release: Added
gnutls_pubkey_import_x509_crq: Added
gnutls_pubkey_print: Added
GNUTLS_CRT_PRINT_FULL_NUMBERS: Added

* Version 3.1.4 (released 2012-11-10)

** libgnutls: gnutls_certificate_verify_peers2() will set flags depending on
the available revocation data validity.

** libgnutls: Added gnutls_certificate_verification_status_print(),
a function to print the verification status code in human readable text.

** libgnutls: Added priority string %VERIFY_DISABLE_CRL_CHECKS.

** libgnutls: Simplified certificate verification by adding
gnutls_certificate_verify_peers3().

** libgnutls: Added support for extension to establish keys for SRTP.
Contributed by Martin Storsjo.

** libgnutls: The X.509 verification functions check the key
usage bits and pathlen constraints and on failure output
GNUTLS_CERT_SIGNER_CONSTRAINTS_FAILURE.

** libgnutls: gnutls_x509_crl_verify() includes the time checks.

** libgnutls: Added verification flag GNUTLS_VERIFY_DO_NOT_ALLOW_UNSORTED_CHAIN
and made GNUTLS_VERIFY_ALLOW_UNSORTED_CHAIN the default.

** libgnutls: Always tolerate key usage violation errors from the side
of the peer, but also notify via an audit message.

** gnutls-cli: Added --local-dns option.

** danetool: Corrected bug that prevented loading PEM files.

** danetool: Added --check option to allow querying and verifying
a site's DANE data.

** libgnutls-dane: Added pkg-config file for the library.

** API and ABI modifications:
gnutls_session_get_id2: Added
gnutls_sign_is_secure: Added
gnutls_certificate_verify_peers3: Added
gnutls_ocsp_status_request_is_checked: Added
gnutls_certificate_verification_status_print: Added
gnutls_srtp_set_profile: Added
gnutls_srtp_set_profile_direct: Added
gnutls_srtp_get_selected_profile: Added
gnutls_srtp_get_profile_name: Added
gnutls_srtp_get_profile_id: Added
gnutls_srtp_get_keys: Added
gnutls_srtp_get_mki: Added
gnutls_srtp_set_mki: Added
gnutls_srtp_profile_t: Added
dane_cert_type_name: Added
dane_match_type_name: Added
dane_cert_usage_name: Added
dane_verification_status_print: Added
GNUTLS_CERT_REVOCATION_DATA_SUPERSEDED: Added
GNUTLS_CERT_REVOCATION_DATA_ISSUED_IN_FUTURE: Added
GNUTLS_CERT_SIGNER_CONSTRAINTS_FAILURE: Added
GNUTLS_CERT_UNEXPECTED_OWNER: Added
GNUTLS_VERIFY_DO_NOT_ALLOW_UNSORTED_CHAIN: Added

* Version 3.1.3 (released 2012-10-12)

** libgnutls: Added support for the OCSP Certificate Status
extension.

** libgnutls: gnutls_certificate_verify_peers2() will use the OCSP
certificate status extension in verification.

** libgnutls: Bug fixes in gnutls_x509_privkey_import_openssl().

** libgnutls: Increased maximum password length in the PKCS #12
functions.

** libgnutls: Fixed the receipt of session tickets during session resumption.
Reported by danblack at http://savannah.gnu.org/support/?108146

** libgnutls: Added functions to export structures in an allocated buffer.

** libgnutls: Added gnutls_ocsp_resp_check_crt() to check whether the OCSP
response corresponds to the given certificate.

** libgnutls: In client side gnutls_init() enables the session ticket and
OCSP certificate status request extensions by default. The flag
GNUTLS_NO_EXTENSIONS can be used to prevent that.

** libgnutls: Several updates in the OpenPGP code. The generating code
is fully RFC6091 compliant and RFC5081 support is only supported in client
mode.

** libgnutls-dane: Added. It is a library to provide DANE with DNSSEC
certificate verification.

** gnutls-cli: Added --dane option to enable DANE certificate verification.

** danetool: Added tool to generate DANE TLSA Resource Records (RR).

** API and ABI modifications:
gnutls_certificate_get_peers_subkey_id: Added
gnutls_certificate_set_ocsp_status_request_function: Added
gnutls_certificate_set_ocsp_status_request_file: Added
gnutls_ocsp_status_request_enable_client: Added
gnutls_ocsp_status_request_get: Added
gnutls_ocsp_resp_check_crt: Added
gnutls_dh_params_export2_pkcs3: Added
gnutls_pubkey_export2: Added
gnutls_x509_crt_export2: Added
gnutls_x509_dn_export2: Added
gnutls_x509_crl_export2: Added
gnutls_pkcs7_export2: Added
gnutls_x509_privkey_export2: Added
gnutls_x509_privkey_export2_pkcs8: Added
gnutls_x509_crq_export2: Added
gnutls_openpgp_crt_export2: Added
gnutls_openpgp_privkey_export2: Added
gnutls_pkcs11_obj_export2: Added
gnutls_pkcs12_export2: Added
gnutls_pubkey_import_openpgp_raw: Added
gnutls_pubkey_import_x509_raw: Added
dane_state_init: Added
dane_state_deinit: Added
dane_query_tlsa: Added
dane_query_status: Added
dane_query_entries: Added
dane_query_data: Added
dane_query_deinit: Added
dane_verify_session_crt: Added
dane_verify_crt: Added
dane_strerror: Added

* Version 3.1.2 (released 2012-09-26)

** libgnutls: Fixed bug in gnutls_x509_trust_list_add_system_trust()
and gnutls_x509_trust_list_add_trust_mem() that prevented the loading
of certificates in the windows platform.

** libgnutls: Corrected bug in OpenPGP subpacket encoding.

** libgnutls: Added support for DTLS/TLS heartbeats by Olga Smolenchuk.
(the work was done during Google Summer of Code).

** libgnutls: Added X.509 certificate verification flag
GNUTLS_VERIFY_ALLOW_UNSORTED_CHAIN. This flag allows the verification
of unsorted certificate chains and is enabled by default for
TLS certificate verification (if gnutls_certificate_set_verify_flags()
does not override it).

** libgnutls: Prints warning on certificates that contain keys of
an insecure level. If the %COMPAT priority flag is not specified
the TLS connection fails.

** libgnutls: Correctly restore gnutls_record_recv() in DTLS mode
if interrupted during the retrasmition of handshake data.

** libgnutls: Better mingw32 support (patch by LRN).

** libgnutls: The %COMPAT keyword, if specified, will tolerate
key usage violation errors (they are far too common to ignore).

** libgnutls: Added GNUTLS_STATELESS_COMPRESSION flag to gnutls_init(),
which provides a tool to counter compression-related attacks where
parts of the data are controlled by the attacker _and_ are placed in
separate records (use with care - do not use compression if not sure).

** libgnutls: Depends on libtasn1 2.14 or later.

** certtool: Prints the number of bits of the public key algorithm
parameter in a private key.

** API and ABI modifications:
gnutls_x509_privkey_get_pk_algorithm2: Added
gnutls_heartbeat_ping: Added
gnutls_heartbeat_pong: Added
gnutls_heartbeat_allowed: Added
gnutls_heartbeat_enable: Added
gnutls_heartbeat_set_timeouts: Added
gnutls_heartbeat_get_timeout: Added
GNUTLS_SEC_PARAM_WEAK: Added
GNUTLS_SEC_PARAM_INSECURE: Added

* Version 3.1.1 (released 2012-09-02)

** gnutls-serv: Listens on IPv6. Patch by Bernhard R. Link.

** certtool: Changes in password handling of certtool.
Ask password when required and only if the '--password' option is not
given. If the '--password' option is given during key generation then
assume the PKCS #8 file format, instead of ignoring the password.

** tpmtool: No longer asks for key password in registered keys.

** libgnutls: Elliptic curve code was optimized by Ilya Tumaykin.
wmNAF is now used for point multiplication and other optimizations.
(the major part of the work was done during Google Summer of Code).

** libgnutls: The default pull_timeout_function only uses select
instead of a combination of select() and recv() to prevent issues
when used in stream sockets in some systems.

** libgnutls: Be tolerant in ECDSA signature violations (e.g. using
SHA256 with a SECP384 curve instead of SHA-384), to interoperate with
openssl.

** libgnutls: Fixed DSA and ECDSA signature generation in smart
cards. Thanks to Andreas Schwier from cardcontact.de for providing
me with ECDSA capable smart cards.

** API and ABI modifications:
gnutls_sign_algorithm_get: Added
gnutls_sign_get_hash_algorithm: Added
gnutls_sign_get_pk_algorithm: Added

* Version 3.1.0 (released 2012-08-15)

** libgnutls: Added direct support for TPM as a cryptographic module
in gnutls/tpm.h. TPM keys can be used in functions accepting files
using URLs of the following types:
  tpmkey:file=/path/to/file
  tpmkey:uuid=7f468c16-cb7f-11e1-824d-b3a4f4b20343;storage=user

** libgnutls: Priority string level keywords can be combined.
For example the string "SECURE256:+SUITEB128" is now allowed.

** libgnutls: requires libnettle 2.5.

** libgnutls: Use the PKCS #1 1.5 encoding provided by nettle (2.5)
for encryption and signatures.

** libgnutls: Added GNUTLS_CERT_SIGNATURE_FAILURE to differentiate between
generic errors and signature verification errors in the verification
functions.

** libgnutls: Added gnutls_pkcs12_simple_parse() as a helper function
to simplify parsing in most PKCS #12 use cases.

** libgnutls: gnutls_certificate_set_x509_simple_pkcs12_file() adds
the whole certificate chain (if any) to the credentials structure, instead
of only the end-user certificate.

** libgnutls: Key import functions such as gnutls_pkcs12_simple_parse()
and gnutls_x509_privkey_import_pkcs8(), return consistently
GNUTLS_E_DECRYPTION_FAILED if the input structure is encrypted but no
password was provided.

** libgnutls: Added gnutls_handshake_set_timeout() a function that
allows to set the maximum time spent in a handshake.

** libgnutlsxx: Added session::set_transport_vec_push_function. Patch
by Alexandre Bique.

** tpmtool: Added. It is a tool to generate private keys in the
TPM.

** gnutls-cli: --benchmark-tls was split to --benchmark-tls-kx
and --benchmark-tls-ciphers

** certtool: generated PKCS #12 structures may hold more than one
private key. Patch by Lucas Fisher.

** certtool: Added option --null-password to generate/decrypt keys
that use a NULL password (in schemas that distinguish between NULL
an empty passwords).

** minitasn1: Upgraded to libtasn1 version 2.13.

** API and ABI modifications:
GNUTLS_CERT_SIGNATURE_FAILURE: Added
GNUTLS_CAMELLIA_192_CBC: Added
GNUTLS_PKCS_NULL_PASSWORD: Added
gnutls_url_is_supported: Added
gnutls_pkcs11_obj_list_import_url2: Added
gnutls_pkcs11_obj_set_pin_function: Added
gnutls_pkcs11_privkey_set_pin_function: Added
gnutls_pkcs11_get_pin_function: Added
gnutls_privkey_import_tpm_raw: Added
gnutls_privkey_import_tpm_url: Added
gnutls_privkey_import_pkcs11_url: Added
gnutls_privkey_import_openpgp_raw: Added
gnutls_privkey_import_x509_raw: Added
gnutls_privkey_import_ext2: Added
gnutls_privkey_import_url: Added
gnutls_privkey_set_pin_function: Added
gnutls_tpm_privkey_generate: Added
gnutls_tpm_key_list_deinit: Added
gnutls_tpm_key_list_get_url: Added
gnutls_tpm_get_registered: Added
gnutls_tpm_privkey_delete: Added
gnutls_pubkey_import_tpm_raw: Added
gnutls_pubkey_import_tpm_url: Added
gnutls_pubkey_import_url: Added
gnutls_pubkey_verify_hash2: Added
gnutls_pubkey_set_pin_function: Added
gnutls_x509_privkey_import2: Added
gnutls_x509_privkey_import_openssl: Added
gnutls_x509_crt_set_pin_function: Added
gnutls_load_file: Added
gnutls_pkcs12_simple_parse: Added
gnutls_certificate_set_x509_system_trust: Added
gnutls_certificate_set_pin_function: Added
gnutls_x509_trust_list_add_system_trust: Added
gnutls_x509_trust_list_add_trust_file: Added
gnutls_x509_trust_list_add_trust_mem: Added
gnutls_pk_to_sign: Added
gnutls_handshake_set_timeout: Added
gnutls_pubkey_verify_hash: Deprecated (use gnutls_pubkey_verify_hash2)
gnutls_pubkey_verify_data: Deprecated (use gnutls_pubkey_verify_data2)

(wiz)

2013-07-08 07:53:11 UTC MAIN commitmail json YAML

Added files missing from PLIST.

(jklos)

2013-07-08 05:54:24 UTC MAIN commitmail json YAML

update ncurses patch to support gcc48 on solaris

(richard)

2013-07-08 05:45:09 UTC MAIN commitmail json YAML

add www/py-pywebdav

(richard)

2013-07-08 05:44:48 UTC MAIN commitmail json YAML

add www/py-pywebdav

(richard)

2013-07-08 05:44:21 UTC MAIN commitmail json YAML

Python WebDAV implementation (level 1 and 2) that features a library that
enables you to integrate WebDAV server capabilities to your application.

A fully working example on how to use the library is included. You can find a
server in the DAVServer package. This server is fully functional and can even
be run as daemon.

(richard)

2013-07-08 04:54:34 UTC MAIN commitmail json YAML

add devel/py-unittest2

(richard)

2013-07-08 04:53:58 UTC MAIN commitmail json YAML

add devel/py-unittest2

(richard)

2013-07-08 04:52:48 UTC MAIN commitmail json YAML

Unittest2 is a backport of the new features added to the unittest testing
framework in Python 2.7. It is tested to run on Python 2.4 - 2.7.

To use unittest2 instead of unittest simply replace import unittest with
import unittest2.

(richard)

2013-07-08 03:35:37 UTC MAIN commitmail json YAML

Note update of mail/roundcube package to 0.9.2nb1.

(taca)

2013-07-08 03:35:00 UTC MAIN commitmail json YAML

roundcube require pear-Mail_mimeDecode, too.

Bump PKGREVISION.

(taca)

2013-07-08 02:43:13 UTC MAIN commitmail json YAML

from CHANGES in 1.8.0, support ruby 1.9.

(obache)

2013-07-08 01:36:55 UTC MAIN commitmail json YAML

Revert last commit, because update to lang/lua made it unnecessary.

(rodent)

2013-07-08 00:56:45 UTC MAIN commitmail json YAML

Fix build on SunOS. Add patch to define bswap_32(x) and bswap_64(x).

(rodent)

2013-07-07 23:47:40 UTC MAIN commitmail json YAML

www/aws-demos: Follow update of www/aws

The www/aws-demos builds off of www/aws, but it required several changes
after www/aws was updated to version 3.1.0.

Five new demos were also added.

(marino)

2013-07-07 23:46:50 UTC MAIN commitmail json YAML

www/aws: Update to from version 2.10.0 to 3.1.0

There is no dedicated change log but version 2.10 was introduced to
pkgsrc 2.5 years ago.  The current capability is described by
http://docs.adacore.com/aws-docs/aws.html

This is roughly equivalent to Adacore release 2013 of aws.
The "gnutls" option was added as an alternative to ssl.

(marino)

2013-07-07 18:28:13 UTC MAIN commitmail json YAML

Moved my update to solarus to before adam@'s updates to the qt4 packages.

(rodent)

2013-07-07 18:17:33 UTC MAIN commitmail json YAML

Updated games/solarus to 1.0.4

(rodent)

2013-07-07 18:16:27 UTC MAIN commitmail json YAML

Updated x11/qt4 to 4.8.5

(adam)

2013-07-07 18:15:55 UTC MAIN commitmail json YAML

Remove -Wl,--version-script=Version_script to fix build on SunOS.

(rodent)

2013-07-07 18:14:36 UTC MAIN commitmail json YAML

Qt 4.8.5 provides overall close to 400 improvements, for example:
35 fixes to Qt Core module
65 fixes to Qt Gui module
21 Mac OS X specific fixes
15 Windows specific fixes
8 Linux/X11 specific fixes
Webkit upgrade to 2.2.4 (minor improvements)
Change all shmget calls to user-only memory (security)
Several important fixes for the VxWorks port in the Qt Enterprise version

(adam)

2013-07-07 18:13:57 UTC MAIN commitmail json YAML

Qt 4.8.5 provides overall close to 400 improvements, for example:
35 fixes to Qt Core module
65 fixes to Qt Gui module
21 Mac OS X specific fixes
15 Windows specific fixes
8 Linux/X11 specific fixes
Webkit upgrade to 2.2.4 (minor improvements)
Change all shmget calls to user-only memory (security)
Several important fixes for the VxWorks port in the Qt Enterprise version

(adam)

2013-07-07 18:11:11 UTC MAIN commitmail json YAML

Require lua>=5.1.5. src/Savegame.cpp requires lua.hpp, which is not
included in lua 5.1.4 (NetBSD 6.1 base's lua).

(rodent)

2013-07-07 17:41:31 UTC MAIN commitmail json YAML

Updated to latest release. No big changes pkgsrc-wise. From ChangeLog:

solarus-1.0.4 (2013-06-26)

Bug fixes for the 1.0 release.

Solarus changes:

* Don't die if a script tries so show a missing string (#237).
* Don't die if a treasure has a variant unexistent in the item sprite.
* Fix customization of joypad commands.

solarus-1.0.3 (2013-06-25)

Bug fixes for the 1.0 release.

Solarus changes:

* Fix blocks not completely moved since Solarus 1.0.2.

solarus-1.0.2 (2013-06-22)

Bug fixes for the 1.0 release.

Solarus changes:

* Fix a crash when a treasure callback changes the hero's state (#224).
* Fix a crash when a victory callback changes the hero's state.
* Fix a crash due to invalid sprite frame when animation is changed (#26).
* Fix an assertion error with FollowMovement of pickables.
* Fix the fullscreen mode not working on Mac OS X 10.7+ (#213, #220).
* Fix pickable treasures that could be obtained twice sometimes.
* Fix fade-in/fade-out effects on sprites that did not work (#221).
* Fix sol.audio.play_music() that failed with "none" or "same" (#201).
* Fix item:set_sound_when_brandish() that did not work.
* Fix diagonal movement that could bypass sensors since Solarus 1.0.1.
* Fix circle movement not working after entity:set_enabled(true).
* Fix detection of movement finished for NPCs.
* Fix memory issues with menus (#210).
* Fix handling of nil parameter in boolean setters (#225).
* Fix hangling the default language.
* Correctly suspend timers when set_suspended_with_map is called.
* When a sprite is suspended, suspend its transitions (#226).
* Don't die if a music or a sound cannot be found.
* Don't die if an image cannot be found.
* Don't die if running a savegame without starting location specified.
* Don't die if a script refers to a non-existing equipment item.
* Don't die if the self parameter is missing when calling a method (#219).
* Fix dangling pointers after removing some kind of entities.

Solarus Quest Editor changes:

* Editor: allow to create map entities from the quest tree (#208).
* Editor: fix a typo in the bomb flower sprite (#214).
* Editor: fix a possible NullPointerException when opening an invalid map.

Documentation changes:

* Documentation: add the syntax specification of maps and tilesets.

(rodent)

2013-07-07 16:22:21 UTC MAIN commitmail json YAML

Make PHP54_VERSION to 5.4.17.

(taca)

2013-07-07 16:16:51 UTC MAIN commitmail json YAML

No need to specify GEM_CLEANBUILD.

(taca)

2013-07-07 16:13:13 UTC MAIN commitmail json YAML

Add missing dependencies as reported by verifypc and confirmed by ldd.
buildlink3.mk: gdk-pixbuf2 glib2 libsigc++ pthread
Makefile: Same as above plus mm-common and glibmm >=2.36.0.

(rodent)

2013-07-07 16:07:54 UTC MAIN commitmail json YAML

Note update of textproc/ruby-xslt package to 0.9.9nb2.

(taca)

2013-07-07 16:07:25 UTC MAIN commitmail json YAML

Add build_info file to PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 16:03:08 UTC MAIN commitmail json YAML

Note update of devel/ruby-stream package to 0.5nb2.

(taca)

2013-07-07 16:02:42 UTC MAIN commitmail json YAML

Previous distfile wasn't really gem format file and now real gem file
can be fetched.  So, add  DIST_SUBDIR and bump PKGREVISION.

(taca)

2013-07-07 15:59:23 UTC MAIN commitmail json YAML

Note update of devel/ruby-rdoc package to 4.0.1nb1.

(taca)

2013-07-07 15:58:52 UTC MAIN commitmail json YAML

2013-07-07 15:57:59 UTC MAIN commitmail json YAML

Add quick hack to fix runtime problem with Ruby 1.8.7.

Bump PKGREVISION.

(taca)

2013-07-07 15:56:50 UTC MAIN commitmail json YAML

2013-07-07 15:37:37 UTC pkgsrc-2013Q2 commitmail json YAML

2013-07-07 15:37:00 UTC MAIN commitmail json YAML

Note update of www/ruby-fcgi package to 0.8.8nb2.

(taca)

2013-07-07 15:36:37 UTC MAIN commitmail json YAML

o Add build_info file to PLIST.
o Utilize GEM_NAME in PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:35:12 UTC MAIN commitmail json YAML

Note update of textproc/ruby-libxml package to 2.6.0nb1.

(taca)

2013-07-07 15:34:45 UTC MAIN commitmail json YAML

o Add build_info file to PLIST.
o Don't include extconf.h, a working file to package.

Bump PKGREVISION.

(taca)

2013-07-07 15:34:08 UTC pkgsrc-2013Q2 commitmail json YAML

Pullup ticket #4170 - requested by ryoon
www/firefox-l10n: installation fix

Revisions pulled up:
- www/firefox-l10n/Makefile                                    1.33-1.34
- www/firefox-l10n/PLIST                                        1.19

---
  Module Name: pkgsrc
  Committed By: ryoon
  Date: Sat Jul  6 15:12:58 UTC 2013

  Modified Files:
  pkgsrc/www/firefox-l10n: Makefile PLIST

  Log Message:
  Fix install location.
    * Detected by firefox again.

---
  Module Name: pkgsrc
  Committed By: ryoon
  Date: Sat Jul  6 15:15:21 UTC 2013

  Modified Files:
  pkgsrc/www/firefox-l10n: Makefile

  Log Message:
  Fix typo, PKGREVISION.

(tron)

2013-07-07 15:33:23 UTC MAIN commitmail json YAML

Note update of security/ruby-shadow package to 2.2.0nb1.

(taca)

2013-07-07 15:32:56 UTC MAIN commitmail json YAML

o Clean up GEM_CLEANBUILD  not to include the same Ruby's extension file and
  working files in package
o Use RUBY_DLEXT in PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:30:36 UTC MAIN commitmail json YAML

Note update of math/ruby-narray package to 0.6.0.8nb1.

(taca)

2013-07-07 15:29:47 UTC MAIN commitmail json YAML

Change GEM_CLEANBUILD not to include working file to package.

Bump PKGREVISION.

(taca)

2013-07-07 15:27:57 UTC MAIN commitmail json YAML

Note update of graphics/ruby-gd package to 0.8.0nb12.

(taca)

2013-07-07 15:27:26 UTC MAIN commitmail json YAML

o Add build_info file to PLIST.
o Utilize GEM_NAME in PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:26:25 UTC MAIN commitmail json YAML

Note update of devel/ruby-rbtree package to 0.4.1nb1.

(taca)

2013-07-07 15:26:00 UTC MAIN commitmail json YAML

Change GEM_CLEANBUILD not to include the same Ruby's extension file in
package.

Bump PKGREVISION.

(taca)

2013-07-07 15:24:19 UTC MAIN commitmail json YAML

Utilize GEM_NAME in PLIST.

(taca)

2013-07-07 15:22:55 UTC MAIN commitmail json YAML

Add build_info file to PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:22:06 UTC MAIN commitmail json YAML

Note update of databases/ruby-odbc package to 0.99995nb1.

(taca)

2013-07-07 15:21:33 UTC MAIN commitmail json YAML

Add build_info file to PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:20:42 UTC MAIN commitmail json YAML

Note update of databases/ruby-ldap package to 0.9.13nb1.

(taca)

2013-07-07 15:20:16 UTC MAIN commitmail json YAML

o Clean up GEM_CLEANBUILD and fix PLIST.
o Use RUBY_DLEXT in PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:18:40 UTC MAIN commitmail json YAML

Note update of converters/ruby-unf_ext package to 0.0.6nb1.

(taca)

2013-07-07 15:18:11 UTC MAIN commitmail json YAML

No need to specify GEM_CLEANBUILD and fix PLIST.

Bump PKGREVISION.

(taca)

2013-07-07 15:16:38 UTC MAIN commitmail json YAML

Fix gem handling.

o Don't assume _DISTDIR end with '/' (by DESTDIR).
o A small clean up to GEM_CLEANBUILD handling.

A few clean up.

(taca)

2013-07-07 15:12:56 UTC MAIN commitmail json YAML

Remove Ruby's version denendent directory.

No PKGREVISION bump for short time updates.

(taca)

2013-07-07 15:08:54 UTC MAIN commitmail json YAML

+gtksourceviewmm

(rodent)

2013-07-07 15:08:08 UTC MAIN commitmail json YAML

Added x11/gtksourceviewmm version 3.2.0

(rodent)

2013-07-07 15:07:48 UTC MAIN commitmail json YAML

Import gtksourceviewmm-3.2.0 as x11/gtksourceviewmm.

gtksourceviewmm is a C++ wrapper for the gtksourceview widget library. It offers
all the power of gtksourceview with an interface familiar to C++ developers,
including users of the gtkmm library.

(rodent)

2013-07-07 15:05:42 UTC MAIN commitmail json YAML

2013-07-07 15:04:48 UTC MAIN commitmail json YAML

Added devel/mm-common version 0.9.6

(rodent)

2013-07-07 15:04:28 UTC MAIN commitmail json YAML

Import mm-common-0.9.6 as devel/mm-common.

The mm-common module provides the build infrastructure and utilities shared
among the GNOME C++ binding libraries. It is only a required dependency for
building the C++ bindings from the gnome.org version control repository. An
installation of mm-common is not required for building tarball releases, unless
configured to use maintainer-mode.

(rodent)

2013-07-07 15:03:27 UTC MAIN commitmail json YAML

Note update of misc/rubygems package to 2.0.3nb2.

(taca)

2013-07-07 15:02:57 UTC MAIN commitmail json YAML

2013-07-07 15:01:30 UTC MAIN commitmail json YAML

Note update of lang/ruby193-base package to 1.9.3p448nb1.

(taca)

2013-07-07 15:01:01 UTC MAIN commitmail json YAML

2013-07-07 14:23:54 UTC MAIN commitmail json YAML

Updated math/R-XML to 3.98.1.1

(wen)

2013-07-07 14:21:59 UTC MAIN commitmail json YAML

Update to 3.98.1.1

Upstream changes:
Version 3.98-1

  *      Compilation error with clang. Simple declaration of a routine.

Version 3.98-0

  *      Update for libxml2-2.9.1 and reading from a connection for xmlEventParse().

  *      xmlIncludes() is a hierarchical version of getXIncludes()

  *      Modifications to xmlSource(), e.g. verbose = TRUE as default.

Version 3.97-0

  *      Fix for xmlValue(node) = text.  Identified by Lawrence Edwards.
        Uses xmlNodeSetContent() now and leaves freeing the original content to that routine.

  *      Updates for xmlSource()

Version 3.96-1

  *    readHTMLTable() ignores headers that are over 999 characters.

  *    Fix a problem in readHTMLTable() with some table headers not having
        the correct number of elements to match the columns.

Version 3.96-0

  *    Introduced readHTMLList(), getHTMLLinks(), getHTMLExternalFiles(), getXIncludes().

  *    When serializing XMLNode objects, i.e. R representations of nodes, ensure " and <, etc. in attributes
        are serialized correctly.

Version 3.95-1

  *    Allow htmlParse(), xmlParse(), etc. ?

Version 3.95-0

  *    Moved development version of the source code for the package to github -
        https://github.com/omegahat/XML.git

  *    Changes to the structure of the package to allow installation directly rather than
        via a one-step staging into the R package structure.

  *    Sample XML documents moved from data/ to exampleData, and examples updated.

  *    getDefaultNamespace() and matchNamespaces() use simplify = TRUE to call
        xmlNamespaceDefinitions() to get the namespaces as a character vector rather than
        list.

  *    Documentation updates

Version 3.94-0

  *    getNodeLocation() now reports the actual line number for text nodes rather than 0,
        using the sibling nodes' or parent node's line number.

  *    xpathApply() and related functions work with builtin type "functions",
        e.g. class.

  *    xpathApply() and related functions (getNodeSet, xpathSApply) allow
        the caller to specify multiple queries as a character vector
        and these are pasted together as compound location paths by
        separating them with a '|'.  This makes it easier for the
        caller to manage the different queries.

  *    assigning to a child of a node works, e.g. node[["abc"]] = text/node
        and node[[index]] = text/node.  We replace a matching name.  If the
        replacement value is text, we use the name to

  *    getChildrenStrings() is a function that implements the equivalent of
        xmlApply(node, xmlValue) but faster because we avoid the function call
        for each element.

  *    options parameter for xmlParse() and htmlParse() for controlling the parser.
        (Currently only used when encoding is explicitly specified.)

  *    encoding parameter for xmlParse() and xmlTreeParse() now works for XML documents,
        not just HTML documents.

  *    Update for readHTMLTable() method so that we look at just the final <tr> node
        in a <thead>.

Version 3.93-1

  *    Fixed bug in findXInclude() that sometimes got the wrong XMLXIncludeStartNode.
        Hence getNodeLocation() might report the wrong file, but correct line number!

  *    findXInclude() now has a recursive parameter that resolves the chain of XIncludes.
        This returns the full path to the file, relative to the base/top-level document,
        not just the parent document.

  *    Change to the default value of the error parameter in htmlParse() and htmlTreeParse()
        which will generate a structured R error if there is an IO error.
        The set of issues that will raise an error will be broadened in the future.

Version 3.93-0

  *    Enabled the fixing of <dummy> namespaces by finding the definition o
      for that prefix in the ancestor nodes.

Version 3.92-2

  *    Synchronized compilation flags for Windows with those on OSX & Linux.

Version 3.92-1

  *    Restore original error handler function for htmlParse() and htmlTreeParse()

  *    Fixed a reference counting problem caused by not adding a finalizer in the
      as() method for coercing an XMLInternalNode to an XMLInternalDocument.
      Example from Janko Thyson.

  *    Fixed up some partial argument names found by R CMD check!

Version 3.92-0

  *    Added --enable-xml-debug option for the configure script and this activates
      the debugging diagnostic reporting, mainly for the garbage collection and node
      reference counts.

  *    Work-around for HTML documents not being freed (but XML documents are!)

  *    Added an isHTML parameter for xmlTreeParse.

  *    Merge htmlTreeParse/htmlParse with xmlTreeParse.

  *    Implemented some diagnostic facilities to determine if an external pointer
      is in R's weak references list.  This needs support within R. (Ask for code if
      you want.)

Version 3.91-0

  *    Start of implementation to allow nested calls to newXMLNode() to use namespace prefixes
      defined in ancestor nodes.  Disabled at present.

(wen)

2013-07-07 13:38:23 UTC MAIN commitmail json YAML

Note update of lang/php54 package to 5.4.17.

(taca)

2013-07-07 13:37:53 UTC MAIN commitmail json YAML

Update php54 to 5.4.17.

04 Jul 2013, PHP 5.4.17

- Core:
  . Fixed bug #64988 (Class loading order affects E_STRICT warning). (Laruence)
  . Fixed bug #64966 (segfault in zend_do_fcall_common_helper_SPEC). (Laruence)
  . Fixed bug #64960 (Segfault in gc_zval_possible_root). (Laruence)
  . Fixed bug #64936 (doc comments picked up from previous scanner run). (Stas,
    Jonathan Oddy)
  . Fixed bug #64934 (Apache2 TS crash with get_browser()). (Anatol)
  . Fixed bug #64166 (quoted-printable-encode stream filter incorrectly
    discarding whitespace). (Michael M Slusarz)

- DateTime:
  . Fixed bug #53437 (Crash when using unserialized DatePeriod instance).
    (Gustavo, Derick, Anatol)

- FPM:
  . Fixed Bug #64915 (error_log ignored when daemonize=0). (Remi)
  . Implemented FR #64764 (add support for FPM init.d script). (Lior Kaplan)

- PDO:
  . Fixed bug #63176 (Segmentation fault when instantiate 2 persistent PDO to
    the same db server). (Laruence)

- PDO_DBlib:
  . Fixed bug #63638 (Cannot connect to SQL Server 2008 with PDO dblib).
    (Stanley Sufficool)
  . Fixed bug #64338 (pdo_dblib can't connect to Azure SQL). (Stanley
    Sufficool)
  . Fixed bug #64808 (FreeTDS PDO getColumnMeta on a prepared but not executed
    statement crashes). (Stanley Sufficool)

- PDO_firebird:
  . Fixed bug #64037 (Firebird return wrong value for numeric field).
    (Matheus Degiovani, Matteo)
  . Fixed bug #62024 (Cannot insert second row with null using parametrized
    query). (patch by james@kenjim.com, Matheus Degiovani, Matteo)

- PDO_mysql:
  . Fixed bug #48724 (getColumnMeta() doesn't return native_type for BIT,
    TINYINT and YEAR). (Antony, Daniel Beardsley)

- PDO_pgsql:
  . Fixed Bug #64949 (Buffer overflow in _pdo_pgsql_error). (Remi)

- pgsql:
  . Fixed bug #64609 (pg_convert enum type support). (Matteo)

- Readline:
  . Implement FR #55694 (Expose additional readline variable to prevent
    default filename completion). (Hartmel)

- SPL:
  . Fixed bug #64997 (Segfault while using RecursiveIteratorIterator on
    64-bits systems). (Laruence)

(taca)

2013-07-07 12:19:33 UTC MAIN commitmail json YAML

Updated graphics/py-cairo to 1.10.0

(wiz)

2013-07-07 12:19:23 UTC MAIN commitmail json YAML

Update to 1.10.0:

Overview of changes from py2cairo 1.8.10 to py2cairo 1.10.0
===========================================================
General Changes:
    py2cairo 1.10.0 requires cairo 1.10.0 (or later).

New Constants:
    cairo.FORMAT_RGB16_565

Bug Fixes:
    context.get_source().get_surface() fails        #33013
    Add support for './waf configure --libdir=XXX'  #30230

Documentation Changes:
    Upgrade to using Sphinx 1.0.7.
    Include html documentation in the pycairo archive file.

Build Changes:
    Update waf to 1.6.3

Other Changes:
    Remove setup.py
    Improve/simplify unicode filename support.
    Improve/simplify unicode text support.

(wiz)

2013-07-07 12:12:24 UTC MAIN commitmail json YAML

Updated math/R-sgeostat to 1.0.25

(wen)

2013-07-07 12:10:58 UTC MAIN commitmail json YAML

Update to 1.0.25
Update LICENSE

Upstream changes:
2013-02-28  Albrecht Gebhardt  <agebhard@uni-klu.ac.at>

* DESCRIPTION, LICENSE: final version of license desription done.

(wen)

2013-07-07 12:04:16 UTC MAIN commitmail json YAML

Updated math/R-shapefiles to 0.7

(wen)

2013-07-07 12:02:36 UTC MAIN commitmail json YAML

2013-07-07 11:54:17 UTC MAIN commitmail json YAML

Updated math/R-spacetime to 1.0.5

(wen)

2013-07-07 11:52:41 UTC MAIN commitmail json YAML

2013-07-07 11:51:45 UTC MAIN commitmail json YAML

- gtkmm-3.8.0, lcms-2.5, polkit-qt-0.103.0 (separate package, not
an update).

(wiz)

2013-07-07 11:49:09 UTC MAIN commitmail json YAML

Added x11/gtkmm3 version 3.8.0

(wiz)

2013-07-07 11:48:56 UTC MAIN commitmail json YAML

2013-07-07 11:46:16 UTC MAIN commitmail json YAML

Import gtkmm3-3.8.0 as x11/gtkmm3.

gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights
include typesafe callbacks, and a comprehensive set of widgets that are easily
extensible via inheritance. You can create user interfaces either in code or
with the Glade User Interface designer, using Gtk::Builder. There's extensive
documentation, including API reference and a tutorial.

This is major version 3 of the library using interfaces for GTK3.

(wiz)

2013-07-07 11:33:40 UTC MAIN commitmail json YAML

Updated math/R-intervals to 0.14.0

(wen)

2013-07-07 11:32:24 UTC MAIN commitmail json YAML

Update to 0.14.0
(No upstream changelog)

(wen)

2013-07-07 11:21:25 UTC MAIN commitmail json YAML

Updated math/R-splancs to 2.01.33

(wen)

2013-07-07 11:20:24 UTC MAIN commitmail json YAML

Update to 2.01.33

Upstream changes:
2013-06-22 17:09  rsbivand

* DESCRIPTION, inst/LICENCE, inst/README, man/burkitt.Rd: help line
  lengths

2013-03-30 13:30  rsbivand

* LICENCE: remove clang warning

2013-03-30 13:29  rsbivand

* src/ptinpoly.c: remove clang warning

2013-01-16 08:35  rsbivand

* ChangeLog, inst/ChangeLog: tidy

2013-01-16 08:34  rsbivand

* DESCRIPTION, R/First.lib.S: change to .onAttach for startup
  message

(wen)

2013-07-07 11:17:43 UTC MAIN commitmail json YAML

Updated math/R-sp to 1.0.11

(wen)

2013-07-07 11:16:24 UTC MAIN commitmail json YAML

Update to 1.0.11

Upstream changes:
2013-06-28 09:04  edzer

* man/Spatial-class.Rd, man/disaggregate.Rd: added documentation
  for disaggregate and aliases for spatstat S4 classes

2013-06-28 05:46  edzer

* NAMESPACE: export method disaggregate

2013-06-27 20:51  edzer

* NAMESPACE: exporting spatstat Classes ppp, im, psp, owin

2013-06-27 20:45  edzer

* R/sp_spat1.R: removed class tess (which is used, nor exported)

2013-06-27 06:54  edzer

* R/spdists.R, R/zerodist.R, man/zerodist.Rd, src/init.c, src/sp.h,
  src/zerodist.c: zerodist and zerodist2 now handle longlat data,
  using sp_gcdist
  tidied spdists.R

2013-06-25 19:08  edzer

* R/SpatialLines-methods.R, R/spdists.R,
  man/SpatialGridDataFrame-class.Rd, man/SpatialPoints-class.Rd,
  man/SpatialPointsDataFrame-class.Rd, man/spDistsN1.Rd,
  src/gcdist.c, src/sp.h, tests/Examples/sp-Ex.Rout.save: tidy;
  added $ method for SpatialPoints, such that meuse$x is found even
  if x is a coordinate.
  added methods to convert from spatstat (im, ppp) to Spatial
  objects

2013-06-25 17:13  rsbivand

* inst/doc/csdacm.Rnw, inst/doc/csdacm.pdf: adding footnote

2013-06-25 14:09  rsbivand

* DESCRIPTION: add vignette; fix line length issues

2013-06-25 14:03  rsbivand

* DESCRIPTION, inst/doc/csdacm.Rnw, inst/doc/csdacm.pdf,
  inst/doc/intro_sp.pdf, inst/doc/over.pdf,
  inst/external/seamap105_mod.csv, man/CRS-class.Rd,
  man/SpatialPolygons-class.Rd,
  man/SpatialPolygonsDataFrame-class.Rd,
  man/as.SpatialPolygons.GridTopology.Rd, man/gridlines.Rd,
  man/nowrapSpatialLines.Rd, man/polygons.Rd,
  man/recenter-methods.Rd, man/spplot.Rd,
  tests/Examples/sp-Ex.Rout.save: add vignette; fix line length
  issues

2013-06-24 21:09  edzer

* R/SpatialPoints-methods.R, R/disaggregate.R, R/sp_spat1.R,
  R/unfold.R: added disaggregate functions (not yet exported);
  added $ method for SpatialPoints that also catches coordinates,
  as meuse$x
  sp_spat1 has the conversion from spatstat classes ppp and im to
  Spatial objects

2013-06-21 14:11  rsbivand

* R/CRS-methods.R, man/CRS-class.Rd, man/is.projected.Rd,
  tests/fail1.R, tests/fail1.Rout.save: checks on latlon and lonlat

2013-05-23 19:29  edzer

* R/Spatial-methods.R, man/spTransform.Rd: added spTransform(ANY)
  methods that will stop and point to rgdal.

2013-05-07 09:12  rsbivand

* R/SpatialPoints-methods.R: guard against non-finite coordinates

2013-05-07 07:54  rsbivand

* inst/include/sp_xports.c, src/sp_xports.c: guard against
  non-finite polygon coordinates

2013-04-26 08:54  edzer

* DESCRIPTION, R/SpatialGridDataFrame-methods.R, R/unfold.R:
  scaffold for unfold - nothing exported; improved coercion
  function
  for SpatialPixelsDataFrame to SpatialGridDataFrame, thanks to Jon
  Skoien.

2013-04-24 07:05  rsbivand

* ChangeLog, inst/ChangeLog: closeAllConnections in readRAST6
  replaced by counted closure

2013-04-22 19:48  edzer

* DESCRIPTION: version update

2013-04-22 14:49  edzer

* demo/depend.R: tidy

2013-04-22 14:24  edzer

* demo/depend.R: better depend script

2013-04-22 09:34  edzer

* demo/depend.R, man/spTransform.Rd,
  tests/Examples/sp-Ex.Rout.save, tests/fail1.Rout.save: added
  spTransform doc, updated checks, depend now uses two cores.

2013-04-19 15:52  edzer

* DESCRIPTION: increased the rgdal version dependency

2013-04-19 13:16  edzer

* NAMESPACE, R/Spatial-methods.R: defines generic, and exports
  method spTransform.

2013-04-12 22:11  mdsumner

* R/gridlines.R: stringsAsFactors = FALSE for gridat labels,
  otherwise the factors returned are unusable without conversion to
  character

2013-03-30 13:36  edzer

* DESCRIPTION: version bump

2013-03-30 13:33  edzer

* R/spplot.R: lwd and lty now work on spplot()'ing
  SpatialPolygonsDataFrame objects;
  email today on r-sig-geo.

2013-03-29 10:00  rsbivand

* ChangeLog, inst/ChangeLog: tidy

2013-03-29 09:57  rsbivand

* inst/include/sp_xports.c: removing clang warnings

2013-03-29 09:56  rsbivand

* DESCRIPTION, src/Rcentroid.c, src/pip.c, src/pip2.c,
  src/sp_xports.c, src/zerodist.c: removing clang warnings

(wen)

2013-07-07 11:09:06 UTC MAIN commitmail json YAML

Updated math/R-statmod to 1.4.17

(wen)

2013-07-07 11:07:18 UTC MAIN commitmail json YAML

Update to 1.4.17
(No upstream changelog)

(wen)

2013-07-07 10:38:06 UTC MAIN commitmail json YAML

Updated games/puzzles to 9893

(wiz)

2013-07-07 10:37:56 UTC MAIN commitmail json YAML

2013-07-07 10:23:14 UTC MAIN commitmail json YAML

2013-07-07 10:19:22 UTC MAIN commitmail json YAML

Updated fonts/harfbuzz to 0.9.18

(wiz)

2013-07-07 10:19:04 UTC MAIN commitmail json YAML

Update to 0.9.18.

Overview of changes leading to 0.9.18
Tuesday, May 28, 2013
=====================================

New build system:

- All unneeded code is all disabled by default,

- Uniscribe and CoreText shapers can be enabled with their --with options,

- icu_le and old shapers cannot be enabled for now,

- glib, freetype, and cairo will be detected automatically.
  They can be force on/off'ed with their --with options,

- icu and graphite2 are default off, can be enabled with their --with
  options,

Moreover, ICU support is now build into a separate library:
libharfbuzz-icu.so, and a new harfbuzz-icu.pc is shipped for it.
Distros can enable ICU now without every application on earth
getting linked to via libharfbuzz.so.

For distros I recommend that they make sure they are building --with-glib
--with-freetype --with-cairo, --with-icu, and optionally --with-graphite2;
And package harfbuzz and harfbuzz-icu separately.

(wiz)

2013-07-07 10:09:37 UTC MAIN commitmail json YAML

2013-07-07 09:31:37 UTC MAIN commitmail json YAML

Updated math/R-xts to 0.9.5

(wen)

2013-07-07 09:30:28 UTC MAIN commitmail json YAML

Update to 0.9.5
(No changelog upstream)

(wen)

2013-07-07 09:24:44 UTC MAIN commitmail json YAML

Updated math/R-zoo to 1.7.10

(wen)

2013-07-07 09:23:30 UTC MAIN commitmail json YAML

Update to 1.7.10

Upstream changes:
Changes in Version 1.7-10

  o All methods that had previously been fully exported (merge.zoo,
    MATCH.default, ..., and many more) in order to be accessible to
    _all_ conceivable generics are now additionally registered as
    S3method()s for the standard generics. Exception: as.Date.* are
    still only fully exported.

  o Added a new mean() method for "zoo" objects that simply does
    mean(coredata(obj), ...).

  o Added yearmon_trans, scale_x_yearmon and scale_y_yearmon and
    yearqtr_trans, scale_x_yearqtr and scale_y_yearqtr to ggplot2 interface.

  o Removed the use of the shape and linetype aesthetic by default
    in autoplot() method.

  o Bug fix in na.fill for univariate series based on 1-column matrices
    (provided by Josh Ulrich).

  o Added [[ methods for "yearmon" and "yearqtr".

  o Constructs like time(obj)[ORDER(time(obj))] are now split up into
    two steps in the package code. If zoo is only imported but not
    loaded, R can otherwise have problems correctly dispatching to
    the new generics ORDER and MATCH.

  o as.Date() now also works for yearqtr/yearmon that are all NA
    (especially needed for format() and print() method).

(wen)

2013-07-07 09:06:23 UTC MAIN commitmail json YAML

compiler.mk: Fix Ada packages when PKGSRC_COMPILER=clang

Only one compiler is used when "ada" is listed in LANGUAGES, and that
is the one built by the lang/gcc-aux source package.  When PKGSRC_COMPILER
is defined as anything else other than "gcc", the Ada packages fail to
build.  This can be seen when clang is used with CLANGBASE=${LOCALBASE}.

This straight-forward fix is to override the user specification of
PKGSRC_COMPILER when Ada is specified and define it as "gcc" in all cases.
Tested on NetBSD 6.1 amd64 with CLANGBASE=${LOCALBASE}

(marino)

2013-07-07 08:57:03 UTC MAIN commitmail json YAML

lang/gcc-aux: Fix build for PKGSRC_COMPILER=clang

The Link-Time Optimizer requires a couple of functions from the math
library.  For gcc, it appears there are built-in versions that
satisfy the requirement, but building with clang requires an explicit
linkage to libm.

This additional LDFLAG may be required on all platforms when clang is
used for pkgsrc, but until this is confirmed let's limit it to NetBSD.
Fix tested on NetBSD 6.1 amd64 with CLANGBASE=${LOCALBASE}

(marino)

2013-07-07 08:15:18 UTC MAIN commitmail json YAML

+ calibre-0.9.38.

(wiz)

2013-07-07 08:10:41 UTC MAIN commitmail json YAML

Added lang/go version 1.1.1

(wiz)

2013-07-07 08:10:31 UTC MAIN commitmail json YAML

2013-07-07 08:10:14 UTC MAIN commitmail json YAML

Import go-1.1.1 as lang/go, packaged by Benny Siegert for wip.

The Go programming language is an open source project to make
programmers more productive.

Go is expressive, concise, clean, and efficient. Its concurrency
mechanisms make it easy to write programs that get the most out of
multicore and networked machines, while its novel type system enables
flexible and modular program construction. Go compiles quickly to
machine code yet has the convenience of garbage collection and the power
of run-time reflection. It's a fast, statically typed, compiled language
that feels like a dynamically typed, interpreted language.

(wiz)

2013-07-07 06:29:48 UTC MAIN commitmail json YAML

Probe a potentially different cpp for preprocessing makefiles. For
now, wire it down; this will probably fail on clang and I'll fix it
better later.

(dholland)

2013-07-07 06:28:05 UTC MAIN commitmail json YAML

Update to setuptools-0.8 and apply misc PLIST related fixes.

* Code base now runs on Python 2.4 - Python 3.3 without Python 2to3
  conversion.

(richard)

2013-07-07 05:45:15 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Add missing double quotation mark in patch-ac.
  Reported by isaki@, thank you.

(ryoon)

2013-07-07 05:33:49 UTC MAIN commitmail json YAML

2013-07-07 05:30:14 UTC MAIN commitmail json YAML

Now revert version 1.4 of patch-ab, which introduced extra configure
tests to work around problems with gcc 4.5's cpp when used on
makefiles.

(dholland)

2013-07-07 05:27:45 UTC MAIN commitmail json YAML

Assert MAINTAINER privilege to revert version 1.6 of patch-ab (and
version 1.7, which is its associated patch comment) on the grounds
that it's wrong.

(dholland)

2013-07-07 05:19:39 UTC MAIN commitmail json YAML

2013-07-07 03:51:04 UTC MAIN commitmail json YAML

FIxes build on NetBSD-5.x-i386, i486 features are required.

(obache)

2013-07-07 01:18:46 UTC MAIN commitmail json YAML

try to fix bulid failure with old OpenSSL (lack of SSL_clear_options).

(obache)

2013-07-07 00:38:35 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 4.17

(wen)

2013-07-07 00:37:25 UTC MAIN commitmail json YAML

Update to 4.17

Upstream changes:
4.17  2013-07-04
  - Updated jQuery to version 2.0.3.
  - Improved Mojo::IOLoop::Server to use Perfect Forward Secrecy for TLS.
  - Fixed Mojo::Transaction::WebSocket to generate RFC 6455 compliant
    Sec-WebSocket-Key headers. (josh)
  - Fixed bug where not all uppercase methods were hidden from the router.

4.16  2013-06-19
  - Improved Perl 5.10.x and 5.12.x compatibility. (trinitum)

4.15  2013-06-18
  - Added around_action hook.
  - Improved ojo to make the current controller object available to actions
    as $_. (jberger, sri)
  - Fixed a few error reporting bugs in Mojo::IOLoop::Client and
    Mojo::IOLoop::Server.
  - Fixed small emit_chain bug in Mojolicious::Plugins.

(wen)

2013-07-07 00:29:47 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-LibXSLT to 1.81

(wen)

2013-07-07 00:28:35 UTC MAIN commitmail json YAML

Update to 1.81

Upstream changes:
1.81            Fri  5 Jul 10:13:36 IDT 2013
    - Fix a typo reported by dsteinbrunner:
    - https://rt.cpan.org/Ticket/Display.html?id=86689

1.80            Wed 23 Jan 07:53:57 IST 2013
    - Bump the minimum version of libxslt2 to 1.1.28.
    - due to failures such as http://www.cpantesters.org/cpan/report/6f5029ee-639a-11e2-8465-2a97270fb964

1.79            Mon 26 Nov 12:15:35 IST 2012
    - Die when libxslt is 1.1.27.
    - Due to this bug - https://bugzilla.gnome.org/show_bug.cgi?id=684564

(wen)

2013-07-07 00:20:38 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Xslate to 2.0008

(wen)

2013-07-07 00:19:33 UTC MAIN commitmail json YAML

Update to 2.0008

Upstream changes:
2.0008 2013-07-06 00:09:43-0700
    [BUG FIXES]
    - Fix a chache issue that UTF8 flags were not turned on
      as expected (#82)
    - Fix Metakolon doc (#83)

2.0007 2013-06-21 13:16:16-0700
    [DOCUMENTS]
    - Add doc about chomping newlines (<:- ... -:>)

    [NEW FEATURES]
    - Add pre_process_handler to pre-process template content (bluescreen)

2.0006 2013-06-02 22:58:27
    [BUG FIXES]
    - Fix an issue that the state of VM broke on exception
      reported by nihen

2.0005 2013-06-02 12:23:15
    [BUG FIXES]
    - Fix a Multiplexed WRAPPER issue reportedy by @kawamuray (#79)
      Those who use WRAPPER, template cascading, or anonymous functions
      (lambdas) are strongly recommended to upgrade Xslate.

2.0004 2013-05-29 20:27:07
    [TEST FIXES]
    - Template string must be bytes (#78)

2.0003 2013-05-10 12:59:11
    [BUG FIXES]
    - Fix a crash on compiling templates (#77)

2.0002 2013-04-26 12:51:47
    [BUG FIXES]
    - Support perl-blead (5.17.11)

(wen)

2013-07-06 23:27:13 UTC MAIN commitmail json YAML

Updated graphics/p5-PerlMagick to 6.8.6.3

(wiz)

2013-07-06 23:27:01 UTC MAIN commitmail json YAML

Reset PKGREVISION after base package update.

(wiz)

2013-07-06 23:26:55 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick to 6.8.6.3

(wiz)

2013-07-06 23:26:46 UTC MAIN commitmail json YAML

Update to 6.8.6-3:

2013-07-01  6.8.6-3 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.6-3, SVN revision 12579.

2013-06-26  6.8.6-3 Cristy  <quetzlzacatenango@image...>
  * Improve HCL to RGB roundtrip (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=22384).
  * Prefer external log configuration file to built-in (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23640).
  * Do not log in the IsLinkedListEmpty() method to prevent overflow (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23640).
  * Fix bug loading TGA image with 32-bit palette (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=17889).
  * Color profiles are no longer corrupted for the JPEG format (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23651).
  * Repair problem with -emboss / -equalize problem (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23643).

2013-06-24  6.8.6-2 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.6-2, SVN revision 12561.

2013-06-21  6.8.6-2 Cristy  <quetzlzacatenango@image...>
  * Fix memory corruption in the MorphologyApply() method.

2013-06-20  6.8.6.2 Glenn Randers-Pehrson <glennrp@image...>
  * Quiet two warnings about uninitialized variables in coders/png.c

2013-06-20  6.8.6-1 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.6-1, SVN revision 12509.

2013-06-16  6.8.6-1 Cristy  <quetzlzacatenango@image...>
  * Don't decompand RGB for the -modulate option.
  * Improve LCHab and LCHuv roundtrip to / from sRGB (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=23596).

2013-06-16  6.8.6-0 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.6-0, SVN revision 12475.

2013-06-10  6.8.6-0 Cristy  <quetzlzacatenango@image...>
  * Clone image->intensity in CloneImageProperties() (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23569).
  * Split test suite into smaller tests (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23577).
  * Undercolor rectangle was off by one pixel (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23574).
  * Don't msync() for a read-only memory-mapped mode (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23531).
  * BlurChannelImage() no longer faults for certain CMYK images (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23581).
  * Reduce memory requirements for large BMP images.

2013-06-05  6.8.5-10 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.5-10, SVN revision 12419.

2013-06-02  6.8.5-10 Cristy  <quetzlzacatenango@image...>
  * Improve caption formatting (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23522).

2013-06-01  6.8.5-9 Cristy  <quetzlzacatenango@image...>
  * New version 6.8.5-9, SVN revision 12401.

2013-05-30  6.8.5-9 Cristy  <quetzlzacatenango@image...>
  * Caption no longer clips long words (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23504).
  * The lightness intensity is (min(R',G',B')+max(R',G',B'))/2.0 (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=23517).

(wiz)

2013-07-06 23:21:05 UTC MAIN commitmail json YAML

Updated graphics/lcms2 to 2.5

(wiz)

2013-07-06 23:20:56 UTC MAIN commitmail json YAML

Update to 2.5:

User defined parametric curves can now be saved in ICC profiles.
RGB profiles using same tone curves for several channels are storing now only one copy of the curve (saves space)
Fixed a multithead bug on optimization (StageDEF)
Fixed some 64 bit warnings on size_t to uint32 conversions
update black point detection algorithm to reflect ICC changes
Added new cmsPlugInTHR() and fixed some race conditions (thanks to Artifex)
Added error descriptions on cmsSmoothToneCurve
Fixed a bug on  big endian platforms not supporting uint64 or long long.
Fixed some bugs on floating point curves.
Several improvements in cgats parser.
Several minor issues found by cppcheck
Fixed devicelink generation for 8 bits
Added a reference for Mac MLU tag
Added a way to read the profile creator from header
Added identity curves support for write V2 LUT
More changes from Artifex
Added TIFF Lab16 handling on tifficc
Added some fixes from XhmikosR
Fixed a bug in parametric curves
Remove spurious tabs added by git merge of pull request
Added support for VS2012
Added a simple project for cppcheck
Rendering intent used when creating the transform is now propagated to profile header in cmsTransform2Devicelink. This is because 7.2.15 in spec 4.3
Transform2Devicelink now keeps white point when guessing deviceclass is enabled
Added some checks for non-happy path, mostly failing mallocs

(wiz)

2013-07-06 23:19:03 UTC MAIN commitmail json YAML

2013-07-06 23:18:54 UTC MAIN commitmail json YAML

Update to 294. Add desktopdb.mk.
Changes:
Experimental support for sixel graphics, a fix for a regression in
selection, and minor improvements to performance and configurability.

(wiz)

2013-07-06 23:14:07 UTC MAIN commitmail json YAML

2013-07-06 23:11:51 UTC MAIN commitmail json YAML