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

2024-05-13 15:33:48 UTC Now

2013-05-26 21:28:07 UTC MAIN commitmail json YAML

Import sshpass-1.05 as security/sshpass.

Sshpass is a tool for non-interactively performing password authentication with
SSH's so called "interactive keyboard password authentication". Most users
should use SSH's more secure public key authentication instead.

(rodent)

2013-05-26 20:30:26 UTC MAIN commitmail json YAML

Updated sysutils/xentools42 to 4.2.2nb2

(bouyer)

2013-05-26 20:29:54 UTC MAIN commitmail json YAML

Removed net/gst-plugins0.10-libnice [wiz 2013-05-26]

(wiz)

2013-05-26 20:29:29 UTC MAIN commitmail json YAML

Added net/gst-plugins1-libnice version 0.1.4

(wiz)

2013-05-26 20:29:02 UTC MAIN commitmail json YAML

2013-05-26 20:28:27 UTC MAIN commitmail json YAML

Updated net/libnice to 0.1.4

(wiz)

2013-05-26 20:28:18 UTC MAIN commitmail json YAML

Update to 0.1.4:

libnice 0.1.4 (2013-02-22)
==========================

Fix issue with dribble mode
Fix issue with TURN permissions
Fix missing win32 directory from release archive
Fix support for OC2007
Added new nice_address_ip_vesion API
Added new nice_agent_get_selected_pair API
Added new SDP parsing and generation API
Added simple examples (simple, threaded and sdp usages examples)

libnice 0.1.3 (2012-09-13)
==========================

Dribble mode: You can set remote candidates while gathering the local ones
Add support for GStreamer 1.0, will compile plugins for both 1.0 and 0.10 by default
Cache GSocketAddress in UdpBsdSocket, creating it is very slow

(wiz)

2013-05-26 20:27:43 UTC MAIN commitmail json YAML

2013-05-26 20:14:57 UTC MAIN commitmail json YAML

Updated math/nickle to 2.77

(wiz)

2013-05-26 20:14:48 UTC MAIN commitmail json YAML

Update to 2.77:

    Update to version 2.77

    Fix RPM spec file to not install tutorial twice

    By default, the tutorial gets stuck in /usr/share/doc/nickle, while
    rpm wants it in /usr/shar/doc/nickle-<version>. Ignore the one in /usr/share/doc/nickle.

    doc: Expand tabs to spaces in .sgml files
    Makes code examples readable.

    Build tutorial when docbook2pdf is available
    And build it on debian

    tutorial: Use sgml entities instead of < and >

    Tutorial: twixt doesn't have an optional 'else' block
    This was a proposed feature that was removed

    Rename nickle tutorial to nickle-tutorial
    Makes any built files include 'nickle' by default

    corrected some Nickle Tour nits

    Handle OpFarJump in CompileReachable
    A FarJump within a catch block references instructions one or more
    frames outside of the instruction context. When checking for reachable
    code, look down inside the catch blocks to see if any of the FarJumps
    within them touch the target instruction.
    Fixes this example:
    void foo() {
    for (;;)
    try {
    } catch uninitialized_value(string x) {
    break;
    }
    }
    Without this fix, the 'break' will not get noticed and no ReturnVoid
    will be appended to the object code for 'foo', leaving the break
    dangling in space.

    New instructions IsType and HasMember need entries in OpNames
    Otherwise, the array no longer matches the enum

    Fix VALIDATE_EXECUTION test code
    Needed ObjType defined.

    Update to 2.76

    Don't erase twixt pointer during JumpContinue until after stack copy
    Otherwise, if MemCollect occurs during the stack copy, the twixt's
    stack copy can get collected.

    Check for lost stack chunks
    If a stack chunk gets collected, the 'type' field will get
    cleared. Check to see if this has happened and abort.

    Add debug code to check thread validity during execution
    If something gets corrupted, it's useful to have this code to help
    track it down.

    Handle initializers with undefined types.
    Emit an error instead of crashing.

    Handle systems which don't define PATH_MAX (Hurd)
    This is a hack; a correct fix would involve actually allocating the
    correct length object.

    Version 2.75

    Delete ancient .cvsignore files
    Not exactly useful anymore

    Examples shouldn't be executable

    Fix Source URL in nickle.spec file
    Point at nickle.org, as appropriate.

    Make 'G' format limit array and struct recursion
    This makes stack traces tractable.

    Switch to dh for debian builds
    Vastly simplifies debian/rules...

    Stop printing recursive structs with 'g' format.
    This gets annoying really quickly, so just terminate the recursive
    struct printing right away.

    Handle ref types in &foo->bar operations
    For some reason, this case was left out of the usual ref type hacks

    Version 2.74

    Switch from debuild to pdebuild
    Catch more package building problems by using pbuilder.

    Fix Semaphore::wait logic (again) - partial means we've woken up
    The only way to run do_Semaphore::wait with 'partial' set to true is
    if the thread is waking up; in this case, the semaphore count may well
    be negative if other threads are also waiting. Ignore the count in
    this case and just complete the operation.

    Add explicit debian source format 3.0 (native)
    Keep lintian happy

    Clean up some debian lintian warnings

    Fix new FileVPrintf 'G' format comparison
    Was comparing the pointer to the representation enum. oops.

    Update debian/changelog for eventual 2.73 release

    git-log has become git log
    Needed to build ChangeLog

    Back autoconf requirement to 2.64 so debian stable can run it

    Shorten backtrace display
    Don't display composite values in backtraces so that the
    backtrace doesn't get flooded with giant values.

    Typecheck switch expressions
    Make sure switch expression and case expresssions are all type compatible.

    Add is_type and has_member built-ins
    These provide the ability to do run-time type comparisons without
    needing full introspection in the language.

    Add list.5c
    A useful data type

    add 'millis' function to return a clock in milliseconds.
    Useful when doing things with sleep

    Add Semaphore::count
    Useful for checking current semaphore value without
    modifying it.

    Clean up do_Semaphore_wait
    Make it clear that the semaphore count gets bumped down the first time
    into this function.

    Check for thread switch even if current thread is last
    Threads can switch due to semaphores or other signals; that can leave
    the current thread last in the run queue. Check for any case where
    running changes instead of only when the current thread isn't last.

    Make scanf not report valid conversion on blank input.
    scanf was incorrectly accepting " " as a valid number, returning a
    conversion of 0. Fix this by checking for empty strings in any numeric
    conversion.

    Add tests for scanf function
    Scanf incorrectly accepts blank strings for numbers; here's a pile
    of tests to validate various numeric input.

    Add sort and skiplist to standard nickle library
    These are too useful to just be examples

    Add gamma function

    Printing rational 0 in 'e' format doesn't need an exponent
    Computing a negative exponent requires a non-zero value, so just skip
    that if the value is zero

    NaturalGcd must return a Natural* when aborting
    It was returning One (an Integer) instead of one_natural;

    floor() and ceil() should work on imprecise floats
    They should return an approximate integer value instead of raising an exception.

    Set version to 2.73 in prepartion for eventually release

    Only call readline tty cleanup on signal readline is active
    If readline isn't active, the cleanup functions tend to make a mess of
    the tty state, so don't call them. This really only matters when
    handling SIGTSTP.

    Update to version 2.72

    Keep readline from catching signals
    This stops readline from catching signals, letting nickle handle them
    all by itself.

    Block in select instead of sigsuspend when waiting for I/O
    The kernel doesn't appear to reliably deliver SIGIO while the
    application is blocked, so sit in select instead of sigsuspend to make
    sure we hear about pending I/O.

    rename configure.in to configure.ac

    Switch version to 2.72 in preparation for an eventual release

    wait3 returns 0 when there's nothing left to do
    Don't keep looping when wait3 is done

    Update to version 2.71

    Clean up a pile of build warnings
    Signal return types, unused return values and stepping off the end of
    the typePrim array (the value of which was unused anyways).

    Catch attempts to use uninitialized pointer contents
    Dereferencing a pointer to uninitialized storage is an error, instead
    of passing this value along to callers, catch it immediately and raise
    an exception. Check for this case in the ++ and -- operators to
    generate a better error message (otherwise, we'll pass Void along and
    generate an error much later).

    Exit after two consecutive interrupts
    If the first interrupt isn't received by the nickle code,
    when the second one comes in, just exit

    Cleanup struct type changes

    Replace most parameterized macros with static inline functions
    Typechecking, decent compiler warnings and smaller code.

    Replace macros with static inline functions in value.h
    Actual type checking, and smaller compiler output to boot.

    Get rid of old-school variable length struct allocations
    This confuses the new _FORTIFY_SOURCE bits in GCC, so use the
    'sanctioned' form of placing a zero-length array at the end of the
    struct.

(wiz)

2013-05-26 20:09:03 UTC MAIN commitmail json YAML

Updated x11/luit to 2.0.20130217

(wiz)

2013-05-26 20:08:54 UTC MAIN commitmail json YAML

Update to Thomas E. Dickey's version 2.0 of luit.

History

Luit was written by Juliusz Chroboczek for the XFree86 Project in
2001-2002. There were improvements and fixes by several people, in
particular Tomohiro Kubota's extensions for CJK encodings.

There was no maintainer for some time; I adopted it in 2006 to
ensure that it continued to support xterm (details are listed in
the luit.log.html file within the source).

Besides the maintenance issue that attracted my attention in 2005
(untested changes to compiled-in file locations by Xorg hackers),
Luit has had from the outset a technical issue: its associated
font-encoding library.

Juliusz Chroboczek used the font-encoding library to work around
performance issues with direct use of iconv. This solution has
proven to be a drawback:

    the font-encoding library is little used (other than by luit),
    and also lacks a maintainer.  the font-encoding library does
    not provide the full range of encodings that iconv does.  the
    Xorg configure scripting and other dependencies surrounding
    the library have been subject to uncontrolled growth.

I solved the problem by implementing an efficient conversion using
iconv. Luit still supports the font-encoding library if it is found
by the configure script. If you choose, luit can easily be built
using iconv.

However, as of luit 2.0, the font-encoding library has been
deprecated:

    Luit includes all of the relevant functionality for using the
    ".enc" files which are distributed separately. You may have
    these files as a separate package, e.g., "xfonts-encodings",
    or as part of "xfonts-x11-fonts-misc", "x11-font-encodings" or
    even "encodings". If you have trouble finding the package, look
    for a specific file such as adobe-standard.enc. The encoding
    files are rarely packaged with luit, and oddly enough are never
    made a package dependency. The only other use that I am aware
    of for the files is for the defunct xprint program.

    To see which ".enc" files luit may use, run

luit -list-fontenc

    Here is sample output. The old version of luit can use only
    about a third of these encodings, i.e.,

big5.eten-0, big5hkscs-0, dec-special, gb18030.2000-0,
gb18030.2000-1, gb2312.1980-0, gbk-0, ibm-cp437, ibm-cp850,
ibm-cp852, ibm-cp866, iso8859-11, iso8859-13, iso8859-16,
jisx0201.1976-0, jisx0208.1990-0, jisx0212.1990-0,
ksc5601.1987-0, microsoft-cp1250, microsoft-cp1251,
microsoft-cp1252, tcvn-0

    With luit 2.0, the -encoding option permits you to use the
    remaining files (as well as any you may have customized):

adobe-dingbats, adobe-standard, adobe-symbol, armscii-8,
ascii-0, big5-0, big5.cp950-0, cns11643-1, cns11643-2,
cns11643-3, gb18030-0, iso8859-6.16, iso8859-6.8x,
jisx0208.1983-0, ksc5601.1992-3, ksx1001.1997-0, ksx1001.1998-0,
ksx1001.1998-3, ksxjohab-1, microsoft-ansi, microsoft-cp1253,
microsoft-cp1254, microsoft-cp1255, microsoft-cp1256,
microsoft-cp1257, microsoft-cp1258, microsoft-win3.1,
mulearabic-0, mulearabic-1, mulearabic-2, mulelao-1,
sun.unicode.india-0, suneu-greek, tis620-0, tis620-2,
tis620.2529-1, tis620.2533-0, tis620.2533-1, viscii1.1-1

    Some of the ".enc" files are unused by the old luit because
    the font-encoding library has built-in tables of the ISO-8859-x
    encodings and a few others. With luit 2.0, you can make a list
    of the built-in tables as well as change luit's preference when
    looking in the font-encoding files, built-in tables and iconv
    tables.  Luit 2.0 can use the data from iconv directly without
    relying upon external ".enc" files. The ".enc" files (and
    built-in tables) are preferred for performance reasons. Existing
    users of luit would complain about the loss of 1- or 2-tenths
    of a second for startup with CJK encodings. Really.

    Normally luit uses your locale settings to determine the
    corresponding character encoding. Use --list-iconv to see the
    available choices, e.g.,

luit -list-iconv

    Here is sample output on a suitably configured system. Your
    system may have fewer (locale support generally has been made
    more difficult to configure in systems geared toward novice
    developers such as Ubuntu). But the portable iconv implementation
    does support a wide range of encodings, and you may find
    additional encodings using

iconv -l

    On the Debian system where I am writing this, that gives a list
    of 1168 encodings.

(wiz)

2013-05-26 20:02:48 UTC MAIN commitmail json YAML

Updated audio/mp3diags to 1.0.12.079

(wiz)

2013-05-26 20:02:39 UTC MAIN commitmail json YAML

Update to 1.0.12.079:

20.10.2012 - 1.0.12.079
- Discogs fix

11.05.2012 - 1.0.11.076
- made program compilable with GCC 4.7

31.12.2011 - 1.0.10.065
- updated Discogs API calls to current version

(wiz)

2013-05-26 19:56:04 UTC MAIN commitmail json YAML

Updated games/py-trueskill to 0.4

(wiz)

2013-05-26 19:55:54 UTC MAIN commitmail json YAML

Update to 0.4:

0.4

Released on Mar 25th 2013.

    Supports dynamic draw probability.
    Replaces Rating.exposure() with TrueSkill.expose(). Because
    the TrueSkill settings have to adjust a fomula to calculate an
    exposure.
    Deprecates head-to-head shortcut methods in TrueSkill. The
    top-level shortcut functions are still alive.

Version 0.3.1

Released on Mar 6th 2013.

Raises FloatingPointError instead of ValueError (math domain error)
for a problem similar to issue #5 but with more extreme input.

Version 0.3

Released on Mar 5th 2013.

TrueSkill got a new option backend to choose cdf, pdf, ppf
implementation.

When winners have too lower rating than losers, TrueSkill.rate()
will raise FloatingPointError if the backend is None or scipy.
But from this version, you can avoid the problem with mpmath
backend. This was reported at issue #5.

Version 0.2.1

Released on Dec 6th 2012.

Fixes a printing bug on TrueSkill.quality().

Version 0.2

Released on Nov 30th 2012.

    Implements 窶弃artial play窶�.
    Works well in many Python versions, 2.5, 2.6, 2.7, 3.1, 3.2,
    3.3 and many interpreters, CPython, Jython, PyPy.
    Supports that using dictionaries as a rating_group to choose
    specific player龝 rating simply.
    Adds shorcut functions for 2 players individual match, the most
    usage: rate_1vs1() and quality_1vs1(),
    TrueSkill.transform_ratings() is now called TrueSkill.rate().
    TrueSkill.match_quality() is now called TrueSkill.quality().

(wiz)

2013-05-26 19:51:34 UTC MAIN commitmail json YAML

Updated sysutils/py-dbus to 1.2.0

(wiz)

2013-05-26 19:51:25 UTC MAIN commitmail json YAML

Update to 1.2.0:

D-Bus Python Bindings 1.2.0 (2013-05-07)
========================================

The "compile like it's 1998" release.

Dependencies:

• libdbus 1.6 or later is now required.

Enhancements:

• Unicode Corrigendum 9: when used with a suitable version of libdbus
  (1.6.10 or later, or 1.7.2 or later), noncharacters in strings are
  now accepted

Fixes:

• Support DBusException('something with non—ASCII') under Python 2
  (Michael Vogt, smcv; fd.o #55899)

• Correct some misleading wording in COPYING which was written under the
  assumption that libdbus could actually be relicensed to MIT/X11
  (Thiago Macieira)

• Avoid variable-length arrays, because MSVC++ is still stuck in 1998
  (based on patches from Christoph Höger, fd.o #51725)

• Remove unnecessary uses of stdint.h (fd.o #51725)

• Add support for Unix compilers not supporting 'inline', for completeness

• Use GObject.__class__ instead of GObjectMeta, which can no longer be
  imported from gi.repository.GObject in pygobject 3.8

• Fix autoreconfiscation on Automake 1.13 (Marko Lindqvist, fd.o #59006)

(wiz)

2013-05-26 18:43:27 UTC MAIN commitmail json YAML

Updated games/puzzles to 9840

(wiz)

2013-05-26 18:43:17 UTC MAIN commitmail json YAML

2013-05-26 18:37:49 UTC MAIN commitmail json YAML

Updated audio/musicpd to 0.17.4

(wiz)

2013-05-26 18:37:39 UTC MAIN commitmail json YAML

Update to 0.17.4, provided by Takeshi Nakayama in PR 47844.
While here, add comments to patch-aa, patch-ad from cvs logs.

Changes:
ver 0.17.4 (2013/04/08)
* protocol:
  - allow to omit END in ranges (START:END)
  - don't emit IDLE_PLAYER before audio format is known
* decoder:
  - ffmpeg: support float planar audio (ffmpeg 1.1)
  - ffmpeg: fix AVFrame allocation
* player:
  - implement missing "idle" events on output errors
* clock: fix build failure

ver 0.17.3 (2013/01/06)
* output:
  - osx: fix pops during playback
  - recorder: fix I/O error check
  - shout: fix memory leak in error handler
  - recorder, shout: support Ogg packets that span more than one page
* decoder:
  - ffmpeg: ignore negative time stamps
  - ffmpeg: support planar audio
* playlist:
  - cue: fix memory leak
  - cue: fix CUE files with only one track

ver 0.17.2 (2012/09/30)
* protocol:
  - fix crash in local file check
* decoder:
  - fluidsynth: remove throttle (requires libfluidsynth 1.1)
  - fluidsynth: stop playback at end of file
  - fluidsynth: check MIDI file format while scanning
  - fluidsynth: add sample rate setting
  - wavpack: support all APEv2 tags
* output:
  - httpd: use monotonic clock, avoid hiccups after system clock adjustment
  - httpd: fix throttling bug after resuming playback
* playlist:
  - cue: map "PERFORMER" to "artist" or "album artist"
* mapper: fix non-UTF8 music directory name
* mapper: fix potential crash in file permission check
* playlist: fix use-after-free bug
* playlist: fix memory leak
* state_file: save song priorities
* player: disable cross-fading in "single" mode
* update: fix unsafe readlink() usage
* configure.ac:
  - don't auto-detect the vorbis encoder when Tremor is enabled

ver 0.17.1 (2012/07/31)
* protocol:
  - require appropriate permissions for searchadd{,pl}
* tags:
  - aiff: support the AIFC format
  - ape: check for ID3 if no usable APE tag was found
* playlist:
  - cue: support file types "MP3", "AIFF"
* output:
  - fix noisy playback with conversion and software volume

ver 0.17 (2012/06/27)
* protocol:
  - support client-to-client communication
  - "update" and "rescan" need only "CONTROL" permission
  - new command "seekcur" for simpler seeking within current song
  - new command "config" dumps location of music directory
  - add range parameter to command "load"
  - print extra "playlist" object for embedded CUE sheets
  - new commands "searchadd", "searchaddpl"
* input:
  - cdio_paranoia: new input plugin to play audio CDs
  - curl: enable CURLOPT_NETRC
  - curl: non-blocking I/O
  - soup: new input plugin based on libsoup
* tags:
  - RVA2: support separate album/track replay gain
* decoder:
  - mpg123: implement seeking
  - ffmpeg: drop support for pre-0.5 ffmpeg
  - ffmpeg: support WebM
  - oggflac: delete this obsolete plugin
  - dsdiff: new decoder plugin
* output:
  - alsa: support DSD-over-USB (dCS suggested standard)
  - httpd: support for streaming to a DLNA client
  - openal: improve buffer cancellation
  - osx: allow user to specify other audio devices
  - osx: implement 32 bit playback
  - shout: add possibility to set url
  - roar: new output plugin for RoarAudio
  - winmm: fail if wrong device specified instead of using default device
* mixer:
  - alsa: listen for external volume changes
* playlist:
  - allow references to songs outside the music directory
  - new CUE parser, without libcue
  - soundcloud: new plugin for accessing soundcloud.com
* state_file: add option "restore_paused"
* cue: show CUE track numbers
* allow port specification in "bind_to_address" settings
* support floating point samples
* systemd socket activation
* improve --version output
* WIN32: fix renaming of stored playlists with non-ASCII names

ver 0.16.8 (2012/04/04)
* fix for libsamplerate assertion failure
* decoder:
  - vorbis (and others): fix seeking at startup
  - ffmpeg: read the "year" tag
* encoder:
  - vorbis: generate end-of-stream packet before tag
  - vorbis: generate end-of-stream packet when playback ends
* output:
  - jack: check for connection failure before starting playback
  - jack: workaround for libjack1 crash bug
  - osx: fix stuttering due to buffering bug
* fix endless loop in text file reader
* update: skip symlinks in path that is to be updated

ver 0.16.7 (2012/02/04)
* input:
  - ffmpeg: support libavformat 0.7
* decoder:
  - ffmpeg: support libavformat 0.8, libavcodec 0.9
  - ffmpeg: support all MPD tags
* output:
  - httpd: fix excessive buffering
  - openal: force 16 bit playback, as 8 bit doesn't work
  - osx: remove sleep call from render callback
  - osx: clear render buffer when there's not enough data
* fix moving after current song

(wiz)

2013-05-26 18:22:59 UTC MAIN commitmail json YAML

2013-05-26 18:21:46 UTC MAIN commitmail json YAML

Document how to add build dependencies using buildlink3.mk.
Requested by rodent.

(wiz)

2013-05-26 18:21:29 UTC MAIN commitmail json YAML

Updated x11/mlterm to 3.2.0

(tsutsui)

2013-05-26 18:20:29 UTC MAIN commitmail json YAML

Add options ibus and mlterm-fb for x11/mlterm.

(tsutsui)

2013-05-26 18:18:25 UTC MAIN commitmail json YAML

Update mlterm to 3.2.0.

In this version, mlterm now supports NetBSD wsfb framebuffer
so NetBSD users can use a multi-lingual terminal without
Xserver on ports that support wsdisplay framebuffer console,
i.e. NetBSD/i386 with VESA framebuffer, NetBSD/dreamcast,
or even NetBSD/luna68k with 1bpp framebuffer.

Special thanks to Araki Ken, an auther of mlterm, for
various efforts and improvements for NetBSD wsfb support,
including dumb 1bpp optimizations on luna68k.
mlterm-fb demonstration movies are available on YouTube:
http://youtu.be/5IH1NYSVpHY  (NetBSD/i386 6.1)
http://youtu.be/BP8AIceWgxA  (NetBSD/luna68k 6.1)

pkgsrc changes:

- update descriptions per the framebuffer support
- add a MESSAGE file to mention miscellaneous configurations to use mlterm
- remove MAKE_JOBS_SAFE=no which has been fixed in upstream Makefiles
- split SUBST rules into ones for Makefiles, man page, and config files
- install misc README files in doc dirs which are useful after installation
- add "mlterm-fb" and "ibus" options and make mlterm-fb default
  on supported platforms
- update PLIST per above changes (XXX tested only on NetBSD)

Upstream Changes per doc/en/ReleaseNote:

ver 3.2.0
* Support framebuffer on NetBSD.
* Support 1 bpp framebuffer.
* Support sixel graphics and wall pictures on 1 and 8 bpp framebuffer.
(See http://www.youtube.com/watch?v=djbEw0G_LMI and http://www.youtube.com/watch?v=5IH1NYSVpHY)
(Thanks to @tsutsuii san)
* Add "use_urgent_bell" option which is equivalent to "bellIsUrgent" option of
  xterm and support CSI ? 1042.
* "only_use_unicode_font" and "not_use_unicode_font" options have an effect
  on preedit and candidate characters of input method plugins.
* Add "sound|visual" to the value of "bel_mode" option.
* Enable to change "not_use_unicode_font" and "only_use_unicode_font" dynamically.
* Add "box_drawing_font" option.
* Support efont-unicode fonts for framebuffer.
* Bug fixes:
  Fix the bug which disabled some shortcut keys in FreeBSD/framebuffer.
  Fix the bug which ignored the specified encoding of "default_server" option
  in opening a new pty.
  Fix the bug which disabled sixel graphic images in framebuffer 16bpp.
  Fix the bug which disabled inline pictures if use_dynamic_comb option is true.
  Fix the bug of iBus input method plugin which disabled to erase the last
  preedited character even if backspace key was pressed.
  Fix the wrong height of the preediting cursor of the input method plugin
  if the value of "inner_border" option isn't 2. (Thanks to @tsutsuii san)
  Fix "use_dynamic_comb" option which didn't work anymore.
  Fix the bug which disabled "UNUSED" key in ~/.mlterm/key.
  Change key seuqences for modifier keys + cursor keys in application cursor key
  mode. (e.g. Ctrl+Up: "\x1bO1;5A" -> "\x1b[1;5A") (Thanks to Mohammad Alsaleh)

(tsutsui)

2013-05-26 18:09:35 UTC MAIN commitmail json YAML

Updated pkgtools/pkglint to 4.130

(wiz)

2013-05-26 18:09:24 UTC MAIN commitmail json YAML

rillig clarified:
"u" means "use at runtime", i.e. the variable may not be available
during preprocessing.
"t" wasn't used at all (my error -- wiz)

Bump version.

(wiz)

2013-05-26 18:06:14 UTC MAIN commitmail json YAML

Updated sysutils/dbus to 1.6.10

(wiz)

2013-05-26 18:06:05 UTC MAIN commitmail json YAML

Update to 1.6.10:

D-Bus 1.6.10 (2013-04-24)
==

The “little-known facts about bananas” release.

• Following Unicode Corrigendum #9, the noncharacters U+nFFFE, U+nFFFF,
  U+FDD0..U+FDEF are allowed in UTF-8 strings again.
  (fd.o #63072, Simon McVittie)

• Diagnose incorrect use of dbus_connection_get_data() with negative slot
  (i.e. before allocating the slot) rather than returning junk
  (fd.o #63127, Dan Williams)

• In the activation helper, when compiled for tests, do not reset the system
  bus address, fixing the regression tests. (fd.o #52202, Simon)

• Fix building with Valgrind 3.8, at the cost of causing harmless warnings
  with Valgrind 3.6 on some compilers (fd.o #55932, Arun Raghavan)

• Don't leak temporary fds pointing to /dev/null (fd.o #56927, Michel HERMIER)

• Create session.d, system.d directories under CMake (fd.o #41319,
  Ralf Habacker)

• Unix-specific:
  · Include alloca.h for alloca() if available, fixing compilation on
    Solaris 10 (fd.o #63071, Dagobert Michelsen)

(wiz)

2013-05-26 18:01:25 UTC MAIN commitmail json YAML

Updated fonts/harfbuzz to 0.9.17

(wiz)

2013-05-26 18:01:16 UTC MAIN commitmail json YAML

Update to 0.9.17:

Overview of changes leading to 0.9.17
Monday, May 20, 2013
=====================================

- Build fixes.
- Fix bug in hb_set_get_min().
- Fix regression with Arabic mark positioning / width-zeroing.

(wiz)

2013-05-26 18:00:07 UTC MAIN commitmail json YAML

Updated devel/py-distribute to 0.6.43

(wiz)

2013-05-26 17:59:59 UTC MAIN commitmail json YAML

Update to 0.6.43:

------
0.6.43
------

* Issue #378: Restore support for Python 2.4 Syntax (regression in 0.6.42).

------
0.6.42
------

* External links finder no longer yields duplicate links.
* Issue #337: Moved site.py to setuptools/site-patch.py (graft of very old
  patch from setuptools trunk which inspired PR #31).

------
0.6.41
------

* Issue #27: Use public api for loading resources from zip files rather than
  the private method `_zip_directory_cache`.
* Added a new function ``easy_install.get_win_launcher`` which may be used by
  third-party libraries such as buildout to get a suitable script launcher.

(wiz)

2013-05-26 17:58:49 UTC MAIN commitmail json YAML

Updated misc/dialog to 1.2.20130523

(wiz)

2013-05-26 17:58:39 UTC MAIN commitmail json YAML

Update to 1.2.20130523:

2013/05/23
+ modify ifdef in arrows.c to work around packages which use the
  wide-character ncursesw headers with the ncurses library (report
  by Aleksey Cheusov).
+ correct workaround for xterm alternate-screen to work with/without
  the fix made in ncurses that makes putp() always write to the
  standard output (Debian #708829).
+ improve limit-checks for checklist, in case the dialog is resized
  (report by Ilya A Arkhipov).
+ add --last-key option (adapted from patch by Jordi Pujol, Debian
  #697607).

2013/03/15
+ update zh_TW.po, add an.po from
http://translationproject.org/latest/dialog/

(wiz)

2013-05-26 17:57:21 UTC MAIN commitmail json YAML

Updated multimedia/libogg to 1.3.1

(wiz)

2013-05-26 17:57:13 UTC MAIN commitmail json YAML

Update to 1.3.1:

Version 1.3.1 (2013 May 12)

* Guard against very large packets.
* Respect the configure --docdir override.
* Documentation fixes.
* More Windows build fixes.

(wiz)

2013-05-26 17:56:20 UTC MAIN commitmail json YAML

Updated lang/python33 to 3.3.2

(wiz)

2013-05-26 17:56:09 UTC MAIN commitmail json YAML

2013-05-26 17:55:10 UTC MAIN commitmail json YAML

Updated mail/getmail to 4.41.0

(schmonz)

2013-05-26 17:55:04 UTC MAIN commitmail json YAML

Update to 4.41.0. From the changelog:

- messages retrieved with POP could have a blank trailing line
  removed when delivered; fixed. Thanks: Christoph Mitterer, Krzysztof
  Warzecha.

- fix an ImportError when IMAP retriever used with getmail under
  Python 2.4.

(schmonz)

2013-05-26 17:53:34 UTC MAIN commitmail json YAML

+ ImageMagick-6.8.5.7, calibre-0.9.32, cdialog-1.2.20130523,
  chromium-bsu-0.9.15.1, cmake-2.8.11, dialog-1.2.20130523, glpk-4.50,
  glu-9.1.3, harfbuzz-0.9.17, libogg-1.3.1, p5-PerlMagick-6.8.5.7,
  phpmyadmin-4.0.2, py-distribute-0.6.43, python33-3.3.2, typo3-6.1.1,
  wine-devel-1.5.31 [wait until NetBSD gains OSS 4 [kern/46611] or
  bring OSS 3 support back], x264-devel-20130525.

(wiz)

2013-05-26 17:28:55 UTC MAIN commitmail json YAML

Updated misc/rump to 20130525 and filesystems/fs-utils to 20130519

(stacktic)

2013-05-26 17:25:30 UTC MAIN commitmail json YAML

2013-05-26 17:23:44 UTC MAIN commitmail json YAML

Update misc/rump to 20130525
The distfile is now built with the tarup.sh script to avoid depending on CVS
for building this package.

(stacktic)

2013-05-26 16:55:53 UTC MAIN commitmail json YAML

security update for RT3, fixing:

    CVE-2013-3368
    CVE-2013-3369
    CVE-2013-3370
    CVE-2013-3371
    CVE-2013-3372
    CVE-2013-3373
    CVE-2013-3374

It also includes a database upgrade, so please make sure to run `make
upgrade-database`.

Changes in detail are:
3.8.15->3.8.16:
ruz stop RT from locking on "large" mails
ruz make sure data is recorded (tests)
alexmv Remove bogus argument to ->get(), which fail on HTTP::Message >= 5.05
alexmv Ensure that tickets are destroyed before global destruction, in more
alexmv Work around a bug in perl < 5.13.10 with open($fh, ">:raw", \$string)
sunnavy destroy more tickets and objects before global destruction for modern
tsibley Remove the "signature" paragraph from the README's explanation of RT

3.8.16->3.8.17:
alexmv Ensure that filenames in inline image attributes are HTML-escaped
alexmv Deny direct access to callbacks
alexmv Protect calls to $m->comp with user input in ColumnMap
alexmv Ensure that subjects cannot contain embedded newlines
alexmv Remove filename= suggesions from Content-Disposition lines
alexmv Ensure consistent escaping of filenames in attachment URIs
alexmv Ensure that URLs placed in HTML attributes are escaped correctly, to
prevent XSS injection
alexmv Ensure that the default replacement does not pass through unescaped
content
alexmv Use File::Temp for non-predictable temporary filenames

(spz)

2013-05-26 12:55:44 UTC MAIN commitmail json YAML

Fix configure patch. This now builds again for me. The xvidcore
error disappeared on its own. Weird.

(wiz)

2013-05-26 12:19:11 UTC MAIN commitmail json YAML

Fixes entries, Added as Updated.

(obache)

2013-05-26 12:15:21 UTC MAIN commitmail json YAML

Updated databases/sqlitebrowser to 2.0beta1

(rodent)

2013-05-26 12:14:56 UTC MAIN commitmail json YAML

Updated to latest release, 2.0beta1. Now based on Qt4.6. No ChangeLog in
distfile. pkgsrc changes: Added LICENSE. Fixed typo in COMMENT. Added
patch to make this work with Qt>4.6. Use qt4-{libs,tools} instead of Qt3.

(rodent)

2013-05-26 10:50:33 UTC MAIN commitmail json YAML

2013-05-26 09:33:16 UTC MAIN commitmail json YAML

2013-05-26 09:23:15 UTC MAIN commitmail json YAML

Updated graphics/libraw to 0.15.1; textproc/libxml2 to 2.9.1

(adam)

2013-05-26 09:22:14 UTC MAIN commitmail json YAML

Changes 2.9.1:
Features:
Support for Python3,
Add xmlXPathSetContextNode and xmlXPathNodeEval

Documentation:
Add documentation for xmllint --xpath
Fix the URL of the SAX documentation from James
Fix spelling of "length"

Portability:
Fix python bindings with versions older than 2.7
rebuild docs:Makefile.am
elfgcchack.h after rebuild in doc
elfgcchack for buf module
Fix a uneeded and wrong extra link parameter
Few cleanup patches for Windows
Fix rpmbuild --nocheck
Fix for win32/configure.js and WITH_THREAD_ALLOC
Fix Broken multi-arch support in xml2-config
Fix a portability issue for GCC < 3.4.0
Windows build fixes
Fix a thread portability problem
Downgrade autoconf requirement to 2.63

Bug Fixes:
Fix a linking error for python bindings
Fix a couple of return without value
Improve the hashing functions
Improve handling of xmlStopParser()
Remove risk of lockup in dictionary initialization
Activate detection of encoding in external subset
Fix an output buffer flushing conversion bug
Fix an old bug in xmlSchemaValidateOneElement
Fix configure cannot remove messages
fix schema validation in combination with xsi:nil
xmlCtxtReadFile doesn't work with literal IPv6 URLs
Fix a few problems with setEntityLoader
Detect excessive entities expansion upon replacement
Fix the flushing out of raw buffers on encoding conversions
Fix some buffer conversion issues
When calling xmlNodeDump make sure we grow the buffer quickly
Fix an error in the progressive DTD parsing code
xmllint should not load DTD by default when using the reader
Try IBM-037 when looking for EBCDIC handlers
Fix potential out of bound access
Fix large parse of file from memory
Fix a bug in the nsclean option of the parser
Fix a regression in 2.9.0 breaking validation while streaming
Remove potential calls to exit()

Improvements:
Regenerated API, and testapi, rebuild documentation
Fix tree iterators broken by 2to3 script
update all tests for Python3 and Python2
A few more fixes for python 3 affecting libxml2.py
Fix compilation on Python3
Converting apibuild.py to python3
First pass at starting porting to python3
updated configure.in for python3
Add support for xpathRegisterVariable in Python
Added a regression tests from bug 694228 data
Cache presence of '<' in entities content
Avoid extra processing on entities
Python binding for xmlRegisterInputCallback
Python bindings: DOM casts everything to xmlNode
Define LIBXML_THREAD_ALLOC_ENABLED via xmlversion.h
Adding streaming validation to runtest checks
Add a --pushsmall option to xmllint

Cleanups:
Switched comment in file to UTF-8 encoding
Extend gitignore
Silent the new python test on input
Cleanup of a duplicate test
Cleanup on duplicate test expressions
Fix compiler warning after 153cf15905cf4ec080612ada6703757d10caba1e
Spec cleanups and a fix for multiarch support
Silence a clang warning
Cleanup the Copyright to be pure MIT Licence wording
rand_seed should be static in dict.c
Fix typos in parser comments

(adam)

2013-05-26 09:14:57 UTC MAIN commitmail json YAML

2013-05-26 09:07:35 UTC MAIN commitmail json YAML

Changes 0.15.1:
Incorrect data maximum calculations for Panasonic files were fixed. A possible buffer overrun in exposure correction code is now checked.

(adam)

2013-05-26 06:52:38 UTC MAIN commitmail json YAML

no need to mkdir -p X and X/Y

(jnemeth)

2013-05-26 06:52:13 UTC MAIN commitmail json YAML

add /var/run/xen to list of directories to create

(jnemeth)

2013-05-26 04:15:40 UTC MAIN commitmail json YAML

2013-05-26 04:14:44 UTC MAIN commitmail json YAML

Added lang/open-cobol-ce version 1.1.59

(ryoon)

2013-05-26 04:14:12 UTC MAIN commitmail json YAML

Add open-cobol-ce

(ryoon)

2013-05-26 04:13:05 UTC MAIN commitmail json YAML

2013-05-26 01:53:45 UTC MAIN commitmail json YAML

Updated devel/cvs-fast-export to 0.4

(ryoon)

2013-05-26 01:52:40 UTC MAIN commitmail json YAML

Update to 0.4.

Changelog:
0.4 @ 2013-05-16
    Fix buggy handling of -k option.
    Add --remote (-e) and --stripprefix (-s) options.
    Avoid recursion overflow on very large repos.
    The fast-import stream ops are now emitted in the same order git uses.

(ryoon)

2013-05-26 01:49:11 UTC MAIN commitmail json YAML

Updated devel/fromcvs to 0.0.0.133

(ryoon)

2013-05-26 01:48:42 UTC MAIN commitmail json YAML

Update to 0.0.0.133.

* Update HOMEPAGE and MASTER_SITES.
* Supported ruby version is 1.8.x only.

Changelog:
* buxfixes

(ryoon)

2013-05-26 01:45:37 UTC MAIN commitmail json YAML

Updated devel/ruby-rcsparse to 0.0.0.46

(ryoon)

2013-05-26 01:44:44 UTC MAIN commitmail json YAML

Update to 0.0.0.46.

* Update HOMEPAGE and MASTER_SITES.
* Supported ruby version is 1.8.x only.

Changelog:
* bugfixes

(ryoon)

2013-05-26 01:39:58 UTC MAIN commitmail json YAML

Remove xulrunner.

(ryoon)

2013-05-26 01:36:58 UTC MAIN commitmail json YAML

Fix inclusion of xpi.mk.

(ryoon)

2013-05-26 01:34:28 UTC MAIN commitmail json YAML

Added lang/opensource-cobol version 1.3J

(ryoon)

2013-05-26 01:33:06 UTC MAIN commitmail json YAML

Add opensource-cobol

(ryoon)

2013-05-26 01:31:53 UTC MAIN commitmail json YAML

Import opensource-cobol-1.3J as lang/opensource-cobol.

opensource COBOL is based on OpenCOBOL compiler and has some
extensions used in Japan. It translate COBOL programs to C code
and compiles it using GCC.
This package tracks opensource COBOL UTF-8 version.

(ryoon)

2013-05-26 00:44:53 UTC MAIN commitmail json YAML

Updated print/hplip to 3.13.5 [schnoebe 2013-05-26]

(schnoebe)

2013-05-26 00:43:23 UTC MAIN commitmail json YAML

HPLIP 3.13.5 - This release has the following changes:
Added Support for the Following New Printers:

- HP LaserJet Enterprise MFP M725 series
- HP LaserJet Enterprise MFP M725dn
- HP LaserJet Enterprise MFP M725fw
- HP LaserJet Enterprise MFP M725z
- HP LaserJet Enterprise MFP M725z+
- HP Officejet Pro 3610 Black and White e-All-in-One
- HP Officejet Pro 3620 Black and White e-All-in-One

Launchpad fixes:
1176470 - hp-setup fails with the message "ethernet cable is plugged in"
- But it isn't
1157701 - soapfax.py:139:setStationName:UnicodeEncodeError: 'ascii'
  codec can't encode characters in position 0-3: ordinal not in
  range(128)
1163339 - hplip online documentation: manual tarball installation shows
  package dependancies which are out-of-date

Issues fixed:
- Bottom margin is not printing on 8.5x13in paper size for DeskJet 2050
  J510 device
- Fixed cross resolution issue for pcl3gui2

Detailed Change Log:
- Added 56-hpmud.rules and removed 56-hpmud_support, 86-hpmud_plugin,
  56-hpmud_add_printer, 55-hpmud and 40-hplip rules
- Added hplip-printer@.service to support systemd services in Udev for
  OpenSuSe 12.3

(schnoebe)

2013-05-25 23:47:32 UTC MAIN commitmail json YAML

2013-05-25 23:46:52 UTC MAIN commitmail json YAML

The dictionary is named british, not en_GB. Add missing (n)curses
dependency. Don't use getline as function name. Bump revision.

(joerg)

2013-05-25 23:45:34 UTC MAIN commitmail json YAML

2013-05-25 23:44:47 UTC MAIN commitmail json YAML

Deal with operator void * vs operate bool changes between C++03 and
C++11.

(joerg)

2013-05-25 23:43:58 UTC MAIN commitmail json YAML

2013-05-25 23:43:26 UTC MAIN commitmail json YAML

2013-05-25 23:42:45 UTC MAIN commitmail json YAML

2013-05-25 23:41:24 UTC MAIN commitmail json YAML

2013-05-25 20:09:57 UTC MAIN commitmail json YAML

Updated lang/opencobol to 1.1nb1

(ryoon)

2013-05-25 20:09:01 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Fix runtime error on NetBSD-current.

(ryoon)

2013-05-25 18:18:58 UTC MAIN commitmail json YAML

2013-05-25 16:54:36 UTC MAIN commitmail json YAML

Updated audio/paprefs to 0.9.10
Updated comms/jpilot to 1.8.0
Updated devel/astyle to 1.15.3
Updated emulators/dgen to 1.32

(shattered)

2013-05-25 16:49:03 UTC MAIN commitmail json YAML

Update to 1.32. Changes:

* Imported hqx filters.
* Added debugger support.
* Rendered screen is now scaled by a factor of 2 by default.
* Fixed joystick issues. bool_joystick is also enabled by default.
* DGen is now fully controllable from a joystick/joypad.
* Imported Cyclone 68000 0.099, a M68K core written in pure ARM assembly.
* Imported DrZ80, a Z80 core also written in pure ARM assembly.
* Cyclone 68000 and DrZ80 are now the default CPU emulators on ARM.
* Lots of bugfixes.

(shattered)

2013-05-25 16:39:39 UTC MAIN commitmail json YAML

Update to 1.15.3. Changes:

New option: '--force-indent=tab=#'. Added support for C#. Many bugfixes.

(shattered)

2013-05-25 16:28:05 UTC MAIN commitmail json YAML

Update to 1.8.0. Changes:

Added libgcrypt support
Added support for Calendar app
Export function for KeyRing data
Overhaul of Expense plugin
Overhaul VCARD export including adding IM, Birthday, Website fields
GUI changes: ToDo items due today are marked by a soft green color
GUI changes: new alarm clock and lock icons
GUI changes: radio buttons to select between timed and untimed events

Fixed Mac OS X bugs/crash
Resolve segmentation fault when editing Contacts with attached pictures
Resolve error where Contacts created on Palm could not be deleted with Jpilot
Resolve sync error with simultaneously modified Contacts
Fix Bug 1991 : Categories are lost during first sync

(shattered)

2013-05-25 15:53:12 UTC MAIN commitmail json YAML

Update to 0.9.10. Changes:

More translations, add RAOP enabling support,
add uPNP enabling support, add PackageKit support.

(shattered)

2013-05-25 15:19:26 UTC MAIN commitmail json YAML

2013-05-25 14:44:57 UTC MAIN commitmail json YAML

Updated print/poppler to 0.22.4

(wiz)

2013-05-25 14:44:48 UTC MAIN commitmail json YAML

Update to 0.22.4:

Release 0.22.4
        core:
        * Always consider a softmask transfer function (Bug #63587)
        * Fix crash on malformed files (Bug #63190)
        * Splash: Fix compilation with fixed point mode enabled

        utils:
        * Fix crash on some files (Bug #63909)

        qt4:
        * Fix name decoding of some attachments (KDE Bug #307786)

        build system:
        * Fix compilation with mingw-w64 compiler

(wiz)

2013-05-25 14:40:12 UTC pkgsrc-2013Q1 commitmail json YAML

2013-05-25 14:39:29 UTC pkgsrc-2013Q1 commitmail json YAML

Pullup ticket #4141 - requested by obache
print/acroread9: security update

Revisions pulled up:
- print/acroread9/Makefile                                      1.10
- print/acroread9/distinfo                                      1.9

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Fri May 24 13:11:08 UTC 2013

  Modified Files:
  pkgsrc/print/acroread9: Makefile distinfo

  Log Message:
  Update acroread9 to 9.5.5 for APSB13-15.

(tron)

2013-05-25 13:32:36 UTC MAIN commitmail json YAML

2013-05-25 13:32:26 UTC MAIN commitmail json YAML

Update to 5.1.2:

Changes between GMP version 5.1.1 and 5.1.2

  BUGS FIXED
  * A bug in mpz_powm_ui triggered by base arguments of at least 15000 decimal
    digits or mod arguments of at least 7500 decimal digits has been fixed.

  * A AMD Bulldozer specific bug affecting the 64-bit Windows ABI has been
    fixed.  This bug was in a key function (mpn_mul_1) and made both Bulldozer
    specific builds and fat builds run on Bulldozer completely non-functional.

  MISC
  * Fixes and generalisations to the test suite.

  * Minor portability enhancements.

(wiz)

2013-05-25 11:14:21 UTC MAIN commitmail json YAML

Updated www/icedtea-web to 1.2prenb15

(ryoon)

2013-05-25 11:13:58 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Depend on xulrunner17 instead of xulrunner.

(ryoon)

2013-05-25 11:13:12 UTC MAIN commitmail json YAML

Exactly disable Python bindings

(obache)

2013-05-25 11:11:48 UTC MAIN commitmail json YAML

Updated misc/openoffice3 to 3.1.1nb43

(ryoon)

2013-05-25 11:11:14 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Depend on xulrunner17 instead of xulrunner.

(ryoon)

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

Updated devel/xulrunner17 to 17.0.6nb1

(ryoon)

2013-05-25 11:08:21 UTC MAIN commitmail json YAML

Bump PKGREVISION.

* Fix buldlinking pathes.
* Put pkg-config files to standard place.

(ryoon)

2013-05-25 06:36:25 UTC MAIN commitmail json YAML

Updated x11/libXau to 1.0.8

(wiz)

2013-05-25 06:36:15 UTC MAIN commitmail json YAML

Update to 1.0.8:

This maintenance release brings happiness by getting rid of things
that make valgrind, clang, doclifter, automake, the GNOME build system,
various other static analyzers, and obsessive developers be unhappy.

Don't warn, be happy.

Adam Jackson (1):
      configure: Remove AM_MAINTAINER_MODE

Alan Coopersmith (10):
      Clean up some clang warnings about sign conversion
      Tell clang to shut up about the padding in struct xauth
      unifdef -U__UNIXOS2__
      Convert INCLUDES to AM_CPPFLAGS in preparation for automake-1.14 obsoletion
      Use configure check for pathconf instead of X_NOT_POSIX #define
      Check for configure's HAVE_UNISTD_H instead of X_NOT_POSIX
      Replace strcpy+strcat pairs with snprintf calls
      Call memcmp() instead of defining our own equivalent
      Use remove() instead of unlink() to delete lock files
      libXau 1.0.8

Chase Douglas (1):
      Free XauFileName() static buffer at exit

Colin Walters (1):
      autogen.sh: Implement GNOME Build API

Eric S. Raymond (1):
      Remove a use of tab stops.

(wiz)

2013-05-25 05:19:29 UTC MAIN commitmail json YAML

Updated sysutils/xentools42 to 4.2.2nb1

(jnemeth)

2013-05-25 05:19:17 UTC MAIN commitmail json YAML

Some general package cleanups:

- added to MESSAGE advising of rc.d script changes
- added BASH as a tool
- fixed pygrub install so that it doesn't get overwritten with a symlink
- turned oxenstored.conf into a proper config file

(jnemeth)

2013-05-25 01:38:00 UTC MAIN commitmail json YAML

Move flac, speex, and vorbis PKG_OPTIONS to PKG_OPTIONS_SET.codec, because
at least one of them is required, configure fails if one isn't set, and we
can help the user not make this mistake.

(rodent)

2013-05-24 19:31:59 UTC MAIN commitmail json YAML

2013-05-24 19:30:54 UTC MAIN commitmail json YAML

Fix build with Python 3.2

(joerg)

2013-05-24 18:31:49 UTC MAIN commitmail json YAML

2013-05-24 18:23:40 UTC MAIN commitmail json YAML

2013-05-24 18:23:07 UTC MAIN commitmail json YAML

Updated www/libproxy to 0.4.11

(wiz)

2013-05-24 18:22:57 UTC MAIN commitmail json YAML

Update to 0.4.11:

New in version 0.4.11
==============================
* Build fixes with cmake 2.8.10+
* Quick release without built binaries / files (Address Bug #184)

New in version 0.4.10
==============================
* Fix http chunk encoded PAC that was broken in previous release
* Add HTTP client unit test
* Fix more coding style issues

New in version 0.4.9
==============================
* CVE-2012-4504 Fixed buffer overflow when downloading PAC
* Fix infinit loop uppon network errors

New in version 0.4.8
==============================
* Only support standalone mozjs185 as mozilla js engine.
  xulrunner being part of the now lightning fast moving firefox
  is impossible to be tracked as a dependency and it is not
  supported by Mozilla to be used in this scenario.
* Support building with javascritpcoregtk 1.5
  (got split out of webkitgtk).
* Support sending multiple results.
* Issues fixed:
  - #166: Libproxy does not parse NO_PROXY correct when the line
          contains spaces
  - #164: If gconf's value is an empty list, pxgconf will make
          /usr/bin/proxy wait forever
  - #60: use lib js for embedded solutions
  - #160: strdup and gethostbyname not declared on OSX 10.7
  - #168: .pc file should be installed under OSX as well.
  - #170: Also check for "Transfer-Encoding: chunked".
  - #171: mozjs pacrunner: Fix parameters of dnsResolve_()
  - #172: Allow to forcibly build pacrunner as module (-DBIPR={ON,OFF})
  - #173: Libproxy doesn't build with gcc 4.7
  - #147: Use ${CMAKE_DL_LIBS} instead of assuming libdl is correct.
  - #176: python bindings: guard the destructor.
  - #177: Speed up importing of libproxy in python.
  - #179: CMAKE 2.8.8 does not define PKG_CONFIG_FOUND

New in version 0.4.7
==============================
* Support/require xulrunner 2.0+
* Support linking againgst libwebkit-gtk3 (-DWITH_WEBKIT3=ON)
* Port to gsettings for gnome3. (-DWITH_GNOME3=ON[default])
* Issues closed:
  - #149: always test for the right python noarch module path
  - #155: Cannot compile with Firefox 4
  - #156: libproxy should build against webkitgtk-3.0
  - #158: Won't compile w/ xulrunner 2.0 final
  - #159: libproxy fails with autoconfiguration "http://proxy.domain.com"
  - #131: GSettings-based GNOME plugin
  - #150: SUSE sysconfig/proxy config support

New in version 0.4.6
==============================
* Fixed a crash in the URL parser
* Fixed build issues with Visual Studio
* Updated the INSTALL file
* Install Python binding in prefix path if site-packages exists
* Fixed compilation with Visual Studio

New in version 0.4.5
===============================
* C# bindings are installable (-DWITH_DOTNET=ON)
* C# bindings installation path can be changed using -DGAC_DIR=
* Internal libmodman build fixed
* Installation dirs are now all relative to CMAKE_INSTALL_PREFIX
* Fixed test while using --as-needed linker flag
* Fixed generation of libproxy-1.0.pc
* Basic support for Mingw added (not yet 100% functional)
* Ruby binding implemented (not yet in the build system)
* Fixed modules not being found caused by relative LIBEXEC_INSTALL_DIR
* Fixed bug with builtin plugins (Issue 133)
* Vala bindings installation path can be changed using -DVAPI_DIR=
* Python bindings installation path can be changed using -DPYTHON_SITEPKG_DIR=
* Perl bindings can be installed in vendor directory (-DPERL_VENDORARCH=ON)
* Perl bindings installation path can be change using -DPX_PERL_ARCH=
* Unit test now builds on OSX

New in version 0.4.4
===============================
* Add support for optionally building using a system libmodman
* Rework build system to be cleaner
* Fix two major build system bugs: 127, 128

New in version 0.4.3
===============================
* Test can now be out-compiled using BUILD_TESTING=OFF
* Fixed python binding not handling NULL pointer
* Pyhton binding now support Python version 3
* Rewrote URL parser to comply with unit test
* Username and password are now URL encoded
* Scheme comparison is now non-case sensitive
* Fixed deadlock using WebKit has PAC runner
* Fixed OS X compilation of Perl bindings

New in version 0.4.2
===============================
* Fixed python binding that failed on missing px_free symbole
* Workaround cmake bug with dynamic libraries in non-standard folders

New in version 0.4.1
===============================
* Perl bindings have been integrated into the CMake Build System
* Vala bindings are installed if -DWITH_VALA=yes is passed to cmake
* All extensions can be disabled using WITH_*=OFF cmake options
* socks5:// and socks4:// can now be returned
* Many bugfixes

New in version 0.4.0
===============================
* C++ rewrite
* Small API change (px_proxy_factory_get_proxy() can now return NULL)
* SOVERSION bump
* libmodman is now a seperate library
* Migrate to cmake
* Windows support (config_w32reg, ignore_hostname; VC++ support)
* MacOSX support (config_macosx, ignore_hostname)
* Built-in modules support
* Support for chunked encoding
* Move to hidden visibility by default
* KDE's KConfig symantics are fully supported
* Removeal of all PX_* env variables (no longer needed)
* Symbol based detection of relevant pacrunner
* Reworked config_gnome to not suck (its *much* faster)
* Many other things I can't remember

(wiz)

2013-05-24 15:30:47 UTC MAIN commitmail json YAML

Add compatability define for u_int16_t on SunOS.

(jperkin)

2013-05-24 15:08:22 UTC MAIN commitmail json YAML

Updated pkgtools/pkgin to 0.6.3.1.1nb2

(jperkin)

2013-05-24 15:08:00 UTC MAIN commitmail json YAML

Make sure largefile support is enabled on SunOS.  See github issues
joyent/smartos-live#137 and joyent/pkgsrc#28 for more information.

Bump PKGREVISION.

(jperkin)

2013-05-24 13:28:14 UTC MAIN commitmail json YAML

Updated x11/pixman to 0.30.0

(wiz)

2013-05-24 13:28:04 UTC MAIN commitmail json YAML

Update to 0.30.0. Adapt patch-b[bc] to changes.
XXX: these patches should go away, or be fed upstream.

A new major release 0.30.0 of the pixman rendering library is now
available. Highlights of this release:

- Support for high-quality image downscaling [S淡ren]
- Much improved ARMv6 assembly [Ben Avison]
- Improved rendering quality for gradients [S淡ren]
- Improvements to the SSE2 backend [Chris Wilson, Siarhei Siamashka]
- Improvements to MIPS DSPr2 backend [Nemanja Lukic]
- Improvements to test suite [Siarhei, S淡ren Sandmann]

(wiz)

2013-05-24 13:17:46 UTC MAIN commitmail json YAML

+ MesaLib-9.1.3.

(wiz)

2013-05-24 13:16:34 UTC MAIN commitmail json YAML

Updated x11/xf86-video-openchrome to 0.3.3

(wiz)

2013-05-24 13:16:24 UTC MAIN commitmail json YAML

Update to 0.3.3:

This is a bugfix release. It includes:
- Fix integer overflow in libchromeXvMC (CVE-2013-1994).
- Various bug fixes and improvements.

(wiz)

2013-05-24 13:13:47 UTC MAIN commitmail json YAML

+ apache-ant-1.9.1, asymptote-2.23, calibre-0.9.31, capc-calc-2.12.4.8,
  gmp-5.1.2, gtkmm-3.8.0 [see wip/gtkmm3], handbrake-0.9.9,
  mpg123-1.15.4, p5-gtk2-1.300, qemu-1.5, samba-4.0.6, weechat-0.4.1,
  xf86-video-openchrome-0.3.3.

(wiz)

2013-05-24 13:11:27 UTC MAIN commitmail json YAML

Updated print/acroread9 to 9.5.5

(obache)

2013-05-24 13:11:08 UTC MAIN commitmail json YAML

2013-05-24 11:42:16 UTC MAIN commitmail json YAML

Updated devel/reposurgeon to 2.39

(wiz)

2013-05-24 11:42:04 UTC MAIN commitmail json YAML

Update to 2.39:

2.39: 2013-05-23
    New 'tagify' commsnd for tagifying empty commits.
    Correctness fixes for deletion edge cases.

2.38: 2013-05-10
    Significant improvements to Subversion branch link detection.
    New 'reparent' command for modifying the DAG.
    Fixes for two minor crash bugs in handling of malformed commands.

(wiz)

2013-05-24 11:40:52 UTC MAIN commitmail json YAML

2013-05-24 09:59:54 UTC MAIN commitmail json YAML

restore enigmail checksums

(wiz)

2013-05-24 08:08:55 UTC MAIN commitmail json YAML

Added www/litmus version 0.13

(adam)

2013-05-24 08:08:16 UTC MAIN commitmail json YAML

Added www/litmus version 0.13

(adam)

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

litmus: WebDAV server protocol compliance test suite. Tests include:
* OPTIONS for DAV: header
* PUT, GET with byte comparison
* MKCOL
* DELETE (collections, non-collections)
* COPY, MOVE using combinations of:
- overwrite t/f
- destination exists/doesn't exist
- collection/non-collection
* Property manipulation and querying:
- set, delete, replace properties
- persist dead props across COPY
- namespace handling
* Locking
- attempts to modify locked resource (as lock owner, not owner)
- shared/exclusive locks, lock discovery

(adam)

2013-05-23 21:12:20 UTC MAIN commitmail json YAML

Updated devel/quilt to 0.48nb2

(sbd)

2013-05-23 21:12:11 UTC MAIN commitmail json YAML

On Linux there is no need to depend on coreutils gsed and patch.

So use the tools system for gsed and on Linux use the native cp and date
and if patch exits use it.

Bump PKGREVISION

(sbd)

2013-05-23 20:22:15 UTC MAIN commitmail json YAML

Updated www/squid3 to 3.3.5

(adam)

2013-05-23 20:21:28 UTC MAIN commitmail json YAML

Changes 3.3.5:
* Allocate ClientInfo::hash.key using malloc() instead of new char[]
* Bug 3851: Delay Pool class 5 tag:levels displayed incorrectly in cache manager
* Use case-insensitive comparison for HTTP header names in *_header_access
* Bug 3744: squid terminated: FATAL: Bungled (null) line 3: sslproxy_cert_sign signTrusted all
* Bug 3759: OpenSSL compilation error on stock Fedora17, RHEL, CentOS 6 systems
* Bug 3816: SSL_get_certificate call inside Ssl::verifySslCertificate crashes squid, part2
* Port from 2.6: external acl %ACL and %DATA tags
* Log an ERROR instead of halting on unknown cache_dir types
* Add missing piece omitted from rev.9677
* Remove origin_tries limiter on forwarding
* Fixed leaking configurable SSL error details.
* Fix memory error with Kerberos authentication
* Avoid !closing assertions when helpers call comm_read [during reconfigure].
* Avoid Comm::Connection leaks when helpers are reconfigured or otherwise closed.
* find-alive.pl: Replaced HttpReq entry (already covered by the guessing code) with HttpHeaderEntry entry
* Docs: Polish [http::]>h and [http::]>ha descriptions to emphasize their pre-cache scope
* Polish: show file path on Bungled lines

(adam)

2013-05-23 19:49:29 UTC MAIN commitmail json YAML

Updated mail/dovecot2 to 2.2.2

(adam)

2013-05-23 19:45:50 UTC MAIN commitmail json YAML

Changes 2.2.2:
+ zlib: Keep the last mail cached uncompressed in a temp file. This
  fixes performance when doing small partial fetches from a large
  mail.
+ acl: If plugin { acl_defaults_from_inbox = yes } is set, get the
  default ACLs for private and shared namespaces from the user's INBOX.
  (This probably will become default in v2.3.)
+ pop3: Added pop3_deleted_flag setting to switch POP3 deletions to
  only hide the messages from POP3, but still be visible via IMAP.
- ACL plugin: Mailbox creation wasn't actually checking any ACLs
  and always succeeded (due to some v2.2 API changes). The created
  mailbox couldn't have been accessed though, so this couldn't have
  caused any data leak.
- IMAP: Various URLAUTH fixes.
- IMAP: Fixed a hang with invalid APPEND parameters.
- IMAP LIST-EXTENDED: INBOX was never listed with \Subscribed flag.
- mailbox_list_index=yes still caused crashes.
- maildir: Fixed a crash after dovecot-keywords file was re-read.
- maildir: If files had reappeared unexpectedly to a Maildir, they
  were ignored until index files were deleted.
- Maildir: Fixed handling over 26 keywords in a mailbox.
- Maildir++: Fixed mail_shared_explicit_inbox=no
- namespace { prefix="" list=no } was listing mailboxes.
- imap/pop3-login proxying: Fixed a crash if TCP connection succeeded,
  but the remote login timed out.
- Case-insensitive search/sort didn't work correctly for all unicode
  characters, as specified by i;unicode-casemap comparator. If full
  text search indexes were used, they need to be rebuilt for old mails
  to be handled correctly. (This bug has existed always in Dovecot.)

(adam)

2013-05-23 19:15:55 UTC pkgsrc-2013Q1 commitmail json YAML

2013-05-23 19:15:45 UTC pkgsrc-2013Q1 commitmail json YAML

Pullup ticket #4140 - requested by obache
emulators/suse121_libtiff: security update

Revisions pulled up:
- emulators/suse121_libtiff/Makefile                            1.4
- emulators/suse121_libtiff/distinfo                            1.4

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Thu May 23 11:20:09 UTC 2013

  Modified Files:
  pkgsrc/emulators/suse121_libtiff: Makefile distinfo

  Log Message:
  Update libtiff3 rpm to 3.9.5-8.17.1 for CVE-2013-1960 and CVE-2013-1961.

  Bump PKGREVISION.

(tron)

2013-05-23 18:42:22 UTC MAIN commitmail json YAML

Be more careful in what to chmod and substitute, so that the wrappers
aren't changed.

(joerg)

2013-05-23 18:41:48 UTC MAIN commitmail json YAML

2013-05-23 18:41:21 UTC MAIN commitmail json YAML

2013-05-23 18:40:17 UTC MAIN commitmail json YAML

2013-05-23 18:39:35 UTC MAIN commitmail json YAML

2013-05-23 18:39:09 UTC MAIN commitmail json YAML

Ignore the missing return values from the multiple layers of macros.

(joerg)

2013-05-23 18:38:36 UTC MAIN commitmail json YAML

2013-05-23 18:37:26 UTC MAIN commitmail json YAML

2013-05-23 16:02:22 UTC MAIN commitmail json YAML

Updated graphics/pngcrush to 1.7.58

(adam)

2013-05-23 16:02:13 UTC MAIN commitmail json YAML

2013-05-23 16:01:50 UTC MAIN commitmail json YAML

2013-05-23 16:01:09 UTC MAIN commitmail json YAML

Changes 1.7.58:
* Do not enable reduce_palette by default for "-reduce", "-new", or "-old".
    It still is failing for some files.

(adam)

2013-05-23 15:46:11 UTC MAIN commitmail json YAML

2013-05-23 15:28:45 UTC MAIN commitmail json YAML

Resign as maintainer of this package. Other pkgsrc developers are doing
a much better job of maintaining this package anyway.

(tron)

2013-05-23 15:08:50 UTC MAIN commitmail json YAML

2013-05-23 15:08:26 UTC MAIN commitmail json YAML

2013-05-23 15:07:58 UTC MAIN commitmail json YAML

2013-05-23 15:07:29 UTC MAIN commitmail json YAML

Simpler and more correct check for libexecinfo.

(joerg)

2013-05-23 15:07:16 UTC MAIN commitmail json YAML

Note addtion of www/contao31 and www/contao31-example pacakges version 3.1.0.

(taca)

2013-05-23 15:06:48 UTC MAIN commitmail json YAML

2013-05-23 15:06:35 UTC MAIN commitmail json YAML

Add and enable contao31 and contao31-example.

(taca)

2013-05-23 15:05:54 UTC MAIN commitmail json YAML

2013-05-23 15:05:39 UTC MAIN commitmail json YAML

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

2013-05-23 15:04:45 UTC MAIN commitmail json YAML

2013-05-23 15:04:16 UTC MAIN commitmail json YAML

2013-05-23 15:03:52 UTC MAIN commitmail json YAML

2013-05-23 15:03:27 UTC MAIN commitmail json YAML

2013-05-23 15:02:53 UTC MAIN commitmail json YAML

2013-05-23 15:01:15 UTC MAIN commitmail json YAML

2013-05-23 15:01:05 UTC MAIN commitmail json YAML

2013-05-23 15:00:27 UTC MAIN commitmail json YAML

2013-05-23 15:00:00 UTC MAIN commitmail json YAML

Casting 0 to an iterator is not portable. Just use end() in that case.

(joerg)

2013-05-23 14:59:13 UTC MAIN commitmail json YAML

2013-05-23 14:58:35 UTC MAIN commitmail json YAML

Add Contao 3.1.0 support.

(taca)

2013-05-23 14:58:09 UTC MAIN commitmail json YAML

2013-05-23 14:57:32 UTC MAIN commitmail json YAML

2013-05-23 14:55:49 UTC MAIN commitmail json YAML

Note update of devel/transifex-client package to 0.9.

(taca)

2013-05-23 14:54:53 UTC MAIN commitmail json YAML

Update transifex-client to 0.9, fixing CVE-2013-2073.

pkgsrc changes; use wget instead of curl to fetch.

Quote from release announce on the blog.

* Verify SSL certificates. Even though the client opened an encrypted
  connection to the server, it did not validate the certificate used. As a
  result, the client was open to MITM attacks. The new version will always
  validate the certificate first and refuse to connect to the server if there
  is a problem with it.

* Add support for soft links in UNIX systems. You can now use soft links in
  your project directories. This would be useful in cases where you have a
  large project and you would prefer to assign the localization files to
  multiple Transifex projects.

* Add support for local .transifexrc files. You can now have a .transifexrc
  file in your project directory. The entries in the file will override the
  ones from the main one. This would be useful in cases you would prefer to
  use a different set of credentials for a project than the ones you use for
  the rest of your projects in Transifex.

* Make the client more friendly to users in Windows. The .tx/config file now
  supports forward slashes for the paths in Windows, in accordance to what
  UNIX uses. As a result, people can now share a .tx/config irrespective of
  whether they use a UNIX-based system (like Linux and Mac OS X) or Windows.

(taca)

2013-05-23 13:51:31 UTC MAIN commitmail json YAML

Update Mozilla products.
Remove xulrunner.

(ryoon)

2013-05-23 13:44:19 UTC MAIN commitmail json YAML

2013-05-23 13:34:11 UTC MAIN commitmail json YAML

Update to 17.0.6.

* Sync with mail/thunderbird.
* Include devel/ulrunner17's xpi.mk.

(ryoon)

2013-05-23 13:25:30 UTC MAIN commitmail json YAML

Update to 18.0beta4

* Use common files for www/firefox.

SeaMonkey-specific changes
    Basic Private Browsing support has been added (experimental for now).
    Added support for safe browsing which blocks potentially malicious websites reported as attack sites (malware) or web forgeries (phishing).
    Information like preview text, subject and sender can be shown in new mail notifications now.
    See the changes page for minor changes.

Mozilla platform changes
    CSS -moz-user-select:none selection has been changed to improve compatibility with -webkit-user-select:none (bug 816298).
    Applied graphics-related performance improvements (bug 809821).
    Removed E4X support from SpiderMonkey.
    Added support for the <main> element.
    Implemented scoped stylesheets.
    Fixed some function keys not working when pressed (bug 833719).
    Fixed several stability issues.

(ryoon)

2013-05-23 13:18:56 UTC MAIN commitmail json YAML

prevent to generate binary package in ${PACKAGES} from the side effect of
`install' with USE_DESTDIR=yes.
This changes prevent to unwanted overwite of existing binary packages with
test installation (`stage-install', `replace' & `undo-replace', and so on).

To do both `install' and `package', you can still use `package-install' target,
same as USE_DESTDIR=no.

(obache)

2013-05-23 13:17:52 UTC MAIN commitmail json YAML

Correct HOEPAGE noted by PR pkg/47848 from Ilias-Dimitrios Vrachnis.

(taca)

2013-05-23 13:14:28 UTC MAIN commitmail json YAML

Fix hack.mk include.

(ryoon)

2013-05-23 13:13:30 UTC MAIN commitmail json YAML

Fix PLIST. Fix build.

(ryoon)

2013-05-23 13:12:13 UTC MAIN commitmail json YAML

2013-05-23 13:09:18 UTC MAIN commitmail json YAML

Finish removing patch-atk-adaptor_accessible-cache.c which is not needed
since commit 01c226b1c4. Thanks to wiz@ for the prod.

(prlw1)

2013-05-23 12:55:27 UTC MAIN commitmail json YAML

2013-05-23 11:23:50 UTC MAIN commitmail json YAML

2013.05.17, Version 0.10.7 (Stable)
* uv: upgrade to v0.10.7
* npm: Upgrade to 1.2.21
* crypto: Don't ignore verify encoding argument (isaacs)
* buffer, crypto: fix default encoding regression (Ben Noordhuis)
* timers: fix setInterval() assert (Ben Noordhuis)

(Commit lost when importing from wip/node.)

(fhajny)

2013-05-23 11:22:44 UTC MAIN commitmail json YAML

Ensure we use the pkgsrc openssl when requested.

(Commit lost when importing from wip/node.)

(fhajny)

2013-05-23 11:20:28 UTC MAIN commitmail json YAML

Updated emulators/suse121_libtiff to 12.1nb3

(obache)

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

Update libtiff3 rpm to 3.9.5-8.17.1 for CVE-2013-1960 and CVE-2013-1961.

Bump PKGREVISION.

(obache)

2013-05-23 11:18:26 UTC MAIN commitmail json YAML

2013-05-23 08:37:19 UTC MAIN commitmail json YAML

Updated textproc/p5-XML-RSS to 1.52

(wen)