Commit graph

231887 commits

Author SHA1 Message Date
wiz
616439120b Added devel/py-singledispatch version 3.4.0.3 2015-04-10 08:25:54 +00:00
wiz
b2e448f310 + py-singledispatch 2015-04-10 08:25:45 +00:00
wiz
4856649371 Import py33-singledispatch-3.4.0.3 as devel/py-singledispatch,
packaged for wip by jonthn.

Expose a mechanism in the functools standard library module from
Python 3.4 to provides a simple form of generic programming known
as single-dispatch generic functions.
2015-04-10 08:25:31 +00:00
wiz
cea11831a3 Fix PLIST for python-2.x. 2015-04-10 06:17:19 +00:00
martin
ed6c7ec953 Updated www/firefox to 37.0.1nb1 2015-04-10 05:40:59 +00:00
martin
347b69375d Avoid a crash on alignment critical architectures 2015-04-10 05:40:36 +00:00
rodent
16dc664914 +2 suggestions for more packages; +2 ways to cleanup pkgsrc. 2015-04-10 03:33:20 +00:00
snj
81646a92f9 Added emulators/libretro-nestopia version 20150319 2015-04-10 03:17:45 +00:00
snj
a1862fd437 +libretro-nestopia 2015-04-10 03:16:51 +00:00
snj
5b428fc10d Add libretro-nestopia, a retroarch core based on the nestopia (undead
edition) emulator.
2015-04-10 03:16:17 +00:00
dsainty
0e39c88508 Updated security/zoneminder to 1.28.1nb1 2015-04-10 03:13:49 +00:00
dsainty
c01631c02e Patch up some Linux-specific assumptions in the code.
Fixes build under NetBSD.

Bump PKGREVISION for switch to ffmpeg2, and some portability changes that
aren't expected to affect functionality.
2015-04-10 02:58:49 +00:00
dsainty
4d2fa06be3 New ZoneMinder supports the newer ffmpeg APIs, so switch the ffmpeg
dependency from ffmpeg010 to ffmpeg2.
2015-04-10 02:53:20 +00:00
wen
f11685c4d6 Updated devel/hdf5 to 1.8.14 2015-04-10 02:51:08 +00:00
rodent
5c04786b65 +virtuoso-7.2.0p1 2015-04-10 02:51:02 +00:00
wen
c1e15c8113 Update to 1.8.14
Upstream changes:

Release 1.8.14 of November 2014 (current release) versus Release 1.8.13
In the main library C Interface
No new C functions have been added.

The behavior of the following C function has been changed:
    The function H5Pset_core_write_tracking has been modified to enforce the limitation that the value of the page_size parameter cannot equal 0 (zero):

        H5Pset_core_write_tracking

The following performance optimization has been implemented in the Parallel HDF5 library:
    The algoritm for writing chunk fill values for new datasets has been optimized to write out all chunk fill values collectively in a single MPI-IO call. This was previously done independently by rank 0 (zero) one block at a time. This optimization should produce a significant performance improvement when creating chunked datasets in parallel, most notably when chunk dimensions are relatively small. This optimization will be evident in use of the following function:

        H5Dcreate

In the high-level library C Interface
High-level HDF5 interfaces now ensure that strings are null-terminated and will not overflow a buffer.
    In several high-level functions, the type from the file was previously re-used as the memory type and no check is made to ensure that a string was actually null-terminated.

    All high-level functions now check for NULL pointers; verify that a received a string is null-terminated; and verify that the string will not overflow the buffer. The minimum length of the buffers is now used in strncmp to avoid overflow.

In the main library C++ Interface
No new C++ methods have been added.

The following changes have been made in the C++ interface:
    Changed defaults

        Default value of class member id:
        The data member id in several classes that represent HDF5 objects are now initialized to H5I_INVALID_ID.
        Default value of a PropList member id:
        The data member id in class PropList is now initialized to H5P_DEFAULT.
        In HDF5 Release 1.8.13 and earlier, the above were initialized to 0 (zero).

    Changed file access flags

        The flag H5F_ACC_CREAT has been removed from the C++ interface.

In the main library Fortran Interface
No new Fortran subroutines have been added.

Changed Fortran INTEGER parameter types:
    Types of the following Fortran parameter constants have been changed from INTEGER to INTEGER(HID_T):

        H5FD_CORE            H5FD_MULTI
        H5FD_FAMILY          H5FD_SEC2
        H5FD_LOG             H5FD_STDIO
        H5FD_MPIO

    Other internal int types have been changed to hid_t, but this change is expected to be transparent to the user

Release 1.8.13 of May 2014 versus Release 1.8.12
In the C Interface (main library)

The following new C functions have been added:
    To free memory allocated by HDF5 function calls:

        H5free_memory
        This function should be used to free memory that has been allocated by HDF5 API calls such as H5Tget_member_name and H5Pget_class_name.

        The primary value for this call is on Windows systems, where it is common for application code and the HDF5 Library to be using different C run-time libraries (CRT). Using this new call ensures that the same CRT handles both the allocation and free.

        This function can also be useful in any case where the library uses a different memory manager than the application, such as when a debug memory manager is in use or when the HDF5 Library is wrapped for use in a managed language like Python or Java.

    New configuration property for the CORE driver:

        H5Pset_core_write_tracking
        H5Pget_core_write_tracking
        With this property, the CORE driver, H5Pset_fapl_core, can be configured to track dirty regions in the file and write out only the changed regions on flush or close operations. Additionally, a page aggregation size can be set that will aggregate small writes into larger writes. For example, setting a 1 mebibyte (1 MiB) page aggregation size will logically partition the the in-memory file into 1 MiB pages that will be written out in their entirety if even a single byte is dirtied.

The following C functions have been modified:

    H5Rget_name
    If the name parameter is passed as NULL, then the size parameter is ignored and the function returns the size of the buffer required to read the name (not including the NULL terminator).
    H5Zfilter_avail
    This function has been updated to correctly identify dynamically loaded filters. If a filter is not found among registered filters, the function now checks for dynamically loaded filters.

In the C++ Interface
The following new features have been added:
    Wrappers to the class H5Object to get an object’s name:

        ssize_t getObjName(char *obj_name, size_t buf_size = 0)
        ssize_t getObjName(H5std_string& obj_name, size_t len = 0)
        H5std_string getObjName()

    Wrappers to the class H5CommonFG to get a child object’s type from a group or file:

        H5O_type_t childObjType(const H5std_string& objname)
        H5O_type_t childObjType(const char* objname)
        H5O_type_t childObjType(hsize_t index,
            H5_index_t index_type=H5_INDEX_NAME,
            H5_iter_order_t order=H5_ITER_INC, const char* objname=".")

    Wrappers to the class DSetMemXferPropList for setting or getting a transform property list:

        DSetMemXferPropList(const char* expression);
        void setDataTransform(const char* expression)
        void setDataTransform(const H5std_string& expression)
        ssize_t getDataTransform(char* exp, size_t buf_size=0)
        H5std_string getDataTransform()

    Wrapper to CompType for setting the size of a compound datatype:

        void setSize(size_t size)

    Overloaded functions to provide prototypes that declare constant arguments const:

        DataSet::fillMemBuf
        DataSet::getVlenBufSize
        DataSpace::extentCopy
        DataType::commit
        FileAccPropList::setSplit
        H5File::getVFDHandle

    Additional overload to the class H5Location to get a comment as a char*:

        ssize_t getComment(const char* name, size_t buf_size, char* comment)

    Additional overloads to the class Attribute to get an attribute’s name for convenience:

        ssize_t getName(char* attr_name, size_t buf_size=0)
        ssize_t getName(H5std_string& attr_name, size_t buf_size=0)

In the Fortran Interface
The following new Fortran subroutines have been added:
    Fortran2003 subroutines:
    h5pset_file_image_f
    h5pget_file_image_f
    h5fget_file_image_f (Added in Release 1.8.11, but not documented at that time.)

The following Fortran subroutine has been changed:

    h5pset_chunk_cache_f
    The values of the constants H5D_CHUNK_CACHE_NSLOTS_DFLT_F and H5D_CHUNK_CACHE_NBYTES_DFLT_F have been changed to INTEGER(KIND=size_t).

Other New Features

Parallel I/O support:
    Parallel I/O support has been enhanced to allow collective I/O on point selections.

Thread safety (Windows only)
    The thread-safe HDF5 library no longer leaks thread-local storage resources on Windows with Win32 threads. This cleanup can only be performed when the library is built as a shared library, so a thread-safe HDF5 static library with Win32 threads is no longer supported.

    This change affects only Windows environments.

    Also see “Build and Configuration” below.

Command-line Tools with Changed Behavior

h5repack
    h5repack has been updated to correctly handle dynamically loaded filters.

Build and Configuration

Thread safety
    When configuring a thread-safe HDF5 Library with --enable-threadsafe, it is no longer necessary to specify --with-pthreads if the Pthreads library is in a standard location.

Removed Functions and Wrappers

The MPI-POSIX driver has been removed. The following C functions and the corresponding Fortran subroutines and C++ wrappers therefore are no longer included in the HDF5 distribution:

        H5Pset_fapl_mpiposix
        H5Pget_fapl_mpiposix

Applications performing parallel I/O should use the MPI-IO driver, H5Pset_fapl_mpio.
2015-04-10 02:49:56 +00:00
mef
adbd281507 Updated math/isl to 0.14.1 2015-04-10 01:55:04 +00:00
mef
02085a5847 Update 0.14 to 0.14.1
---------------------
version: 0.14.1
date: Thu Apr  9 12:57:23 CEST 2015
changes:
        - fix bug in affine expression normalization
        - fix handling of conditional validity constraints
2015-04-10 01:54:45 +00:00
rodent
cd7b5f5433 Same deal here as lang/gcc48. Set GCC_REQD+=4.4, as the packages needs
omp_lock_t and gcc-4.2 doesn't provide that.
2015-04-10 01:50:32 +00:00
mef
18df890478 Updated mail/dnsbl-milter to 6.45 2015-04-10 01:48:45 +00:00
mef
fcc618dac6 Update to 6.45
--------------
6.45 2015-04-09
    Add bitcoin donation address
2015-04-10 01:48:37 +00:00
mef
10b4f603ff Updated devel/p5-IO-Multiplex to 1.15
Updated devel/p5-Lexical-SealRequireHints to 0.009
Updated devel/p5-Log-Any to 1.03.2
Updated devel/p5-Mixin-Linewise to 0.108
Updated devel/p5-Module-CoreList to 5.20150320
Updated devel/p5-MooX-Log-Any to 0.004002
Updated devel/p5-MooseX-App to 1.32
Updated devel/p5-MooseX-Types-Common to 0.001013
Updated devel/p5-MooseX-Types-Structured to 0.33
Updated devel/p5-MouseX-Getopt to 0.36
Updated devel/p5-Net-Netmask to 1.9021
Updated devel/p5-PPIx-Regexp to 0.039
Updated devel/p5-Perl-PrereqScanner to 1.023
2015-04-10 01:42:26 +00:00
mef
93fba26426 Update to 1.023
---------------
1.023     2015-04-05 22:23:53-04:00 America/New_York
  - improve test reliability when path to perl has a space in it
2015-04-10 01:41:06 +00:00
mef
65c9969ad1 Update to 0.039
----------------
0.039           2015-04-02      T. R. Wyant
  No changes since 0.038_01.

0.038_01        2015-03-26      T. R. Wyant
  Recognize nested subscripts in interpolation.
    Thanks to Andy Lester for finding this, which actually manifested in
    Perl-Critic-Policy-Variables-ProhibitUnusedVarsStricter. The problem is
    that the actual heuristics for finding the end of an interpolation are
    undocumented, and I missed this rather-obvious case.
  Add \b{g} (= \b{gcb})
2015-04-10 01:37:43 +00:00
mef
214cce3982 Update 1.9016 to 1.9021
-----------------------
1.9021 2014-07-17

 - Spelling fix in documentation.

1.9019 2013-10-01

 - Rename $b to $bits so that netmask can be sorted.  Change mostly
   from https://rt.cpan.org/Ticket/Display.html?id=76939

1.9018 2013-09-26

 - Minor MANIFEST fix.

1.9017 2013-09-20

 - Add network split() function.
 - Re-arrange the distribution a bit.
2015-04-10 01:34:01 +00:00
hiramatsu
e7f7b2dc88 Regenerate patch checksum. 2015-04-10 01:32:16 +00:00
mef
67430c6fe1 (pkgsrc)
- Add "PERL5_MODULE_TYPE= Module::Build"
(upstream)
 - Update 0.34 to 0.36
----------------------
0.36 2015-04-02T00:04:11Z
  * Fix tests that follow GLD changes (#6)

0.35 2014-03-10T07:02:02Z

  * GLD 0.097 no longer defaults to no_ignore_case
    https://rt.cpan.org/Public/Bug/Display.html?id=93593
    See also
    https://github.com/moose/MooseX-Getopt/commit/c8459ee3ab47cdd7e0b1ccde1787f
2015-04-10 01:31:48 +00:00
mef
c5cd63327f Update 0.30 to 0.33
-------------------
0.33    2015-04-01 17:10:23Z
        - avoid using a method installer in the main importer, to avoid
          removing subs' blessedness (RT#103247)

0.32    2015-03-28 21:39:38Z
        - fix namespace cleaning with older MooseX::Types

0.31    2015-03-28 21:08:14Z
        - various misc distribution and packaging cleanup
2015-04-10 01:26:14 +00:00
mef
a9e287ec64 Delete unnecessary MASTER_SITES line, use to check simple shape, but failed. 2015-04-10 01:24:05 +00:00
mef
3f7b2dbb78 Update to 0.001013
------------------
0.001013  2015-03-28 22:16:00Z
  - better fix for fully-qualified type names, made to MooseX::Types directly
  - whitespace is now permitted in the NumericCode type (Denis Ibaev)
2015-04-10 01:21:14 +00:00
mef
307746881b Update to 1.32
--------------
1.32 2015-?-?  (2015-03-22)
    - Improved Term Plugin (History, Delete, Pasting, Pos1/End, Cursors)
    - Documentation
    - Added app_command_register
    - Errors are now printed on STDERR
    - Disable fuzzy match for single letter parameters
    - Use proper exitcodes if errors occur
    - Add tests for subprocesses
    - Add MutexGroup plugin (implemented by Hunter McMillen)
    - Add Depends plugin (implemented by Hunter McMillen)
2015-04-10 01:19:13 +00:00
mef
9f1a791162 Update to 0.004002
------------------
0.004002  2015-04-07 11:19:55-04:00 America/New_York
  - Removed double version
  - Added compile test
2015-04-10 01:17:02 +00:00
mef
80e70e73c0 Update to 5.20150320
--------------------
5.20150320
  - Updated for v5.21.10
2015-04-10 01:15:15 +00:00
mef
8f90842c8e Update 0.106 to 0.108
---------------------
0.108     2015-04-08 14:56:06-04:00 America/New_York
        - first argument can be options only if there are two options

0.107     2015-04-07 20:14:41-04:00 America/New_York
        - add leading hashref arg for passing binmode to read_string,
          write_string
        - do not modify references of args passed to read_file, write_file
2015-04-10 01:13:12 +00:00
mef
0fbcd68bd3 Update 1.03 to 1.032 (PKGVERSION set to 1.03.2)
---------------------
1.032     2015-03-26 17:23:37-04:00 America/New_York
    - no changes from 1.031

1.031     2015-03-26 06:08:17-04:00 America/New_York (TRIAL RELEASE)
    [Fixed]
    - Log::Any::Adapter::Test passed through all constructor arguments,
      which could be fatal when mocking adapters without all key-value
      pairs (like Log::Any::Adapter::File); now this only passes through
      the category and ignores other parameters when used as an
      adapter class override.
2015-04-10 01:08:07 +00:00
mef
273f247c48 Update 0.007 to 0.009
---------------------
version 0.009; 2015-03-20

  * in test of require for version checking, work around [perl #124135]
    which was introduced in Perl 5.21.4

version 0.008; 2015-03-20

  * bugfix: don't localise hints around a version-number require, so that
    "use v5.10.0" can have its intentional effect of setting feature flags

  * bugfix: in pure Perl implementation, use a ($) prototype on
    CORE::GLOBAL::require, so that the argument expression will be in
    the correct context

  * better error message for refusing to use pure Perl implementation
    on Perl 5.9.4 to 5.10.0

  * document that the pure Perl implementation breaks the use of the
    implicit $_ parameter with require

  * in swash test, don't fail if utf8.pm was loaded unexpectedly early,
    as has been seen to happen on some systems

  * test idempotence

  * fix test for thread safety, which risked false negatives

  * when preemptively loading Carp and Carp::Heavy, avoid the Perl core
    bug regarding the context applied to file scope of required modules,
    in case of future versions of those modules becoming vulnerable and
    running on an old Perl

  * declare correct version for Test::More dependency

  * typo fix in documentation

  * typo fix in a comment
2015-04-10 01:03:20 +00:00
mef
66dd1fa386 Update 1.13 to 1.15
-------------------
1.15 Tue Mar 11 14:00:00 CET 2015
        - Move untie patch to the right place.

1.14 Mon Mar 30 11:00:00 CET 2015
        - Fix 110_ntest to avoid reading from muxed handle.
        - Apply patch to prevent untie warnings.
          rt.cpan.org#67846 [dmcbridepath@cpan.org Darin McBride]
2015-04-10 00:59:47 +00:00
rodent
5e95cf88ad GCC_REQD+=4.4, because 4.2 can't build it due to the package needing
omp_lock_t.
2015-04-10 00:32:08 +00:00
wiz
9d36171f7e + icecast-2.4.2. 2015-04-09 21:35:51 +00:00
tron
978218e8a4 Apply Clang changes slightly later to avoid interfering with patch
(re-)generation.
2015-04-09 17:44:01 +00:00
tron
760bbd2d34 Improve Clang build fix and use it under Mac OS X as well. The problem
is specific to the verion of Clang (3.5 and newer) and not the platform.

This package now builds under Mac OS X Yosemite with the latest version
of Xcode tools.
2015-04-09 17:09:01 +00:00
abs
d8f37cfbbc Fix PLIST with options lua enabled 2015-04-09 17:01:31 +00:00
manu
f12b630a9e Updated filesystems/glusterfs to 3.6. 2015-04-09 15:35:01 +00:00
manu
c1eb49606d Update glusterfs to 3.6.2
This is a maintenance release, complete Changelog can be found here:
http://blog.gluster.org/2015/01/glusterfs-3-6-2-ga-released/
2015-04-09 15:20:47 +00:00
wiz
cd448f1497 Add comments for PYTHON_VERSIONS_INCOMPATIBLE. 2015-04-09 11:56:15 +00:00
wiz
30f0875d40 Updated emulators/suse131_32_gtk2 to 13.1nb6 2015-04-09 10:40:34 +00:00
wiz
709e0d0148 Updated emulators/suse131_gtk2 to 13.1nb6 2015-04-09 10:40:24 +00:00
wiz
799621207f Add shared-mime-info rpm to gtk2 emulation package. This matches
what suse121_gtk2 does and fixes the first part of PR 48666, as
Nicolas Joly found out.

Run update-mime-database in INSTALL, and add an appropriate cleanup
rule to DEINSTALL.

Bump PKGREVISION.
2015-04-09 10:40:12 +00:00
hiramatsu
605150daef Updated sysutils/duplicity to 0.6.25. 2015-04-09 10:17:25 +00:00
hiramatsu
dee3618b99 Update duplicity to 0.6.25.
Changes from previous:

New in v0.6.25 (2014/10/20)
---------------------------
Enhancements:
* Add deprecation warning for 0.6 series
* Merged in lp:~ed.so/duplicity/0.6-dpbx.importfix
  - fix this showstopper with the dropbox backend
    "NameError: global name 'rest' is not defined"
* Merged in lp:~jflaker/duplicity/BugFix1325215
  - The reference to "--progress_rate" in the man page as a parameter is
    incorrect. Should be "--progress-rate".
* Merged in lp:~hooloovoo/duplicity/updated-README-REPO
  - Changes to README-REPO to reflect the restructuring of the directories.
* Fixed bug 1375304 with patch supplied by Aleksandar Ivanovic
* Merged in lp:~ed.so/duplicity/webdav200fix-0.6
  - webdav backend fix "BackendException: Bad status code 200 reason OK. " when
    restarting an interrupted backup and overwriting partially uploaded volumes.
* Merged in lp:~antmak/duplicity/0.6-par2-fix
  - Useful fix for verbatim par2cmdline options (like "-t" in par2-tbb version)
* Merged in lp:~jon-haggblad/duplicity/ftps-fix
  - Minor bugfix for ftps backend where lftp needs host prefixed by "ftps://".
* Fixed bug 1327550: OverflowError: signed integer is greater than maximum
  - Major and minor device numbers are supposed to be one byte each.  Someone
    has crafted a special system image using OpenVZ where the major and minor
    device numbers are much larger (ploop devices).  We treat them as (0,0).
* Merged in lp:~jon-haggblad/duplicity/ftps-fix (2nd try)
  - Minor bugfix for ftps backend where lftp needs host prefixed by "ftps://".
* Merged in lp:~johnleach/duplicity/1315437-swift-container-create
  - Check to see if the swift container exists before trying to create it,
    in case we don't have permissions to create containers. Fixes #1315437
2015-04-09 10:16:35 +00:00