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

2024-05-13 16:22:32 UTC Now

2014-10-05 16:27:25 UTC MAIN commitmail json YAML

2014-10-05 15:19:28 UTC MAIN commitmail json YAML

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

Update to 1.6:

List of changes in MuPDF 1.6

* Features:
* Color detection device (mudraw -T).
* Sepia mode full-page color tinting in X11 and win32 viewer (keybinding: shift-C).
* Re-implement printf and strtod due to portability issue with locales and number formatting.
* Add 'gsview' project: a Windows Modern UI viewer.
* Improve XML parser interface.
* Bug fixes:
* CBZ page ordering
* ZIP64 support
* iOS and Android bug fixes
* Miscellaneous minor fixes

(wiz)

2014-10-05 15:03:42 UTC MAIN commitmail json YAML

Updated devel/gnome-common to 3.14.0

(wiz)

2014-10-05 15:03:33 UTC MAIN commitmail json YAML

Update to 3.14.0:

    version 3.14.0

    macros2: Update links to macros in the autoconf-archive

    Now that the macros have been committed upstream, we can link to their
    manual pages rather than the bug reports.

    macros2: Add support for APPSTREAM_XML macro

    And request that appstream-xml.m4 get installed if missing.

    https://bugzilla.gnome.org/show_bug.cgi?id=736497

    macros2: Deprecate GNOME_CODE_COVERAGE

    The autoconf-archive AX_CODE_COVERAGE macro should be used instead.

    https://bugzilla.gnome.org/show_bug.cgi?id=729405

    macros2: Deprecate GNOME_MAINTAINER_MODE_DEFINES

    The modules which it deprecates are all ancient and unused. Many of the
    modules which use GNOME_MAINTAINER_MODE_DEFINES don窶冲 make use of the
    DISABLE_DEPRECATED variable it generates anyway.

    If a module really wants maintainer mode, they should use
    AM_MAINTAINER_MODE. Otherwise, they should just eliminate this call
    entirely.

    https://bugzilla.gnome.org/show_bug.cgi?id=735417

    macros2: Deprecate GNOME_DEBUG_CHECK

    The autoconf-archive AX_DEBUG_CHECK macro should be used instead, or the
    macro contents should just be substituted into configure.ac directly,
    since it窶冱 so simple.

    https://bugzilla.gnome.org/show_bug.cgi?id=729403

    build: Remove a non-existent file from EXTRA_DIST

    https://bugzilla.gnome.org/show_bug.cgi?id=735418

    compiler-flags: allow suppressing warnings

    Some projects want to see no warnings at all, for example, projects that
    are written in Vala. But GNOME_COMPILE_WARNINGS([no]) is a no-op that
    does nothing to turn off the default compiler warnings. Presumably if
    you ask for no compiler warnings, you want no compiler warnings, so
    suppress them in this case instead.

    https://bugzilla.gnome.org/show_bug.cgi?id=734973

    code-coverage: Support lcov 1.11

    https://bugzilla.gnome.org/show_bug.cgi?id=732988

    macros2: Remove FORBIDDEN_M4MACROS infrastructure

    It was completely outdated and unused. The REQUIRED_M4MACROS
    infrastructure is, however, still in use.

    https://bugzilla.gnome.org/show_bug.cgi?id=729932

    macros2: Remove outdated README file

    https://bugzilla.gnome.org/show_bug.cgi?id=729410

    doc: Move doc/usage.txt to README and update

    We don窶冲 like references to CVS any more. Update the guidelines to no
    longer reference GNOME_COMMON_INIT.

    https://bugzilla.gnome.org/show_bug.cgi?id=729410

    make program_VERSION a local variable

    Otherwise we may end up overriding what was manually set in the
    environment.

(wiz)

2014-10-05 15:02:16 UTC MAIN commitmail json YAML

Updated devel/libsigc++ to 2.4.0

(wiz)

2014-10-05 15:02:06 UTC MAIN commitmail json YAML

Update to 2.4.0:

2.4.0 (stable):

Note: API/ABI is the same as in release 2.3.2. Compared to stable
releases 2.2.x, the API has been broken regarding visit_each() functions.
See the NEWS entry for libsigc++ 2.3.2.

* Fix the test_lambda test case for MS Visual C++ 2013 and other
  C++11-compliant compilers.
  (Kjell Ahlstedt) Bug #734368 (Ryan Beasley)
* Add a missing #include in limit_reference.h.
  (Kjell Ahlstedt)
* Documentation:
  - Use doxygen-extra.css from the mm-common package.
    Requires mm-common 0.9.7 when configured to use maintainer-mode.
    (Kjell Ahlstedt)

2.3.2 (unstable):

Note: The implementation of bug #724496 breaks API for some users,
but it does not break ABI.
Only users who have added their own visit_each() overloads are affected by
the API break. Their programs will still compile, but there will be run-time
errors, if they rely on auto-disconnection of slots.
Updated instructions for users who implement their own adaptors are found
in the description of sigc::adapts<>.

* Replace visit_each() overloads by struct visitor<>.
  Add the test_visit_each test case.
  (Ryan Beasley, Kjell Ahlstedt) Bug #724496
* signal_impl::notify(): Don't delete signal_impl during erase().
  (Kjell Ahlstedt) Bug #564005 (Alexander Shaduri)
* Fix 'make check' with clang++ 3.4 and --enable-warnings=fatal
  (Kjell Ahlstedt) Bug #724496 (Ryan Beasley)
* Fix test_cpp11_lambda for gcc 4.8
  (Kjell Ahlstedt)
* Speed up disconnection of slots.
  (Kjell Ahlstedt) Bug #167714 (Neal E. Coombes)
* Auto-generate the ChangeLog from the git log for 'make dist'.
  (Jos辿 Alburquerque)
* Don't use __file__ in the FIREWALL m4 macro.
  (Kjell Ahlstedt) Bug #699168 (John Ralls)
* Add the track_obj() adaptor and test_track_obj test case.
  Deprecate libsigc++ lambdas, sigc::group() and sigc::var().
  Use C++11 lambda expressions instead.
  (Kjell Ahlstedt) Bug #672555
* Documentation:
  - Emphasize that signals are reference counted.
    (Kjell Ahlstedt) Bug #611941 (Jonathon Jongsma)
  - Mention std::function<> and std::bind() where appropriate.
    (Kjell Ahlstedt, Chris Vine)
  - Use DOXYGEN_SHOULD_SKIP_THIS consistently to exclude internal
    functions from the reference documentation.
    (Kjell Ahlstedt)
* Windows:
  - Enable C++11 lambda expressions with MS Visual Studio 2012 and later
    (Ryan Beasley) Bug #733752
  - Update MSVC_Net2010
    (Kjell Ahlstedt) Bug #724496 (Ryan Beasley)

2.3.1 (unstable):

* signal_base: Add blocked(), block(), unblock().
  (Kjell Ahlstedt) Bug #153780

(wiz)

2014-10-05 14:59:35 UTC MAIN commitmail json YAML

Updated devel/atk to 2.14.0

(wiz)

2014-10-05 14:59:26 UTC MAIN commitmail json YAML

Update to 2.14.0:

Changes in version 2.14.0:
==========================

Translations:
Dušan Kazik (sk), Maria Mavridou (el), Yuri Myasoedov (ru)

Changes in version 2.13.90:
===========================

* GObject-introspection: some small changes needed by the MINGW project.
* Doap file updated See [1]

Contributors:
  Alexpux, Piotr Drąg, Olav Vitters

Translations:
Christian Kirbach (de), Lasse Liehu (fi), ngoswami (as)

[1] https://mail.gnome.org/archives/release-team/2014-July/msg00045.html

Changes in version 2.13.3:
==========================

* Bug 729752: introspection: add many missing Returns: (nullable) annotations
* Bug 730859: atk/Makefile.am: Stop reading atk.def
* Fix GIR scanning for srcdir != buildir
* Visual Studio support
  * MSVC 2010+ Projects: Update "Installation" Process
  * Build: Add Build Support for Visual Studio 2013
  * MSVC 2012/2013 Support: Update Property Sheet Creation
* Documentation:
  * Bug 729922: adding further explanation on atk_add_global_event_listener

Contributors:
  Benjamin Gilbert, Chun-wei Fan, Evan Nemerson, Alejandro Piñeiro
  Iglesias, Owen W. Taylor

Translation:
  genodeftest (de), Pau Iranzo (ca), Carles Ferrando (ca@valencia), Yosef Or Boczko (he)

Changes in version 2.13.2:
==========================

During GNOME 3.13.2 cycle an ATK 2.13.2 release was rolled out. But
unfourtunately, it was not pushed on master, so got lost. All their
changes are included on 2.13.3.

Changes in version 2.13.1:
==========================

* Bug 728031: Use visibility attributes/__declspec (dllexport) to
  export public symbols
* Bug 691991: Add Simple Support for Visual Studio 2012

Contributors:
  Chun-wei Fan

Translation
  Inaki Larranaga Murgoitio (eu), Matej Urbančič (sl), marablack3 (el)

(wiz)

2014-10-05 14:58:05 UTC MAIN commitmail json YAML

Updated x11/xkeyboard-config to 2.13

(wiz)

2014-10-05 14:57:55 UTC MAIN commitmail json YAML

Update to 2.13:

2.13 7 bugs fixed
Translations updated

(wiz)

2014-10-05 14:55:49 UTC MAIN commitmail json YAML

2014-10-05 14:55:40 UTC MAIN commitmail json YAML

Update to 1.8.0:

NEW IN WAF 1.8.0
----------------
* Python 2.5 is now required
* Removed the Waf cache from the task level, use the netcache system
* Console handling improvements
* Properly-sized progress bar on windows
* Generic configuration tests
* Better unicode handling in scripts and in file names
* Shorter build outputs
* Prevent external static libraries propagation through uselib vars #1320
* LaTeX glossaries #1342 and multibib #1345
* Rst document processing
* Various improvements in the Python detection and processing
* Tons of bugfixes

(wiz)

2014-10-05 14:54:47 UTC MAIN commitmail json YAML

Updated sysutils/py-psutil to 2.1.3

(wiz)

2014-10-05 14:54:37 UTC MAIN commitmail json YAML

Update to 2.1.3:

2.1.3 2014-09-26
================

**Bug fixes**

- #536: [Linux]: fix "undefined symbol: CPU_ALLOC" compilation error.

(wiz)

2014-10-05 14:54:05 UTC MAIN commitmail json YAML

Updated converters/py-simplejson to 3.6.4

(wiz)

2014-10-05 14:53:56 UTC MAIN commitmail json YAML

Update to 3.6.4:

Version 3.6.4 released 2014-09-29

* Important bug fix for dump when only sort_keys is set
  https://github.com/simplejson/simplejson/issues/106

(wiz)

2014-10-05 14:53:19 UTC MAIN commitmail json YAML

Updated security/py-cryptography to 0.6

(wiz)

2014-10-05 14:53:10 UTC MAIN commitmail json YAML

Update to 0.6:

0.6 - 2014-09-29
~~~~~~~~~~~~~~~~

* Added
  :func:`~cryptography.hazmat.primitives.serialization.load_pem_private_key` to
  ease loading private keys, and
  :func:`~cryptography.hazmat.primitives.serialization.load_pem_public_key` to
  support loading public keys.
* Removed the, deprecated in 0.4, support for the ``salt_length`` argument to
  the :class:`~cryptography.hazmat.primitives.asymmetric.padding.MGF1`
  constructor. The ``salt_length`` should be passed to
  :class:`~cryptography.hazmat.primitives.asymmetric.padding.PSS` instead.
* Fix compilation on OS X Yosemite.
* Deprecated ``elliptic_curve_private_key_from_numbers`` and
  ``elliptic_curve_public_key_from_numbers`` in favor of
  ``load_elliptic_curve_private_numbers`` and
  ``load_elliptic_curve_public_numbers`` on
  :class:`~cryptography.hazmat.backends.interfaces.EllipticCurveBackend`.
* Added
  :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePrivateKeyWithNumbers`
  and
  :class:`~cryptography.hazmat.primitives.interfaces.EllipticCurvePublicKeyWithNumbers`
  support.
* Work around three GCM related bugs in CommonCrypto and OpenSSL.

  * On the CommonCrypto backend adding AAD but not subsequently calling update
    would return null tag bytes.

  * One the CommonCrypto backend a call to update without an empty add AAD call
    would return null ciphertext bytes.

  * On the OpenSSL backend with certain versions adding AAD only would give
    invalid tag bytes.

* Support loading EC private keys from PEM.

(wiz)

2014-10-05 14:47:19 UTC MAIN commitmail json YAML

Updated multimedia/ffmpeg2 to 2.4.2

(wiz)

2014-10-05 14:47:10 UTC MAIN commitmail json YAML

Update to 2.4.2:

version 2.4.2:
- avcodec/on2avc: Check number of channels
- avcodec/hevc: fix chroma transform_add size
- avcodec/h264: Check mode before considering mixed mode intra prediction
- avformat/mpegts: use a padded buffer in read_sl_header()
- avformat/mpegts: Check desc_len / get8() return code
- avcodec/vorbisdec: Fix off by 1 error in ptns_to_read
- sdp: add support for H.261
- avcodec/svq3: Do not memcpy AVFrame
- avcodec/smc: fix off by 1 error
- avcodec/qpeg: fix off by 1 error in MV bounds check
- avcodec/gifdec: factorize interleave end handling out
- avcodec/cinepak: fix integer underflow
- avcodec/pngdec: Check bits per pixel before setting monoblack pixel format
- avcodec/pngdec: Calculate MPNG bytewidth more defensively
- avcodec/tiff: more completely check bpp/bppcount
- avcodec/mmvideo: Bounds check 2nd line of HHV Intra blocks
- avcodec/h263dec: Fix decoding messenger.h263
- avcodec/utils: Add case for jv to avcodec_align_dimensions2()
- avcodec/mjpegdec: check bits per pixel for changes similar to dimensions
- avcodec/jpeglsdec: Check run value more completely in ls_decode_line()
- avformat/hlsenc: export inner muxer timebase
- configure: add noexecstack to linker options if supported.
- avcodec/ac3enc_template: fix out of array read
- avutil/x86/cpu: fix cpuid sub-leaf selection
- avformat/img2dec: enable generic seeking for image pipes
- avformat/img2dec: initialize pkt->pos for image pipes
- avformat/img2dec: pass error code and signal EOF
- avformat/img2dec: fix error code at EOF for pipes
- libavutil/opt: fix av_opt_set_channel_layout() to access correct memory address
- tests/fate-run.sh: Cat .err file in case of error with V>0
- avformat/riffenc: Filter out "BottomUp" in ff_put_bmp_header()
- avcodec/webp: fix default palette color 0xff000000 -> 0x00000000
- avcodec/asvenc: fix AAN scaling
- Fix compile error on arm4/arm5 platform

(wiz)

2014-10-05 14:46:40 UTC MAIN commitmail json YAML

Describe some ffmpeg2 options.

(wiz)

2014-10-05 14:42:36 UTC MAIN commitmail json YAML

Updated textproc/py-html2text to 2014.9.25

(wiz)

2014-10-05 14:42:24 UTC MAIN commitmail json YAML

Update to 2014.9.25:

2014.9.25 - 2014-09-25

* Feature #29, #27: Add simple table support with bypass option.
* Fix #20: Replace project website with: http://alir3z4.github.io/html2text/ .

(wiz)

2014-10-05 14:41:30 UTC MAIN commitmail json YAML

2014-10-05 14:41:21 UTC MAIN commitmail json YAML

Update to 312:
* undo change to do_select_regex() in patch #311 (reports by H Merijn
  Brand, Sven-Haegar Koch, Debian #762978).

(wiz)

2014-10-05 14:39:34 UTC MAIN commitmail json YAML

Updated devel/py-py to 1.4.25

(wiz)

2014-10-05 14:39:20 UTC MAIN commitmail json YAML

Update to 1.4.25:

1.4.25
==================================================

- fix issue52: vaguely fix py25 compat of py.path.local (it's not
  officially supported), also fix docs

- fix pytest issue 589: when checking if we have a recursion error
  check for the specific "maximum recursion depth" text of the exception.

(wiz)

2014-10-05 14:38:51 UTC MAIN commitmail json YAML

+ cups-2.0.0, ffmpeg2-2.4.2, mono-3.10.0, mupdf-1.6, py-cryptography-0.6,
  py-psutil-2.1.3, py-py-1.4.25, py-simplejson-3.6.4, waf-1.8.0,
  x264-devel-20141004, xkeyboard-config-2.13, xterm-312.

(wiz)

2014-10-05 14:34:09 UTC MAIN commitmail json YAML

Updated devel/p5-Exporter-Tiny to 0.042

(wiz)

2014-10-05 14:34:00 UTC MAIN commitmail json YAML

Update to 0.042:

0.042 2014-10-04

[ Documentation ]
- Document the warning emitted when you provide options to a function you
  are unimporting.

[ Other ]
- Housekeeping on %TRACKED.

0.041_02 2014-09-19

[ Bug Fixes ]
- Option validation needs to happen after expanding tags.

0.041_01 2014-09-18

- Add an `unimport` feature.

(wiz)

2014-10-05 02:22:38 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 32.0.3

(ryoon)

2014-10-05 02:21:24 UTC MAIN commitmail json YAML

2014-10-05 02:20:25 UTC MAIN commitmail json YAML

2014-10-05 02:00:43 UTC MAIN commitmail json YAML

Updated www/firefox to 32.0.3

(ryoon)

2014-10-05 01:59:08 UTC MAIN commitmail json YAML

Update to 32.0.3

Changelog:

Fixed
32.0.3: New security fixes can be found here

New
New HTTP cache provides improved performance including crash recovery

New
Integration of generational garbage collection

New
Public key pinning support enabled

New
View historical use information for logins stored in password manager

New
Display the number of found items in the find toolbar

New
Easier back, forward, reload, and bookmarking through the context menu

New
Lower Sorbian [dsb] locale added

Changed
Removed and turned off trust bit for some 1024-bit root certificates

Changed
Performance improvements to Password Manager and Add-on Manager

HTML5
drawFocusIfNeeded enabled by default

HTML5
ECMAScript 6 built-in method Array#copyWithin implemented

HTML5
CSS position:sticky enabled by default

HTML5
mix-blend-mode enabled by default

HTML5
New Array built-in: Array.from()

HTML5
navigator.languages property and languagechange event implemented

HTML5
Vibration API updated to latest W3C spec

HTML5
CSS box-decoration-break replaces -moz-background-inline-policy

HTML5
box-decoration-break enabled by default

Developer
HiDPI support in Developer Tools UI

Developer
Inspector button moved to the top left

Developer
Hidden nodes displayed differently in the markup-view

Developer
New Web Audio Editor

Developer
Code completion and inline documentation added to Scratchpad

Fixed
32.0.2 - Corrupt installations cause Firefox to crash on update

Fixed
32.0.1 - Stability issues for computers with multiple graphics cards

Fixed
32.0.1 - Mixed content icon may be incorrectly displayed instead of lock icon for SSL sites

Fixed
32.0.1 - WebRTC: setRemoteDescription() silently fails if no success callback is specified

Fixed
Various security fixes

Fixed
Mac OS X: cmd-L does not open a new window when no window is available

Fixed
Text Rendering Issues on Windows 7 with Platform Update KB2670838 (MSIE 10 Prerequisite) or on Windows 8.1

Security fixes:
Fixed in Firefox 32.0.3
MFSA 2014-73 RSA Signature Forgery in NSS

Fixed in Firefox 32
MFSA 2014-72 Use-after-free setting text directionality
MFSA 2014-71 Profile directory file access through file: protocol
MFSA 2014-70 Out-of-bounds read in Web Audio audio timeline
MFSA 2014-69 Uninitialized memory use during GIF rendering
MFSA 2014-68 Use-after-free during DOM interactions with SVG
MFSA 2014-67 Miscellaneous memory safety hazards (rv:32.0 / rv:31.1 / rv:24.8)

(ryoon)

2014-10-04 22:47:32 UTC MAIN commitmail json YAML

2014-10-04 22:43:10 UTC MAIN commitmail json YAML

Needs bin/latex during build.

(joerg)

2014-10-04 17:04:50 UTC MAIN commitmail json YAML

+ Sigil-0.8.0, calibre-2.5.0, gnucash-2.6.4 [needs guile>=2.0].

(wiz)

2014-10-04 15:41:38 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup tickets #4513 and #4514.

(tron)

2014-10-04 15:39:18 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4514 - requested by bouyer
sysutils/xenkernel42: security patch

Revisions pulled up:
- sysutils/xenkernel42/Makefile                                1.9
- sysutils/xenkernel42/distinfo                                1.7
- sysutils/xenkernel42/patches/patch-xen_arch_x86_hvm_hvm.c    1.1

---
  Module Name: pkgsrc
  Committed By: bouyer
  Date: Wed Oct  1 17:34:55 UTC 2014

  Modified Files:
  pkgsrc/sysutils/xenkernel42: Makefile distinfo
  Added Files:
  pkgsrc/sysutils/xenkernel42/patches: patch-xen_arch_x86_hvm_hvm.c

  Log Message:
  Add patch from upstream, fixing CVE-2014-7188 / XSA-108:
  Improper MSR range used for x2APIC emulation
  Bump PKGREVISION

(tron)

2014-10-04 15:36:06 UTC MAIN commitmail json YAML

Note update of the "phpmyadmin" package to version 4.2.9.1.

(tron)

2014-10-04 15:35:49 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 4.2.9.1.

The following bugs have been fixed since version 4.2.9:
- bug #4544 [security] XSS vulnerabilities in table search and table
                      structure pages

(tron)

2014-10-04 15:24:30 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4513 - requested by wiz
shells/bash: bug fix update

Revisions pulled up:
- shells/bash/Makefile                                          1.71
- shells/bash/distinfo                                          1.37

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Fri Oct  3 09:46:23 UTC 2014

  Modified Files:
  pkgsrc/shells/bash: Makefile distinfo

  Log Message:
  Add another patch, welcome to 4.3.29. Not sure if this is hardening or
  a vulnerability.

(tron)

2014-10-04 14:15:54 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Uploader to 0.103007

(wen)

2014-10-04 14:14:26 UTC MAIN commitmail json YAML

Update to 0.103007

Upstream changes:
0.103007  2014-04-04 22:02:22-04:00 America/New_York
        - added "-c" option to cpan-uploader to specify an alternate config

0.103006  2013-12-13 08:18:36 America/New_York
          update bugtracker and repo metadata

0.103005  2013-07-01 19:01:17 America/New_York
          Use Config::Identity to permit GPG-encrypting on-disk credentials
          (thanks, Mike Doherty)

(wen)

2014-10-04 14:05:26 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Reporter to 1.2011

(wen)

2014-10-04 14:04:05 UTC MAIN commitmail json YAML

Update to 1.2011

Upstream changes:
1.2011    2014-03-16 22:27:56+01:00 Europe/Paris

  [ADDED]

  - Added support for future optional prerequisite reporting
    when CPAN.pm supports it

  [CHANGED]

  - Moved test distributions into corpus/ to avoid repetitive
    tarball unpacking

  - Modernized distribution meta and support files

1.2010    2013-04-12 15:35:38 Europe/London

  [NEW FEATURES]

  - new option 'retry_submission' tries to send the report one
    extra time in case it fails. Defaults to undef (don't retry)
    (Patch by Alexandr "chorny" Ciornii)

(wen)

2014-10-04 13:54:38 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Perl-Releases to 1.94

(wen)

2014-10-04 13:53:24 UTC MAIN commitmail json YAML

2014-10-04 13:48:02 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Mini to 1.111016

(wen)

2014-10-04 13:46:56 UTC MAIN commitmail json YAML

Update to 1.111016

Upstream changes:
1.111016  2014-08-08 18:52:05-04:00 America/New_York
        - cope with a difference in the 02packages headers made by Pinto
          (thanks, Fabrice Gabolde)

(wen)

2014-10-04 13:40:12 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Meta to 2.142690

(wen)

2014-10-04 13:39:08 UTC MAIN commitmail json YAML

Update to 2.142690

Upstream changes:
2.142690  2014-09-26 11:06:34-04:00 America/New_York

  [DOCUMENTED]

  - Clarified that no_index is a list of exclusions, and that indexers
    should generally exclude 'inc', 'xt' and 't' as well.

(wen)

2014-10-04 13:36:07 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Meta-Requirements to 2.128

(wen)

2014-10-04 13:35:02 UTC MAIN commitmail json YAML

Update to 2.128

Upstream changes:
2.128    2014-09-06 00:04:22-04:00 America/New_York

    [FIXED]

    - Throws an error at compile time if neither version nor
      the ExtUtils::MakeMaker bootstrap are available

2.127    2014-09-04 22:17:44-04:00 America/New_York

    [FIXED]

    - Works around limitations in version::vpp detecting v-string magic

    [PREREQS]

    - Requires version.pm 0.88 in metadata, but code should work with any
      version of version.pm

    - Adds support for forthcoming ExtUtils::MakeMaker bootstrap version.pm
      for Perls older than 5.10.0

2.126    2014-07-30 16:26:29-04:00 America/New_York

    [FIXED]

    - Fixed compatibility with version.pm 0.77

    [DOCUMENTED]

    - Minor documentation fixes

    [CHANGED]

    - Modernized distribution meta files

(wen)

2014-10-04 13:30:31 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Meta-Check to 0.009

(wen)

2014-10-04 13:29:09 UTC MAIN commitmail json YAML

Update to 0.009

Upstream changes:
0.009    2014-06-20 19:37:43+02:00 Europe/Amsterdam
          Various POD fixes

0.008    2013-10-17 16:44:57 Europe/Amsterdam
          Switch to using merged_requirements
          Test Env instead of Carp for version overshoot [#89591]
          Document $incdirs in the right function

(wen)

2014-10-04 13:24:34 UTC MAIN commitmail json YAML

Update devel/p5-CPAN-Inject to 1.14

(wen)

2014-10-04 13:23:20 UTC MAIN commitmail json YAML

Update to 1.14

Upstream changes:
1.14 Wed 12 Sep 2012
- Allow two-letter cpan ids (PSHANGOV)

(wen)

2014-10-04 13:18:22 UTC MAIN commitmail json YAML

Updated devel/p5-CPAN-Checksums to 2.09

(wen)

2014-10-04 13:16:53 UTC MAIN commitmail json YAML

2014-10-04 12:59:12 UTC MAIN commitmail json YAML

Updated security/libsodium to 1.0.0

(wiz)

2014-10-04 12:59:02 UTC MAIN commitmail json YAML

Update to 1.0.0, from maintainer csosstudy in PR 49251.
While here, add rpath to pkgconfig file.

* Version 1.0.0
- The API and ABI are now stable. New features will be added, but
backward-compatibility is guaranteed through all the 1.x.y releases.
- crypto_sign() properly works with overlapping regions again. Thanks
to @pysiak for reporting this regression introduced in version 0.6.1.
- The test suite has been extended.

* Version 0.7.1 (1.0 RC2)
- This is the second release candidate of Sodium 1.0. Minor
compilation, readability and portability changes have been made and the
test suite was improved, but the API is the same as the previous release
candidate.

* Version 0.7.0 (1.0 RC1)
- Allocating memory to store sensitive data can now be done using
sodium_malloc() and sodium_allocarray(). These functions add guard
pages around the protected data to make it less likely to be
accessible in a heartbleed-like scenario. In addition, the protection
for memory regions allocated that way can be changed using
sodium_mprotect_noaccess(), sodium_mprotect_readonly() and
sodium_mprotect_readwrite().
- ed25519 keys can be converted to curve25519 keys with
crypto_sign_ed25519_pk_to_curve25519() and
crypto_sign_ed25519_sk_to_curve25519(). This allows using the same
keys for signature and encryption.
- The seed and the public key can be extracted from an ed25519 key
using crypto_sign_ed25519_sk_to_seed() and crypto_sign_ed25519_sk_to_pk().
- aes256 was removed. A timing-attack resistant implementation might
be added later, but not before version 1.0 is tagged.
- The crypto_pwhash_scryptxsalsa208sha256_* compatibility layer was
removed. Use crypto_pwhash_scryptsalsa208sha256_*.
- The compatibility layer for implementation-specific functions was
removed.
- Compilation issues with Mingw64 on MSYS (not MSYS2) were fixed.
- crypto_pwhash_scryptsalsa208sha256_STRPREFIX was added: it contains
the prefix produced by crypto_pwhash_scryptsalsa208sha256_str()

* Version 0.6.1
- Important bug fix: when crypto_sign_open() was given a signed
message too short to even contain a signature, it was putting an
unlimited amount of zeros into the target buffer instead of
immediately returning -1. The bug was introduced in version 0.5.0.
- New API: crypto_sign_detached() and crypto_sign_verify_detached()
to produce and verify ed25519 signatures without having to duplicate
the message.
- New ./configure switch: --enable-minimal, to create a smaller
library, with only the functions required for the high-level API.
Mainly useful for the JavaScript target and embedded systems.
- All the symbols are now exported by the Emscripten build script.
- The pkg-config .pc file is now always installed even if the
pkg-config tool is not available during the installation.

* Version 0.6.0
- The ChaCha20 stream cipher has been added, as crypto_stream_chacha20_*
- The ChaCha20Poly1305 AEAD construction has been implemented, as
crypto_aead_chacha20poly1305_*
- The _easy API does not require any heap allocations any more and
does not have any overhead over the NaCl API. With the password
hashing function being an obvious exception, the library doesn't
allocate and will not allocate heap memory ever.
- crypto_box and crypto_secretbox have a new _detached API to store
the authentication tag and the encrypted message separately.
- crypto_pwhash_scryptxsalsa208sha256*() functions have been renamed
crypto_pwhash_scryptsalsa208sha256*().
- The low-level crypto_pwhash_scryptsalsa208sha256_ll() function
allows setting individual parameters of the scrypt function.
- New macros and functions for recommended crypto_pwhash_* parameters
have been added.
- Similarly to crypto_sign_seed_keypair(), crypto_box_seed_keypair()
has been introduced to deterministically generate a key pair from a seed.
- crypto_onetimeauth() now provides a streaming interface.
- crypto_stream_chacha20_xor_ic() and crypto_stream_salsa20_xor_ic()
have been added to use a non-zero initial block counter.
- On Windows, CryptGenRandom() was replaced by RtlGenRandom(), which
doesn't require the Crypt API.
- The high bit in curve25519 is masked instead of processing the key as
a 256-bit value.
- The curve25519 ref implementation was replaced by the latest ref10
implementation from Supercop.
- sodium_mlock() now prevents memory from being included in coredumps
on Linux 3.4+

* Version 0.5.0
- sodium_mlock()/sodium_munlock() have been introduced to lock pages
in memory before storing sensitive data, and to zero them before
unlocking them.
- High-level wrappers for crypto_box and crypto_secretbox
(crypto_box_easy and crypto_secretbox_easy) can be used to avoid
dealing with the specific memory layout regular functions depend on.
- crypto_pwhash_scryptsalsa208sha256* functions have been added
to derive a key from a password, and for password storage.
- Salsa20 and ed25519 implementations now support overlapping
inputs/keys/outputs (changes imported from supercop-20140505).
- New build scripts for Visual Studio, Emscripten, different Android
architectures and msys2 are available.
- The poly1305-53 implementation has been replaced with Floodyberry's
poly1305-donna32 and poly1305-donna64 implementations.
- sodium_hex2bin() has been added to complement sodium_bin2hex().
- On OpenBSD and Bitrig, arc4random() is used instead of reading
/dev/urandom.
- crypto_auth_hmac_sha512() has been implemented.
- sha256 and sha512 now have a streaming interface.
- hmacsha256, hmacsha512 and hmacsha512256 now support keys of
arbitrary length, and have a streaming interface.
- crypto_verify_64() has been implemented.
- first-class Visual Studio build system, thanks to @evoskuil
- CPU features are now detected at runtime.

(wiz)

2014-10-04 12:49:06 UTC MAIN commitmail json YAML

2014-10-04 12:44:54 UTC MAIN commitmail json YAML

Updated multimedia/libdvdnav to 5.0.1nb1

(wiz)

2014-10-04 12:44:45 UTC MAIN commitmail json YAML

Add rpath to pkgconfig file. Bump PKGREVISION.

(wiz)

2014-10-04 12:43:48 UTC MAIN commitmail json YAML

Updated multimedia/libdvdread to 5.0.0nb1

(wiz)

2014-10-04 12:43:39 UTC MAIN commitmail json YAML

Add rpath to pkgconfig file. Bump PKGREVISION.

(wiz)

2014-10-04 12:32:03 UTC MAIN commitmail json YAML

2014-10-04 12:29:01 UTC MAIN commitmail json YAML

Added print/p5-biblatex-biber version 0.9.9 [is 2012-09-14]

(wiz)

2014-10-04 12:02:18 UTC MAIN commitmail json YAML

Updated devel/libftdi1 to 1.1

(mef)

2014-10-04 12:01:08 UTC MAIN commitmail json YAML

New in 1.1 - 2014-02-05
-----------------------
* Fix FT232H eeprom suspend pulldown setting (Davide Michelizza)
* Fix FT232H eeprom user area size (Davide Michelizza)
* Improved mingw build (Paul Fertser and Michel Zou)
* C++ wrapper: Get/set functions for USB timeouts (Jochen Sprickerhof)
* Partial support for FT230X (Nathael Pajani)
* New API function: ftdi_eeprom_set_strings() (Nathael Pajani)
* Prevent possible segfault in ftdi_eeprom_decode() (Nathael Pajani)
* Save device release number in eeprom (Jarkko Sonninen)
* Fix "self powered" eeprom flag (Jarkko Sonninen)
* Improved python wrapper (Michel Zou)
* Many buildsystem improvements (Michel Zou and Mike Frysinger)
* See the git history for more changes and fixes

(mef)

2014-10-04 02:20:11 UTC MAIN commitmail json YAML

(retrospectively)
        Added ham/uhd version 3.7.2rc1 [mef 2014-09-08]
+      Updated ham/uhd to 3.7.2 [mef 2014-09-08]

(mef)

2014-10-04 02:12:54 UTC MAIN commitmail json YAML

+gconf                  Use GConf to store preferences
+gtkwave-tcl            Enable tcl for gtkwave.

(mef)

2014-10-04 02:06:25 UTC MAIN commitmail json YAML

Updated cad/gtkwave to 3.3.62

(mef)

2014-10-04 02:05:33 UTC MAIN commitmail json YAML

(Upstream) update 3.3.61 to 3.3.62
3.3.62  29aug14 Added zoom_full, zoom_size, and move_to_time to the dbus
                interface (dbus enabled by --with-gconf).
                Updated LZ4 to version r120 (r121 files are the same).
                Compiler warnings fixes for gtk+-1.2 (-Wall -Wshadow -Wextra).
(pkgsrc)
Add option gconf. See above. Enabled by default.

(mef)

2014-10-03 19:12:16 UTC MAIN commitmail json YAML

Cache the results of getline and system() calls.  Testing with
x11/kde-workspace4 shows a 25x performance improvement, reducing the
runtime of _check-shlibs from 7m55s to just 18s.

(jperkin)

2014-10-03 18:37:11 UTC MAIN commitmail json YAML

Try harder to convey in a few words what's so special about ikiwiki.

(schmonz)

2014-10-03 16:51:00 UTC MAIN commitmail json YAML

2014-10-03 16:16:06 UTC MAIN commitmail json YAML

Added devel/deforaos-configure version 0.1.0

(khorben)

2014-10-03 16:15:08 UTC MAIN commitmail json YAML

Added devel/deforaos-configure

(khorben)

2014-10-03 16:14:30 UTC MAIN commitmail json YAML

Imported devel/deforaos-configure 0.1.0 from wip

DeforaOS configure is a tool automating the generation of Makefiles when
maintaining and building software projects.

(khorben)

2014-10-03 15:26:14 UTC MAIN commitmail json YAML

Remove dvdread and dvdnav options for now; mplayer is not compatible
to the currene pkgsrc versions (5.x) and I didn't manage to convince
it to use the internal copies.

(wiz)

2014-10-03 15:14:12 UTC MAIN commitmail json YAML

2014-10-03 14:25:51 UTC MAIN commitmail json YAML

Updated x11/xf86-video-ati to 7.5.0

(wiz)

2014-10-03 14:25:42 UTC MAIN commitmail json YAML

Update to 7.5.0:

Alex Deucher (7):
      radeon: enable hawaii accel conditionally (v3)
      radeon: fix warnings when building against older xservers
      radeon/kms: add new CIK pci ids
      radeon/kms: add new SI pci ids
      radeon/kms: fix mullins pci id
      radeon: require libdrm_radeon 2.4.58 for latest SI/CI pci ids
      radeon: bump version for release

Andreas Boll (4):
      radeon: drop redundant radeon_drm.h includes
      radeon: move RADEON_TILING_{MASK, LINEAR} from radeon_drm.h to radeon.h
      radeon: drop radeon_drm.h
      radeon: remove definitions already present in radeon_drm.h

Hans de Goede (1):
      configure: Include xorg-server.h before glamor.h

Maarten Lankhorst (1):
      bump version post release

Michel D辰nzer (4):
      Handle CRTC DPMS from output DPMS hooks
      glamor: Set environment variable RADEON_THREAD=0
      Add Emacs .dir-local.el file
      Revert "glamor: Set environment variable RADEON_THREAD=0"

Thomas DeRensis (2):
      radeon: fix a leak in radeon_vbo_get_bo()
      radeon: fix build warnings regarding const qualifier

(wiz)

2014-10-03 13:56:43 UTC MAIN commitmail json YAML

packagesd for x11/eekboard maintainance, but not used anymore.

(obache)

2014-10-03 11:51:54 UTC MAIN commitmail json YAML

I have no idea why I was maintaining this package.
(deprecated and netresolv package should be created instead)

(obache)

2014-10-03 09:46:31 UTC MAIN commitmail json YAML

Updated shells/bash to 4.3.029

(wiz)

2014-10-03 09:46:23 UTC MAIN commitmail json YAML

Add another patch, welcome to 4.3.29. Not sure if this is hardening or
a vulnerability.

(wiz)

2014-10-03 09:38:27 UTC MAIN commitmail json YAML

Updated devel/py-mercurial to 3.1.2

(wiz)

2014-10-03 09:38:19 UTC MAIN commitmail json YAML

Update to 3.1.2:

This is a regularly-scheduled bugfix release.

    commit: catch changed exec bit on files from p1 (issue4382)
    diff: document the nobinary option
    dispatch: check shell alias again after loading extensions (issue4355)
    dispatch: make "_checkshellalias" reusable regardless of adding aliases
    help: fix typo in log examples
    help: mention mode in hg log --removed help (issue4381)
    hgweb: fail if an invalid command was supplied in url path (issue4071)
    hgweb: refresh hgweb.repo on phase change (issue4061)
    histedit: abort gracefully on --continue/--abort with no state
    keepalive: fix how md5 is used
    mq: examine "pushable" of already applied patch correctly
    mq: pop correct patches when changing pushable-ness of already applied ones
    mq: report correct numbers for changing "number of guarded, applied patches"
    mq: use "mq.applied[i].name" instead of "mq.appliedname(i)" for safety
    revset: add an optimised baseset.contains (issue4371)
    templater: fix precedence of --style and --template options

(wiz)

2014-10-03 09:30:45 UTC MAIN commitmail json YAML

Fix build failure on CentOS 7, setting TARGET=generic until we devise a
better setting.

(rodent)

2014-10-02 22:53:27 UTC MAIN commitmail json YAML

Correction to the encoding as before.
-${PYSITELIB}/wx-2.8-gtk2-unicode/wxPython-${PKGVERSION}-py2.7.egg-info
+${PYSITELIB}/wx-2.8-gtk2-unicode/${EGG_FILE2}
Thanks wiz@

(mef)

2014-10-02 16:07:11 UTC MAIN commitmail json YAML

Updated graphics/tesseract to 3.02.02

(adam)

2014-10-02 16:06:02 UTC MAIN commitmail json YAML

Changes 3.02.02:
* Moved ResultIterator/PageIterator to ccmain.
* Added Right-to-left/Bidi capability in the output iterators for Hebrew/Arabic.
* Added paragraph detection in layout analysis/post OCR.
* Fixed inconsistent xheight during training and over-chopping.
* Added simultaneous multi-language capability.
* Refactored top-level word recognition module.
* Added experimental equation detector.
* Improved handling of resolution from input images.
* Blamer module added for error analysis.
* Cleaned up externally used namespace by removing includes from baseapi.h.
* Removed dead memory mangagement code.
* Tidied up constraints on control parameters.
* Added support for ShapeTable in classifier and training.
* Refactored class pruner.
* Fixed training leaks and randomness.
* Major improvements to layout analysis for better image detection, diacritic detection, better textline finding, better tabstop finding.
* Improved line detection and removal.
* Added fixed pitch chopper for CJK.
* Added UNICHARSET to WERD_CHOICE to make mult-language handling easier.
* Fixed problems with internally scaled images.
* Added page and bbox to string in tr files to identify source of training data better.
* Fixes to Hindi Shiroreka splitter.
* Added word bigram correction.
* Reduced stack memory consumption and eliminated some ugly typedefs.
* Added new uniform classifier API.
* Added new training error counter.
* Fixed endian bug in dawg reader.
* Many other fixes, including the way in which the chopper finds chops and messes with the outline while it does so.

(adam)

2014-10-02 13:21:52 UTC MAIN commitmail json YAML

Added graphics/leptonica version 1.71

(adam)

2014-10-02 13:20:54 UTC MAIN commitmail json YAML

2014-10-02 13:18:09 UTC MAIN commitmail json YAML

Updated print/py-PDF2 to 1.23

(wen)

2014-10-02 13:17:30 UTC MAIN commitmail json YAML

Updated print/py-PDF2 to 1.23

(wen)

2014-10-02 13:16:21 UTC MAIN commitmail json YAML

Update to 1.23

Upstream changes:
Version 1.23, 2014-08-11
------------------------

- Documentation now available at http://pythonhosted.org//PyPDF2

- Bugfix in pagerange.py for when __init__.__doc__ has no value (by
  Vladir Cruz)

- Fix typos in OutlinesObject().add() (by shilluc)

- Re-added a missing return statement in a utils.py method

- Corrected viewing mode names (by Jason Scheirer)

- New PdfFileWriter method: addJS() (by vfigueiro)

- New bookmark features: color, boldness, italics, and page fit
  (by Joshua Arnott)

- New PdfFileReader method: getFields(). Used to extract field
  information from PDFs with interactive forms. See documentation
  for details

- Converted README file to markdown format (by Stephen Bussard)

- Several improvements to overall performance and efficiency
  (by mozbugbox)

- Fixed a bug where geospatial information was not scaling along with
  its page

- Fixed a type issue and a Python 3 issue in the decryption algorithms
  (with Francisco Vieira and koba-ninkigumi)

- Fixed a bug causing an infinite loop in the ASCII 85 decoding
  algorithm (by madmaardigan)

- Annotations (links, comment windows, etc.) are now preserved when
  pages are merged together

- Used the Destination class in addLink() and addBookmark() so that
  the page fit option could be properly customized

Version 1.22, 2014-05-29
------------------------

- Added .DS_Store to .gitignore (for Mac users) (by Steve Witham)

- Removed __init__() implementation in NameObject (by Steve Witham)

- Fixed bug (inf. loop) when merging pages in Python 3 (by commx)

- Corrected error when calculating height in scaleTo()

- Removed unnecessary code from DictionaryObject (by Georges Dubus)

- Fixed bug where an exception was thrown upon reading a NULL string
  (by speedplane)

- Allow string literals (non-unicode strings in Python 2) to be passed
  to PdfFileReader

- Allow ConvertFunctionsToVirtualList to be indexed with slices and
  longs (in Python 2) (by Matt Gilson)

- Major improvements and bugfixes to addLink() method (see documentation
  in source code) (by Henry Keiter)

- General code clean-up and improvements (with Steve Witham and Henry Keiter)

- Fixed bug that caused crash when comments are present at end of
  dictionary

Version 1.21, 2014-04-21
------------------------

- Fix for when /Type isn't present in the Pages dictionary (by Rob1080)

- More tolerance for extra whitespace in Indirect Objects

- Improved Exception handling

- Fixed error in getHeight() method (by Simon Kaempflein)

- implement use of utils.string_type to resolve Py2-3 compatibility issues

- Prevent exception for multiple definitions in a dictionary (with carlosfunk)
  (only when strict = False)

- Fixed errors when parsing a slice using pdfcat on command line (by
  Steve Witham)

- Tolerance for EOF markers within 1024 bytes of the actual end of the
  file (with David Wolever)

- Added overwriteWarnings parameter to PdfFileReader constructor, if False
  PyPDF2 will NOT overwrite methods from Python's warnings.py module with
  a custom implementation.

- Fix NumberObject and NameObject constructors for compatibility with PyPy
  (R▒diger Jungbeck, Xavier Dupr▒, shezadkhan137, Steven Witham)

- Utilize  utils.Str in pdf.py and pagerange.py to resolve type issues (by
  egbutter)

- Improvements in implementing StringIO for Python 2 and BytesIO for
  Python 3 (by Xavier Dupr▒)

- Added /x00 to Whitespaces, defined utils.WHITESPACES to clarify code (by
  Maxim Kamenkov)

- Bugfix for merging 3 or more resources with the same name (by lucky-user)

- Improvements to Xref parsing algorithm (by speedplane)

Version 1.20, 2014-01-27
------------------------

- Official Python 3+ support (with contributions from TWAC and cgammans)
  Support for Python versions 2.6 and 2.7 will be maintained

- Command line concatenation (see pdfcat in sample code) (by Steve Witham)

- New FAQ; link included in README

- Allow more (although unnecessary) escape sequences

- Prevent exception when reading a null object in decoding parameters

- Corrected error in reading destination types (added a slash since they
  are name objects)

- Corrected TypeError in scaleTo() method

- addBookmark() method in PdfFileMerger now returns bookmark (so nested
  bookmarks can be created)

- Additions to Sample Code and Sample PDFs

- changes to allow 2up script to work (see sample code) (by Dylan McNamee)

- changes to metadata encoding (by Chris Hiestand)

- New methods for links: addLink() (by Enrico Lambertini) and removeLinks()

- Bugfix to handle nested bookmarks correctly (by Jamie Lentin)

- New methods removeImages() and removeText() available for PdfFileWriter
  (by Tien Ha▒)

- Exception handling for illegal characters in Name Objects

Version 1.19, 2013-10-08
------------------------

BUGFIXES:
- Removed pop in sweepIndirectReferences to prevent infinite loop
  (provided by ian-su-sirca)

- Fixed bug caused by whitespace when parsing PDFs generated by AutoCad

- Fixed a bug caused by reading a 'null' ASCII value in a dictionary
  object (primarily in PDFs generated by AutoCad).

FEATURES:
- Added new folders for PyPDF2 sample code and example PDFs; see README
  for each folder

- Added a method for debugging purposes to show current location while
  parsing

- Ability to create custom metadata (by jamma313)

- Ability to access and customize document layout and view mode
  (by Joshua Arnott)

OTHER:
- Added and corrected some documentation

- Added some more warnings and exception messages

- Removed old test/debugging code

UPCOMING:
- More bugfixes (We have received many problematic PDFs via email, we
  will work with them)

- Documentation - It's time for PyPDF2 to get its own documentation
  since it has grown much since the original pyPdf

- A FAQ to answer common questions

(wen)

2014-10-02 12:57:36 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Metadata to 1.000024

(wen)

2014-10-02 12:56:12 UTC MAIN commitmail json YAML

Update to 1.000024

Upstream changes:
1.000024  2014-06-03 01:52:46Z
  - fix inaccurate prerequisite declaration on Test::More (in 1.000023)

1.000023  2014-06-02 02:37:17Z
  - support installations on older perls with an ExtUtils::MakeMaker earlier
    than 6.63_03

1.000022 - 2014-04-29
  - work around change in comparison behaviour in Test::More 0.95_01 by being
    more explicit with our tests - now explicitly checking the string form of
    the extracted version, rather than the entire version object
  - ensure the extracted version is returned as a version object in all cases
    (RT#87782, Randy Stauner)

1.000021 - 2014-04-29
  - fix use of newer interface from File::Path, to avoid another prereq on
    older perls (Graham Knop)
  - fixed all out of date prereq declarations

1.000020 - 2014-04-27
  - new is_indexable() object method (ether, RT#84357)
  - eliminated dependency on IO::File (and by virtue, XS) - thanks, leont!
  - removed cruft in test infrastructure left behind from separation from
    Module::Build (ether)
  - repository moved to https://github.com/Perl-Toolchain-Gang/Module-Metadata
  - .pm file is now wholly ascii, for nicer fatpacking (RT#95086)
  - some code micro-optimizations (Olivier Mengu)

(wen)

2014-10-02 11:47:31 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Report to 1.05

(wen)

2014-10-02 11:46:41 UTC MAIN commitmail json YAML

Update to 1.05

Upstream changes:
version 1.05: Tue Jun 24 09:38:15 CEST 2014

Fixes:
- test in t/10interp.t failed for Perl 5.20, caused by a
  bugfix or change in overload::Overloaded [cpantesters]

version 1.04: Tue Jun  3 10:42:11 CEST 2014

Fixes:
- float serialization under locale in test [cpantesters]

version 1.03: Thu May 22 11:54:24 CEST 2014

Fixes:
- float serialization under locale in test [cpantesters]
- non-errors and ::Dispatcher::Perl

Improvements:
- shorted display of string parameters in stack-trace to max 80 chars
- Log4perl log-lines sometimes show dispatcher as source, skip them.
- disable 'mode switch' trace for try()

version 1.02: Mon Mar 10 16:03:13 CET 2014

Fixes:
- add overload fallback to ::Exception and ::Dispatcher
  rt.cpan.org#92970 [Lukas Mai]
- ::Domain::new(translator) with HASH did not initialize
- warn better with ::Optional modules are used before Log::Report
  is used.

Improvements:
- changed documentation style
- ::Lexicon::Index dir-scan immediately, hopefully before fork()

(wen)

2014-10-02 11:35:28 UTC MAIN commitmail json YAML

Updated devel/p5-Return-MultiLevel to 0.04

(wen)

2014-10-02 11:34:04 UTC MAIN commitmail json YAML

Update to 0.04
Add missing DEPENDS

Upstream changes:
0.04    2014-09-07
        - switch to Data::Munge::eval_string
        - make with_return a named sub to improve stack traces
        - cache runtime generated trampolines; should cut down on the need to
          eval strings at runtime
        - document RETURN_MULTI_LEVEL_PP
        - add RETURN_MULTI_LEVEL_DEBUG for capturing with_return stacks

(wen)

2014-10-02 11:28:42 UTC MAIN commitmail json YAML

Added devel/p5-Data-Munge version 0.08

(wen)

2014-10-02 11:27:14 UTC MAIN commitmail json YAML

Add p5-Data-Munge

(wen)

2014-10-02 11:26:01 UTC MAIN commitmail json YAML

Import Data-Munge-0.08 as devel/p5-Data-Munge.

This module defines a few generally useful utility functions.

(wen)

2014-10-02 11:17:13 UTC MAIN commitmail json YAML

Updated net/rabbitmq to 3.3.5

(fhajny)

2014-10-02 11:17:00 UTC MAIN commitmail json YAML

Update rabbitmq to 3.3.5.

- Version 3.3.5 fixes a number of bugs in 3.3.4 and earlier versions.
- Version 3.3.4 fixes a small number of bugs in 3.3.3 and earlier versions.
  In particular it fixes a bug introduced in 3.3.3 which could cause startup
  to fail under some circumstances.
- Version 3.3.3 fixes a small number of bugs in 3.3.2 and earlier versions.
  In particular it fixes a bug introduced in 3.3.2 which could cause
  logging to stop under some circumstances.

(fhajny)

2014-10-02 11:05:06 UTC MAIN commitmail json YAML

Updated www/mediawiki to 1.23.5

(wen)

2014-10-02 11:03:03 UTC MAIN commitmail json YAML

Update to 1.23.5

Upstream changes:
MediaWiki 1.23.5
This is a security release of the MediaWiki 1.23 branch.

Changes since 1.23.4
(bug 70672) SECURITY: OutputPage: Remove separation of css and js module allowance.

(wen)

2014-10-02 10:45:48 UTC MAIN commitmail json YAML

Updated net/rabbitmq-c to 0.5.2

(fhajny)

2014-10-02 10:45:36 UTC MAIN commitmail json YAML

Update rabbitmq-c to 0.5.2.

Changes in 0.5.2

fcdf0f8 Autoconf: check for htonll as declaration in a header file
5790ec7 SSL: correctly report hostname verification errors.
d60c28c Build: disable OpenSSL deprecation warnings on OSX
072191a Lib: include platform, version and copyright in AMQP handshake
8b448c6 Examples: print message body in amqp[s]_listen[q] examples
7188e5d Tools: Add flag to set prefetch for amqp-consume tool

Changes in 0.5.1

a566929 SSL: Add support for wildcards in hostname verification (Mike Steinert)
a78aa8a Lib: Use poll(2) instead of select(2) for timeouts on sockets.
357bdb3 Lib: support for specifying frame and decoding pool sizes. (Mike Stitt)
8956003 Lib: improve invalid frame detection code.
b852f84 Lib: Add missing amqp_get_server_properties() function.
7001e82 Lib: Add missing ssize_t on Win32 (emazv72)
c2ce2cb Lib: Correctly specify WINVER on Win32 when unspecified.
fe844e4 CMake: specify -DHAVE_CONFIG_H in examples.
932de5f Lib: correct time computation on Win32 (jestor)
3e83192 HPUX: use gethrtime on HP-UX for timers.
cb1b44e HPUX: correct include location of sys/uio.h
8ce585d Lib: incorrect OOM condition when 0-lenth exchange name is received.
c7716b8 CMake: correct htonll detection code on platforms defined with a macro.
4dc4eda Lib: remove unused assignment.
45302cf Lib: remove range-check of channel-ids.

(fhajny)

2014-10-02 10:36:39 UTC MAIN commitmail json YAML

Updated devel/p5-App-Cmd to 0.323

(wen)

2014-10-02 10:34:28 UTC MAIN commitmail json YAML

Update to 0.323

Upstream changes:
0.323    2013-12-07 08:46:51 America/New_York
          fall back to "(unknown)" for command abstract in more cases (thanks,
          Jakob Voss!)

(wen)

2014-10-02 10:23:35 UTC MAIN commitmail json YAML

Updated databases/mongo-c-driver to 1.0.0

(fhajny)

2014-10-02 10:23:23 UTC MAIN commitmail json YAML

Update mongo-c-driver to 1.0.0.

A new libmongoc-priv.so library is installed that does not have symbols
hidden. You can access private headers via the -private.h variants. This
means you will need to recompile your project every time the library is
changed (if you use those private headers, as they are subject to change).

For other minor changes, see commits made since 0.98.0:

https://github.com/mongodb/mongo-c-driver/compare/0.98.0...1.0.0

(fhajny)

2014-10-02 10:21:38 UTC MAIN commitmail json YAML

Updated devel/libbson to 1.0.0

(fhajny)

2014-10-02 10:21:27 UTC MAIN commitmail json YAML

Update libbson to 1.0.0.

No official changelog, see commits made since 0.98.0:

https://github.com/mongodb/libbson/compare/0.98.0...1.0.0

(fhajny)

2014-10-02 09:59:41 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup tickets #4510, #4511 and #4512.

(tron)

2014-10-02 09:59:22 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4512 - requested by taca
www/squid3: security update

Revisions pulled up:
- www/squid3/Makefile                                          1.37
- www/squid3/distinfo                                          1.24

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Oct  2 07:33:47 UTC 2014

  Modified Files:
  pkgsrc/www/squid3: Makefile distinfo

  Log Message:
  Update squid to 3.4.8, a security release resolving several vulnerability
  issues found in the prior Squid releases.

  The major changes to be aware of:

  * CVE-2014-6270 : SQUID-2014:3 Buffer overflow in SNMP processing

    http://www.squid-cache.org/Advisories/SQUID-2014_3.txt

  This vulnerability allows any client who is allowed to send SNMP
  packets to the proxy to perform a denial of service attack on Squid.

  The issue came to light as the result of active 0-day attacks. Since
  publication several other attack sightings have been reported.

  * CVE-2014-7141 and CVE-2014-7142 : SQUID-2014:4

    http://www.squid-cache.org/Advisories/SQUID-2014_4.txt

  These vulnerabilities allow a remote attack server to trigger DoS or
  information leakage by sending various malformed ICMP and ICMPv6
  packets to the Squid pinger helper.
  The worst-case DoS scenario is a rarity, a more common impact will be
  general service degradation for high-performance systems relying on
  the pinger for realtime network measurement.

    All users of Squid are urged to upgrade to this release as soon as
  possible.

    See the ChangeLog for the full list of changes in this and earlier
    releases.

  Please refer to the release notes at
  http://www.squid-cache.org/Versions/v3/3.4/RELEASENOTES.html
  when you are ready to make the switch to Squid-3.4

  Upgrade tip:
    "squid -k parse" is starting to display even more
      useful hints about squid.conf changes.

(tron)

2014-10-02 09:30:13 UTC MAIN commitmail json YAML

2014-10-02 09:27:33 UTC MAIN commitmail json YAML

Updated games/lgogdownloader to 2.18

(wiz)

2014-10-02 09:27:23 UTC MAIN commitmail json YAML

Update to 2.18:

LGOGDownloader 2.18

- Added better login check
* Allows user to login with username instead of email
* Prints some info on failed login with debug build
- Fixed login issues caused by case sensitivity
- Added PREFIX and MANPREFIX to Makefile
- Allowed unrecognized options in config file
- Added --no-cover option back
- Listing games with --list now only displays games that support the platforms specified with --platform
- Made Downloader::HTTP_Login print some more info
- File hashing changes to Util::createXML
* File hash is updated in the same loop that chunk hashes are calculated (gives the user better indication of the hashing progress)
- Avoid touching $HOME when displaying help or version (patch by: Stephen Kitt)
* This fixes main() to handle --help and --version before doing anything to the filesystem
- Fixed spelling mistake in message displayed when downloading files (patch by: Neil Ramsbottom)
- Changed --report option to allow setting the filename of report
- Old files are now renamed instead of deleted during --repair --download
- Renamed old files now contain date in filename (filename.ext.YYYYMMDDTHHMMSS.old where T is the date-time separator)
- Added support for setting subdirectories
* Allows user to specify subdirectories for games, installers, extras, patches, language packs and dlc
* You can use templates "%gamename%", "%platform%" and "%dlcname%" which are replaced by the relevant info
* New options: --subdir-installers, --subdir-extras, --subdir-patches, --subdir-language-packs, --subdir-dlc, --subdir-game

(wiz)

2014-10-02 09:18:35 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4511 - requested by wiz
shells/bash: security update

Revisions pulled up:
- shells/bash/Makefile                                          1.70
- shells/bash/distinfo                                          1.36

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Wed Oct  1 21:23:51 UTC 2014

  Modified Files:
  pkgsrc/shells/bash: Makefile distinfo

  Log Message:
  Another day, another security fix: bash-4.3.028.

(tron)

2014-10-02 09:12:11 UTC pkgsrc-2014Q3 commitmail json YAML

Pullup ticket #4510 - requested by joerg
print/tex-wallpaper: dependency fix

Revisions pulled up:
- print/tex-wallpaper/Makefile                                  1.2

---
  Module Name: pkgsrc
  Committed By: joerg
  Date: Wed Oct  1 20:03:25 UTC 2014

  Modified Files:
  pkgsrc/print/tex-wallpaper: Makefile

  Log Message:
  Needs tex-eso-pic to work. Bump revision.

(tron)

2014-10-02 09:03:56 UTC MAIN commitmail json YAML

2014-10-02 09:02:19 UTC MAIN commitmail json YAML

2014-10-02 08:59:52 UTC MAIN commitmail json YAML

2014-10-02 08:59:26 UTC MAIN commitmail json YAML

2014-10-02 08:52:54 UTC MAIN commitmail json YAML

Updated archivers/lz4 to 123

(fhajny)

2014-10-02 08:52:41 UTC MAIN commitmail json YAML

Update lz4 to r123.

r123:
Added : experimental lz4frame API, thanks to Takayuki Matsuoka and
  Christopher Jackson for testings
Fix : s390x support, thanks to Nobuhiro Iwamatsu
Fix : test mode (-t) no longer requires confirmation, thanks to Thary Nguyen

r122:
Fix : AIX & AIX64 support (SamG)
Fix : mips 64-bits support (lew van)
Added : Examples directory, using code examples from Takayuki Matsuoka
Updated : Framing specification, to v1.4.1
Updated : xxHash, to r36

r121:
Added : Makefile : install for kFreeBSD and Hurd (Nobuhiro Iwamatsu)
Fix : Makefile : install for OS-X and BSD, thanks to Takayuki Matsuoka

(fhajny)

2014-10-02 08:50:12 UTC MAIN commitmail json YAML

2014-10-02 07:42:24 UTC MAIN commitmail json YAML

Updated databases/couchdb to 1.6.1

(fhajny)

2014-10-02 07:42:06 UTC MAIN commitmail json YAML

Update couchdb to 1.6.1.

Changes:
- Hash plaintext admin passwords stored in local.ini on startup.
- Filter out local admin users before updating password hash in _users db.

(fhajny)

2014-10-02 07:34:16 UTC MAIN commitmail json YAML

Note update of www/squid3 package to 3.4.8.

(taca)

2014-10-02 07:33:47 UTC MAIN commitmail json YAML

Update squid to 3.4.8, a security release resolving several vulnerability
issues found in the prior Squid releases.

The major changes to be aware of:

* CVE-2014-6270 : SQUID-2014:3 Buffer overflow in SNMP processing

  http://www.squid-cache.org/Advisories/SQUID-2014_3.txt

This vulnerability allows any client who is allowed to send SNMP
packets to the proxy to perform a denial of service attack on Squid.

The issue came to light as the result of active 0-day attacks. Since
publication several other attack sightings have been reported.

* CVE-2014-7141 and CVE-2014-7142 : SQUID-2014:4

  http://www.squid-cache.org/Advisories/SQUID-2014_4.txt

These vulnerabilities allow a remote attack server to trigger DoS or
information leakage by sending various malformed ICMP and ICMPv6
packets to the Squid pinger helper.
The worst-case DoS scenario is a rarity, a more common impact will be
general service degradation for high-performance systems relying on
the pinger for realtime network measurement.

All users of Squid are urged to upgrade to this release as soon as
possible.

See the ChangeLog for the full list of changes in this and earlier
releases.

Please refer to the release notes at
http://www.squid-cache.org/Versions/v3/3.4/RELEASENOTES.html
when you are ready to make the switch to Squid-3.4

Upgrade tip:
  "squid -k parse" is starting to display even more
  useful hints about squid.conf changes.

(taca)

2014-10-02 07:24:40 UTC MAIN commitmail json YAML

Added graphics/leptonica version 1.71

(adam)

2014-10-02 07:23:56 UTC MAIN commitmail json YAML

This package contains well-tested C code for some basic image processing
operations, along with a description of the functions and some design methods.
A full set of affine transformations (translation, shear, rotation, scaling)
on images of all depths is included, with the exception that some of the
scaling methods do not work at all depths. There are also implementations of
binary morphology, grayscale morphology, convolution and rank order filters,
and applications such as jbig2 image processing and color quantization.

(adam)

2014-10-02 04:53:52 UTC MAIN commitmail json YAML

Updated x11/py-wxWidgets to 2.8.12.0

(mef)

2014-10-02 04:46:25 UTC MAIN commitmail json YAML

Update 2.8.10.1 to 2.8.12.0
2.8.12:
-------
All:

- Fixed a bug in UNC path testing.
- Improved command line parser usage help.
- Fixed race condition bugs in wxCondition.
- Added wxT_2() for forward compatibility with wxWidgets 3. Use it in
  initialization of wxCmdLineEntryDesc struct elements and (very few) other
  places where wxT() is required currently but won't be allowed in v3.
- Fixed crash on exit caused by deleting old logger in wxLogChain dtor.

All (GUI):

- wxRTC: fixed style selection resetting after editing a style.
- wxRTC: can now edit line spacing in .1 increments from 1 to 2.
- wxRTC: fixed wrong line spacing and space after paragraph calculations.
- wxRTC: GetStyleMergedWithBase now detects loops.
- wxRTC: wxRichTextCtrl::ApplyStyle now applies a paragraph style at the
  cursor without needing a selection, and setting the default style now
  avoids duplicating character attributes in subsequently typed text when
  they exist in the paragraph style.
- wxRTC: fixed IsPositionVisible to scroll a position into view correctly.
- wxRTC: fixed a problem with paste resetting the content paragraph style.
- wxRTC: style list box now copes with names duplicated across style types.
  Also fixed wxRichTextStyleDefinition::GetStyleMergeWithBase similarly.
- wxRTC: fixed very poor performance for XML loading on wxGTK.
- Fixed error in generic tree control CalculatePositions.
- Added wxFD_FILE_MUST_EXIST to wxFileSelector function.
- Added wxDataViewCtrl Get/SetValueByRow functions for forward compatibility
  with 2.9.
- Right-clicking is now supported in any kind of wxAuiToolBar button.
- Fixed a bug in wxAcceleratorEntry::IsOk.
- wxGraphicsContext::DrawBitmap: x and y coordinates no longer affected by
  stretch factor.
- Fixed an assert in wxGrid on wxEVT_MOUSE_CAPTURE_LOST.
- Fixed bug in generic wxTreeCtrl where SelectItem toggles the selection if
  the item is already in the desired state.
- Fixed bug in wxSizer::Replace(size_t, wxSizerItem *) whereby SetContainingSizer
  is not called.
- Fixed compilation with libpng 1.5 and above.
- Removed ugly black (simple) border around wxHTML help window.

wxMSW:

- wxOwnerDrawnComboBox and wxComboCtrl with wxCB_READONLY window style now
  have more native-like focus indicator rendering.
- Fixed wxOwnerDrawnComboBox keyboard handling: drop-down is no longer
  displayed when arrow key is pressed (without Alt).
- In some rare cases wxOwnerDrawnComboBox drop-down animation could display
  as garbage. This has now been greatly reduced (mcben).
- Fixed OLE date conversion bug.
- Added check for double window handle creation.
- Fixed WIN64 crash in wxStyledTextCtrl.
- Fixed Watcom compilation when omitting threads.
- Fixed wxFileName::IsFileReadable on Windows 98.
- Fixed bug whereby clicking anywhere inside wxListBox generates
  wxEVT_COMMAND_LISTBOX_SELECTED event. You need to set wxUSE_LISTBOX_SELECTION_FIX
  to 1 in include/wx/msw/listbox.h to enable this binary-incompatible fix.

wxGTK:

- Fix for --disable-radiobtn compilation.
- Fixed a bug on GTK+ only whereby wxGrid scrolls back to the previous edit position
  when another cell is edited.
- Fix for missing menubar problem under some window managers where menu bar height is
  reported as 0 when the menu hasn't fully realized yet. Now updates the height during
  idle time if it is 0, otherwise no menu is shown.
- Improved list control and tree control selection text theme compatibility by adding
  wxSYS_COLOUR_LISTBOXHIGHLIGHTTEXT colour index.
- wxComboCtrl and wxOwnerDrawnComboBox had wrong background colours under some
  themes (Marcin Wojdyr).
- Added thread-safe fixes to socket code.

wxUniv:

- Fixed assertion in tree control sample due to colour index not being supported.

2.8.11:
-------

*** INCOMPATIBLE CHANGES: ***

  Due to an oversight, a bug fix in wxMSW resulted in an incompatible change in
  wxTreeCtrl behaviour: its EVT_TREE_ITEM_ACTIVATED handler now must skip the
  event being processed to allow the item to be toggled by double clicking on it.
  I.e. you need to ensure there is an "event.Skip()" in your item activation
  handler if you do wish to allow the item to be toggled.

All:

- Fixed crashes due to invalid input in PNG and TIFF image loaders (Tielei Wang).
- Fix compilation of wxWidgets headers with recent Sun CC (Brian Cameron).
  NB: If your code uses _T() macro you must either replace it with wxT() to
      use Sun CC or define wxNEEDS__T before including wx headers and avoid
      including many standard headers (again, only with this compiler).
- Added several functions forward compatible with wxWidgets 3.0 (troelsk):
  wxDC::SetDeviceClippingRegion(), wxShowEvent::IsShown(),
  wxIconizeEvent::IsIconized(), wxFileName::StripExtension(),
  wxXmlNode::GetAttribute[s](), wxXmlNode::AddAttribute().
- wxDateTime timezone functions now dynamic (no caching).

All (GUI):

- Add wxBU_EXACTFIT support to wxToggleButton XRC handler (Ronny Krueger).
- wxRTC: fixed AltGr+key input and numeric keypad Delete on Windows.
- wxRTC: added background colour setting to font dialog.
- wxRTC: added wxRICHTEXT_HANDLER_USE_CSS flag for HTML handler to use CSS
  where possible.
- wxRTC: corrected centring and right-justification spacing.
- wxRTC: corrected some problems with SelectAll. Caret is now set to end.
- Paper size conversion from dimensions to id now uses definition ordering
  in order to use common types where there are duplications, fixing problems
  where invalid sizes caused incorrect second invocation of page setup
  dialog.
- Corrected writing direction for Farsi.
- Added wxBORDER_THEME to XRC.
- Speeded up wxTreeCtrl by caching text size (botg).
- Fix building with using system libpng 1.4 (Volker Grabsch).
- Fixed generic wxDatePickerCtrl keyboard navigation.
- Added EVT_WIZARD_PAGE_SHOWN event for wxWizard.

wxMSW:

- Fixed crash when copying Unicode URLs to the clipboard (Tim Kosse).
- Fixed generation of wxEVT_CHAR_HOOK events.
- Implement wxFileName::SetTimes() for directories (Steve Lamerton).
- Correct wxTopLevelWindow::SetShape() for windows with menu bar (Peter Friis).
- Backported speed-up of Vaclav Slavik's high quality print preview speed-up.
  You now need to set wxUSE_HIGH_QUALITY_PREVIEW_IN_WXMSW in
  src/common/prntbase.cpp and wxUSE_ENH_METAFILE_FROM_DC in
  include/wx/msw/enhmeta.h.
- Worked around child window and caret positioning bug (in Windows) when using
  wxBORDER_THEME in a container window.
- Suppressed spurious character event for decimal key in numeric keypad.
- Prevented wxCheckListBox from corrupting menu items.

wxGTK:

- Don't access a possibly destroyed timer object from GTK callback (Tim Kosse).

wxMac:

- Fixed a problem with wxListCtrl whereby event processing would change
  the event object identifier, and thereby affect subsequent processing,
  and defeat custom event propagation of commands from current focus window.
- Fixed a problem with wxFontDialog on Mac OS 10.6.

(mef)

2014-10-02 03:50:45 UTC MAIN commitmail json YAML

+x11/py-qwt-qt4

(mef)

2014-10-02 03:49:03 UTC MAIN commitmail json YAML

+py-qwt-qt4

(mef)

2014-10-02 03:47:28 UTC MAIN commitmail json YAML

Import py27-qwt-qt4-5.2.0 as x11/py-qwt-qt4.

PyQwt is a set of Python bindings for the Qwt C++ class
library which extends the Qt framework with widgets for
scientific and engineering applications. It provides a widget
to plot 2-dimensional data and various widgets to display and
control bounded or unbounded floating point values.

(mef)

2014-10-02 01:06:49 UTC MAIN commitmail json YAML

Updated www/p5-Mojolicious to 5.47

(wen)

2014-10-02 01:05:52 UTC MAIN commitmail json YAML

Update to 5.47

Upstream changes:
5.47  2014-09-28
  - Improved url_for performance.

5.46  2014-09-26
  - PAUSE lost the previous release.

5.45  2014-09-26
  - Deprecated Mojolicious::Routes::Route::has_conditions.
  - Added extracting attribute to Mojo::UserAgent::CookieJar.
  - Improved performance of next, next_sibling, previous and previous_sibling
    methods in Mojo::DOM significantly.
  - Improved Mojo::Cache to allow caching to be disabled. (mvgrimes, sri)
  - Fixed url_for bug where deeply nested WebSocket routes would not work
    correctly.

5.44  2014-09-23
  - Fixed bug in Mojolicious::Renderer that prevented proxy objects from being
    reused.

5.43  2014-09-22
  - Updated Makefile.PL for version 2 of the CPAN distribution metadata
    specification.
  - Improved get command to not depend on Content-Type headers for
    differentiating between JSON and HTML/XML.

5.42  2014-09-17
  - Fixed url_for bug where an unnecessary slash could be rendered before
    formats.

5.41  2014-09-13
  - Deprecated Mojolicious::Controller::render_static in favor of
    reply->static helper.
  - Added mtime attribute to Mojo::Asset::Memory.
  - Added mtime method to Mojo::Asset and Mojo::Asset::File.
  - Added reply->asset and reply->static helpers to
    Mojolicious::Plugin::DefaultHelpers.
  - Fixed bug in Mojo::UserAgent where connections would sometimes not get
    closed correctly.

5.40  2014-09-12
  - Deprecated Mojo::EventEmitter::emit_safe.
  - Added reply->exception and reply->not_found helpers to
    Mojolicious::Plugin::DefaultHelpers.
  - Improved all events to handle exceptions the same.

(wen)

2014-10-02 00:53:32 UTC MAIN commitmail json YAML

Updated devel/p5-MooseX-Traits to 0.12

(wen)

2014-10-02 00:52:38 UTC MAIN commitmail json YAML

Update to 0.12
Update DEPENDS

Upstream changes:
0.12      2013-11-13 07:21:32Z
        - removed use of deprecated Class::MOP::load_class
        - repository migrated from shadowcat to the github moose organization
        - uses of Test::Exception converted to Test::Fatal

(wen)

2014-10-02 00:48:36 UTC MAIN commitmail json YAML

Updated devel/p5-Moose to 2.1213

(wen)

2014-10-02 00:46:13 UTC MAIN commitmail json YAML

Update to 2.1213
Update DEPENDS

Upstream changes:
2.1213  2014-09-25

  [BUG FIXES]

  - closed a memory leak in Moose exception objects where captured stack
    trace frames would contain circular references to the exception objects
    themselves (Graham Knop)

2.1212  2014-09-19

  [TEST FIXES]

  - fix tests that fail on altered warning messages in perl 5.21.4 (RT#98987)

(wen)

2014-10-02 00:36:51 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-StackTrace to 1.34

(wen)

2014-10-02 00:35:46 UTC MAIN commitmail json YAML

Update to 1.34

Upstream changes:
1.34  2014-06-26

- Fixed use of // operator (my use, not Graham's) in previous release.

1.33  2014-06-26

- Added a skip_frames option. This causes the stack trace to skip an arbitrary
  number of frames. Patch by Graham Knopp.

1.32  2014-05-05

- Added a filter_frames_early option to filter frames before arguments are
  stringified. Added by Dagfinn Ilmari Mannsker.

1.31  2014-01-16

- No code changes, just doc updates, including documenting the as_string()
  method in Devel::StackTrace::Frame. Requested by Skef. RT #91575.

(wen)

2014-10-01 23:36:44 UTC MAIN commitmail json YAML

Updated games/puzzles to 20140928.r10274

(wiz)

2014-10-01 23:36:34 UTC MAIN commitmail json YAML

Update to r10274:
Provide a static version.h for development builds.

(wiz)

2014-10-01 22:58:17 UTC MAIN commitmail json YAML

Add -DUSE_STRERROR to BSD case.
>From David Shao in PR 49250 for DragonFly BSD. Also tested on NetBSD-7.99.1.

(wiz)

2014-10-01 22:45:54 UTC MAIN commitmail json YAML

Updated x11/xcb-util-keysyms to 0.4.0

(wiz)

2014-10-01 22:45:45 UTC MAIN commitmail json YAML

Update to 0.4.0:

Arnaud Fontaine (3):
      Pick-up changes in m4 submodule as it's better to have all util repos at same m4 level.
      Remove old/outdated documentation crufts.
      Release 0.4.0

Bastien Dejean (1):
      Duplicate keycodes are unnecessary

Michael Stapelberg (1):
      autogen.sh: verify that git submodules are initialized

Uli Schlachter (1):
      Fix handling of error connections

(wiz)

2014-10-01 21:24:01 UTC MAIN commitmail json YAML

Updated shells/bash to 4.3.028

(wiz)

2014-10-01 21:23:51 UTC MAIN commitmail json YAML

Another day, another security fix: bash-4.3.028.

(wiz)

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

Needs tex-eso-pic to work. Bump revision.

(joerg)

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

Add tex-ifnextok, tex-readarray, tex-tabu, tex-varwidth and
tex-verbatimbox.

(joerg)

2014-10-01 20:00:39 UTC MAIN commitmail json YAML

Added print/tex-verbatimbox version 3.13

(joerg)

2014-10-01 20:00:28 UTC MAIN commitmail json YAML

Added print/tex-varwidth version 0.92

(joerg)

2014-10-01 20:00:19 UTC MAIN commitmail json YAML

Added print/tex-tabu version 2.8

(joerg)

2014-10-01 20:00:08 UTC MAIN commitmail json YAML

Added print/tex-readarray version 1.2

(joerg)

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

Added print/tex-ifnextok version 0.3

(joerg)

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

Add tex-verbatimbox-3.13:

The package provides a verbbox environment (which uses techniques similar
to those of the boxedverbatim environment of the moreverb package)
to place its contents into a globally available box, or into a box
specified by the user.

The global box may then be used in a variety of situations (for example,
providing a replica of the boxedverbatim environment itself). A valuable
use is in places where the standard verbatim environment (which is based
on a trivlist) may not appear.

(joerg)

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

Add tex-tabu-2.8:

The package provides an environment, tabu, which will make any sort of
tabular (that doesn't need to split across pages), and an environment
longtabu which provides the facilities of tabu in a modified longtable
environment. (Note that this latter offers an enhancement of ltxtable.)

(joerg)

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

Add tex-varwidth-0.92:

The varwidth environment is superficially similar to minipage, but the
specified width is just a maximum value -- the box may get a narrower
"natural" width.

(joerg)

2014-10-01 19:57:52 UTC MAIN commitmail json YAML

Add tex-readarray-1.2:

The package allows the user to input formatted data into elements of a
2-D or 3-D array and to recall that data at will by individual cell
number. The data can be but need not be numerical in nature. It can be,
for example, formatted text.

While the package can be used for any application where indexed data is
called for, the package proves particularly useful when elements of
multiple arrays must be recallable and dynamically combined at time of
compilation, rather than in advance.

(joerg)

2014-10-01 19:57:29 UTC MAIN commitmail json YAML

Add tex-ifnextok-0.3:

The package deals with the behaviour of the LaTeX internal command
\@ifnextchar, which skips blank spaces. This has the potential to
surprise users, since it can produce really unwanted effects. A common
example occurs with brackets starting a line following \\: the command
looks for an optional argument, whereas the user wants the brackets to
be printed.

The package offers commands and options for modifying this behaviour,
maybe limited to certain parts of the document source.

(joerg)

2014-10-01 19:27:04 UTC MAIN commitmail json YAML

Updated databases/postgresql93-datatypes to 9.3.5nb1

(joerg)

2014-10-01 19:26:25 UTC MAIN commitmail json YAML

Updated databases/postgresql92-datatypes to 9.2.9nb1

(joerg)

2014-10-01 19:26:06 UTC MAIN commitmail json YAML

Updated databases/postgresql91-datatypes to 9.1.14nb1

(joerg)

2014-10-01 19:25:54 UTC MAIN commitmail json YAML

Updated databases/postgresql90-datatypes to 9.0.18nb1

(joerg)

2014-10-01 19:25:35 UTC MAIN commitmail json YAML

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

2014-10-01 19:07:08 UTC MAIN commitmail json YAML

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

Removed devel/nbitools

(joerg)

2014-10-01 19:04:56 UTC MAIN commitmail json YAML

x11/xorg-imake has been dead for a long time.

(joerg)

2014-10-01 17:38:47 UTC MAIN commitmail json YAML

Updated sysutils/xentools42 to 4.2.5nb1

(bouyer)

2014-10-01 17:34:55 UTC MAIN commitmail json YAML

Add patch from upstream, fixing CVE-2014-7188 / XSA-108:
Improper MSR range used for x2APIC emulation
Bump PKGREVISION

(bouyer)

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

fix out-of-bounds memory read access in x2APIC emulation (HVM only)
(CVE-2014-7188)
bump PKGREV

(drochner)

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

Updated security/pcsc-lite to 1.8.12

(gdt)

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

pcsc-lite-1.8.12: Ludovic Rousseau
24 September 2014
- make hotplug using libudev (default) more robust
- add ReiserFS file system support (for configuration files)
- add musl libC support (increase the thread stack)
- Some other minor improvements and bug corrections

(gdt)

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

Updated security/ccid to 1.4.18

(gdt)

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

1.4.18 - 13 September 2014, Ludovic Rousseau
    - Add support of
      . Cherry Cherry TC 1100
      . Cherry Smart Card Reader USB
      . Cherry Smartcard Keyboard G87-1xx44
      . FujitsuTechnologySolutions GmbH Keyboard KB SCR2
      . Lenovo Lenovo USB Smartcard Keyboard
      . Yubico Yubikey NEO OTP+U2F+CCID
      . Yubico Yubikey NEO U2F+CCID
      . eID_R6 001 X8
    - fix support of Omnikey CardMan 3121
    - reduce memory consumed when configured with --enable-embedded
    - prepare the port to UEFI

http://ludovicrousseau.blogspot.fr/2014/09/new-version-of-libccid-1418.html

(gdt)

2014-10-01 16:11:02 UTC MAIN commitmail json YAML

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

Update to 0.30.1:

Changes in release 0.30.1:
* Fix memory leak with GnuTLS (Werner Baumann, Patrick Ohly).
* Fix possible crash after DNS lookup errors on Windows (Olivier Goffart).
* Don't fail if the SSL cert changes between connections with OpenSSL,
  behaviour now matches that with GnuTLS.
* Fix PKCS#11 support under OpenSSL with TLS 1.2.
* Fix static linking with pkg-config file (Alan H).

(wiz)

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

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

Updated multimedia/ffmpeg2 to 2.4.1

(wiz)

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

Update to 2.4.1:

The FFmpeg Project proudly presents FFmpeg 2.4 "Fresnel", just 2 months
after the release of 2.3. Since this wasn't a long time ago, the Changelog
is a bit short this time.

The most important thing in this release is the major version bump of the
libraries.  This means that this release is neither ABI-compatible nor
fully API-compatible. But on the other hand it is aligned with the Libav
11 release series, and will as a result probably end up being maintained for
a long time.

Important API changes since 2.3:

• The new field mime_type was added to AVProbeData, which can
  cause crashes, if it is not initialized.
• Some deprecated functions were removed.
• The avfilter_graph_parse function was made compatible with Libav.
• The Matroska demuxer now outputs verbatim ASS packets.

Please refer to the doc/APIchanges file for more information.

libavformat

• Icecast protocol.
• API for live metadata updates through event flags.
• UTF-16 support in text subtitles formats.
• The ASS muxer now reorders the Dialogue events properly.
• support for H.261 RTP payload format (RFC 4587)
• HEVC/H.265 RTP payload format (draft v6) depacketizer

libavfilter

• Ported lenscorrection filter from frei0r filter.
• Large optimizations in dctdnoiz to make it usable.
• Added codecview filter to visualize information exported by some codecs.
• Added silenceremove filter.

libavutil

• Added clip() function in eval.

Behaviour changes

• dctdnoiz filter now uses a block size of 8x8 instead of 16x16 by default
• -vismv option is deprecated in favor of the codecview filter
• libmodplug is now detected through pkg-config
• HTML documentation generation through texi2html is deprecated in
  favor of makeinfo/texi2any
• ICY metadata are now requested by default with the HTTP protocol

(wiz)

2014-10-01 15:57:11 UTC MAIN commitmail json YAML

Updated print/poppler to 0.26.5

(wiz)

2014-10-01 15:57:00 UTC MAIN commitmail json YAML

Update to 0.26.5:

Release 0.26.5
        core:
        * Fix rendering of broken file with a wrong embedded font. Bug #84270

        glib:
        * Fix use of uninitialized members in PopplerInputStream. Bug #82630

(wiz)

2014-10-01 14:36:15 UTC MAIN commitmail json YAML

+ pspp-0.8.4.

(wiz)

2014-10-01 14:32:59 UTC MAIN commitmail json YAML