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 (10m)  pkgsrc-2024Q1 (6d)  pkgsrc-2023Q4 (52d)  pkgsrc-2023Q2 (85d)  pkgsrc-2023Q3 (164d) 

2024-05-23 14:47:38 UTC Now

2011-03-11 12:08:05 UTC MAIN commitmail json YAML

remove dead mirrors. update master_sites.

(zafer)

2011-03-11 12:07:46 UTC MAIN commitmail json YAML

Updated games/puzzles to 9109

(wiz)

2011-03-11 12:07:36 UTC MAIN commitmail json YAML

Update to 9109: new grid types, not used yet. Bug fixes.

(wiz)

2011-03-11 12:04:00 UTC MAIN commitmail json YAML

Updated devel/libgnomeui to 2.24.5

(wiz)

2011-03-11 12:03:50 UTC MAIN commitmail json YAML

Update to 2.24.5:

libgnomeui 2.24.5

* Fix typo (G_TYPE_INSTANCE_CHECK_TYPE -> G_TYPE_CHECK_INSTANCE_TYPE)
  (Piotr Eljasiak)

* New and updated translations
  (ca@valencia, et, lu, ug, zh_CN, zh_TW)

(wiz)

2011-03-11 12:02:50 UTC MAIN commitmail json YAML

Add user-destdir installation support.

(obache)

2011-03-11 11:56:33 UTC MAIN commitmail json YAML

Updated devel/cfitsio to 3.270

(wiz)

2011-03-11 11:56:06 UTC MAIN commitmail json YAML

Update to 3.270, set LICENSE:

Version 3.27 - 3 March 2011

  Enhancements

    - added new routines fits_read_str and fits_delete_str which read or
      delete, respectively, a header keyword record that contains a specified
      character string.

    - added a new routine call fits_free_key_longstr which frees the memory
      that fits_read_key_longstr allocated for the long string keyword value.

    - enhanced the ffmkky routine in fitscore.c to not put a space before the
      equals sign when writing long string-valued keywords using the ESO
      HIERARCH keyword convension, if that extra character is needed to
      fit the length of the keyword name + value string within the 80-character
      FITS keyword record.

    - made small change to fits_translate_keyword to support translation of
      blank keywords (where the name = 8 blank chracters)

    - modified fpack so that it uses the minimum of the 2nd, 3rd, and 5th order
      MAD noise values when quantizing and compressing a floating point image.
      This is more conservative than just using the 3rd order MAD value alone.

    - added new routine imcomp_copy_prime2img to imcompress.c that is used by
      funpack to copy any keywords that may have been added to the primary
      array of the compressed image file (a null image) back into the header of
      the uncompressed image.

    - enhanced the fits_quantize_float and fits_quantize_double routines in
      quantize.c to also compress the tile if it is completely filled with
      null values.  Previously, this type of tile would have been written
      to the output compressed image without any compression.

    - enhanced imcomp_decompress_tile to support implicit datatype conversion
      when reading a losslessly compressed (with gzip) real*4 image into an
      array of real*8 values.

Version 3.26 - 30 December 2010

  Enhancements

  - defined 2 new macros in fitsio.h:
      #define CFITSIO_MAJOR 3
      #define CFITSIO_MINOR 26
    These may be used within other macros to detect the CFITSIO
    version number at compile time.

  - modified group.c to initialize the output URL to a null string in
    fits_url2relurl.  Also added more robust tests to see if 2 file
    pointers point to the same file.

  - enhanced the template keyword parsing code in grparser.c to support
    the 'D' exponent character in the ASCII representation of floating
    point keyword values (as in TVAL = 1.23D03).  Previously, the parser
    would have writen this keyword with a string value (TVAL = '1.23D03').

  - modified the low-level routines that write a keyword record to a FITS
    header so that they silently replace any illegal characters (ASCII
    values less than 32 or greater than 126) with an ASCII space character.
    Previously, these routines would have returned with an error when
    encountering these illegal characters in the keyword record (most commonly
    tab, carriage return, and line feed characters).

  - made substantial internal changes to imcompress.c in preparation for
    possible future support for compression methods for FITS tables analogous
    to the tiled image compression method.

  - replaced all the source code in CFITSIO that was distributed under the
    GNU General Public License with freely available code.  In particular,
    the  gzip file compression and uncompression code was replaced by the
    zlib compression library.  Thus, beginning with this version 3.26 of CFITSIO,
    other software applications may freely use CFITSIO without necessarily
    incurring any GNU licensing requirement.  See the License.txt file for
    the CFITSIO licensing requirements.

  - added support for using cfitsio in different 'locales' which use a
    comma, not a period, as the decimal point character in ASCII
    representation of a floating point number (e.g., France).  This
    affects how floating point keyword values and floating point numbers
    in ASCII tables are read and written with the 'printf' and 'strtod'
    functions.

  - added a new utility routine called fits_copy_rows/ffcprw that copies
    a specified range of rows from one table to another.

  - enhanced the test for illegal ASCII characters in a header (fftrec) to
    print out the name of the offending character (e.g TAB or Line Feed) as
    well as the Hex value of the chracter.

  - modified ffgtbc (in fitscore.c) to support nonstandard vector variable
    length array columns in binary tables (e.g. with TFORMn = 2000PE(500)').

  - modified the configure file to add "-lm" when linking CFITSIO on
    Solaris machines.

  - added new routine, fits_get_inttype, to parse an integer keyword value
    string and return the minimum integer datatype (TBYTE, TSHORT, TLONG,
    TLONGLONG) required to store the integer value.

  - added new routine, fits_convert_hdr2str, which is similar to fits_hdr2str
    except that if the input HDU is a tile compressed image (stored
    in a binary table) then it will first convert that header back to
    that of a normal uncompressed FITS image before concatenating the header
    keyword records.

  - modified the file template reading routine (ngp_line_from_file in
    grparser.c) so that it ignores any carriage return characters (\r)
    in the line, that might be present, e.g. if the file was created on a
    Windows machine that uses \r\n as end of line characters.

  - modified the ffoptplt routine in cfileio.c to check if the PCOUNT
    keyword in the template file has a non-zero value, and if so, resets
    it to zero in the newly created file.

  Bug Fixes

  - fixed a bug when uncompressing floating-point images that contain Nan
    values on some 64-bit platforms.

  - fixed a bug when updating the value of the CRPIXn world coordinate
    system keywords when extracting a subimage from larger FITS image, using the
    extended CFITSIO syntax (e.g.  myimage[1:500:2, 1:500:2]).  This bug only
    affects casee where the pixel increment value is not equal to 1, and caused
    the coordinate grid to be shifted by between 0.25 pixels (in the case of
    a pixel increment of 2) and 0.5 pixels (for large pixel increment values).

  - fixed a potential string buffer overflow error in the ffmkls routine
    that modifies the value and comment strings in a keyword that uses
    the HEASARC long string keyword convention.

  - fixed a bug in imcompress.c that could cause programs to abort on 64-bit
    machines when using gzip to tile-compress images.  Changed the declaration
    of clen in imcomp_compress_tile from int to size_t.

Version 3.25 - 9 June 2010

  - fixed bug that was introduced in version 3.13 that broke the ability
    to reverse an image section along the y-axis with an image section
    specifier like this: myimage.fits[*,-*].  This bug caused the output
    image to be filled with zeros.

  - fixed typo in the definition of the ftgprh Fortran wrapper routine
    in f77_wrap3.c.

  - modified the cfitsio.pc.in configuration file to make the lib path
    a variable instead of hard coding the path.  The provides more
    flexibility for projects such as suse and fedora when building CFITSIO.

  - fixed bug in imcomp_compress_tile in imcompress.c which caused
    null pixel values to be written incorrectly in the rare case where
    the floating-point tile of pixels could not be quantized into integers.

  - modified imcompress.c to add a new specialized routine to uncompress
    an input image and then write it to a output image on a tile by tile basis.
    This appears to be faster than the old method of uncompressing the
    whole image into memory before writing it out.  It also supports
    large images with more than 2**31 pixels.

  - made trivial changes to 2 statements in drvrfile.c to suppress
    nuisance compiler warnings.

  - some compilers define CLOCKS_PER_SEC as a double instead of an integer,
    so added an explicted integer type conversion to 2 statements in
    imcompress.c that used this macro.

  - removed debugging printf statements in drvrnet.c (15 July)

Version 3.24 - 26 January 2010

  - modified fits_translate_keywords so that it silently ignores any
    illegal ASCII characters in the value or comment fields of the input
    FITS file. Otherwise, fpack would abort without compressing input
    files that contained this minor violation of the FITS rules.

  - added support for Super H cpu in fitsio2.h

  - updated funpack to correctly handle the -S option, and to use a
    more robust algorithm for creating temporary output files.

  - modified the imcomp_compress_tile routine to support the NOCOMPRESS
    debugging option for real*4 images.

Version 3.23 - 7 January 2010

  - reduced the default value for the floating point image quantization
    parameter (q) from 16 to 4.  This parameter is used when tile compressing
    floating point images.  This change will increase the average compression
    ratio for floating point images from about 4.6 to about 6.5 without losing
    any significant information in the image.

  - enhanced the template keyword parsing routine to reject a header
    template string that only contains a sequence of dashes.

  - enhanced the ASCII region file reading routine to allow tabs as well
    as spaces between fields in the file.

  - got rid of bogus error message when calling fits_update_key_longstr

  - Made the error message more explicit when CFITSIO tries to write
    to a GZIP compressed file.  Instead of just stating "cannot write
    to a READONLY file", it will say "cannot write to a GZIP compressed
    file".

Version 3.22 - 28 October 2009

  - added an option (in imcompress.c) to losslessly compress floating
    point images, rather than using the default integer scaling method.
    This option is almost never useful in practice for astronomical
    images (because the amount of compression is so poor), but it has
    been added for test comparison purposes.

  - enhanced the dithering option when quantizing and compressing
    floating point images so that a random dithering starting point
    is used, so that the same dithering pattern does not get used for
    every image.

  - modified the architecture setup section of fitsio2.h to support the
    64-core 8x8-architecture Tile64 platform (thanks to Ken Mighell, NOAO)

  Fixes

  - fixed a problem that was introduced in version 3.13 of CFITSIO
    in cases where a program writes it own END keyword to the header
    instead of letting CFITSIO do it, as is strongly recommended.  In
    one case this caused CFITSIO to rewrite the END keyword and any
    blank fill keywords in the header many times, causing a
    noticeable slow-down in the FITS file writing speed.

Version 3.21 - 24 September 2009

  - fixed bug in cfileio.c  that caused CFITSIO to crash with a bus error
    on Mac OS X if CFITSIO was compiled with multi-threaded support (with
    the  --enable-reentrant configure option). The Mac requires an
    additional thread initialization step that is not required on Linux
    machines.  Even with this fix, occasional bus errors have been seen on
    some Mac platforms, The bus errors are seen when running the
    thread_test.c program.  The bus errors are very intermittent, and occur
    less than about 1% of the time, on the affected platforms.
    These bus errors have not been seen on Linux platforms.

  - fixed invalid C comment delimiter ("//*" should have been "/*")
    in imcompress.c.

  - Increased the CFITSIO version number string length
    in fpackutil.c, to fix problem on some platforms when running
    fpack -V or funpack -V.  Also modified the output format of the
    fpack -L command.

Version 3.20 - 31 August 2009

  - modified configure.in and configure so that it will build the Fortran
    interface routines by default, even if no Fortran compiler is found
    in the user's path. Building the interface routines may be disabled
    by specifying FC="none".  This was done at the request of users who
    obtained CFITSIO from some other standard linux distributions, where
    CFITSIO was apparently built in an environment that had no Fortran
    compiler and hence did not build the Fortran wrappers.

  - modified ffchdu (close HDU) so that it calls the routine to update
    the maximum length of variable length table columns in the TFORM
    values in all cases  where the values may have changed.  Previously
    it would not update the values if a value was already specified in
    the TFORM value.

  - added 2 new string manipulation functions to the CFITSIO parser
    (contributed by Craig Markwardt): strmid extracts a substring
    from a string, and strstr searches for a substring within a string.

  - removed the code in quantize.c that treated "floating-point integer"
    images as a special case (it would just do a datatype conversion from
    float to int, and not otherwise quantize the pixel values).  This
    caused complications with the new subtractive dithering feature.

  - enhanced the code for converting floating point images to quantized
    scaled integer prior to tile-compressing them, to apply a random
    subtractive dithering, which improves the photometric accuracy
    of the compressed images.

  - added new internal routine, iraf_delete_file, for use by fpack to
    delete a pair of IRAF format header and pixel files.

  - small change in cfileio.c in the way it recognizes an IRAF format
    .imh file.  Instead of just requiring that the filename contain the
    ".imh" string, that string must occur at the end of the file name.

  - fixed bug in the code that is used when tile-compressing real*4 FITS
    images, which quantizes the floating point pixel values into
    integer levels.  The bug would only appear in the fairly rare
    circumstance of tile compressing a floating point image that contains
    null pixels (NaNs) and only when using the lossy Hcompress algorithm
    (with the s parameter not equal to 1).  This could cause underflow of
    low valued pixels, causing them to appear as very large pixel values
    (e.g., > 10**30)  in the compressed image

  - changed the "if defined" blocks in fitsio.h, fitsio2.h and f77_wrap.h
    to correctly set the length of long variables on sparc64 machines.
    Patch contributed by Matthew Truch (U. Penn).

  - modified the HTTP file access code in drvrnet.c to support basic
    HTTP authentication, where the user supplies a user name and
    password.  The CFITSIO filename format in this case is:
    "http://username:password@hostname/..."
    Thanks to Jochen Liske (ESO) for the suggestion and the code.

Version 3.181 (BETA) - 12 May 2009

  - modified region.c and region.h to add support for additional
    types of region shapes that are supported by ds9: panda, epanda,
    and bpanda.

  - fixed compiler error when using the new _REENTRANT flag, having to
    do with the an attempted static definition of Fitsio_Lock in
    several source files, after declaring it to be non-static in fitsio2.h.

Version 3.18 (BETA) - 10 April 2009

  - Made extensive changes to make CFITSIO thread safe.  Previously,
    all opened FITS files shared a common pool of memory to store
    the most recently read or written FITS records in the files.
    In a multi-threaded environment different threads could
    simultaneously read or write to this common area causing
    unpredictable results. This was changed so that every opened
    FITS file has its own private memory area for buffering the
    file. Most of the changes were in buffers.c, fitsio.h, and
    fitsio2.h. Additional changes were made to cfileio.c, mainly
    to put locks around small sections of code when setting up the
    low-level drivers to read or write the FITS file.  Also, locks
    were needed around the GZIP compression and uncompression code
    in compress.c.,  the error message stack access routine in
    fitscore.c, the encode and decode routines in fits_hcompress.c
    and  fits_hdecompress.c, in ricecomp.c,  and  the table row
    selection and table calculator functions. Also, removed the
    'static' declaration of the local variables in pliocomp.c
    which did not appeared to be required and prevented the
    routines from being thread safe.

    As a consequence of having a separate memory buffer for every
    FITS file (by default, about 115 kB per file), CFITSIO may now
    allocate more memory than previously when an application
    program opens multiple FITS files at once.  The read and write
    speed may also be slightly faster, since the buffers are not
    shared between files.

  - Added new families of Fortran wrapper routines to read and
    write values to large tables that have more than 2**31 rows.
    The arguments that define the first row and first element to
    read or write must be I*8 integers, not ordinary I*4
    integers.  The names of these new routines have 'LL' appended
    to them, so for example, ftgcvb becomes ftgcvbll.

  Fixes

  - Corrected an obscure bug in imcompress.c that would have incorrectly
    written the null values only in the rare case of writing a signed
    byte array that is then tile compressed using the Hcompress or PLIO
    algorithm.

Version 3.14 - 18 March 2009

  Enhancements

  - modified the tiled-image compression and uncompression code to
    support compressing unsigned 16-bit integer images with PLIO.
    FITS unsigned integer arrays are offset by -32768, but the PLIO
    algorithm does not work with negative integer values.  In this
    case, an offset of 32768 is added to the array before compression,
    and then subtracted again when reading the compressed array.
    IMPORTANT NOTE:  This change is not backward compatible, so
    these PLIO compressed unsigned 16-bit integer images will not be
    read correctly by previous versions of CFITSIO; the pixel values
    will have an offset of +32768.

  - minor changes to the fpack utility to print out more complete
    version information with the -V option, and format the report
    produced by the -T option more compactly.

  Fixes

  - Modified imcomp_compress_image (which is called by fpack) so that
    it will preserve any null values (NaNs) if the input image has
    a floating point datatype (BITPIX = -32 or -64).  Null values in
    integer datatype images are handled correctly.

  - Modified imcomp_copy_comp2img so that it does not copy the
    ZBLANK keyword, if present, from the compressed image header
    when uncompressing the image.

  - Fixed typo in the Fortran wrapper macro for the ftexist function.

Version 3.13 -  5 January 2009

  Enhancements

  - updated the typedef of LONGLONG in fitsio.h and cfortran.h to
    support the Borland compiler which uses the  __int64 data type.

  - added new feature to the extended filename syntax so that when
    performing a filtering operation on specified HDU, if you add
    a '#' character after the name or number of the HDU, then ONLY
    that HDU (and the primary array if the HDU is a table) will be
    copied into the filtered version of the file in memory.  Otherwise,
    by default CFITSIO copies all the HDUs from the input file into
    memory.

  - when specifying a section, if the specified number of dimensions
    is less than the number of dimensions in the image, then CFITSIO
    will use the entire dimension, as if a '*' had been specified.
    Thus [1:100] is equivalent to [1:100,*] when specifying a section
    of 2 dimensional image.

  - modified fits_copy_image_section to read/write the section 1 row
    at a time, instead of the whole section, to reduce memory usage.

  - added new stream:// drivers for reading/writing to stdin/stdout.
    This driver is somewhat fragile, but for simple FITS read and
    write operations this driver streams the FITS file on stdin
    or stdout without first copying the entire file in memory, as is
    done when specifying the file name as "-".

  - slight modification to ffcopy to make sure that the END keyword
    is correctly written before copying the data.  This is required
    by the new stream driver.

  - modified ffgcprll, so that when writing data to an HDU, it first
    checks that the END keyword has been written to the correct place.
    This is required by the new stream driver.

  Fixes

  - fixed bug in ffgcls2 when reading an ASCII string column in binary
    tables in cases where the width of the column is greater than 2880
    characters and when reading more than 1 row at a time.  Similar
    change was made to ffpcls to fix same problem with writing to
    columns wider than 2880 characters.

  - updated the source files listed in makepc.bat so that it can be
    used to build CFITSIO with the Borland C++ compiler.

  - fixed overflow error in ffiblk that could cause writing to Large Files
    (> 2.1 GB) to fail with an error status.

  - fixed a bug in the spatial region code (region.c) with the annulus
    region.  This bug only affected specialized applications which
    directly use the internal region structure; it does not affect
    any CFITSIO functions directly.

  - fixed memory corruption bug in region.c that was triggered if the
    region file contained a large number of excluded regions.

  - got rid of a harmless error message that would appear if filtering
    a FITS table with a GTI file that has zero rows. (eval_f.c)

  - modified fits_read_rgnfile so that it removes the error messages
    from the error stack if it is unable to open the region file as
    a FITS file. (region.c)

Version 3.12 - 8 October 2008

  - modified the histogramming code so that the first pixel in the binned
    array is chosen as the reference pixel by default, if no other
    value is previously defined.

  - modified ffitab and ffibin to allow a null pointer to the
    EXTNAME string, when inserting a table with no name.

Version 3.11 - 19 September 2008

  - optimized the code when tile compressing real*4 images (which get
    scaled to integers).  This produced a modest speed increase.  For
    best performance, one must specify the absolute q quantization
    parameter, rather than relative to the noise in the tile (which
    is expensive to compute).

  - modified the FITS region file reading code to check for NaN values,
    which signify the end of the array of points in a polygon region.

  - removed the test for LONGSIZE == 64 from fitsio.h, since it may
    not be defined.

  - modified imcompress.c to support unconventional floating point FITS
    images that also have BSCALE and BZERO keywords.  The compressed
    floating point images are linearly scaled twice in this case.

(wiz)

2011-03-11 11:48:40 UTC MAIN commitmail json YAML

service suspended. prevent timeout. fetch from backup.

(zafer)

2011-03-11 11:47:28 UTC MAIN commitmail json YAML

ftp service suspended. fetch from master_sites_backup.

(zafer)

2011-03-11 11:44:38 UTC MAIN commitmail json YAML

ftp service suspended. fetch from backup. prevent time out.

(zafer)

2011-03-11 11:42:46 UTC MAIN commitmail json YAML

ftp service suspended. fetch from backup.

(zafer)

2011-03-11 11:42:35 UTC MAIN commitmail json YAML

Add options.mk file, split off during 2.32.1 update.

(wiz)

2011-03-11 11:41:35 UTC MAIN commitmail json YAML

Updated devel/libgnome to 2.32.1

(wiz)

2011-03-11 11:41:24 UTC MAIN commitmail json YAML

Update to 2.32.1. Set LICENSE.

Changes: translation updates.

Also remove patch for Darwin that's been here since 2004. I can't believe
it's still necessary.

(wiz)

2011-03-11 11:40:37 UTC MAIN commitmail json YAML

service suspended. fetch from backup.

(zafer)

2011-03-11 11:36:28 UTC MAIN commitmail json YAML

* set LICENSE=gnu-gpl-v2
* add user-destdir installation support.

(obache)

2011-03-11 11:32:47 UTC MAIN commitmail json YAML

remove dead mirror from list.

(zafer)

2011-03-11 11:29:42 UTC MAIN commitmail json YAML

service suspended. prevent time out. fetch from backup.

(zafer)

2011-03-11 11:27:13 UTC MAIN commitmail json YAML

2011-03-11 11:25:36 UTC MAIN commitmail json YAML

Updated devel/libidn to 1.20

(wiz)

2011-03-11 11:25:27 UTC MAIN commitmail json YAML

Update to 1.20:

* Version 1.20 (released 2011-03-01) [?]

** libidn: Fix bug in ToUnicode to compare 'xn--' case-insensitively.
The problem is typically noticed when an upper ACE case string is
converted to Unicode.  Before, this would return the input rather than
converting the ACE form to Unicode.  Reported by Stepan Golosunov
<stepan@golosunov.pp.ru> in <http://bugs.debian.org/610617>.

** tests: Added self-test tst_idna3 to catch any regression of problem above.

** idn: Only print copyright and license blurb when used interactively.
Reported by "Andrew O. Shadoura" <bugzilla@tut.by> and Roman Mamedov
<rm@romanrm.ru> in <http://bugs.debian.org/615947> and
<http://bugs.debian.org/615949> respectively.

** Update gnulib files and translations.

** API and ABI is backwards compatible with the previous version.

(wiz)

2011-03-11 11:24:34 UTC MAIN commitmail json YAML

service suspended. fetch from backup.

(zafer)

2011-03-11 11:22:22 UTC MAIN commitmail json YAML

service suspended. fetch from backup.

(zafer)

2011-03-11 11:19:55 UTC MAIN commitmail json YAML

service suspended. fetch from backup.

(zafer)

2011-03-11 11:06:40 UTC MAIN commitmail json YAML

Updated multimedia/farsight2 to 0.0.26

(wiz)

2011-03-11 11:06:30 UTC MAIN commitmail json YAML

Update to 0.0.26:

    Version 0.0.26
    rawconference: Correctly check if thread is internal
    rawstream: Don't start sending before having codecs
    rawsession: Only manipulate the valve from the session itlsef
    rawsession: Simplify transform bins creation
    rawsession: Remove g_debug
    rawsession: Unref the right object
    rawsession: Only remove sink if it has been added
    rtpconference: Correctly check if a thread is internal

    rtpstream: Fix reference leak in fs_rtp_stream_set_negotiated_codecs_unlock()
    Keep a ref to the fakesink
    fsrawconference: Make the construction more consistent

    In the construction of a raw session we add a bunch of elements. For all
    elements unref them in _constructed if adding them to the bin fails, for
    all other failures, leave it to the _dispose function to remove and
    unref the elements

    Use full prefix, even for private functions

    Add a transformation bin the source pipeline

    As upstream negotiation in Gstreamer still doesn't actually work, we'll
    need to change transform elements around every time the caps are changed
    as that will cause a re-negotiation and things will keep working..

    Unfortunately managing dynamic pipelines has its own challenges, so add
    a tee ! fakesink which will eat all the errors for us...

    fsrawconference: Make fsrawstream explicitely ask the session to set the direction
    fsrawconference: Cope with fs_raw_session_new returning NULL

(wiz)

2011-03-11 11:01:35 UTC MAIN commitmail json YAML

2011-03-11 11:01:27 UTC MAIN commitmail json YAML

Update to 4.1.4:

--- 4.1.4 2011/02/21

yaz-client: show may XML format records. Command show followed by 'format'
will format XML records retrieved using Libxml2's xmlDocDumpFormatMemory
function.

src/stemmer.c: Avoid using unnamed union. It is not supported by some
older C compilers.

For PHPYAZ: set YAZVERSION, not YAZ_VERSION.

(wiz)

2011-03-11 10:59:44 UTC MAIN commitmail json YAML

Updated misc/dialog to 1.1.20110302

(wiz)

2011-03-11 10:59:35 UTC MAIN commitmail json YAML

Update to 1.1.20110302:

2011/03/02
+ add --prgbox and --programbox (adapted from patch by David Boyd).
+ add sl.po from
http://translationproject.org/latest/dialog/
+ fix timeouts from 2011/01/18, which were being interpreted as
  milliseconds rather than seconds (report by Luis Moreira).

(wiz)

2011-03-11 10:57:13 UTC MAIN commitmail json YAML

Updated misc/JBidwatcher to 2.1.4.1

(wiz)

2011-03-11 10:57:03 UTC MAIN commitmail json YAML

Update to 2.1.4.1:

eBay made some surprising changes over the last week or so, removing the end date from a lot of their auction and fixed price listings. I had to scramble a little, but I came up with a way to handle it in the general case. Fixed price items now may show up as 窶蕨/a窶� as their end date, because it窶冱 just not visible to JBidwatcher. Other than that there窶冱 a few minor fixes, improving the UI in little ways, and continuing to try and improve speed. Thanks for your support, and best of luck with your auctions!

Changes

    * Fix breakage due to eBay removing the end-date from the title
    on many listings
    * Try to provide a safety-net for a potential sniping failure bug
    * Get eBay pages as compressed data for faster updating
    * Paste and Add Auction should add to the currently displayed tab/category
    * Allow Basic Authentication lines longer than 80 characters
    for My JBidwatcher support
    * Improve the look of JBidwatcher窶冱 minimized window under Mac OS X

(wiz)

2011-03-11 10:54:25 UTC pkgsrc-2010Q4 commitmail json YAML

2011-03-11 10:54:03 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3385 - requested by taca
mail/postfix-current: security update

Revisions pulled up:
- mail/postfix-current/MESSAGE patch
- mail/postfix-current/MESSAGE.sasl patch
- mail/postfix-current/Makefile patch
- mail/postfix-current/PLIST patch
- mail/postfix-current/distinfo patch
- mail/postfix-current/files/mailer.conf patch
- mail/postfix-current/patches/patch-aa patch
- mail/postfix-current/patches/patch-ag patch
- mail/postfix-current/patches/patch-ai patch
- mail/postfix-current/patches/patch-as patch
- mail/postfix-current/patches/patch-at deleted
- mail/postfix-current/patches/patch-au deleted
- mail/postfix-current/patches/patch-av deleted

---
Update "postfix-current" package to version 2.8.1:
  Postfix stable release 2.8.0 is available. This release continues the
  move towards improving code and documentation, and making the system
  better prepared for changes in the threat environment.

  The postscreen daemon (a zombie blocker in front of Postfix) is now
  included with the stable release. postscreen now supports TLS and can
  log the rejected sender, recipient and helo information. See the
  POSTSCREEN_README file for recommended usage scenarios.

  Support for DNS whitelisting (permit_rhswl_client), and for pattern
  matching to filter the responses from DNS white/blacklist servers
  (e.g., reject_rhsbl_client zen.spamhaus.org=127.0.0.[1..10]).

  Improved message tracking across SMTP-based content filters; the
  after-filter SMTP server can log the before-filter queue ID (the
  XCLIENT protocol was extended).

  Read-only support for sqlite databases. See sqlite_table(5) and
  SQLITE_README.

  Support for 'footers' that are appended to SMTP server "reject"
  responses. See "smtpd_reject_footer" in the postconf(5) manpage.

(tron)

2011-03-11 10:53:50 UTC MAIN commitmail json YAML

Updated finance/gnucash to 2.4.3

(wiz)

2011-03-11 10:53:39 UTC MAIN commitmail json YAML

Update to 2.4.3:

Changes between 2.4.2 and 2.4.3 include:

    * User-visible changes
  o Only show the Save As dialog at the end of the Hierarchy
  druid if it was called at the beginning of a new book,
  not when a hierarchy is added to from the actions menu.
  o Set a printer job name when printing reports and cheques
  o Update revision to 2.4.3
  o Fix invoice line ordering mismatch between register
  window and reports. The new code was missing the call to
  gncInvoiceSortEntries.
  o Add extra toolbar buttons as shortcuts for some business
  functions, "New Invoice" for now. The extra toolbar
  buttons are disabled until the user enables them manually
  in Preferences -> Business -> Extra buttons.
  o Implement command for changing the ordering of invoice
  entries by moving them up or down one row. Turned out
  this is rather easy: Just swap the "date-entered" of both
  items.
  o Fix r20272: The text selection after auto-completion
  should work correctly now.
  o Extend the addr2/addr3 auto-completion also to the
  shipping addr2/addr3 lines.
  o Implement auto-completion on the addr2/addr3 lines of
  the "New Customer" dialog box.
  o Fix missing copying of invoice currency on "Copy
  Invoice". Unfortunately this feature has been creating
  invoices with no currency set. This leads to weird amounts
  that have more digits than expected and don't sum up
  correctly, and it also triggers the warning dialog "One
  or more of the entries are for accounts different from
  the invoice/bill currency. (...)"
  o Minor tweaking of icon for duplicate invoice so that
  it doesn't look grayed out
    * Translation updates
    * Bugs fixed
  o Bug #635552: Rename "Financial Calculator" into "Loan
  Repayment Calculator" I've been told (by users who know
  the subject well enough) the "Financial Calculator" should
  rather be called a "Loan Repayment Calculator" or a
  "Mortgage Payment Calculator", as this is what is being
  offered there. So I finally made this renaming.
  o Bug #640357: Adding very limited Perl-Support for
  doxygen Adding Doxygen commands to the Perl-scripts in
  the sources I searched for every *.pl file in the GnuCash
  source and added Doxygen commands like @file, @brief,
  @author to better include them in doxygen. Patch by
  Christoph Holtermann.
  o Bug #640357: Adding very limited Perl-Support for
  doxygen There are a few Perl-scripts scattered through
  the GnuCash sources. This patch enables doxygen to
  interpret them so that they can be provided with information
  about author, date and so on. This is done by telling
  doxygen that their python-files. So python-comments can
  be used. The actual Perl-source is commented out by using
  @cond Perl ...PERL-CODE... @endcond Perl Patch by Christoph
  Holtermann
  o Bug #640347: Adding Example Skripts for historic Stock
  Quotes This patch adds the example skripts from
  http://wiki.gnucash.org/wiki/Stocks/get_prices to the
  directory python-bindings/example_scripts. Patch by
  Christoph Holtermann.
  o Bug #640328: This patch makes Transaction.GetSplitList
  and Account.GetSplitList return Split instances I changed
  gnucash_core.py so that GetSplitList methods of Transaction
  and Account return Split-instances so that the user
  doesn't need to call Split(instance=GetSplitList()[n]).
  I checked the examples and changed one either. Patch by
  Christoph Holtermann
  o Bug #639906: Changing the way __format__ works for
  Split and Transaction Patch by Christoph Holtermann
  o Bug #641832: Workaround to avoid the current crashes
  on windows. On win32 the queryf() calls below seem to
  crash. On the other hand, we know the used libdbi on
  windows is fine, so as a first workaround, we assume
  libdbi is safe.
  o Bug #642445 [PATCH] Segfault when tip_of_the_day.list
  is empty
  o Bug #642284: Fails to build on Ubuntu Natty Patch by
  Ahmed El-Mahmoudy.
  o Bug #641832: Use g_strdup_printf() instead of
  dbi_conn_queryf() to format the query; the latter crashed
  msvcrt. Also reverts r20287 because the root bug is fixed.
  o Bug #641909: Fix broken price scatter plot The report
  was unknowingly broken by the move of one function in
  r20209 namely gnc-locale-default-iso-currency-code from
  app-utils to core-utils, and somehow this needs a re-export
  in the core-utils.scm declaration. (I don't know why.
  For me, this confirms again this whole scheme plugin
  stuff sucks, royally.)
    * Other code/build changes
  o Tag 2.4.3
  o Re-indentation of source code.
  o Really fix conditional configure test for gtkmm.
  o Add optional module that compiles with gtkmm, i.e. in
  C++. This was just a crazy idea, but it turns out to be
  extremely easy. This can be used as a place for new GUI
  elements which people prefer to write in gtkmm/C++ instead
  of C. It's disabled by default. Use configure --enable-gtkmm
  to enable it.
  o Fix const-correctness of gnc-module interface.
  o Add missing run-time typechecks in new code.
  o Fix CRIT gtk warning if the old_page_long_name was NULL
  but still passed to g_strrstr.
  o Add accessor of GtkUIManager in GncMainWindow.
  o QofSession: Don't push a new generic error if there's
  already one available that might be more descriptive.
  o Remove no-longer-correct warning about the aqbanking5
  setup wizard not being implemented: It is.
  o Add a Timespec constructor for the current clock time.
  o Fix potential parsing of NULL strings by correctly use
  an empty non-NULL string instead.
  o Another error message somewhat more verbose.
  o Make log warning about bad gnc_numeric print the actual
  error code.
  o Add address auto-completion of r20272 also for address
  line 4.
  o Add a common shared quickfill object for the addr2/addr3
  lines of a GncAddress.
  o Minor code cleanup - remove includes from header if
  not necessary.
  o Fix CRIT error message on program quit in the aqbanking
  module.

(wiz)

2011-03-11 10:52:26 UTC MAIN commitmail json YAML

service suspended. fetch from master_sites_backup.

(zafer)

2011-03-11 10:51:02 UTC MAIN commitmail json YAML

service suspended. fetch from backup.

(zafer)

2011-03-11 10:48:08 UTC MAIN commitmail json YAML

service supended. fall back to master_sites_backup.

(zafer)

2011-03-11 10:45:50 UTC MAIN commitmail json YAML

service discontinued (> 2 years ago). prevent time out. fetch from master_sites_backup.

(zafer)

2011-03-11 10:42:14 UTC MAIN commitmail json YAML

update master_sites. remove non-working mirror.

(zafer)

2011-03-11 10:39:33 UTC MAIN commitmail json YAML

service discontinued. prevent timeout. fetch from backup.

(zafer)

2011-03-11 10:38:14 UTC MAIN commitmail json YAML

service discontinued long time ago. fetch from backup to prevent time out.

(zafer)

2011-03-11 10:33:21 UTC MAIN commitmail json YAML

service discontinued. prevent time out. fetch from backup.

(zafer)

2011-03-11 10:32:20 UTC MAIN commitmail json YAML

service discontinued. prevent time out. fetch from backup.

(zafer)

2011-03-11 10:29:44 UTC MAIN commitmail json YAML

revert previous. seems to work, but slow.

(zafer)

2011-03-11 10:24:35 UTC MAIN commitmail json YAML

service discontinued. prevent timeout. fetch from backup.

(zafer)

2011-03-11 10:21:40 UTC MAIN commitmail json YAML

service discontinued. fetch from backup.

(zafer)

2011-03-11 10:20:08 UTC MAIN commitmail json YAML

service discontinued. fetch from backup.

(zafer)

2011-03-11 10:18:13 UTC MAIN commitmail json YAML

service discontinued. fetch from backup.

(zafer)

2011-03-11 10:13:20 UTC MAIN commitmail json YAML

remove non-working mirror. prevent timing out. fetch from backup.

(zafer)

2011-03-11 10:13:04 UTC MAIN commitmail json YAML

Updated devel/mercurial to 1.8.1

(wiz)

2011-03-11 10:12:51 UTC MAIN commitmail json YAML

Update to 1.8.1:

This release backs out a behavior change for so-called 'fast-forward'
merges on named branches.

    * annotate: rewrite to deal with crossed linkrevs (issue2682)
    * bookmark: fix invalidation of localrepo._bookmarkcurrent
    * cacert: improve error report when web.cacert file does not exist
    * contrib: update tcsh_completion for Mercurial 1.8
    * hgcia: accept "queued." xmlrpc return as success
    * hgweb: fix filelog rss links generation
    * hgweb: use tip in gitweb/monoblue filelog rss links (issue2677)
    * merge: back out single-parent fast-forward merge
    * merge: drop resolve state for mergers with identical contents (issue2680)
    * merge: improve unresolved conflicts warning (issue2681)
    * mergetools: add alternate registry keys for 32bit apps on 64bit O/S
    * mq: forbid commit of merge involving mq patches
    * subrepo: backout 67fbe566eff1, --force requires svn >= 1.5
    * subrepo: don't crash when git repo is missing
    * subrepo: handle svn tracked/unknown directory collisions
    * wix: drop bin/ folder from MSI installers (issue2673)

(wiz)

2011-03-11 10:10:32 UTC MAIN commitmail json YAML

remove non-working mirror. prevent timing out.

(zafer)

2011-03-11 10:09:45 UTC MAIN commitmail json YAML

remove non-working mirror. prevent time out.

(zafer)

2011-03-11 10:07:26 UTC MAIN commitmail json YAML

service disabled since march 2010. prevent timing out by fetching from backup.

(zafer)

2011-03-11 09:59:57 UTC MAIN commitmail json YAML

service unavailable since july 2010. uncomment master_sites. fetch from backup.

(zafer)

2011-03-11 09:30:30 UTC MAIN commitmail json YAML

Updated devel/scmgit to 1.7.4.1

(adam)

2011-03-11 09:28:40 UTC MAIN commitmail json YAML

Changes 1.7.4.1:
* On Windows platform, the codepath to spawn a new child process forgot
  to first flush the output buffer.
* "git bundle" did not use OFS_DELTA encoding, making its output a few
  per-cent larger than necessarily.
* The option to tell "git clone" to recurse into the submodules was
  misspelled with an underscore "--recurse_submodules".
* "git diff --cached HEAD" before the first commit does what an end user
  would expect (namely, show what would be committed without further "git
  add").
* "git fast-import" didn't accept the command to ask for "notes" feature
  to be present in its input stream, even though it was capable of the
  feature.
* "git fsck" gave up scanning loose object files in directories with
  garbage files.

(adam)

2011-03-11 09:27:10 UTC MAIN commitmail json YAML

Changes 0.0.23:
* add support for detection of tail and gnu cp, do not hardcode /bin/bash
  initial value
* use those detected binaries instead of previously hardcoded ones
* use `type -t` bash shell builtin instead of `which` utility for detection
  of file availability
* new option --noautosize to prevent overriding of user-defined paper sizes

Changes 0.0.22:
* added experimental support for xhtml1 source format
* create tex and xhtml subpackage in spec file to reduce requirements for main
  package
* automated detection of programs path in configure, program/utility path
  could be passed to configure by variable, allowed selection of default
  backend and default webbrowser (just for requirements at the moment)
* check for missing tools/programs, fail if tool is not available
* fixed libpaper cleaning up
* xmllint validity check now with noent option
* fixed --stringparam option
* added some messages to easier detection of troubles, used different error
  codes for various situations
* fixed FSF addresses, xmlif now licensed under GPLv2+

(adam)

2011-03-11 07:30:14 UTC MAIN commitmail json YAML

Updated security/libksba to 1.2.0

(adam)

2011-03-11 07:22:05 UTC MAIN commitmail json YAML

Changes 1.2.0:
* New functions to allow the creation of X.509 certificates.
* Interface changes relative to the 1.1.0 release:
  ksba_certreq_set_serial          NEW
  ksba_certreq_set_issuer          NEW
  ksba_certreq_set_validity        NEW
  ksba_certreq_set_siginfo        NEW

(adam)

2011-03-11 07:20:45 UTC MAIN commitmail json YAML

2011-03-11 07:02:54 UTC MAIN commitmail json YAML

2011-03-11 07:02:38 UTC MAIN commitmail json YAML

Update net/lft to 3.31.

pkgsrc changes:
- Add LICENSE (lft-license)

Upstream changes:

lft 3.31 / WhoB 3.5
----------------------
- Added #define for AI_NUMERICSERV undeclared on some platforms/versions
- No other changes

lft 3.3 / WhoB 3.5
----------------------
- Improved LFT target detection behind firewalls
- Updated LFT for newer pcap version defaults
- WhoB ignores comments [#,;] in input files
- Added LFT option -f to specify fake source address
- Applied many, many, many fixes from Juli M. of USA -- Thanks!
- Applied many, many, many fixes from Markus Gothe of Sweden -- Thanks!

lft 3.2 / WhoB 3.2
----------------------
- Added support for 802.1q tagged VLANs
- Manual page corrections (thanks to Brett)
- WhoB will use Prefix WhoIs for bulk file resolution in
  Cymru-compatible format with '-c' but Cymru will be used
  with '-C'

lft 3.1 / WhoB 3.1
----------------------
- New configure options:
  --enable-gtod Forces LFT to use gettimeofday() on each packet instead of
  using the BPF timestamp. This is critical on platforms that have enabled
  'fastts' or that do not have high-precision BPF timestamping.
  --enable-universal generates binaries including both PPC and Intel architecture
  (for users running Mac OS X/Darwin)
- Improved compatibility with NetBSD and Darwin/Mac OS X
- Added autoconf support for NetBSD
- Improved compatibility with older compilers (thanks to Sean)
- Updated autoconf bits and pieces
- By popular request, reversed the -g option of WhoB
  WhoB now uses gigo mode by default unless -g is specified which turns
  ON its parser and enables the other various options

lft 3.0
----------------------
- Completely refactored and now a workable library
- LFT has a new (-b) TCP Basic trace method that makes TCP traces NAT-friendly
- LFT has a new (-p) ICMP trace method that uses echo requests to trace paths
- Many memory issues fixed
- Cleanup of several 2.6b5-3.0b features

lft 2.6 / WhoB 2.0
----------------------
- LFT prints 'open' in the target block if the target dest port is open
- LFT indicates the reason it marked ports open/closed in verbose(2) output
- LFT prints an asterisk when it retransmits a packet after a timeout
- LFT uses Prefix WhoIs (bulk) or RISWHOIS (bulk) for netname resolution
- LFT has a new (-u) traditional UDP-based tracing feature
- LFT displays start and finish times/dates when using the (-T) option
- LFT has a new (-U) feature to display all times in UTC/GMT0
- LFT only shows time spent tracing/resolving at verbosity level 1 or higher
- LFT sets the ToS bit on outgoing IP datagrams when (-I) option is used
- LFT gets timevals from packets instead of calling gettimeofday()
- LFT won't be fooled into thinking there's a firewall on a gateway just
  because adaptive mode ups the state waiting for replies that never come
- Improved LFT performance (removed gettimeofday() on each packet)
- WhoB/library uses Prefix WhoIs to resolve OrgNames and NetNames
- WhoB/library has improved support for RIPE NCC RIS and Prefix WhoIs
- WhoB supports bulk resolution (-f option) from an input file
- WhoB also supports one-per-line output (-cf option) from a bulk input file
- WhoB will use putenv() on Solaris who is missing setenv() to set TZ
- WhoB has a new (-g) feature to take input directly from the command line
  and print output directly from Prefix WhoIs (referred to as GIGO)
- Added $DESTDIR support to Makefile (thanks Daniel)
- Fixed an off-by-one bug in LFT related to ASN display encountered when
  a trace contains one or more neglected TTLs
- Numerous platform-specific improvements
- Reconfigured autoconf and segregated ./config/
- Updated autoconf components to v2.59

lft 2.5 / WhoB 1.5
----------------------
- Inclusive of betas 2.32 to 2.4x
- Added -z option to pseudo-randomize source port
- Added behavior to automatically select the most appropriate interface
  based on routing (this was on the most wanted list)
- Improved OpenBSD compatibility (IP length nonzero)
- OpenBSD is now detected by autoconf (for configuring the above)
- Darwin is now detected by autoconf and its definition disables
  some BSD features to make it compatible with MacOS X and Darwin
- LFT now indicates it has reached the target by printing a 'T'
  character in the status display (if status is enabled)
- Cleanups were made to the verbose output levels (-VVV)
- Significantly revamped whois framework makes it easy to include
  whois functionality into other programs
- Added -C and -R and -r options to force alternate ASN sources:
    - (r)IPE RIS - special thanks to Rene Wilhelm @ RIPE NCC
    - (C)ymru
    - (R)ADB
- Default ASN source (-A) is now Prefix WhoIs (see pwhois.org)
- LFT now queries for ASNs in bulk format after completing
  a trace if pwhois (default), RIPE NCC RIS, or Cymru is selected
- Added dst/src port autoselection based on user-supplied hostname
- Vastly improved standalone whois client "whob" see whob.8 (whob manpage)
- Makefile now installs 'whob' no-frills whois client (try ./whob)
- "Smart" mode is now referred to as "Adaptive" mode (-E)

lft 2.31
--------------------
- Fixed time precision on FreeBSD 5.3 (Thanks to Kurt Jaeger)

lft 2.3:
--------------------
- added WSAIoctl() call to select proper IF on windows based on dest (thanks Graham!)
- lowered max_retries to a default of 2
- cleaned up formatting related to -S option
- cleaned up verbose output to be more friendly
- cleaned up error messages
- updated manpage
- updated spec file

(gls)

2011-03-11 06:52:32 UTC MAIN commitmail json YAML

Add lft-license file

(gls)

2011-03-10 23:39:21 UTC MAIN commitmail json YAML

2011-03-10 23:38:42 UTC MAIN commitmail json YAML

Version 4.1.3 - 2011-01-17

fixed a coredump in torrent (introduced in 4.1.2).

Version 4.1.2 - 2010-12-31

new command ln [-s], supported by FTP (SITE [SYM]LINK), FISH, SFTP, and locally via file: schema.
create remote symlinks in mirror -R if supported by server.
detect and remove duplicate peers in torrent.

Version 4.1.0 - 2010-11-22

send path components to ftp server separately, unless TVFS is in FEAT reply.
save pget status at the very beginning of pget execution.
allow mirror pget continuation (mirror -c --use-pget).
allow multiple torrent startup at once (e.g. torrent *.torrent).
pre-allocate disk space in torrent, if posix_fallocate(3) is supported.
new command prefix `local'. It makes the following command use local session instead of remote.
added torrent multi-tracker support.
fixed convert-mozilla-cookies cookie duplication.

Version 4.0.10 - 2010-09-01

use cached file set, don't parse file listing again.
updated convert-netscape-cookies.
fixed a problem with zeroed errno in http.
fixed coredump on mirror --log=file when the file cannot be opened.
translations updated (de, ru).

(pettai)

2011-03-10 22:48:58 UTC MAIN commitmail json YAML

+ dejagnu-1.5, emacs-23.3.

(wiz)

2011-03-10 22:01:40 UTC MAIN commitmail json YAML

+ libXt-1.1.1, mathomatic-15.5.1, mkvtoolnix-4.6.0, openmpi-1.5.2,
  puppet-2.6.6, xf86-input-mouse-1.7.0.

(wiz)

2011-03-10 22:00:23 UTC MAIN commitmail json YAML

Add commented out entry for postgresql-uuid.

(wiz)

2011-03-10 21:59:15 UTC MAIN commitmail json YAML

regen to match patches/ contents.

(wiz)

2011-03-10 20:40:27 UTC MAIN commitmail json YAML

2011-03-10 20:39:31 UTC MAIN commitmail json YAML

Import tex-esint-doc-1.1 as fonts/tex-esint-doc.

This is documentation for tex-esint.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-10 20:39:21 UTC MAIN commitmail json YAML

Import tex-esint-1.1 as fonts/tex-esint.

The esint package permits access to alternate integral symbols when
you're using the Computer Modern fonts. In the original set, several
integral symbols are missing, such as \oiint. Many of these symbols are
available in other font sets (pxfonts, txfonts, etc.), but there is no
good solution if you want to use Computer Modern. The package provides
Metafont source and LaTeX macro support.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-10 20:17:34 UTC MAIN commitmail json YAML

2011-03-10 20:16:39 UTC MAIN commitmail json YAML

Import tex-eco-doc-1.3 as fonts/tex-eco-doc.

This is documentation for tex-eco.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-10 20:16:13 UTC MAIN commitmail json YAML

Import tex-eco-1.3 as fonts/tex-eco.

A set of font metric files and virtual fonts for using the EC fonts with
oldstyle numerals. These files can only be used together with the
standard ec fonts. The style file eco.sty is sufficient to use the eco
fonts but if you intend to use other font families as well, e.g.,
PostScript fonts, try altfont.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-10 19:51:24 UTC MAIN commitmail json YAML

Remove special qt3-libs handling for arts.  Its been wrong for a long time.
Reverts qt3-libs dependency to runtime rather than just build.
Addresses PR#44701.  Bump PKGREVISION.

(markd)

2011-03-10 19:51:06 UTC MAIN commitmail json YAML

Sync tex-texlive-scripts with TeX Live r21487.  No functional change.

(minskim)

2011-03-10 19:45:03 UTC MAIN commitmail json YAML

Readd --without-os-type configure arg, accidentally dropped when merging
the 0.5.14 changes.  PR#44703

(markd)

2011-03-10 13:43:49 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.0.11

(adam)

2011-03-10 13:42:54 UTC MAIN commitmail json YAML

Changes 2.0.11:
* dotlock_use_excl setting's default was accidentally "no" in all
  v2.0.x releases, instead of "yes" as in v1.1 and v1.2. Changed it
  back to "yes".
- v2.0.10: LDAP support was broken
- v2.0.10: dsyncing to remote often hanged (timed out in 15 mins)

Chamges 2.0.10:
* LMTP: For user+detail at domain deliveries, the +detail is again written
  to Delivered-To: header.
* Skip auth penalty checks from IPs in login_trusted_networks.
+ Added import_environment setting.
+ Added submission_host setting to send mails via SMTP instead of
  via sendmail binary.
+ Added doveadm acl get/set/delete commands for ACL manipulation,
  similar to how IMAP ACL extension works.
+ Added doveadm acl debug command to help debug and fix problems
  with why shared mailboxes aren't working as expected.
- IMAP: Fixed hangs with COMPRESS extension
- IMAP: Fixed a hang when trying to COPY to a nonexistent mailbox.
- IMAP: Fixed hang/crash with SEARCHRES + pipelining $.
- IMAP: Fixed assert-crash if IDLE+DONE is sent in same TCP packet.
- LMTP: Fixed sending multiple messages in a session.
- doveadm: Fixed giving parameters to mail commands.
- doveadm import: Settings weren't correctly used for the
  import storage.
- dsync: Fixed somewhat random failures with saving messages to
  remote dsync.
- v2.0.9: Config reload didn't notify running processes with
  shutdown_clients=no, so they could have kept serving new clients
  with old settings.

(adam)

2011-03-10 12:43:13 UTC MAIN commitmail json YAML

Update MAINTAINER e-mail address.

(ryoon)

2011-03-10 12:39:38 UTC MAIN commitmail json YAML

Updated fonts/umefont-ttf to 0.425

(ryoon)

2011-03-10 12:38:38 UTC MAIN commitmail json YAML

Update to 0.425.

Changelog:
In Gothic (Sans-serif) family
* Fix glyphs in Unicode : 0020-60b0, 9eb4-ffff (first check)
* Fix glyphs in SJIS : second check completed

In Minchi (Serif) family
* Fix glyphs in Unicode : 0020-60b0, 9eb4-ffff (first check)
* Fix glyphs in SJIS : second check completed

(ryoon)

2011-03-10 11:04:40 UTC MAIN commitmail json YAML

Updated devel/libsigc++ to 2.2.9

(adam)

2011-03-10 11:03:11 UTC MAIN commitmail json YAML

Changes 2.2.9:
* trackable: Avoid calling the same callback function twice, fixing some
  memory corruption.
* Minor documentation corrections.
* Fix the build with GCC 4.6
* Windows build fixes for MSVC++ .Net 2005 and 2010

(adam)

2011-03-10 10:35:03 UTC MAIN commitmail json YAML

2011-03-10 10:24:53 UTC MAIN commitmail json YAML

Bump PKGREVISION form default GIF library change from libungif to giflib.

(obache)

2011-03-10 10:20:19 UTC MAIN commitmail json YAML

2011-03-10 10:20:16 UTC MAIN commitmail json YAML

update to 0.53.1
changes:
-misc fixes and improvements
-build against system libtommath/crypt

(drochner)

2011-03-10 10:02:34 UTC MAIN commitmail json YAML

2011-03-10 09:52:25 UTC MAIN commitmail json YAML

2011-03-10 09:45:42 UTC MAIN commitmail json YAML

2011-03-10 09:44:10 UTC MAIN commitmail json YAML

make the "pdf" option non-default -- PDF output is already provided
by the "cairo" backend, and the "pdf" option pulls in "pdflib"
which has an evil license
bump PKGREV

(drochner)

2011-03-10 09:41:51 UTC MAIN commitmail json YAML

remove GTK_DISABLE_DEPRECATED from CPPFLAGS to fix build problem
with new gtk2 reported by wiz

(drochner)

2011-03-10 09:24:15 UTC MAIN commitmail json YAML

Bump PKGREVISION from shlibname change for libpng-1.5 (libqtmcop.so).

(obache)

2011-03-10 02:32:33 UTC MAIN commitmail json YAML

Note update of emacs-snapshot.

(minskim)

2011-03-10 01:28:49 UTC MAIN commitmail json YAML

Update emacs-snapshot to 20110224.

Changes:
* emacs-lisp/package.el (package-tar-file-info): Handle also
  remote files.
* cus-start.el (cursor-in-non-selected-windows):
  Fix :set quoting oddness.
* font-lock.el (lisp-font-lock-keywords-1): Don't highlight `)'
  in some setf expressions.
* vc/vc.el (vc-next-action): Add missing space to y-or-n-p prompt.
  Give an explicit error if failed to make writable.
* Documentation fixes.

(minskim)

2011-03-09 20:25:30 UTC MAIN commitmail json YAML

Updated sysutils/mtools to 4.0.14

(asau)

2011-03-09 20:25:09 UTC MAIN commitmail json YAML

Update to mtools 4.0.14

Changes in 4.0.14:

Fix floppyd for disks bigger than 2 Gig
Remove obsolete -z flag
Remove now unsupported AC_USE_SYSTEM_EXTENSIONS
Fixed output formatting of mdir if MTOOLS_DOTTED_DIR is set
Mformat now correctly writes backup boot sector
Fixed signedness of serial number in mlabel
Fixed buffer size problem in mlabel
Make mlabel write backup boot sector if FAT32
Catch situation where both clear and new label are given to mlabel
Quote filename parameters to scripts
Mformat: Close file descriptor for boot sector
Added lzip support to scripts/uz
Added Tot_sectors option to mformat
Fixed hidden sector handling in mformat
Minfo generates mformat command lines containing new -T option
Mlabel prints error if label too long

(asau)

2011-03-09 20:01:48 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3386 - requested by gls
www/py-moin: security patch

Revisions pulled up:
- www/py-moin/Makefile                                          1.16
- www/py-moin/distinfo                                          1.7
- www/py-moin/patches/patch-MoinMoin_parser_text__rst.py        1.1

---
  Module Name: pkgsrc
  Committed By: gls
  Date: Mon Mar  7 20:51:41 UTC 2011

  Modified Files:
  pkgsrc/www/py-moin: Makefile distinfo
  Added Files:
  pkgsrc/www/py-moin/patches: patch-MoinMoin_parser_text__rst.py

  Log Message:
  Add a fix for CVE CVE 2011-1058.
  Taken from http://moinmo.in/SecurityFixes

(tron)

2011-03-09 19:46:18 UTC MAIN commitmail json YAML

2011-03-09 19:42:18 UTC MAIN commitmail json YAML

Updated devel/libsigsegv to 2.9

(asau)

2011-03-09 19:41:54 UTC MAIN commitmail json YAML

Update to libsigsegv 2.9

New in 2.9:

* Correct support for 64-bit ABI on MacOS X 10.5 and newer.
* Fix alternate stack overflow on at least Linux for PowerPC64;
  regression introduced in 2.6.

(asau)

2011-03-09 19:38:45 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup tickets #3383, #3384 and #3386.

(tron)

2011-03-09 19:30:38 UTC MAIN commitmail json YAML

lang/gcc44 was updated.

(asau)

2011-03-09 19:23:11 UTC MAIN commitmail json YAML

2011-03-09 19:22:25 UTC MAIN commitmail json YAML

Update to curl 7.21.4

This release includes the following changes:

o CURLINFO_FTP_ENTRY_PATH now supports SFTP
o introduced new framework for unit-testing
o IDN: use win32 API if told to
o ares: ask for both IPv4 and IPv6 addresses
o HTTP: do Negotiate authentication using SSPI on windows
o Windows build: alternative makefile
o TLS-SRP: support added when using GnuTLS

This release includes the following bugfixes:

o SMTP: add brackets for MAIL FROM
o ossl_seed: no more RAND_screen (on Windows)
o multi: connect fail => use next IP address
o use the timeout when using multiple IP addresses similar to how
  the easy interface does it
o cookies: tricked dotcounter fixed
o pubkey_show: allocate buffer to fit any-size result
o Curl_nss_connect: avoid PATH_MAX
o Curl_do: avoid using stale conn pointer
o tftpd test server: avoid buffer overflow report from glibc
o nss: avoid CURLE_OUT_OF_MEMORY given a file name without any slash
o nss: fix a bug in handling of CURLOPT_CAPATH
o CMake: Use upstream CheckTypeSize module
o OpenSSL get_cert_chain: support larger data sets
o SCP/SFTP transfers: acknowledge speedcheck
o GnuTLS builds: fix memory leak
o connect problem: use UDP correctly
o Borland C++ makefile tweaks
o OpenSSL: improved error message on SSL_CTX_new failures
o HTTP: memory leak on multiple Location:
o ares_query_completed_cb: don't touch invalid data
o ares: memory leak fix
o mk-ca-bundle: use new cacert url
o Curl_gmtime: added a portable gmtime and check for NULL
o curl.1: typo in -v description
o CURLOPT_SOCKOPTFUNCTION: return proper error code
o --keepalive-time: warn if not supported properly
o file: add support for CURLOPT_TIMECONDITION
o nss: avoid memory leaks and failure of NSS shutdown
o multi: fix CURLM_STATE_TOOFAST for multi_socket

(asau)

2011-03-09 19:22:12 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3384 - requested by taca
mail/postfix: security update

Revisions pulled up:
- mail/postfix/Makefile patch
- mail/postfix/distinfo patch
- mail/postfix/patches/patch-ag patch

---
Postfix legacy releases 2.7.3, 2.6.9, 2.5.12 and 2.4.16 are available.
These releases contain a fix for CVE-2011-0411 which allows plaintext
command injection with SMTP sessions over TLS. This defect was
introduced with Postfix version 2.2. The same flaw exists in other
implementations of the STARTTLS command.

    Note: CVE-2011-0411 is an issue only for the minority of SMTP
    clients that actually verify server certificates. Without server
    certificate verification, clients are always vulnerable to
    man-in-the-middle attacks that allow attackers to inject
    plaintext commands or responses into SMTP sessions, and more.

Postfix 2.8 and 2.9 are not affected.

The following problems were fixed with the Postfix legacy releases:

    * Fix for CVE-2011-0411: discard buffered plaintext input,
      after reading the SMTP "STARTTLS" command or response.

    * Fix to the local delivery agent: look up the "unextended"
      address in the local aliases database, when that address has
      a malformed address extension.

    * Fix to virtual alias expansion: report a tempfail error,
      instead of silently ignoring recipients that exceed the
      virtual_alias_expansion_limit or the virtual_alias_recursion_limit.

    * Fix for Solaris: the Postfix event engine was deaf for SIGHUP
      and SIGALRM signals after the switch from select() to /dev/poll.
      Symptoms were delayed "postfix reload" response, and killed
      processes with watchdog timeout values under 100 seconds.

    * Fix for HP-UX: the Postfix event engine was deaf for SIGALRM
      signals. Symptoms were killed processes with watchdog timeout
      values under 100 seconds.

    * Fix for BSD-ish mkdir() to prevent maildir directories from
      inheriting their group ownership from the parent directory.

    * Fix to the SMTP client: missing support for mail to
      [ipv6:ipv6addr] address literal destinations.

    * FreeBSD back-ported closefrom() from FreeBSD 8x to 7x, breaking
      Postfix builds retroactively.

Historical note:

    Wietse Venema discovered the problem two weeks before the
    Postfix 2.8 release, and silently fixed it pending further
    investigation. While investigating the problem's scope and
    impact, Victor Duchovni found that many other TLS applications
    were also affected. At that point, CERT/CC was asked to coordinate
    with the problem's resolution.

You can find the updated Postfix source code at the mirrors listed
at http://www.postfix.org/.

(tron)

2011-03-09 19:11:19 UTC pkgsrc-2010Q4 commitmail json YAML

Pullup ticket #3383 - requested by tonio
chat/weechat: security update

Revisions pulled up:
- chat/weechat/Makefile                                              1.27
- chat/weechat/PLIST                                                  1.14
- chat/weechat/distinfo                                              1.18
- chat/weechat/patches/patch-aa                                      1.4
- chat/weechat/patches/patch-ab                                      1.6
- chat/weechat/patches/patch-ac                                      1.5
- chat/weechat/patches/patch-ad                                      1.4
- chat/weechat/patches/patch-src_core_wee-hook.c                      1.1
- chat/weechat/patches/patch-src_core_wee-hook.h                      1.1
- chat/weechat/patches/patch-src_core_wee-network.c                  1.1
- chat/weechat/patches/patch-src_plugins_irc_irc-server.c            1.1
- chat/weechat/patches/patch-src_plugins_rmodifier_rmodifier-config.h 1.1

---
  Module Name: pkgsrc
  Committed By: tonio
  Date: Sat Mar  5 22:48:07 UTC 2011

  Modified Files:
  pkgsrc/chat/weechat: Makefile PLIST distinfo
  pkgsrc/chat/weechat/patches: patch-aa patch-ab patch-ac patch-ad
  Added Files:
  pkgsrc/chat/weechat/patches: patch-src_core_wee-hook.c
      patch-src_core_wee-hook.h patch-src_core_wee-network.c
      patch-src_plugins_irc_irc-server.c
      patch-src_plugins_rmodifier_rmodifier-config.h

  Log Message:
  Update chat/weechat to 0.3.4
  Fix for SA43543 and update kindly provided by gls@

  This is a major release, with lot of bugs fixed and major new features.

  Among the new features:
  - 256 colors support, with unlimited number of nick colors
  - irc proxy (relay plugin)
  - redirection of IRC commands
  - command /notify
  - rmodifier plugin
  - regular expressions for highlights
  - color support for timestamp in chat buffer
  - irc option to force color for some nicks
  - share input line between buffers.

(tron)

2011-03-09 19:00:31 UTC MAIN commitmail json YAML

Updated math/mpcomplex to 0.9

(asau)

2011-03-09 18:59:46 UTC MAIN commitmail json YAML

Update to mpc-0.9
Prompted by Stathis Kamperis.

Changes:

  * New functions
      + mpc_set_dc, mpc_set_ldc, mpc_get_dc, mpc_get_ldc for
      converting between mpc type variables and C variables of
      type double  _Complex or long double _Complex
      + mpc_sin_cos, computing simultaneously the sine and cosine
  * Speed-ups
      + mpc_pow_si through binary exponentiation
      + mpc_pow_z when the exponent fits in a long
      + mpc_tan through the use of mpc_sin_cos
  * Bug fixes
      + trigonometric functions: infinite loop due to overflow for large arguments
      + exp: close to infinite loop for argument close to 0
      + sqrt: close to infinite loop for argument close to 1
      + add_si: replaced macro by function, since the macro evaluated the same expression twice
  * Logging feature for debugging
    ./configure --enable-logging
    #include "mpc-log.h" instead of #include "mpc.h"
  * Minimally required library versions: gmp 4.3.2, mpfr 2.4.2

(asau)

2011-03-09 18:48:52 UTC MAIN commitmail json YAML

2011-03-09 17:55:26 UTC MAIN commitmail json YAML

2011-03-09 17:39:57 UTC MAIN commitmail json YAML

Note addition of window-20110309.

(jmmv)

2011-03-09 17:39:29 UTC MAIN commitmail json YAML

Add and enable window.

(jmmv)

2011-03-09 17:38:55 UTC MAIN commitmail json YAML

Initial import of window-20110309:

window(1) implements a windowing environment on ASCII terminals.
It is similar to tmux and GNU screen.

The program provided by this package is based on the original code of
window(1) shipped by NetBSD 5.x.  NetBSD is replacing window(1) with
tmux, and when that happens this package will be the canonical source
for window(1).

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(jmmv)

2011-03-09 17:20:21 UTC MAIN commitmail json YAML

picks up new libraw shared libs -> require new libraw, bump PKGREV

(drochner)

2011-03-09 17:19:19 UTC MAIN commitmail json YAML

update to 0.13.2
changes:
-shared library support
-Sony A390 support
-Fixes for Leica D-LUX 4 and some Sony cameras

approved by Guillaume Lasmayous

(drochner)

2011-03-09 17:14:13 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk

(drochner)

2011-03-09 17:00:02 UTC MAIN commitmail json YAML

disallow direct use of {giflib,libungif}/bl3.mk so that mk/giflib.bl3.mk
can implement the global policy

(drochner)

2011-03-09 16:57:28 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:51:52 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:48:41 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:46:34 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:43:19 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:40:45 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:34:02 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk

(drochner)

2011-03-09 16:33:20 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:30:44 UTC MAIN commitmail json YAML

2011-03-09 16:29:23 UTC MAIN commitmail json YAML

libungif/buildlink3.mk -> mk/giflib.buildlink3.mk
(uses giflib now per default)
bump PKGREV

(drochner)

2011-03-09 16:28:21 UTC MAIN commitmail json YAML

2011-03-09 16:26:49 UTC MAIN commitmail json YAML

2011-03-09 16:22:01 UTC MAIN commitmail json YAML

Add a switch to choose between graphics/giflib and graphics/libungif
as GIF implementation. They are src/binary compatible and mutually
exclusive, so this is a global choice.
Up to now, "libungif" is used by pkgs, due to patent problems. The
patents are said to be expired, and "giflib" gets somewhat better
maintainance upstream these days, so set the new default to "giflib".

(drochner)

2011-03-09 13:06:50 UTC MAIN commitmail json YAML

2011-03-09 12:58:54 UTC MAIN commitmail json YAML

bump PKGREV for poppler shlib change (pulled in by default option)

(drochner)

2011-03-09 12:19:22 UTC MAIN commitmail json YAML

2011-03-09 12:16:36 UTC MAIN commitmail json YAML

2011-03-09 12:08:27 UTC MAIN commitmail json YAML

reset PKGREV for base pkg update

(drochner)

2011-03-09 12:07:12 UTC MAIN commitmail json YAML

2011-03-09 11:57:14 UTC MAIN commitmail json YAML

Remove entries for updated packages.

(wiz)

2011-03-09 11:53:48 UTC MAIN commitmail json YAML

Remove more entries for removed packages.

(wiz)

2011-03-09 11:48:58 UTC MAIN commitmail json YAML

+ adobe-flash-plugin10.1-10.3, autogen-5.11.8, bftpd-3.2, bitlbee-3.0.2,
  clutter-1.6.8, fixesproto-5.0, gst-plugins0.10-good-0.10.28,
  gtk3-3.0.2, lbreakout2-2.6.3, libXfixes-5.0, libsigc++-2.2.9,
  py-gobject-2.28.0, samba35-3.5.8, tig-0.17, xf86-input-keyboard-1.6.0,
  xpaint-2.9.8.2.

Remove some entries for removed packages.

(wiz)

2011-03-09 11:24:05 UTC MAIN commitmail json YAML

update to 2.24.1
This switches to the new gtk-2.24 branch which is intended to
help transition to glib/gtk3. Still binary compatible.

(drochner)

2011-03-09 11:22:04 UTC MAIN commitmail json YAML

update to 2.28.2
This switches to the new glib-2.28 branch which is intended to
help transition to glib/gtk3. Still binary compatible.
(The unix socket credential passing stuff needs work, but this
is new and thus no regression.)

(drochner)

2011-03-09 11:05:13 UTC MAIN commitmail json YAML

Add dependency to texi2html, fontforge, and t1utils.

(ryoon)

2011-03-09 10:52:26 UTC MAIN commitmail json YAML

fix installed pkgconfig .pc file: Don't refer to zlib.pc -- this
fails with system libz. We propagate a dependency per bl3 file,
this should be sufficient.
bump PKGREV

(drochner)

2011-03-09 10:03:06 UTC MAIN commitmail json YAML

update to 0.2.1.30, from Christian Sturm (the MAINTAINER) per PR pkg/44702
changes:
-fixes for less critical bugs
-make TLS D-H parameters match those of Apache's mod_ssl
pkgsrc changes: Makefile cleanup, appease plglint

(drochner)

2011-03-08 22:32:41 UTC MAIN commitmail json YAML

Note update of www/contao29-translations package to 20110308.

(taca)

2011-03-08 22:32:01 UTC MAIN commitmail json YAML

Update contao29-translations package to 20110308.

Czech, Italian, Japanese and Swedish language files are updated
to support contao 2.9.4.

(taca)

2011-03-08 21:58:42 UTC MAIN commitmail json YAML

Don't hardcode the location of the plugin.  Make this work with Java 6.

(bad)

2011-03-08 21:55:49 UTC MAIN commitmail json YAML

Fix name of Sun jdk15 in PKG_JVM_ACCEPTED.

(bad)

2011-03-08 21:30:43 UTC MAIN commitmail json YAML

Updated sysutils/fabric to 1.0.0

(gls)

2011-03-08 21:29:34 UTC MAIN commitmail json YAML

Update sysutils/fabric to 1.0.0

Pkgsrc changes:
- Confirm it's working with python27

Upstream changes:

Changes in version 1.0

This page lists all changes made to Fabric in its 1.0.0 release.
Highlights

    * #7: run/sudo now allow full interactivity with the remote end. You can
interact with remote prompts and similar interfaces, making certain tasks much
easier, and freeing you from the need to find noninteractive solutions if you
don't want to. See Interaction with remote programs for more on these changes.
    * put and get received many updates, including but not limited to: recursion,
globbing, inline sudo capability, and increased control over local file paths.
See the individual ticket line-items below for details. Erich Heine (sophacles
on IRC) played a large part in implementing and/or collecting these changes and
deserves much of the credit.
    * Added functionality for loading fabfiles which are Python packages
(directories) instead of just modules (single files). This allows for easier
organization of nontrivial fabfiles and paves the way for task namespacing in
the near future. See Fabfile discovery for details.
    * #185: Mostly of interest to those contributing to Fabric itself, Fabric
now leverages Paramiko to provide a stub SSH and SFTP server for use during runs
of our test suite. This makes quick, configurable full-stack testing of Fabric
(and, to an extent, user fabfiles) possible.

Backwards-incompatible changes

The below changes are backwards incompatible and have the potential to break
your 0.9.x based fabfiles!

    * contains and append previously had the filename argument in the second
position, whereas all other functions in the contrib.files module had filename
as the first argument. These two functions have been brought in line with the
rest of the module.
    * sed now escapes single-quotes and parentheses in addition to forward
slashes, in its before and after kwargs. Related to, but not entirely contained
within, #159.
    * The user and pty kwargs in sudo's signature have had their order swapped
around to more closely match run.
    * As part of the changes made in #7, run and sudo have had the default value
of their pty kwargs changed from False to True. This, plus the addition of the
combine_stderr kwarg/env var, may result in significant behavioral changes in
remote programs which operate differently when attached to a tty.
    * #61: put and get now honor the remote current-working-directory changes
applied by cd. Previously they would always treat relative remote paths as being
relative to the remote home directory.
    * #79: get now allows increased control over local filenames when downloading
single or multiple files. This is backwards incompatible because the default
path/filename for downloaded files has changed. Thanks to Juha Mustonen, Erich
Heine and Max Arnold for brainstorming solutions.
    * #88: local has changed the default value of its capture kwarg, from True
to False. This was changed in order to be more intuitive, at the cost of no
longer defaulting to the same rich return value as in run/sudo (which is still
available by specifying capture=True.)
    * #121: put will no longer automatically attempt to mirror local file modes.
Instead, you?ll need to specify mirror_local_mode=True to get this behavior.
Thanks to Paul Smith for a patch covering part of this change.
    * #172: append has changed the default value of its partial kwarg from True
to False in order to be safer/more intuitive.
    * #221: runs_once now memoizes the wrapped task's return value and returns
that value on subsequent invocations, instead of returning None. Thanks to Jacob
Kaplan-Moss and Travis Swicegood for catch + patch.

Feature additions

    * Prerelease versions of Fabric (starting with the 1.0 prereleases) will now
print the Git SHA1 hash of the current checkout, if the user is working off of a
Git clone of the Fabric source code repository.
    * Added path context manager for modifying commands? effective $PATH.
    * Added convenience .succeeded attribute to the return values of
run/sudo/local which is simply the opposite of the .failed attribute. (This
addition has also been backported to Fabric's 0.9 series.)
    * Refactored SSH disconnection code out of the main fab loop into
disconnect_all, allowing library users to avoid problems with non-fabfile Python
scripts hanging after execution finishes.
    * #2: Added use_sudo kwarg to put to allow uploading of files to privileged
locations. Thanks to Erich Heine and IRC user npmap for suggestions and patches.
    * #23: Added prefix context manager for easier management of persistent state
across commands.
    * #27: Added environment variable (always_use_pty) and command-line flag
(--no-pty) for global control over the run/sudo pty argument.
    * #28: Allow shell-style globbing in get. Thanks to Erich Heine and Max Arnold.
    * #55: run, sudo and local now provide access to their standard error (stderr)
as an attribute on the return value, alongside e.g. .failed.
    * #148: local now returns the same 'rich' string object as run/sudo do, so
that it is a string containing the command's stdout (if capture=True) or the
empty string (if capture=False) which exposes the .failed and .return_code
attributes, and so forth.
    * #151: Added a puts utility function, which allows greater control over
fabfile-generated (as opposed to Fabric-generated) output. Also added fastprint,
an alias to puts allowing for convenient unbuffered, non-newline-terminated
printing.
    * #192: Added per-user/host password cache to assist in multi-connection
scenarios.
    * #193: When requesting a remote pseudo-terminal, use the invoking terminal's
dimensions instead of going with the default.
    * #217: get/put now accept file-like objects as well as local file paths for
their local_path arguments.
    * #245: Added the lcd context manager for controlling local's current working
directory and put/get's local working directories.
    * #274: put/get now have return values which may be iterated over to access
the paths of files uploaded remotely or downloaded locally, respectively. These
return values also allow access to .failed and .succeeded attributes, just like
run and friends. (In this case, .failed is actually a list itself containing any
paths which failed to transfer, which naturally acts as a boolean as well.)

Bugfixes

    * N/A

Documentation updates

    * API, tutorial and usage docs updated with the above new features.
    * README now makes the Python 2.5+ requirement up front and explicit; some
folks were still assuming it would run on Python 2.4.
    * Added a link to Python?s documentation for string interpolation in
upload_template's docstring.

Changes in version 0.9.5

The following changes were implemented in Fabric 0.9.5:
Bugfixes

    * #264: Fix edge case in reboot by gracefully clearing connection cache.
    * #268: Allow for @ symbols in usernames, which is valid on some systems.
Fabric's host-string parser now splits username and hostname at the last @
found instead of the first.

(gls)

2011-03-08 21:21:35 UTC MAIN commitmail json YAML

Update to version 2.2.23.

Copy and paste some from changelog:

    Dailymotion.pm: Fix format support

    Returned "default" for all videos nonetheless of -f arg.
    Ported from quvi.

    Youtube: Fix video ID parsing (#10)

    - http://sourceforge.net/apps/trac/clive/ticket/10

    Bump version to 2.2.23

(reed)

2011-03-08 19:27:27 UTC MAIN commitmail json YAML

2011-03-08 19:21:45 UTC MAIN commitmail json YAML

2011-03-08 19:20:58 UTC MAIN commitmail json YAML

Import tex-wasysym-doc-2.0 as fonts/tex-wasysym-doc.

This is documentation for tex-wasysym.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:20:42 UTC MAIN commitmail json YAML

Import tex-wasysym-2.0 as fonts/tex-wasysym.

The WASY2 (Waldi Symbol) font by Roland Waldi provides many glyphs like
male and female symbols and astronomical symbols, as well as the
complete lasy font set and other odds and ends. The wasysym package
implements an easy to use interface for these symbols.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:05:06 UTC MAIN commitmail json YAML

Add tex-collection-fontsrecommended{,-doc}.

(minskim)

2011-03-08 19:03:55 UTC MAIN commitmail json YAML

Import tex-collection-fontsrecommended-doc-2010 as
fonts/tex-collection-fontsrecommended-doc.

This is documentation for tex-collection-fontsrecommended.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 19:03:38 UTC MAIN commitmail json YAML

Import tex-collection-fontsrecommended-2010 as
fonts/tex-collection-fontsrecommended.

Recommended fonts, including the base 35 PostScript fonts, Latin
Modern, TeX Gyre, and T1 and other encoding support for Computer
Modern, in outline form.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:38:34 UTC MAIN commitmail json YAML

2011-03-08 18:37:35 UTC MAIN commitmail json YAML

Import tex-utopia-doc-2010 as fonts/tex-utopia-doc.

This is documentation for tex-utopia.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:37:26 UTC MAIN commitmail json YAML

Import tex-utopia-2010 as fonts/tex-utopia.

The Adobe Standard Encoding set (upright and italic shapes, medium and
bold weights) of the Utopia font family, which Adobe donated to the X
Consortium. Macro support, and maths fonts that match the Utopia family,
are provided by the Fourier and the Mathdesign Utopia font packages.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:34:48 UTC MAIN commitmail json YAML

2011-03-08 18:33:51 UTC MAIN commitmail json YAML

Import tex-tex-gyre-doc-2.004 as fonts/tex-tex-gyre-doc.

This is documentation for tex-tex-gyre.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 18:33:42 UTC MAIN commitmail json YAML

Import tex-tex-gyre-2.004 as fonts/tex-tex-gyre.

The TeX-GYRE bundle consists of six font families: TeX Gyre Adventor is
based on the URW Gothic L family of fonts (which is derived from ITC
Avant Garde Gothic, designed by Herb Lubalin and Tom Carnase). TeX Gyre
Bonum is based on the URW Bookman L family (from Bookman Old Style,
designed by Alexander Phemister). TeX Gyre Chorus is based on URW
Chancery L Medium Italic (from ITC Zapf Chancery, designed by Hermann
Zapf in 1979). TeX-Gyre Cursor is based on URW Nimbus Mono L (based on
Courier, designed by Howard G. Kettler in 1955, for IBM). TeX Gyre Heros
is based on URW Nimbus Sans L (from Helvetica, prepared by Max
Miedinger, with Eduard Hoffmann in 1957). TeX Gyre Pagella is based on
URW Palladio L (from Palation, designed by Hermann Zapf in the 1940s).
TeX Gyre Schola is based on the URW Century Schoolbook L family (which
was designed by Morris Fuller Benton for the American Type Founders).
TeX Gyre Termes is based on the URW Nimbus Roman No9 L family of fonts
(whose original, Times, was designed by Stanley Morison together with
Starling Burgess and Victor Lardent and first offered by Monotype). The
constituent standard faces of each family have been greatly extended,
and contain nearly 1200 glyphs each (though Chorus omits Greek support,
has no small-caps family and has approximately 900 glyphs). Each family
is available in Adobe Type 1 and Open Type formats, and LaTeX support
(for use with a variety of encodings) is provided. Vietnamese and
Cyrillic characters were added by Han The Thanh and Valek Filippov,
respectively.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-03-08 17:13:34 UTC MAIN commitmail json YAML

adopt evince/patch-ba to fix 2 possible buffer overflows in AFM file
parsing (SA43491), bump PKGREV

(drochner)

2011-03-08 17:09:25 UTC MAIN commitmail json YAML

update to 0.8
no changelog available, at least some security fixes were done:
-fix possible memory corruption due to malformed JPEG images
(was patched in pkgsrc)
-fix (at least) 2 cases of integer overflow in array allocation (SA42320)

(drochner)

2011-03-08 17:05:17 UTC MAIN commitmail json YAML

Testing for OPSYS can only happen _after_ the inclusion
of bsd.prefs.mk.

(wiz)

2011-03-08 16:15:54 UTC MAIN commitmail json YAML

Updated audio/gqmpeg-skins to 20030712nb6

(wiz)

2011-03-08 16:15:38 UTC MAIN commitmail json YAML

Depend on gqmpeg-devel instead of gqmpeg.

(wiz)

2011-03-08 16:13:40 UTC MAIN commitmail json YAML

Removed audio/gqmpeg-skins

(wiz)

2011-03-08 15:59:04 UTC MAIN commitmail json YAML

2011-03-08 15:57:48 UTC MAIN commitmail json YAML

Updated print/lilypond to 2.12.3nb2

(ryoon)

2011-03-08 15:55:46 UTC MAIN commitmail json YAML

Fix PR pkg/44693
* Update HOMEPAGE.
* Remove dependency to ec-fonts-mftraced and mftrace.
* Works fine with python26, delete PYTHON_VERSIONS_ACCEPTED.
* Bump PKGREVISION.

(ryoon)

2011-03-08 15:34:34 UTC MAIN commitmail json YAML

Note update of textproc/ruby-itex2MML package to 1.4.5.

(taca)

2011-03-08 15:33:49 UTC MAIN commitmail json YAML

Update to ruby-itex2MML to 1.4.5 and should be fix PR pkg/44454.

* Now support Ruby 1.9.2.
* introduced Extensible Arrows support with version 1.4.0 and later.

Please refer full changes:
http://golem.ph.utexas.edu/~distler/code/itexToMML/changes

(taca)

2011-03-08 15:25:56 UTC MAIN commitmail json YAML

Fix build failure on FreeBSD.

(hiramatsu)

2011-03-08 15:08:27 UTC MAIN commitmail json YAML

Comment the patch to note that it uses more generic names than the original
file and ensures that rpath information is included in the installed library.

(brook)

2011-03-08 14:12:40 UTC MAIN commitmail json YAML

Note update of www/contao29 package to 2.9.4.

(taca)

2011-03-08 14:11:56 UTC MAIN commitmail json YAML

Update contao29 pacakge to 2.9.4.

2.9.4 (2011-03-08)

* Added: pass the number of comments to the template (#2753)
* Added: added methods to the Template class to read and write the template
  name (#2694)
* Added: add support for __isset() to module, element and template classes
  (#2897)
* Added: added a "compileDefinition" and a "createDefinition" hook (#2883)
* Fixed: wrong sorting values when copying multiple elements (#2433)
* Fixed: correct invalid XHTML in the extension catalog (#2651)
* Fixed: textual publication dates in RSS feeds were not translated (#2760)
* Fixed: the description of the newsletter offset was wrong (#2824)
* Fixed: remove insert tags in page names from title attributes (#2853)
* Fixed: do not generate RSS feeds of protected archives/calendars (#2699)
* Fixed: the CSS classes of image galleries with pagination were not set
  correctly (#2803)
* Fixed: remove shy-entities from the page title tag (#2709)
* Fixed: assign unique IDs to search box elements in case multiple boxes are
  used (#2829)
* Fixed: adjust the file paths in style sheets and modules during theme import
  (#2882)
* Fixed: support PNGs and JPGs in the toggleVisibility() function (#2854)
* Fixed: the style sheet importer still did not support some CSS3 selectors
  (#2781)
* Fixed: check the target page and article status in the article teaser
  element (#2714)
* Fixed: do not send lost password mails if an account is not active (#2685)
* Fixed: the wizard labels can conflict with the field labels (#2860)
* Fixed: allow multiple editArea instances on one page in "edit all" mode
  (#2783)
* Fixed some minor issues

(taca)

2011-03-08 14:08:18 UTC MAIN commitmail json YAML

Note update of mysql51-{client,server} package to 5.1.56.

(taca)

2011-03-08 14:06:44 UTC MAIN commitmail json YAML

Update MySQL package to 5.1.56.

Functionality added or changed:

* mysqldump --xml now displays comments from column definitions. (Bug #13618)

Bugs fixed:

* InnoDB Storage Engine: InnoDB returned values for “rows examined”
  in the query plan that were higher than expected. NULL values were
  treated in an inconsistent way. The inaccurate statistics could
  trigger “false positives” in combination with the MAX_JOIN_SIZE
  setting, because the queries did not really examine as many rows as
  reported. (Bug #30423)

* Partitioning: Trying to use the same column more than once in the
  partitioning key when partitioning a table by KEY caused mysqld to
  crash. Such duplication of key columns is now expressly disallowed,
  and fails with an appropriate error. (Bug #53354, Bug #57924)

* Replication: When using the statement-based logging format, INSERT
  ON DUPLICATE KEY UPDATE and INSERT IGNORE statements affecting
  transactional tables that did not fail were not written to the
  binary log if they did not insert any rows. (With statement-based
  logging, all successful statements should be logged, whether they do
  or do not cause any rows to be changed.) (Bug #59338)

* Replication: Formerly, STOP SLAVE stopped the slave I/O thread first
  and then stopped the slave SQL thread; thus, it was possible for the
  I/O thread to stop after replicating only part of a transaction
  which the SQL thread was executing, in wich case―if the transaction
  could not be rolled back safely―the SQL thread could hang.

  Now, STOP SLAVE stops the slave SQL thread first and then stops the
  I/O thread; this guarantees that the I/O thread can fetch any
  remaining events in the transaction that the SQL thread is
  executing, so that the SQL thread can finish the transaction if it
  cannot be rolled back safely. (Bug #58546)

* A query of the following form returned an incorrect result, where
  the values for col_name in the result set were entirely replaced
  with NULL values:

  SELECT DISTINCT col_name ... ORDER BY col_name DESC;
  (Bug #59308, Bug #11766241)

* DELETE or UPDATE statements could fail if they used DATE or DATETIME
  values with a year, month, or day part of zero. (Bug #59173)

* The ESCAPE clause for the LIKE operator allows only expressions that
  evaluate to a constant at execution time, but aggregrate functions
  were not being rejected. (Bug #59149)

* Memory leaks detected by Valgrind, some of which could cause
  incorrect query results, were corrected. (Bug #59110, Bug #11766075)

  mysqlslap failed to check for a NULL return from mysql_store_result()
  and crashed trying to process the result set. (Bug #59109)

* In debug builds, SUBSTRING_INDEX(FORMAT(...), FORMAT(...)) could
  cause a server crash. (Bug #58371)

* When mysqldadmin was run with the --sleep and --count options, it
  went into an infinite loop executing the specified command. (Bug
  #58221)

* Some string manipulating SQL functions use a shared string object
  intended to contain an immutable empty string. This object was used
  by the SQL function SUBSTRING_INDEX() to return an empty string when
  one argument was of the wrong datatype. If the string object was
  then modified by the SQL function INSERT(), undefined behavior
  ensued. (Bug #58165, Bug #11765225)

* Parsing nested regular expressions could lead to recursion resulting
  in a stack overflow crash. (Bug #58026, Bug #11765099)

* The mysql client went into an infinite loop if the standard input
  was a directory. (Bug #57450)

* The expression const1 BETWEEN const2 AND field was optimized
  incorrectly and produced incorrect results. (Bug #57030, Bug
  #11764215)

* Some RPM installation scripts used a hardcoded value for the data
  directory, which could result in a failed installation for users who
  have a nonstandard data directory location. The same was true for
  other configuration values such as the PID file name. (Bug #56581,
  Bug #11763817)

* On FreeBSD and OpenBSD, the server incorrectly checked the range of
  the system date, causing legal values to be rejected. (Bug #55755,
  Bug #11763089)

* When using ExtractValue() or UpdateXML(), if the XML to be read
  contained an incomplete XML comment, MySQL read beyond the end of
  the XML string when processing, leading to a crash of the
  server. (Bug #44332)

(taca)

2011-03-08 12:10:01 UTC MAIN commitmail json YAML

user-destdir installation support.

(obache)

2011-03-08 12:00:15 UTC MAIN commitmail json YAML

user-destdir installation support.

(obache)

2011-03-08 11:42:01 UTC MAIN commitmail json YAML

Bump PKGREVISION for previous.

(wiz)

2011-03-08 11:33:35 UTC MAIN commitmail json YAML

user-dest installation support.

(obache)

2011-03-08 10:19:41 UTC MAIN commitmail json YAML

Adapt to option names.

(wiz)

2011-03-08 09:38:19 UTC MAIN commitmail json YAML

2011-03-08 09:27:54 UTC MAIN commitmail json YAML

2011-03-08 08:32:07 UTC MAIN commitmail json YAML

Updated net/samba35 to 3.5.8

(adam)

2011-03-08 08:30:08 UTC MAIN commitmail json YAML

Changes 3.5.8:
* Fix Winbind crash bug when no DC is available
* Fix finding users on domain members
* Fix memory leaks in Winbind
* Fix printing with Windows 7 clients

(adam)

2011-03-08 03:20:16 UTC MAIN commitmail json YAML

Add a comment to the patch to document use of the openssl SHA1 API.

(brook)

2011-03-08 03:05:08 UTC MAIN commitmail json YAML

Switch the license for databases/postgresql-uuid to isc per suggestion by
Thomas Klausner.  Although the two licenses are not word-for-word identical,
they are very close, use much of the same wording, and seem equivalent in
intent.  This prevents proliferation of yet another license in the collection.

(brook)

2011-03-07 23:28:38 UTC MAIN commitmail json YAML