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

2024-05-13 15:56:02 UTC Now

2012-01-26 12:02:51 UTC MAIN commitmail json YAML

Updated devel/p5-IPC-Run3 to 0.045

(rhaen)

2012-01-26 12:01:13 UTC MAIN commitmail json YAML

Updated to 0.045

ChangeLog:

0.045 2011-12-23
  skip a test that tickles an OpenBSD bug and hangs the process (thanks,
  BinGOs)

(rhaen)

2012-01-26 11:56:22 UTC MAIN commitmail json YAML

Updated devel/p5-AnyEvent to 6.13

(rhaen)

2012-01-26 11:55:12 UTC MAIN commitmail json YAML

Updated devel/p5-AnyEvent to 6.13

ChangeLog:
6.13 Thu Jan 12 07:27:01 CET 2012
- AnyEvent::Util::fork_call checked for POSIX availability in the wrong way,
          causing it to fail if POSIX wasn't loaded already (analysed by Rock Power).
- AnyEvent::Handle::push_read (line => did pass $1 directly, so
          regex-matching inside the callback would change the parameter, despite
          $1 being dynamically scoped per-block. this perl bug is now being
          worked around (testcase by Cindy Wang).

6.12 Mon Dec 12 13:21:10 CET 2011
- $! was clobbered by subsequent calls in tcp_connect, due to
          the postpone not saving/restoring it (analyzed by Richard Garnish).

6.11 Tue Nov 22 10:36:05 CET 2011
- Tk cannot create windows when tainted unless you set a title, so
          set a dummy title for AnyEvent's dummy mainwindow. How dummy.
- escape any nonprintable/nonascii characters when stringifying
          backtraces.
        - log the reason loading an interface module fails to load at level debug.

6.1  Tue Oct  4 19:44:30 CEST 2011
- INCOMPATIBLE CHANGE: the default log level is now "4" (error
          and above), and some messages inside AnyEvent have been elevated
          to higher log levels to print by default.
        - AnyEvent::log, unlike AnyEvent::Log::log, did not always exit on fatal.
        - work around yet another signal race bug, newly introduced by POE. My
          how that module sucks.
        - add google public ipv6 dns as fallback servers, so AE::DNS can finally
          support ipv6-only operation even with defaults (also use ::1 instead
          of 127.0.0.1).
- give better guidelines on how to chose a logging level.
        - AnyEvent::Log can now cap (limit) log message priority by context.
        - AE::log will now save and restore $! and $@, so callers don't have to.
        - AE::Strict now checks that registered fds are still valid at regular
          intervals.
        - skip frequently called 'require' calls if the module appears loaded.
- increase signal latency test timer considerably for poor little osx,
          which can't be bothered with basic posix functionality such as signal
          delivery.
        - mention some debugging aids in the tutorial.
        - new env variable PERL_ANYEVENT_MAX_SIGNAL_LATENCY.
        - private (%namespace) log contexts in PERL_ANYEVENT_LOG now have the name
          of the context as title.
        - AnyEvent::Strict would not restore read-write access to $_ when a callback
          died - this is a user bug, but since AE::Strict exists to help dbeugging...
- detect the extremely evil IO::Async::Loop::AnyEvent module and refuse
          to work with it - the author is well aware of the issues but refuses
          to fix them. This extreme step has been taken because the module actively
          attacks the goals of AnyEvent and makes it harder for module authors to use
          AnyEvent.

6.02  Fri Aug 26 20:08:31 CEST 2011
        - log_to_syslog now accepts facility strings.
- log_to_syslog would not allow facilities - "$facility|$level"
          *literally* means that string. sheesh.
        - the CPAN parser got confused and thought we provide Sys::Syslog, try
          to work around.
        - renamed AnyEvent::Impl::FLTK2 to FLTK.

6.01  Fri Aug 26 07:04:11 CEST 2011
        - INCOMPATIBLE CHANGE: AnyEvent::DNS resource records now include
          the TTL as fourth element - this affects ->resolve, ->request
          and ->dns_unpack indirectly. Convenience functions such as
          AnyEvent::DNS::{a,txt,mx,srv} are not affected, neither is
          AnyEvent::Socket.
        - INCOMPATIBLE CHANGE: backend authors now should not implement
          one_event or loop, but instead the AnyEvent::CondVar::_wait and _poll
          methods.
        - INCOMPATIBLE CHANGE: verbosity levels have been redefined, see
          AnyEvent (PERL_ANYEVENT_VERBOSE) and AnyEvent::Log for details.
        - DEPRECIATION: please change
          "use AnyEvent::Impl::Perl" to "use AnyEvent::Loop" and
          "AnyEvent::Impl::Perl::loop" to "AnyEvent::Loop::run"
          in your programs, for future compatibility.
        - *blush* idle watcher emulation was borked.
        - AnyEvent::Strict now checks the AE::xxx functions as well.
        - querying too long domain names would barf deep inside AnyEvent::DNS - since
          this is hard to avoid for applications, AnyEvent:.DNS::request now checks for
          for too long domain names explicitly and passes an undef to the callback
          instead (reported by James Bromberger).
        - make AnyEvent::Util more robust against EINTR (analyzed by Andrew Suffield).
        - new functions: AnyEvent::postpone, AnyEvent::log.
        - new module: AnyEvent::Log, for simple logging needs.
        - new env variable, PERL_ANYEVENT_LOG, for fine-grained logging config.
        - new env variable, PERL_ANYEVENT_DEBUG_SHELL, to automatically start
          a debug shell.
        - new env variable, PERL_ANYEVENT_DEBUG_WRAP, to automatically enable
          watcher instrumentation/wrapping (see AnyEvent::Debug::wrap).
        - new env variable, PERL_ANYEVENT_HOSTS, to override the place where
          /etc/hosts can be found.
        - an empty PERL_ANYEVENT_RESOLV_CONF now selects the default
          configuration.
        - env variables can now be specified using AE_xyz instead of
          PERL_ANYEVENT_xyz, subject to some rules.
        - lots of new AnyEvent::Debug functionality.
        - AnyEvent::Strict now checks for modifications $_ by the callback
          (by setting it to readonly while executing the callback, if possible).
        - IO::Async sometimes cancels the wrong timer when you call cancel_timer.
          Invest extra overhead to work around this peculiar behaviour.
        - split the pure perl backend into a loop module and an impl
          module (AnyEvent::Loop and AnyEvent::Impl::Perl).
        - some read types (regex, netstring, json, storable) could
          errornously keep an AE::Handle object alive on their own
          (reported by Mohammad Toossi).
        - AnyEvent::Socket::resolve_sockaddr and all functions using it now
          supports /etc/hosts overrides.
        - add more workarounds around child watcher bugs in IO::Async
          and (newly introduced) in POE.
        - use glib child watchers and try to work around its limitations,
          if possible (based on a patch by Kevin Ryde).
- add support for FLTK (fltk2), via AnyEvent::Impl::FLTK2.
        - many read types in AnyEvent::Handle would malfunction during
          transitions to TLS because of a "delete $self->{rbuf}".
          (reported by Gerald Galster).
        - improve condvar blocking wait performance (probably only noticable
          with faster backends), also make it easier for event loops that
          do not support blocking waits.
        - PERL_ANYEVENT_MODEL now also allows full module names, although
          the usefulness of this feature is not yet clear.
        - add tests for all supported event loops, conditional on PERL_ANYEVENT_LOOP_TESTS.
        - add t/80_ssltext.t.
        - no longer use AUTOLOAD for the initial loading (for no very good reason).
        - tcp_server now tries to unlink unix domain sockets when it gets destroyed.
        - do not run event loop detection multiple times when programs call their cached
          copies of AnyEvent::detect.
        - parse_hostport now accepts absolute paths als unix domain sockets.
        - suppress the idiotic warning inside POE by patching the POE::Kernel
          run flags instead of asking the user to jump through contortions.
        - add Task::Weaken as dependency (as recommends only at this time).
        - replace PF_UNSPEC by 0, for good old minix.

6.0 (not officially released, but was on CPAN for about 15 minutes :/)

(rhaen)

2012-01-26 11:53:50 UTC MAIN commitmail json YAML

update to 4.0.8
changes:
-deal with non-utf8 encoded PPD files
-improved printer search
-minor build fixes and cleanup

(drochner)

2012-01-26 11:49:23 UTC MAIN commitmail json YAML

update to 4.0.9
changes:
-bugfixes (command injection fix was integrated)
-minor feature extensions (color profile support, ghostscript speedup)

(drochner)

2012-01-26 11:48:20 UTC MAIN commitmail json YAML

Updated devel/p5-EV to 4.10

(rhaen)

2012-01-26 11:46:22 UTC MAIN commitmail json YAML

Updated devel/p5-EV to 4.10

ChangeLog:
4.10 Thu Jan 19 18:54:23 CET 2012
        - (libev) fix a race where the workaround against the epoll fork
          bugs caused signals to not be handled anymore.
        - (libev) correct backend_fudge for most backends, and implement
          a windows specific workaround to avoid looping because we call
          both select and Sleep, both with different time resolutions.
- e_new wasn't declared static (causing very minor .so bloat).
        - replace more old api names by new ones.

(rhaen)

2012-01-26 11:34:43 UTC MAIN commitmail json YAML

Updated www/py-django to 1.3.1nb1

(obache)

2012-01-26 11:34:28 UTC MAIN commitmail json YAML

distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-26 11:31:43 UTC MAIN commitmail json YAML

2012-01-26 11:25:55 UTC MAIN commitmail json YAML

add patches from upstream to fix 2 security problems:
-data injection attack for certain protocols (CVE-2012-0036)
-SSL CBC IV vulnerability (OpenSSL related, CVE-2011-3389)
bump PKGREV

(drochner)

2012-01-26 11:19:24 UTC MAIN commitmail json YAML

Apply patch 79d1d3311319f3390f540f547becaba9d957f84c
from qemu upstream:

Fill in word 64 of IDENTIFY data to indicate support for PIO modes 3 and 4.
This allows NetBSD guests to use UltraDMA modes instead of just PIO mode 0.

With this patch I can no longer reproduce PR 42455.
Bump package revision.

(cegger)

2012-01-26 10:52:25 UTC MAIN commitmail json YAML

2012-01-26 10:50:26 UTC MAIN commitmail json YAML

Updated databases/py-psycopg2 to 2.4.4

(obache)

2012-01-26 10:49:41 UTC MAIN commitmail json YAML

Update py-psycopg2 to 2.4.4.
While here, let to register egg-info.

What's new in psycopg 2.4.4
---------------------------

  - 'register_composite()' also works with the types implicitly defined
    after a table row, not only with the ones created by 'CREATE TYPE'.
  - Values for the isolation level symbolic constants restored to what
    they were before release 2.4.2 to avoid breaking apps using the
    values instead of the constants.
  - Named DictCursor/RealDictCursor honour itersize (ticket #80).
  - Fixed rollback on error on Zope (ticket #73).
  - Raise 'DatabaseError' instead of 'Error' with empty libpq errors,
    consistently with other disconnection-related errors: regression
    introduced in release 2.4.1 (ticket #82).

What's new in psycopg 2.4.3
---------------------------

  - connect() supports all the keyword arguments supported by the
    database
  - Added 'new_array_type()' function for easy creation of array
    typecasters.
  - Added support for arrays of hstores and composite types (ticket #66).
  - Fixed segfault in case of transaction started with connection lost
    (and possibly other events).
  - Fixed adaptation of Decimal type in sub-interpreters, such as in
    certain mod_wsgi configurations (ticket #52).
  - Rollback connections in transaction or in error before putting them
    back into a pool. Also discard broken connections (ticket #62).
  - Lazy import of the slow uuid module, thanks to Marko Kreen.
  - Fixed NamedTupleCursor.executemany() (ticket #65).
  - Fixed --static-libpq setup option (ticket #64).
  - Fixed interaction between RealDictCursor and named cursors
    (ticket #67).
  - Dropped limit on the columns length in COPY operations (ticket #68).
  - Fixed reference leak with arguments referenced more than once
    in queries (ticket #81).
  - Fixed typecasting of arrays containing consecutive backslashes.
  - 'errorcodes' map updated to PostgreSQL 9.1.

(obache)

2012-01-26 10:45:49 UTC MAIN commitmail json YAML

+ cc65-2.13.2, curl-7.24.0, dasm-2.20.11, etm-885, fuse-ntfs-3g-2012.1.15,
  gdb-7.4, gthumb-2.14.2, gtk2-2.24.9, kde4-4.8, lftp-4.3.5,
  libmicrohttpd-0.9.18, mimedefang-2.73, opendnssec-1.3.5,
  openmsx-0.8.2, opera-11.61, parallel-20120122, pure-ftpd-1.0.35
  [pkg/45867], puzzles-9388, remind-3.1.12, samba-3.6.2, snort-2.9.2.1,
  tmux-1.6, viewvc-1.1.13, webmin-1.580 [security].

(wiz)

2012-01-26 10:45:05 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Tar to 1.82

(rhaen)

2012-01-26 10:42:21 UTC MAIN commitmail json YAML

Updated archivers/p5-Archive-Tar to 1.82

ChangeLog from upstream:
* important changes in version 1.82 21/11/2011 (CDRAKE)
- Adjustments to handle files >8gb (>0777777777777 octal)
- Feature to return the MD5SUM of files in the archive

(rhaen)

2012-01-26 09:14:20 UTC MAIN commitmail json YAML

Updated www/py-webpy to 0.36nb1

(obache)

2012-01-26 09:14:09 UTC MAIN commitmail json YAML

* no compiler languages is required to build.
* distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-26 06:34:19 UTC MAIN commitmail json YAML

2012-01-26 06:33:43 UTC MAIN commitmail json YAML

Add SET_LIBDIR variable which if non-empty will set GNU_CONFIGURE_LIBDIR to
the default libdir (and there for be passed to ./configure), this is the
best way to deal with the 'lib64' problem on x86_64-linux systems (with
most some packages).

Also add SET_LIBDIR, GNU_CONFIGURE_LIBDIR, and  GNU_CONFIGURE_LIBSUBDIR to
_PKG_VARS.gnu-configure

(sbd)

2012-01-26 06:05:04 UTC MAIN commitmail json YAML

In the section of configure that decides whether a libdir suffix should be
used, force it to be an empty (i.e no suffix).

(sbd)

2012-01-26 05:41:11 UTC MAIN commitmail json YAML

Updated net/zeromq to 2.1.11

(obache)

2012-01-26 05:40:31 UTC MAIN commitmail json YAML

Update zeromq to 2.1.11.

0MQ version 2.1.11 (Stable), released on 2011/12/18
===================================================

Bug fixes
---------

* Fixed issue 290, zmq_poll was using system time instead of monotonic
  clock (Mika Fischer).

* Fixed issue 281, crash on heavy socket creation - assertion failure in
  mutex.hpp:91. (Mika Fischer).

* Fixed issue 273, O_CLOEXEC flag used in ip.cpp:192 is supported only
  on Linux kernels 2.6.27+

* Fixed issue 261, assertion failure in kqueue.cpp:76.

* Fixed issue 269, faulty diagnostic code in 2.1.10.

* Fixed issue 254, assertion failure at tcp_socket.cpp:229 on ENOTCONN.

Changes
-------

* Now builds properly on AIX 6.1 (AJ Lewis).

* Builds using libdcekt on HP-UX (AJ Lewis).

* New upstream OpenPGM maintenance release 5.1.118.

* Enabled debugging on assertion failure on Windows (Paul Betts).

(obache)

2012-01-26 02:59:53 UTC MAIN commitmail json YAML

Remove the section from configure that adds the gcc multi_os_directory to
the libdir.

(sbd)

2012-01-26 02:45:45 UTC MAIN commitmail json YAML

2012-01-26 01:00:14 UTC MAIN commitmail json YAML

Split ifdef with && into two, to avoid parse errors on the second
clause when the first is not satisfied.  (Apparently &&, while not
evaluating, still has to parse.)  Fixes build on OS X.

(gdt)

2012-01-25 23:37:17 UTC MAIN commitmail json YAML

Per PR#45871 Solaris derived OSs haven't DEFFILEMODE defined
so define it if it is not defined.

No bump, since this only changes a case where the package did not build.

Also, for the record, this version does not include the code vulnerable
to http://secunia.com/advisories/44104/ as that feature is not yet here.

(tez)

2012-01-25 21:28:14 UTC MAIN commitmail json YAML

MAKE_JOBS_SAFE=no

Non-repeatable build error reported by joerg@ - disable parallel
builds for now until this can be debugged.

(gdt)

2012-01-25 17:22:41 UTC MAIN commitmail json YAML

Updated emulators/qemu to 0.15.1nb1

(jakllsch)

2012-01-25 17:22:34 UTC MAIN commitmail json YAML

Enable dependency on curl for http://-backed block devices.
Additionally qemu "curses" support wants terminfo support.
pkgrev++.

(jakllsch)

2012-01-25 15:20:35 UTC MAIN commitmail json YAML

Add note about use of unsafe_depends_loose, from discussion with
obache@.

Note that there is an issue with unsafe_depends not getting set when
options change.

(gdt)

2012-01-25 13:20:14 UTC MAIN commitmail json YAML

Updated www/py-curl to 7.19.0

(obache)

2012-01-25 13:19:58 UTC MAIN commitmail json YAML

Update py-curl to 7.19.0.
(change to register distutils egg-info)

Version 7.19.0 [requires libcurl-7.19.0 or better]
--------------

        * Added CURLFILE, ADDRESS_SCOPE and ISSUERCERT options,
          as well as the APPCONNECT_TIME info.

        * Added PRIMARY_IP info (patch by
          Yuhui H <eyecat at gmail.com>).

        * Added support for curl_easy_reset through a
          new 'reset' method on curl objects
          (patch by Nick Pilon <npilon at oreilly.com>).

        * Added support for OPENSOCKET callbacks.
          See 'tests/test_opensocket.py' for example
          usage (patch by Thomas Hunger <teh at camvine.com>).

Version 7.18.2
--------------

        * Added REDIRECT_URL info and M_MAXCONNECTS option
          (patch by Yuhui H <eyecat at gmail.com>).

        * Added socket_action() method to CurlMulti objects.
          See 'tests/test_multi_socket_select.py' for example
          usage (patch by Yuhui H <eyecat at gmail.com>).

        * Added AUTOREFERER option.

        * Allow resetting some list operations (HTTPHEADER,
          QUOTE, POSTQUOTE, PREQUOTE) by passing an empty
          list to setopt (patch by Jim Patterson).

Version 7.18.1
--------------

        * Added POST301, SSH_HOST_PUBLIC_KEY_MD5,
          COPYPOSTFIELDS and PROXY_TRANSFER_MODE options.

        * Check for static libs in setup.py to better detect
          whether libcurl was linked with OpenSSL or GNUTLS.

        * PycURL is now dual licensed under the LGPL and
          a license similar to the cURL license (an MIT/X
          derivative).

(obache)

2012-01-25 12:41:55 UTC MAIN commitmail json YAML

Updated www/zopeedit to 0.7nb4

(obache)

2012-01-25 12:41:42 UTC MAIN commitmail json YAML

* no compiler languages is required to build
* convert to use distutils.mk, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-25 12:38:26 UTC MAIN commitmail json YAML

no compiler languages is requred to build.

(obache)

2012-01-25 12:34:41 UTC MAIN commitmail json YAML

Updated wm/py-tyle to 0.7.5nb1

(obache)

2012-01-25 12:34:30 UTC MAIN commitmail json YAML

Convert to use python/distutils.mk, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-25 12:15:20 UTC MAIN commitmail json YAML

Updated wm/icecc to 2.9nb13

(obache)

2012-01-25 12:15:07 UTC MAIN commitmail json YAML

* using vim version specific directory, so change dependency pattern on vim.
* no need to buildlink with py-qt3-base, simple DEPENDS is sufficient.
* using qt3-libs, so buildlink with it and qt3-tools.

Bump PKGREVISION.

(obache)

2012-01-25 10:56:57 UTC MAIN commitmail json YAML

Update MASTER_SITES and HOMEPAGE, original site is dead.

(obache)

2012-01-25 10:22:30 UTC MAIN commitmail json YAML

Updated net/powerdns-* to 2.9.22.5nb2.

(ghen)

2012-01-25 10:21:12 UTC MAIN commitmail json YAML

2012-01-25 09:57:47 UTC MAIN commitmail json YAML

Added net/p5-Net-Frame version 1.07.
Added net/p5-Net-Frame-Dump version 1.09.
Added net/p5-Net-Frame-Simple version 1.04.

(hiramatsu)

2012-01-25 09:56:42 UTC MAIN commitmail json YAML

Note update of net/yale-tftpd.

(he)

2012-01-25 09:56:09 UTC MAIN commitmail json YAML

2012-01-25 09:55:42 UTC MAIN commitmail json YAML

Added p5-Net-Frame, p5-Net-Frame-Dump and p5-Net-Frame-Simple.

(hiramatsu)

2012-01-25 09:54:31 UTC MAIN commitmail json YAML

Import Net::Frame::Simple into net/p5-Net-Frame-Simple. This package is
provided in PR pkg/45720.

This module is part of Net::Frame frame crafting framework. It is totally
optional, but can make playing with the network far easier.

Basically, it hides the complexity of frame forging, sending, and receiving,
by providing helper methods, which will analyze internally how to assemble
frames and find responses to probes.

For example, it will take care of computing lengths and checksums, and matching
a response frame to the requesting frame.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(hiramatsu)

2012-01-25 09:27:07 UTC MAIN commitmail json YAML

Import Net::Frame::Dump into net/p5-Net-Frame-Dump. This package is
provided in PR pkg/45720.

Net::Frame::Dump is the base class for all dump modules. With them, you can
open a device for live capture, for offline analysis, or for creating a pcap
file.

See Net::Frame::Dump::Offline, Net::Frame::Dump::Online,
Net::Frame::Dump::Writer for specific usage.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(hiramatsu)

2012-01-25 09:21:13 UTC MAIN commitmail json YAML

Import Net::Frame into net/p5-Net-Frame. This package is provided in
PR pkg/45720.

Net::Frame is a fork of Net::Packet. The goal here was to greatly simplify
the use of the frame crafting framework. Net::Packet does many things
undercover, and it was difficult to document all the thingies.

Also, Net::Packet may suffer from unease of use, because frames were assembled
using layers stored in L2, L3, L4 and L7 attributes. Net::Frame removes all
this, and is splitted in different modules, for those who only want to use part
of the framework, and not whole framework.

Finally, anyone can create a layer, and put it on his CPAN space, because of
the modularity Net::Frame offers. For an example, see Net::Frame::Layer::ICMPv4
on my CPAN space.

Net::Frame does ship with basic layers, to start playing.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(hiramatsu)

2012-01-25 01:18:15 UTC MAIN commitmail json YAML

LDFLAGS setting only needed when gtk option is turned on, so move it there.
Tested by John Marino.

(wiz)

2012-01-24 23:57:21 UTC MAIN commitmail json YAML

x11/xfce4-notes-plugin: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:55:57 UTC MAIN commitmail json YAML

comms/efax-gtk: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:45:00 UTC MAIN commitmail json YAML

benchmarks/iozone: Unbreak DragonFly (again)

The update from version 3.308 to 3.397 broke DragonFly 11 days after I
fixed it due to missing a macro change.  An integer redeclaration was
also removed.

(marino)

2012-01-24 23:32:24 UTC MAIN commitmail json YAML

chat/telepathy-idle: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:30:48 UTC MAIN commitmail json YAML

cad/gwave: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:29:26 UTC MAIN commitmail json YAML

cad/gsmc: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:28:10 UTC MAIN commitmail json YAML

audio/padevchooser: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:27:04 UTC MAIN commitmail json YAML

audio/jack-rack: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:25:52 UTC MAIN commitmail json YAML

audio/gqmpeg-devel: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:24:26 UTC MAIN commitmail json YAML

audio/audacious: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:21:23 UTC MAIN commitmail json YAML

audio/alsa-utils: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:17:49 UTC MAIN commitmail json YAML

x11/xvidcap-gtk2: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 23:15:58 UTC MAIN commitmail json YAML

x11/xvidcap: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 22:24:34 UTC MAIN commitmail json YAML

2012-01-24 22:21:43 UTC MAIN commitmail json YAML

2012-01-24 20:46:20 UTC MAIN commitmail json YAML

Updated net/py-boto to 1.9bnb2

(gson)

2012-01-24 20:43:37 UTC MAIN commitmail json YAML

2012-01-24 20:42:43 UTC MAIN commitmail json YAML

2012-01-24 20:41:51 UTC MAIN commitmail json YAML

2012-01-24 20:41:00 UTC MAIN commitmail json YAML

2012-01-24 20:39:59 UTC MAIN commitmail json YAML

2012-01-24 20:38:55 UTC MAIN commitmail json YAML

Convert file creating patch into plain file. Fix man page markup.
Bump revision.

(joerg)

2012-01-24 20:36:40 UTC MAIN commitmail json YAML

2012-01-24 18:58:36 UTC MAIN commitmail json YAML

2012-01-24 15:25:29 UTC MAIN commitmail json YAML

Updated geography/gdal-lib to 1.8.1

(gdt)

2012-01-24 15:24:49 UTC MAIN commitmail json YAML

Update to 1.8.1.

= GDAL/OGR 1.8.1 release notes =

The 1.8.1 release is a routine bug fix release on the stable GDAL/OGR 1.8
branch.

== General ==
* Fix for windows build of cpl_vsil_gzip.cpp (#3908)
* Fix OGRDataSource.Open() signature so utf8 translation works in C# (#3766).
* Fix cpl_config.h.vc so it also works with mingw compiler on windows (#3960)
* Fix GEOS configuration checking affecting GEOS 3.0.4 (#3990)
* Support optional nmake.local file for local MSVC config (r22529).

== GDAL / Raster ==

* GDALReplicateWord(): fix error with missing one pixel (#4090)
* Fix issue with duplicating metadata (#3961)
* VRT: Fix issues with complex data types (#3977)
* VRT: Fix issue with nodata values and uninitialized buffers (#4045)
* VRT/.aux.xml: Fix performance with large color tables (#3961)
* VRT: Fix for VRTs smaller than the default block size (#4137)
* IDRISI/RST: Fix seg fault with missing fields in .ref and .rdc (#4100)
* IDRISI: Fix problem with spherical inverse flattening (#3757)
* GTIFF: Fix support for external overviews with COPY_SRC_OVERVIEWS (#3938)
* GTIFF: Correct handling of linear geokeys in feet (#3091)
* GTIFF: Fix edge anomoly issues with jpeg tiles (#4096)
* GTIFF: Don't skip driver even if library versions differ (#4101)
* SAGA: Fix reading/writing .sdat files larger than 2GB. (#4104)
* PCIDSK: Various fixes particularly for linked files (r21513)
* PCIDSK: Fixes for georeferencing parsing (#3913)
* ECW: Added/fixed french ECW coordinate systems (#3868)
* ECW: Force sign of y pixel size when needed (#393)
* ECW: Support EPSG:n style coordinate systems (#3955)
* ECW: Fixes related to geotransform overrides (#4131)
* ERS: Handle .ers files in case insensitive way (#3974)
* PNG: Add support for libpng >= 1.5.0 (#3914)
* JP2KAK: Support reading and writing resolution info (#3847)
* MRSID: Fix for configuring and building on MacOS X (#3910)
* HFA (.img): Fix filename computations and updating for renaming files (#3897)
* HFA (.img): Support reading 2bit compressed .img files (#3956)
* HFA (.img): Fix for rewriting projection/datum parameters (#3969)
* NITF: Correct hemisphere setting for ICORDS=U with world file (#3931)
* NITF: Added NITF_DISABLE_RPF_LOCATION_TABLE_SANITY_TESTS option (#3930)
* NITF: Make attribute section size hack safer (#4020)
* EHDR: Improved floating point file detection (#3933)
* ASRP: Approximated support for Azimuthal Equidistant in poles (#3946)
* HDF5/BAG: fix handle and memory leaks (#3953)
* HDF5: Avoid returning NULL from GetProjectionRef() (#4076)
* HDF5: Improve preservation of floating point precision in metadata (r22531).
* JPIPKAK: Fix problems with overviews, windowing and errors (#3967)
* USGSDEM: Fixing locale dependent parsing of numbers (#3886, #3979)
* RS2: Support subdataset oriented metadata and overviews (#4006)
* AIGRID: Support uncompressed integer images (ArcGIS 10) (#4035)
* gdalwarp: Include DstDensity mask in memory calculations (#4042)
* GeoRaster: Full backport for fixes and features (#4039,#3266,#4071,#4072,#4132)
* ENVISAT: Fix gcp computations for stripline products (#3160,#3709)
* ENVISAT: Fix gcp computations for MERIS products (#4086)
* SAR_CEOS: Fix potential crash with odd filenames. (#4065)
* SAR_CEOS: Skip datasets with wrong record length. (#4146)
* ENVI: Support ESRI style coordinate system strings (#3312)
* JAXAPALSAR: Fix datatype of 1.5 level product (#4136)
* gdalfillnodata: working file is created as bigtiff if possibly needed (#4088)

== OGR / Vector ==

* LIBKML: Fix build issue against static libkml (#3909)
* LIBKML: Improve checking to see if files are actually kml (#4003)
* GML: Fix crash with invalid geometries when axis order is lat/long (#3935)
* GML: Support curves in directEdges (#3934)
* GML: Do not force 3D linestrings for directed edges (#3936)
* GPX/GeoRSS: Fix expat library order issue on unix (#3948)
* PG/PGDUMP: Fix handling of NaN in zero width fields (#2112)
* PGDUMP: Add CREATE_SCHEMA and DROP_TABLE layer options (#4033)
* PGDUMP: Support wkbNone geometry better, and other subtle bugs (#4040)
* OGR SQL: Allow double quoting column name in SELECT DISTINCT (#3966)
* OGR SQL: Fix crashes with some uses of SUBSTR and CAST (#4055)
* OGR SQL: Fix crash on IS NULL test on floating point fields (#4091)
* OGR SQL: Fix error with SQL joins (#4112)
* MSSQL: Fix for IDENTITY INSERT problem (#3992)
* MSSQL: Fix for schema handling (#3951)
* MSSQL: Fix for geometry handling with ExecuteSQL() (#4149)
* OCI: Fix writing of tables with no general attributes (#4063)
* GeoJSON: Fix assertion on ESRI json (#4056, #4057)
* GeoJSON: Improve numeric field determination (#4082)
* SHAPE: Fix decoding of triangle fans in multipatch files (#4081)
* SHAPE: Fix multipolygon detection issue due to isClockwise failure (#4122)
* MITAB: Fix handling of filenames with two dots in them. (#4123)
* MITAB: Fix problems with null datetime values (#4150)
* ogr2ogr: Improve -overwrite/-append handling (#4012)
* ogr2ogr: Ensure -where fields are address in SetIgnoredFields (#4015)

(gdt)

2012-01-24 15:17:14 UTC MAIN commitmail json YAML

Updated devel/SDL to 1.2.14nb9

(wiz)

2012-01-24 15:17:05 UTC MAIN commitmail json YAML

2012-01-24 12:02:41 UTC MAIN commitmail json YAML

no compiler language is required.

(obache)

2012-01-24 12:01:23 UTC MAIN commitmail json YAML

Updated mail/getmail to 4.24.0nb1

(obache)

2012-01-24 12:01:13 UTC MAIN commitmail json YAML

distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-24 11:49:52 UTC MAIN commitmail json YAML

Updated mail/archivemail to 0.9.0

(obache)

2012-01-24 11:49:33 UTC MAIN commitmail json YAML

Update archivemail to 0.9.0.

Notable changes in archivemail 0.9.0:

  * IMAP: support for international mailbox names containing non-ASCII
    characters.

Notable changes in archivemail 0.8.0:

  * Removed the feature to setuid to the mailbox owners when run as root.
    This was a bad idea; it's really hard to do safely, if at all possible.
    Obsoletes: patch #2783134.
  * New option --archive-name, or short -a, to hard-code an archive filename.
    Like the --suffix and --prefix options, it is expanded with strftime().
    This option conflicts with archiving multiple mailboxes.  Closes: feature
    request #1306538.
  * New option --prefix, or short -p, to specify an archive name prefix.  Like
    a suffix specified with the --suffix option, the prefix is expanded with
    strftime().  Specifying this option disables the default archive name
    suffix.  Obsoletes: feature request #604281.  (Thanks Serafeim Zanikolas
    for an initial patch)
  * New option --all to archive all messages in a mailbox.  Closes: #1764846.
  * archivemail now expands wildcards in IMAP mailbox names.  For example, the
    url imaps://user@server/foo/* will expand to all subfolders of foo.
    Closes: feature request #1978540. Obsoletes: patch #1918937.
  * To determine the delivery date of a message, archivemail now looks for the
    timestamp of the latest 'Received' header before resorting to
    'Resent-Date' or 'Date'.  This should give much better results when there
    is no 'Delivery-date' header, which is still checked first.
    (Thanks Andrew Ferrier & Christian Brabandt)
    Closes: #1481316, #1764855, Debian bug #272666.
  * We now omit the dotlock if we don't have sufficient permissions to create
    it in the mbox directory. (The file is still locked with lockf.)
    Together with more changes under the hood (see below) this means
    archivemail can now operate on mbox files in the system mail spool.
    Closes: #855269.
  * Replaced some simple minded file operation security checks with more
    decent ones.  This means we can safely operate in /tmp, for example.  The
    price is that we no longer accept symlinked files.  Obsoletes: patch
    #1874868.
  * The archive now also gets locked while archivemail updates it.
  * mbox locking got completely rewritten.  Switched from flock to lockf
    locking, which is NFS-safe and portable, and we now lock with lockf first,
    then with a dotlock, instead of the other way around.  (This is makes
    archivemail compatible with Debian systems. ;)

(obache)

2012-01-24 11:11:13 UTC MAIN commitmail json YAML

Updated mail/py-sendmail-admin to 1.0nb1

(obache)

2012-01-24 11:10:59 UTC MAIN commitmail json YAML

distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-24 11:00:09 UTC MAIN commitmail json YAML

Updated mail/py-libgmail to 0.1.11

(obache)

2012-01-24 10:59:03 UTC MAIN commitmail json YAML

Update py-libgmail to 0.1.10.

while here,
* LICENSE=gnu-gpl-v2
* register egg-info.

== Version 0.1.11 ==
libgmail.py
  * Fixed bug that broke attachment support (SF bug #2034927)
  * added .author_fullname field for messages
  * Don't crash on threads with google chat log (Debian bug #502458)

== Version 0.1.10 ==
libgmail.py
  * Use mechanize instead of ClientCookie [Patch #2014779]
  * Very basic Unicode support [Patch #1926861]

gmail_transport.py
  * New version that uses mechanize
    (owing again to Jose Rodriguez)

NOTE: libgmail now depends on mechanize, which
can be downloaded from:
  http://wwwsearch.sourceforge.net/mechanize/#download
  (in Debian/Ubuntu as python-mechanize, and an easy_install
  installer is also available)

== Version 0.1.9 ==
libgmail.py
    * Fixed login that was broken for a bunch of new
      gmail accounts, thanks to a patch by rhauer

NOTE: libgmail now depends on ClientCookie, which
can be downloaded from:
  http://wwwsearch.sourceforge.net/ClientCookie/#download

== Version 0.1.8 ==
libgmail.py
    * Added 'search' method to contactLists that returns
      an array of contacts who match a given search term
      (at some point, the contacts API is long overdue
      for a revamp, but for now, hey, why not)
      This is a patch by Alex Chiang    --WD--
    * libgmail now asks for the old Gmail interface,
      so that it isn't broken by the new Gmail updates.
      (Thanks to Aaron and Stu for work on this)
      (Fixes SF bug #1822662)

== Version 0.1.7 ==
libgmail.py
gmail_transport.py
    * Applied patch that adds proxy support, both
      for passwordless and password-ful proxies
      (is that a word?), by Jose Rodriguez --WD+SZ--

== Version 0.1.6.2 ==
libgmail.py
    * Bugfix for attachment problems --WD--
      (SF Bug #1793026, Patch #1799605 by 'stephster')
archive.py
    * Protect messages with a "from" line in them --WD--
      (SF Patch #1790809 by 'scop')

== Version 0.1.6.1 ==
libgmail.py
    * Bugfix for login problems --WD--

== Version 0.1.6 ==
libgmail.py
    * Added support for "Gmail Apps" aka "Gmail For Your Domain" --WD--

(obache)

2012-01-24 09:43:31 UTC MAIN commitmail json YAML

audio/snd: Fix indirect linking error on DragonFly only

(marino)

2012-01-24 09:42:35 UTC MAIN commitmail json YAML

audio/esound: Fix indirect linking error on DragonFly only

Since fixing the gnu linker v2.22 indirect linking errors for all platforms
have been met with controversy, this will be fixed with LDFLAGS.DragonFly
rather than LDFLAGS.  An identical LDFLAGS.IRIX already exists for this
package, and often this is the case for LDFLAGS.SunOS.  When pkgsrc
definitively decides to support unmodified gnu linker v2.22 behavior, we can
stop using LDFLAGS.DragonFly to address this issue.

(marino)

2012-01-24 09:11:18 UTC MAIN commitmail json YAML

2012-01-24 09:10:06 UTC MAIN commitmail json YAML

Use the correct version number for BUILDLINK_ABI_DEPENDS.gdbm

(sbd)

2012-01-24 09:06:42 UTC MAIN commitmail json YAML

Updated net/tacacs-shrubbery to 4.0.4.22

(pettai)

2012-01-24 09:04:07 UTC MAIN commitmail json YAML

2012-01-24 08:46:04 UTC MAIN commitmail json YAML

F4.0.4.21
        - do_auth.py - better Nexus support, better AV replacement, and only
          send roles to Nexus
        - fix bug in checking the return value of regexec() for login and
          enable ACLs.
        - do_auth.py - better Nexus support, better AV replacement, and only

F4.0.4.22
        - check of regexec() return value inverted

(pettai)

2012-01-24 08:26:23 UTC MAIN commitmail json YAML

Add gettext-lib buildlink to gdbm's buildlink3.mk

Bump ABI_DEPENDS

(sbd)

2012-01-24 08:18:41 UTC MAIN commitmail json YAML

2012-01-24 06:06:32 UTC MAIN commitmail json YAML

When building in sim/ucsim/cmd.src:
  * cmdlex.cc needs to include <cstdio> for the EOF macro.
  * Search $(srcdir) before directorys in CXXFLAGS so that the "FlexLexer.h"
    in $(srcdir) is found before the one under PREFIX (from CXXFLAGS).

(sbd)

2012-01-24 03:39:30 UTC MAIN commitmail json YAML

Updated lang/erlang to 14.1.4nb1

(sbd)

2012-01-24 03:39:22 UTC MAIN commitmail json YAML

2012-01-24 02:55:11 UTC MAIN commitmail json YAML

2012-01-24 02:44:39 UTC MAIN commitmail json YAML

Updated databases/gdbm to 1.10nb3

(sbd)

2012-01-24 02:44:30 UTC MAIN commitmail json YAML

Pullin gettext-lib buildlink3 so that nls files are built.
Unconditionalise the nls files.

Bump PKGREVISION

(sbd)

2012-01-24 00:28:17 UTC MAIN commitmail json YAML

Fo gdbm 'NLS' seems to mean 'can find _nl_expand_alias', which has a
certain Linux flavour to it.
Conditionalise the nls files in the PLIST to Linux for now
Bump PKGREVISION.
Fixes build on at least NetBSD

(abs)

2012-01-23 23:35:05 UTC MAIN commitmail json YAML

Added textproc/py-pdf-parser version 0.3.7

(wiz)

2012-01-23 23:34:56 UTC MAIN commitmail json YAML

+ py-pdf-parser.

(wiz)

2012-01-23 23:34:37 UTC MAIN commitmail json YAML

Initial import of py-pdf-parser-0.3.7:

This tool will parse a PDF document to identify the fundamental
elements used in the analyzed file. It will not render a PDF
document. The code of the parser is quick-and-dirty, I'm not
recommending this as text book case for PDF parsers, but it gets
the job done.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120124

(wiz)

2012-01-23 23:33:35 UTC MAIN commitmail json YAML

Added graphics/AfterShotPro version 1.0

(wiz)

2012-01-23 23:33:05 UTC MAIN commitmail json YAML

+ AfterShotPro.

(wiz)

2012-01-23 23:32:54 UTC MAIN commitmail json YAML

Add license for AfterShotPro.

(wiz)

2012-01-23 23:32:34 UTC MAIN commitmail json YAML

Initial import of AfterShotPro first release (dubbed 1.0 for pkgsrc).

Corel(R) AfterShot(TM) Pro is a fast, flexible photo workflow
solution that combines robust photo management, advanced non-destructive
adjustments and complete RAW processing. Organize your photos in
catalogs or folders. Find images quickly with extensive Metadata
tools that let you search by camera settings, keywords, tags and
more. Experiment with and alter images freely with non-destructive
adjustment tools and apply enhancements precisely with selective
editing. Easily output your work for albums, web sites or client
review. With RAW support, powerful batch processing and incredible
speed, AfterShot Pro is the fast way to professional photos.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20120124

(wiz)

2012-01-23 21:44:41 UTC MAIN commitmail json YAML

Added devel/py-pip version 1.0.2

(pettai)

2012-01-23 21:42:49 UTC MAIN commitmail json YAML

2012-01-23 21:39:32 UTC MAIN commitmail json YAML

pip is a replacement for easy_install. It uses mostly the same
techniques for finding packages, so packages that were made
easy_installable should be pip-installable as well.

pip is meant to improve on easy_install. Some of the improvements:
    * All packages are downloaded before installation.
Partially-completed installation doesn't occur as a result.
    * Care is taken to present useful output on the console.
    * The reasons for actions are kept track of. For instance, if
a package is being installed, pip keeps track of why that package
was required.
    * Error messages should be useful.
    * The code is relatively concise and cohesive, making it easier
to use programmatically.
    * Packages don't have to be installed as egg archives, they can
be installed flat (while keeping the egg metadata).
    * Native support for other version control systems (Git, Mercurial
and Bazaar)
    * Uninstallation of packages.
    * Simple to define fixed sets of requirements and reliably
reproduce a set of packages.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(pettai)

2012-01-23 20:55:48 UTC MAIN commitmail json YAML

2012-01-23 20:54:45 UTC MAIN commitmail json YAML

2012-01-23 20:54:10 UTC MAIN commitmail json YAML

2012-01-23 20:53:27 UTC MAIN commitmail json YAML

2012-01-23 20:52:18 UTC MAIN commitmail json YAML

Kill a few broken .TP invocations that are silently ignored by groff.
Bump revision.

(joerg)

2012-01-23 20:51:10 UTC MAIN commitmail json YAML

2012-01-23 20:50:13 UTC MAIN commitmail json YAML

Add build dependency on help2man to get all man pages properly
formatted.

(joerg)

2012-01-23 20:49:22 UTC MAIN commitmail json YAML

2012-01-23 20:19:10 UTC MAIN commitmail json YAML

Updated graphics/libggi to 2.2.2nb1

(sbd)

2012-01-23 20:19:01 UTC MAIN commitmail json YAML

2012-01-23 16:09:51 UTC MAIN commitmail json YAML

remove old patch checksum

(pettai)

2012-01-23 15:53:46 UTC MAIN commitmail json YAML

Update HOMEPAGE.

(wiz)

2012-01-23 15:12:50 UTC MAIN commitmail json YAML

Updated net/powerdns-* to 2.9.22.5nb1.

(ghen)

2012-01-23 15:11:54 UTC MAIN commitmail json YAML

2012-01-23 13:27:14 UTC MAIN commitmail json YAML

Bump for header changes

(joerg)

2012-01-23 12:10:25 UTC MAIN commitmail json YAML

* NO_BUILD=yes instead of empty do-install target.
* no compiler langauges is used.

(obache)

2012-01-23 12:05:07 UTC MAIN commitmail json YAML

No comipler languages is used.

(obache)

2012-01-23 12:01:43 UTC MAIN commitmail json YAML

* LICENSE=gnu-gpl-v2
* no need to buildlink with py-curses, simple DEPENDS is sufficient.

(obache)

2012-01-23 11:50:38 UTC MAIN commitmail json YAML

2012-01-23 11:19:52 UTC MAIN commitmail json YAML

Updated security/opendnssec to 1.3.5

(pettai)

2012-01-23 11:19:26 UTC MAIN commitmail json YAML

OpenDNSSEC 1.3.5

* Auditor: Include the zone name in the log messages.
* ldns 1.6.12 is required for bugfixes.
* ods-ksmutil: Suppress database connection information when no -v flag is
  given.
* ods-enforcerd: Stop multiple instances of the enforcer running by checking
  for the pidfile at startup. If you want to run multiple instances then a
  different pidfile will need to be specified with the -P flag.
* ods-ksmutil: "zone delete" renames the signconf file; so that if the zone is
  put back the signer will not pick up the old file.
* Signer Engine: Verbosity can now be set via conf.xml, default is 3.

Bugfixes:
* Bugfix OPENDNSSEC-174: Configure the location for conf.xml with --config
  or -c when starting the signer.
* Bugfix OPENDNSSEC-192: Signer crashed on deleting NSEC3 for a domain that
  becomes opt-out.
* Bugfix OPENDNSSEC-193: Auditor crashed with certain empty non-terminals.
* Signer Engine: A file descriptor for sockets with value zero is allowed.
* Signer Engine: Only log messages about a full signing queue in debug mode.
* Signer Engine: Fix time issues, make sure that the internal serial does
  not wander off after a failed audit.
* Signer Engine: Upgrade ldns to avoid future problems on 32-bit platforms
  with extra long signature expiration dates. More information in separate
  announcement.

(pettai)

2012-01-23 11:14:19 UTC MAIN commitmail json YAML

Updated security/softhsm to 1.3.1

(pettai)

2012-01-23 11:12:47 UTC MAIN commitmail json YAML

SoftHSM 1.3.1

* The library is now installed in $libdir/softhsm/.

Bugfixes:
* Do not give a warning about the schema version if the token
  has not been initialized yet.
* The tools now return the correct exit code.

(pettai)

2012-01-23 10:38:17 UTC MAIN commitmail json YAML

Updated net/py-kenosis to 0.96nb1

(obache)

2012-01-23 10:38:06 UTC MAIN commitmail json YAML

No need to buildlink with py-xml, python builtin xml modules is sufficient.

Bump PKGREVISION.

(obache)

2012-01-23 09:40:02 UTC MAIN commitmail json YAML

Updated benchmarks/dbench to 3.04nb1

(wiz)

2012-01-23 09:39:52 UTC MAIN commitmail json YAML

Remove chunk that was added for 1.6.2 compatibility, but affects the
run-time. Noted by yamt@ in PR 45866.
Bump PKGREVISION.

(wiz)

2012-01-23 09:32:39 UTC MAIN commitmail json YAML

2012-01-23 09:24:56 UTC MAIN commitmail json YAML

Updated databases/mysql51-server to 5.1.61nb1

(sbd)

2012-01-23 09:23:13 UTC MAIN commitmail json YAML

2012-01-23 08:59:38 UTC MAIN commitmail json YAML

Updated geography/qgis to 1.7.3

(adam)

2012-01-23 08:58:39 UTC MAIN commitmail json YAML

2012-01-23 08:58:00 UTC MAIN commitmail json YAML

Changes 1.7.3:
* Fix 3581 Ftools: union tool leave holes in output
* Fix 4500 Simplify tool freezes QGIS
* Fix 4466 Fixes for 'v.what.vect' and 'v.generalize' modules in the GRASS
  plugin
* Fix 4552 Patch for v.what.vect
* Fix 4035 Print Composer shape combo box not refecting current shape
* Partial Fix 3097 Add preference to set/override environment variables
* Fix 2749 Move 'Add to Attributes List' button
* Fix 4560 Wrong scale displayed in Map canvas
* Partial Fix 4383 Ftools: Improve how processes are handled
* Fix 3577 Adding a print composer doesn't dirty the document
* Fix 3170 Many GDAL Tools don't work in OS X standalone
* Fix 3723 Transparency settings are not applied from *.qml
* Fix 3576 qml not read automagically for rasters
* Fix 2977 Messy uninstallation of the standalone installer
* Union and Symetrical difference works only on whole layer fixed
* Save some time in node tool for geometry export and avoid detachs
* Initialize default symbol to 0 in rule based renderer
* Make relative paths default
* Fix tab restoration in project properties
* Add helpful info to GdalTools Settings dialog on how to configure GDAL path
* New vector layer dialog - show CRS as authid-description pair instead of
  proj4 string
* Fix crash with relative file paths if projPath is not yet defined
* Add helpful info to GdalTools Settings dialog on how to configure GDAL path
* And a lot of other smaller Bugfixes

(adam)

2012-01-23 08:44:30 UTC MAIN commitmail json YAML

Updated databases/mysql51-server to 5.1.61

(sbd)

2012-01-23 08:44:22 UTC MAIN commitmail json YAML

readline isn't just a build dependency, if 'ndb_mgm' is built it has a
full dependency on readline.

Bump PKGREVISION

(sbd)

2012-01-23 08:36:48 UTC MAIN commitmail json YAML

Updated databases/gdbm to 1.10nb1

(sbd)

2012-01-23 08:28:56 UTC MAIN commitmail json YAML

Updated net/nicotine to 1.0.8nb15

(obache)

2012-01-23 08:28:46 UTC MAIN commitmail json YAML

* no compiler languages is required to build.
* so no need to buildlink with gtk2 and py-gtk2, simple DEPENDS on py-gtk2
  is sufficient.

Bump PKGREVISION.

(obache)

2012-01-23 08:16:36 UTC MAIN commitmail json YAML

Add upstream changeset to avoid calling internal constructor in public
header if implicit ASCII conversion is disabled.  Bump revision.

(joerg)

2012-01-23 08:14:02 UTC MAIN commitmail json YAML

Add some missing includes to ensure dependent type / friend declarations
are present.

(joerg)

2012-01-23 08:12:40 UTC MAIN commitmail json YAML

2012-01-23 08:10:56 UTC MAIN commitmail json YAML

2012-01-23 08:09:36 UTC MAIN commitmail json YAML

2012-01-23 08:08:25 UTC MAIN commitmail json YAML

Disable integrated assembler for clang and force default visiblity to
hidden, otherwise some assembler relocations don't work on AMD64.

(joerg)

2012-01-23 08:07:17 UTC MAIN commitmail json YAML

2012-01-23 07:57:35 UTC MAIN commitmail json YAML

Updated converters/py-jpCodecs to 1.4.11nb2

(obache)

2012-01-23 07:57:25 UTC MAIN commitmail json YAML

distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-23 07:54:51 UTC MAIN commitmail json YAML

Updated converters/py-chardet to 2.0.1nb1

(obache)

2012-01-23 07:54:23 UTC MAIN commitmail json YAML

distutils pkg, register egg-info.

Bump PKGREVISION.

(obache)

2012-01-23 07:04:16 UTC MAIN commitmail json YAML

Add missing LC_MESSAGES files.

Bump PKGREVISION

(sbd)

2012-01-23 04:14:26 UTC MAIN commitmail json YAML

Removing unneeded libtool link command.

(sbd)

2012-01-23 00:43:44 UTC MAIN commitmail json YAML

Don't include files (that generally don't even exist). Bump revision.

(joerg)

2012-01-23 00:31:17 UTC MAIN commitmail json YAML

Don't use empty lines in mdoc documents. Bump revision.

(joerg)

2012-01-23 00:30:30 UTC MAIN commitmail json YAML

2012-01-23 00:29:31 UTC MAIN commitmail json YAML

Don't use empty lines in mdoc documents. Bump revision.

(joerg)

2012-01-22 21:10:18 UTC MAIN commitmail json YAML

Remove an over-zealous warning, which breaks the amstatus script for
Perl 5.14+.

According to <https://bugzilla.redhat.com/show_bug.cgi?id=512534>,
upstream did away with -T here in Amanda v2.6.

Since Perl 5.14+ warns of a deprecated newgetopt.perl, depend on the
recommended compat module.

(hauke)

2012-01-22 21:08:01 UTC MAIN commitmail json YAML

Remove an over-zealous warning, which breaks the script for
Perl 5.14+.

According to <https://bugzilla.redhat.com/show_bug.cgi?id=512534>,
upstream did away with the -T here in Amanda v2.6.

(hauke)

2012-01-22 20:16:38 UTC MAIN commitmail json YAML

Updated devel/p5-Parallel-Prefork to 0.13
Updated www/p5-Dancer to 1.3091
Updated www/p5-Plack to 0.9985
Updated www/p5-Starlet to 0.14
Updated www/p5-Task-Plack to 0.25
Updated www/p5-Template-Toolkit to 2.23
Updated www/p5-Template-Toolkit-Simple to 0.16
Updated www/p5-Test-WWW-Mechanize to 1.38
Updated www/p5-URI-Find to 20111103

(abs)

2012-01-22 20:14:03 UTC MAIN commitmail json YAML

Updated www/p5-Task-Plack to 0.25

0.25
        - Upped versions added new servers and middleware components

also - re-order DEPENDS to match MYMETA.yml and change from *-[0-9] to >=X

(abs)

2012-01-22 20:00:26 UTC MAIN commitmail json YAML

Updated www/p5-Dancer to 1.3091

1.3091      17.12.2011

    [ BUG FIXES ]
    * Reverting template() behavior by popular demand. (Damien Krotkine)
    * GH #714: Run post-request hooks when custom continuations were created.
      (Damien Krotkine)
    * Always call write_session_id() to update expires. (David Precious)

    [ ENHANCEMENTS ]
    * GH #711, #652: Add server_tokens variable to allow removal of headers.
      (John Wittkoski)

    [ DOCUMENTATION ]
    * GH #680: Document problems with multiple apps in Dancer using
      Plack::Handler::Apache2 and recommend a workaround.
      (Asaf Gordon, Pedro Melo)
    * RT #73258: Spelling glitches. (Damyan Ivanov)
    * Use ":script" instead of ":syntax" in Cookbook. (John Barrett)
    * Typos in Deployment doc. (David Precious)

(abs)

2012-01-22 19:45:24 UTC MAIN commitmail json YAML

Updated devel/p5-Parallel-Prefork to 0.13

0.13
    - repackage 0.12 (tar xf fails with 0.12 on some platforms)

0.12
    - support for pre/post fork callbacks

(abs)

2012-01-22 19:43:50 UTC MAIN commitmail json YAML

Updated www/p5-Plack to 0.9985

0.9985  Mon Oct 31 13:11:19 PDT 2011
    [BUG FIXES]
    - Short circuit Plack::Handler fallback to avoid %INC bugs in perl 5.8 (mst)
    - Fixed Makefile.PL to avoid Test::SharedFork interferring with Module::Install (ambs)

(abs)

2012-01-22 19:42:09 UTC MAIN commitmail json YAML

Updated www/p5-Starlet to 0.14

0.14
    - support for randomized reqs-per-child
    - support for slow restart
    - do not send Server header more than once per every response

(abs)

2012-01-22 19:38:54 UTC MAIN commitmail json YAML

Updated www/p5-Template-Toolkit to 2.23

patch-aa covered upstream

#-----------------------------------------------------------------------
# Version 2.23 - 21st January 2012
#------------------------------------------------------------------------

* Fixed bug RT#47929 which caused the XS Stash to die mysteriously when
  calling code that used string evaluation (e.g. DateTime).

* Fixed bug RT#68722 so that list.defined('alpha') always returns false.

* Added the TRACE_VARS option to keep track of what variables are used
  in a template.  It's not documented yet.  See t/trace_vars.t for an
  example of use.

* Applied patch from RT#48989 to avoid Template::Plugin::Procedural
  from adding target class' methods AUTOLOAD and new methods multiple
  times (Jens Rehsack)

* Applied patch from RT#53451 to accept negative epoch times in
  Template::Plugin::Date.

* Applied patch from Marc Remy to add $Template::Directive::WHILE_MAX
  option to tpage.

(abs)

2012-01-22 19:35:53 UTC MAIN commitmail json YAML

Updated www/p5-Template-Toolkit-Simple to 0.16

version: 0.16
date:    Mon Nov  7 18:49:56 PST 2011
changes:
- Anthony Cornehl++ implemented JSON and XML support. \o/
---
version: 0.15
date:    Sat Nov  5 01:09:40 PDT 2011
changes:
- Use fixed TestML
---
version: 0.14
date:    Fri Oct 21 18:31:56 PDT 2011
changes:
- Use Module::Package
- Add strict support

(abs)

2012-01-22 19:34:15 UTC MAIN commitmail json YAML

Updated www/p5-Test-WWW-Mechanize to 1.38

1.38    Fri Oct 28 10:12:48 CDT 2011
------------------------------------
[FIXES]
Now passes tests even if HTML::Lint is not installed.

There are no other changes in 1.38.

1.36    Thu Oct 27 00:09:21 CDT 2011
------------------------------------
[ENHANCEMENTS]
The $mech object autolint argument can now take an HTML::Lint object.
This lets you pass your own HTML::Lint object that does less stringent
checking than the one T:W:M creates.

(abs)

2012-01-22 19:31:23 UTC MAIN commitmail json YAML

Updated www/p5-URI-Find to 20111103

20111103  Thu Nov  3 12:14:21 PDT 2011
    Bug Fixes
    * URI::URL::strict will no longer leak out of find() if the callback
      or filter fails. [rt.cpan.org 71153] (Carl Chambers)

20111020  Thu Oct 20 17:31:56 PDT 2011
    Bug Fixes
    * Things which look like URIs, but aren't, are now properly escaped like
      other text.  [rt.cpan.org 71658]

    New Features
    * Balanced parens in URIs are no longer stripped.  Example:
      "http://example.com/foo(bar)"  (Merten Falk)

(abs)

2012-01-22 19:15:42 UTC MAIN commitmail json YAML

Updated devel/p5-glib2 to 1.242
Updated www/p5-WWW-Mechanize to 1.71
Updated www/p5-WWW-Pastebin-PastebinCom-Create to 0.004
Updated www/p5-Web-Scraper to 0.36
Updated x11/p5-Alien-wxWidgets to 0.54nb1
Updated x11/p5-Gtk2-Ex-FormFactory to 0.67
Updated x11/p5-Tk to 804.030
Updated x11/p5-Wx to 0.9903
Updated x11/p5-Wx-Perl-ProcessStream to 0.30
Updated x11/p5-gtk2 to 1.242

(abs)

2012-01-22 19:14:26 UTC MAIN commitmail json YAML

Updated www/p5-Web-Scraper to 0.36

0.36  Sat Nov 19 12:12:54 PST 2011
        - Support HTML5 tags by not ignoring unknonw tags (leedo)

(abs)

2012-01-22 19:13:18 UTC MAIN commitmail json YAML

Updated x11/p5-Wx-Perl-ProcessStream to 0.30

0.30    2011-02-04 21:00
        Test changes only - Fixes for tests failing on Mac OS X

0.29    2010-12-02 00:00
        Makefile changes only - remove Archive::Tar dependency

(abs)

2012-01-22 19:12:24 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize to 1.71

1.71        Tue Nov 14 13:50:41 EDT 2011
========================================
[ENHANCEMENTS]
Recognise application/xhtml+xml as HTML.

[DOCUMENTATION]
Improved docs about support of JavaScript
Typo fixes.

[TESTS]
Updated tests as oops-music.com is in utf-8 now

(abs)

2012-01-22 19:09:43 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Pastebin-PastebinCom-Create to 0.004

0.004  Dec 4, 2011
        Fixed an error in one of the test files

(abs)

2012-01-22 19:05:34 UTC MAIN commitmail json YAML

typo in depends

(abs)

2012-01-22 19:03:31 UTC MAIN commitmail json YAML

Updated x11/p5-Wx to 0.9903

0.9903 Wed Nov 09 08:00:00 BST 2011
    - Remove force of static binding for mingw libgcc & libstdc++
0.9902 Thu Oct 13 08:00:00 BST 2011
    - 2.9.2 will now build with recent mingw compilers (>= gcc 4.5.2)
    - Fixed MSVC6 build (broken in 0.9702)
    - wrapped wxLogChain::DetachOldLog
    - added wxDF_UNICODETEXT
    - added wxMediaCtrl constants for all events

0.9901 Mon June 06 12:00:00 BST 2011
    - Bumped ExtUtils::XSpp dependency to 0.1602
    - added Wx::Frame::SendSizeEvent

0.99  Thu May 05 08:00:00 BST 2011
    - Release 0.98_01 as 0.99

0.98_01 Thu Apr 21 20:31:30 CEST 2010
    - Added wxProgressDialog::Pulse (wxWidgets 2.8)
    - Mac SetFrontProcess can be switched off for editors
      and tests using env variable. Still switched on by default.
      Added detail to Wx pod
    - Added several wxLog functions & methods + Wx::PLlog::Flush
    - Added wxDateTime::IsValid wxSplitterWindow::UpdateSize
    - fix for Wx::Locale::FindLanguageInfo / GetLanguageInfo
    - wxPli_create_evthandler added for VListBox and VScrolledWindow
    - Added OnDrawSeparator and OnDrawBackground for VListBox
    - added GradientFillConcentric & DrawLabel for wxDC

(abs)

2012-01-22 19:00:34 UTC MAIN commitmail json YAML

Updated x11/p5-Tk to 804.030

Tk-804.030 release (2011-10-20)
------------------

This is basically the same like Tk-804.029_502.

Tk-804.029_502 release (2011-10-17)
----------------------

Fixes
RT #71718: windres call needs the --use-temp-file on some Windows systems

RT #70429: show correct file name if image loading failed. Also
systematically searched and fixed other bad uses of Tcl_AppendResult.

RT #70423: provide inuse method for Tk::Image

Fixed a possible segfault when using canvas' select clear method.

Tk-804.029_501 release (2011-10-14)
----------------------

Fixes
Use standard libpng configure for all amd64 and x86_64 variants.

Support gridRemove method.
https://rt.cpan.org/Ticket/Display.html?id=65900

Tk-804.029_500 release (2011-06-13)
----------------------

Fixes
Fixed compilation with newer X11 version (conflicting types for
'XKeycodeToKeysym')
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=613188

Use standard libpng configure for some 64 bit variants of OpenBSD,
amd64-freebsd, x86_64-linux, MacOSX 10.6.4 and newer.

Fixed Strawberry 64bit builds.

Changed handling of "underscore" character.
https://rt.cpan.org/Ticket/Display.html?id=66205

Tk::ProgressBar::configure calls now go through ConfigChanged
https://rt.cpan.org/Ticket/Display.html?id=63775

Fixed Tk::FBox::ResolveFile with defaultextension when directory
contains dots
https://rt.cpan.org/Ticket/Display.html?id=55146

New features
BalloonInfo for HList
Implementation by Christoph Lambrecht, documentation by
Slaven Rezic
https://rt.cpan.org/Ticket/Display.html?id=55887

Perl/Tk is now available at github.

Improved "all widgets at a glance" demo.

Tests
Another attempt on skipping tests if no DISPLAY is available.

Converted fork.t and progbar.t to Test::More

Documentation
Fixed SYNOPSIS section in Tk::Text Pod

(abs)

2012-01-22 18:49:58 UTC MAIN commitmail json YAML

Updated x11/p5-gtk2 to 1.242

Overview of changes in Gtk2 1.242
=================================

* Add gitweb link to old ChangeLog
* Be compatible with perl 5.8.0 (Bugzilla bug #666227)
* Gtk2::Widget: don't implement is_sensitive() twice
* Disable a few potentially annoying tests

Overview of changes in Gtk2 1.241
=================================

* Add the missing NEWS entries from the stable branch
* Fix a test failure in t/tied-objects.t
* Fix a test failure in t/GtkEntryBuffer.t

Overview of changes in Gtk2 1.240
=================================

Since 1.22x (the previous stable series)
----------------------------------------
* Wrap missing gdk, gdk-pixbuf and gtk+ 2.12, 2.14, 2.16, 2.18, 2.20
  and 2.22 API.
* Add Gtk2::Gdk::Image.
* Add Gtk2::Container->find_child_property and list_child_properties.
* Add Gtk2::Widget->find_style_property and list_style_properties.
* Add Gtk2::Gdk::Pixbuf->get_option.
* Add is_writable field to Gtk2::Gdk::PixbufFormat.
* Make Gtk2::FontButton->new and Gtk2::ColorButton->new more flexible.
* Accept format strings in Gtk2::MessageDialog->format_secondary_markup.
* In syntax check mode, do not call gtk_init.
* Improve the documentation in many places.

Since 1.232
-----------
* Document the unusual return semantics of Gtk2::CellLayout::get_cells.

Overview of changes in Gtk2 1.232
=================================

* Gtk2::Gdk::Pixbuf->new_from_data(): accept overloaded strings
* Expand and clarify some of the documentation.
* Allow undef in a few more places.
* Fix a few test failures.

Overview of changes in Gtk2 1.231
=================================

* Wrap gtk+ 2.22 API.
* Wrap gdk 2.20 and 2.22 API.
* Wrap missing gtk+ 2.8, 2.10, 2.12, 2.14, 2.16, 2.18 and 2.20 API.
* Wrap missing gdk 2.18 API.
* Wrap missing gdk-pixbuf 2.18 API.
* Add Gtk2::Gdk::Image.
* Add Gtk2::Container->find_child_property and list_child_properties.
* Add Gtk2::Widget->find_style_property and list_style_properties.
* Add Gtk2::Gdk::Pixbuf->get_option.
* Add is_writable field to Gtk2::Gdk::PixbufFormat.
* Allow Gtk2::Buildable implementations to return undef from
  GET_INTERNAL_CHILD.
* Cope with the rename of the keysym defines in gtk+ 2.22.
* Fix invocation of Gtk2::Notebook window creation hooks.
* Fix length of Gtk2::Gdk::Pixbuf->get_pixels() return.
* Ensure that the option strings passed to Gtk2::Gdk::Pixbuf->save() are
  upgraded to utf8 if necessary.  Also, complain if an odd number of key/value
  args is given.
* Update Gtk2->show_about_dialog to match upstream.
* Make damage events Gtk2::Gdk::Event::Expose objects.
* Allow undef in a few more places.
* Correct the memory management in Gtk2::Gdk::Window->new.
* Correct length of the Gtk2::Gdk::Pixbuf->get_pixels() return.
* Plug leaks in Gtk2::Gdk::Drawable->get_image, Gtk2::CellLayout and
  Gtk2::TreeSortable.
* Use Glib's infrastructure for attaching "magic".
* Add some examples.
* Improve the documentation in a few places.
* Fix a few build and test failures.

Overview of changes in Gtk2 1.230
=================================

* Wrap gtk+ 2.20 API in:  [Special thanks to Quentin Sculo]
  - Gtk2::Notebook
* Wrap gtk+ 2.18 API in:  [Special thanks to Quentin Sculo]
  - Gtk2::FileChooser
  - Gtk2::IconView
  - Gtk2::InfoBar
  - Gtk2::Label
  - Gtk2::Menu
  - Gtk2::Range
  - Gtk2::StatusIcon
  - Gtk2::Gdk::Cairo
  - Gtk2::Gdk::Region
  - Gtk2::Gdk::Window
* Wrap gtk+ 2.16 API in:  [Special thanks to Emmanuele Bassi and Quentin
  Sculo]
  - Gtk2::Action
  - Gtk2::Entry
  - Gtk2::Gdk::Keymap
  - Gtk2::IMContext
  - Gtk2::MenuItem, Gtk2::ImageMenuItem
  - Gtk2::Scale
  - Gtk2::Window
* Wrap gtk+ 2.14 API:
  - Gtk2::Adjustment  [Special thanks to Kevin Ryde]
  - Gtk2::Gdk::Event
  - Gtk2::Gdk::Screen
* Wrap gtk+ 2.12 API in Gtk2::Gdk::Window.
* Make Gtk2::FontButton->new and Gtk2::ColorButton->new more flexible:
  When called with an argument, turn new() into new_with_color() or
  new_with_font(), respectively.
* Accept format strings in Gtk2::MessageDialog->format_secondary_markup.
* Allow undef in a few places:
  - Gtk2::Gdk::Drawable->draw_pixbuf, draw_layout_with_colors,
    draw_layout_line_with_colors, draw_segments
  - Gtk2::Gdk::Window->invalidate_rect, set_icon_name,
    input_shape_combine_mask, shape_combine_mask,
    input_shape_combine_region, shape_combine_region
  - Gtk2::AccelLabel->set_accel_widget
  - Gtk2::Menu->set_screen
  - Gtk2::Widget->set_accel_path, shape_combine_mask
  - Gtk2::Window->set_default_icon_name
* In syntax check mode, do not call gtk_init.  gtk_init may abort the
  program (e.g. if DISPLAY is not set), so only call gtk_init_check even
  if asked to call gtk_init.
* Gtk2::Menu: trap exceptions in popup callbacks.  Uncaught exceptions
  in a popup callback can result in persistent mouse and keyboard grabs,
  locking the screen until the program is killed.
* Make Gtk2::ListStore->remove()'s return value consistent on gtk+ 2.0.
* Fix memory handling in Gtk2::RecentInfo->get_application_info.
* Improve the documentation in many places.  [Special thanks to Kevin
  Ryde]
* Fix some build and test failures.

(abs)

2012-01-22 18:46:10 UTC MAIN commitmail json YAML

Updated x11/p5-Alien-wxWidgets to 0.54nb1

0.54  Wed Nov 09 08:00:00 BST 2011
    - Remove force of static binding for mingw libgcc & libstdc++
    - For mingw, properly detect the gcc shared lib dependencies
      to install
0.53  Thu Oct 13 08:00:00 BST 2011
    - SDK fix for 2.8.x on Mac OSX Lion
    - 2.9.2 default for 64bit MacOSX
    - 2.9.2 build changes for msw supporting mingw/gcc >= 4.5.2
    - 2003 Platform SDK build fixed for 2.8.12

(abs)

2012-01-22 18:43:12 UTC MAIN commitmail json YAML

Updated devel/p5-glib2 to 1.242

Overview of changes in Glib 1.242
=================================

* Glib::GenPod: fix typo in default pspec values
  (https://bugzilla.gnome.org/show_bug.cgi?id=665331)
* Glib::GenPod: delete a duplicate key in %basic_types
  (https://bugzilla.gnome.org/show_bug.cgi?id=665332)
* Change the FSF's address in all GPL license notices (RT#72664)

Overview of changes in Glib 1.241
=================================

* Register the boxed type Glib::GString, based almost completely on a patch by
  Emmanuel Rodriguez (https://bugzilla.gnome.org/show_bug.cgi?id=663881).
* Fix linking against perl < 5.9.4 on some platforms; Do not use
  SvREFCNT_inc_simple_void_NN as that was introduced in perl 5.9.4, which came
  after the 5.8.0 we require.

Overview of changes in Glib 1.240
=================================

Since 1.22x (the previous stable series)
----------------------------------------
  * Add Glib::Param::GType support.
  * Add Glib::Log->set_default_handler() and
    Glib::Log::default_handler().
  * Add Glib::ParamSpec->override() and get_redirect_target().
  * Add Glib::Param->get_default_value().
  * Support the fundamental type Glib::GType.
  * Correctly handle variables with "magic" attached, like tied
    variables.
  * Don't copy boxed objects when passing from Perl to C.

Since 1.233
-----------
  * Nada.

Overview of changes in Glib 1.233
=================================

* Change the way we handle objects with floating references again, to be more
  compatible.

Overview of changes in Glib 1.232
=================================

* In the documentation generated by Glib::GenPod, show default values for
  properties.
* Correctly handle objects which have floating references.
* When checking whether a variable is a reference, correctly account for "get
  magic", which occurs for example for tied variables.  Add gperl_sv_is_ref for
  other bindings to use.

Overview of changes in Glib 1.231
=================================

* Add Glib::Log->set_default_handler() and Glib::Log::default_handler().
* Add Glib::ParamSpec->override() and get_redirect_target().
* Add Glib::Param->get_default_value().
* Make Glib::ParamSpec->value_validate() copy boxed objects if necessary.
* Support the fundamental type Glib::GType.
* Correctly store and look up custom signal marshallers.
* Fix fetching default values for unichar properties of custom subclasses.
* Fix subclassing with {pspec, get, set}-style properties.
* Allow the Glib::Object "magic" to coexist with other extensions' "magic".
* Make Glib::GenPod create docs for child and style properties.
* Improve the documentation in a few places.
* Fix a few build and test failures.

Overview of changes in Glib 1.230
=================================

* Don't copy boxed objects when passing from Perl to C.  This mainly affects
  Perl subclasses which have signal handlers that involve boxed objects and use
  signal_chain_from_overridden() to call parent signal handlers.  With this
  change, the parent's handlers will now operator on the same object that the
  Perl code sees, and changes consequently propagate properly.
* Correctly handle variables with "set" magic attached in the default
  SET_PROPERTY implementation for custom Perl subclasses.
* Add Glib::Param::GType support.
* Make Glib::Flags::bool() and as_arrayref() callable as methods.
* Allow undef for default_value in Glib::ParamSpec->string.
* Improve the documentation in a few places.
* Add gperl_hv_take_sv, a wrapper for hv_store, to our C API.
* Fix some build and test failures.

(abs)

2012-01-22 18:38:34 UTC MAIN commitmail json YAML

Updated x11/p5-Gtk2-Ex-FormFactory to 0.67

0.67 Thu Aug 11, 2011, joern
    Features:
    - Added parse_tags option to TextView. This way you
      can easily create tagged text by using a simple
      HTML based markup syntax: <tag name="...">Tagged text</tag>.
    - Added HPaned widget

0.66 Sun Nov 11, 2009, joern
    Features:
    - image attribute for Button and ToggleButton; set a
      filename here to put an arbitrary image on a button

    Bugfixes:
    - Applied patches from Jeff Hallock fixing a bunch of
      "Use of uninitialized value" warnings. As well Jeff
      fixed a bug which renders empty "getter" prefixes
      unusable.
    - build() Method now prevents building a Factory twice
      by itself.
    - Container->add_child_widget() missed registering
      children to the Form Factory.
    - Widget activity tracking called active check callback
      without an object reference if no object was currently
      set instead of rendering the widget inactive in that case.

(abs)

2012-01-22 18:11:23 UTC MAIN commitmail json YAML

Updated lang/elk to 3.99.8

(asau)

2012-01-22 18:11:06 UTC MAIN commitmail json YAML

2012-01-22 17:36:48 UTC MAIN commitmail json YAML

+ SDL_image-1.2.12, SDL_mixer-1.2.12, SDL_net-1.2.8, SDL_ttf-2.0.11,
  Sigil-0.5.0, global-6.2, py-xcbgen-1.7, rxvt-unicode-9.15,
  x264-devel-20120121, xmlto-2.0.

(wiz)

2012-01-22 16:21:47 UTC MAIN commitmail json YAML

Added print/tex-bibtex8 version 3.71

(cheusov)