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 (4h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-12 23:53:10 UTC Now

2009-07-02 05:23:08 UTC MAIN commitmail json YAML

bzr 1.16.1 2009-06-26
#####################

End user testing of the 2a format revealed two serious bugs. The first,
#365615, caused bzr to raise AbsentContentFactory errors when autopacking.
This meant that commits or pushes to 2a-format repositories failed
intermittently.

The second bug, #390563, caused the smart server to raise AbsentContentFactory
when streaming 2a stacked 2a-format branches. This particularly affected
branches stored on Launchpad in the 2a format.

Bug Fixes
*********

* We now properly request a more minimal set of file texts when fetching
  multiple revisions. (Robert Collins, John Arbash Meinel, #390563)

* Repositories using CHK pages (which includes the new 2a format) will no
  longer error during commit or push operations when an autopack operation
  is triggered. (Robert Collins, #365615)

* ``chk_map.iter_interesting_nodes`` now properly uses the *intersection*
  of referenced nodes rather than the *union* to determine what
  uninteresting pages we still need to look at. Prior to this,
  incrementally pushing to stacked branch would push the minimal data, but
  fetching everything would request extra texts. There are some unhandled
  cases wrt trees of different depths, but this fixes the common cases.
  (Robert Collins, John Arbash Meinel, #390563)

* ``GroupCompress`` repositories now take advantage of the pack hints
  parameter to permit cross-format fetching to incrementally pack the
  converted data. (Robert Collins)

* ``Repository.commit_write_group`` now returns opaque data about what
  was committed, for passing to the ``Repository.pack``. Repositories
  without atomic commits will still return None. (Robert Collins)

* ``Repository.pack`` now takes an optional ``hint`` parameter
  which will support doing partial packs for repositories that can do
  that. (Robert Collins)

* RepositoryFormat has a new attribute 'pack_compresses' which is True
  when doing a pack operation changes the compression of content in the
  repository. (Robert Collins)

* ``StreamSink`` and ``InterDifferingSerialiser`` will call
  ``Repository.pack`` with the hint returned by
  ``Repository.commit_write_group`` if the formats were different and the
  repository can increase compression by doing a pack operation.
  (Robert Collins, #376748)

bzr 1.16 "It's yesterday in California" 2009-06-18
##################################################
:Codename: yesterday-in-california
:1.16rc1: 2009-06-11
:1.16: 2009-06-18

This version of Bazaar contains the beta release of the new ``2a`` repository
format, suitable for testing by fearless, advanced users. This format or an
updated version of it will become the default format in Bazaar 2.0. Please
read the NEWS entry before even thinking about upgrading to the new format.

Also included are speedups for many operations on huge projects, a bug fix for
pushing stacked new stacked branches to smart servers and the usual bevy of
bug fixes and improvements.

Changes from 1.16rc1 to 1.16final
*********************************

* Fix the nested tree flag check so that upgrade from development formats to
  2a can work correctly.
  (Jelmer Vernooij, #388727)

* Automatic format upgrades triggered by default stacking policies on a
  1.16rc1 (or later) smart server work again.
  (Andrew Bennetts, #388675)

Compatibility Breaks
********************

* Display prompt on stderr (instead of stdout) when querying users so
  that the output of commands can be safely redirected.
  (Vincent Ladeuil, #376582)

New Features
************

* A new repository format ``2a`` has been added.  This is a beta release
  of the the brisbane-core (aka group-compress) project.  This format now
  suitable for wider testing by advanced users willing to deal with some
  bugs.  We would appreciate test reports, either positive or negative.
  Format 2a is substantially smaller and faster for many operations on
  many trees.  This format or an updated version will become the default
  in bzr 2.0.

  This is a rich-root format, so this repository format can be used with
  bzr-svn.  Bazaar branches in previous non-rich-root formats can be
  converted (including by merge, push and pull) to format 2a, but not vice
  versa.  We recommend upgrading previous development formats to 2a.

  Upgrading to this format can take considerable time because it expands
  and more concisely repacks the full history.

  If you use stacked branches, you must upgrade the stacked branches
  before the stacked-on branches.  (See <https://bugs.launchpad.net/bugs/374735>)

* ``--development7-rich-root`` is a new dev format, similar to ``--dev6``
  but using a Revision serializer using bencode rather than XML.
  (Jelmer Vernooij, John Arbash Meinel)

* mail_client=claws now supports --body (and message body hooks).  Also uses
  configured from address.  (Barry Warsaw)

Improvements
************

* ``--development6-rich-root`` can now stack. (Modulo some smart-server
  bugs with stacking and non default formats.)
  (John Arbash Meinel, #373455)

* ``--development6-rich-root`` delays generating a delta index for the
  first object inserted into a group. This has a beneficial impact on
  ``bzr commit`` since each committed texts goes to its own group. For
  committing a 90MB file, it drops peak memory by about 200MB, and speeds
  up commit from 7s => 4s. (John Arbash Meinel)

* Numerous operations are now faster for huge projects, i.e. those
  with a large number of files and/or a large number of revisions,
  particularly when the latest development format is used. These
  operations (and improvements on OpenOffice.org) include:

  * branch in a shared repository (2X faster)
  * branch --no-tree (100X faster)
  * diff (2X faster)
  * tags (70X faster)

  (Ian Clatworthy)

* Pyrex version of ``bencode`` support. This provides optimized support
  for both encoding and decoding, and is now found at ``bzrlib.bencode``.
  ``bzrlib.utils.bencode`` is now deprecated.
  (Alexander Belchenko, Jelmer Vernooij, John Arbash Meinel)

Bug Fixes
*********

* Bazaar can now pass attachment files to the mutt email client.
  (Edwin Grubbs, #384158)

* Better message in ``bzr add`` output suggesting using ``bzr ignored`` to
  see which files can also be added.  (Jason Spashett, #76616)

* ``bzr pull -r 123`` from a stacked branch on a smart server no longer fails.
  Also, the ``Branch.revision_history()`` API now works in the same
  situation.  (Andrew Bennetts, #380314)

* ``bzr serve`` on Windows no longer displays a traceback simply because a
  TCP client disconnected. (Andrew Bennetts)

* Clarify the rules for locking and fallback repositories. Fix bugs in how
  ``RemoteRepository`` was handling fallbacks along with the
  ``_real_repository``. (Andrew Bennetts, John Arbash Meinel, #375496)

* Fix a small bug with fetching revisions w/ ghosts into a new stacked
  branch. Not often triggered, because it required ghosts to be part of
  the fetched revisions, not in the stacked-on ancestry.
  (John Arbash Meinel)

* Fix status and commit to work with content filtered trees, addressing
  numerous bad bugs with line-ending support. (Ian Clatworthy, #362030)

* Fix problem of "directory not empty" when contending for a lock over
  sftp.  (Martin Pool, #340352)

* Fix rule handling so that eol is optional, not mandatory.
  (Ian Clatworthy, #379370)

* Pushing a new stacked branch to a 1.15 smart server was broken due to a
  bug in the ``BzrDirFormat.initialize_ex`` smart verb.  This is fixed in
  1.16, but required changes to the network protocol, so the
  ``BzrDirFormat.initialize_ex`` verb has been removed and replaced with a
  corrected ``BzrDirFormat.initialize_ex_1.16`` verb.  1.15 clients will
  still work with a 1.16 server as they will fallback to slower (and
  bug-free) methods.
  (Jonathan Lange, Robert Collins, Andrew Bennetts, #385132)

* Reconcile can now deal with text revisions that originated in revisions
  that are ghosts. (Jelmer Vernooij, #336749)

* Support cloning of branches with ghosts in the left hand side history.
  (Jelmer Vernooij, #248540)

* The ''bzr diff'' now catches OSError from osutils.rmtree and logs a
  helpful message to the trace file, unless the temp directory really was
  removed (which would be very strange).  Since the diff operation has
  succeeded from the user's perspective, no output is written to stderr
  or stdout.  (Maritza Mendez, #363837)

* Translate errors received from a smart server in response to a
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
  This was causing tracebacks even for mundane errors like
  ``PermissionDenied``.  (Andrew Bennetts, #381329)

Documentation
*************

* Added directory structure and started translation of docs in Russian.
  (Alexey Shtokalo, Alexander Iljin, Alexander Belchenko, Dmitry Vasiliev,
  Volodymyr Kotulskyi)

API Changes
***********

* Added osutils.parent_directories(). (Ian Clatworthy)

* ``bzrlib.progress.ProgressBar``, ``ChildProgress``, ``DotsProgressBar``,
  ``TTYProgressBar`` and ``child_progress`` are now deprecated; use
  ``ui_factory.nested_progress_bar`` instead.  (Martin Pool)

* ``graph.StackedParentsProvider`` is now a public API, replacing
  ``graph._StackedParentsProvider``. The api is now considered stable and ready
  for external users. (Gary van der Merwe)

* ``bzrlib.user_encoding`` is deprecated in favor of
  ``get_user_encoding``.  (Alexander Belchenko)

* TreeTransformBase no longer assumes that limbo is provided via disk.
  DiskTreeTransform now provides disk functionality.  (Aaron Bentley)

Internals
*********

* Remove ``weave.py`` script for accessing internals of old weave-format
  repositories.  (Martin Pool)

Testing
*******

* The number of cores is now correctly detected on OSX. (John Szakmeister)

* The number of cores is also detected on Solaris and win32. (Vincent Ladeuil)

* The number of cores is also detected on FreeBSD. (Matthew Fuller)

bzr 1.15
########
:1.15rc1: 2009-05-16
:1.15: 2009-05-22
:1.15.1: 2009-06-09

The smart server will no longer raise 'NoSuchRevision' when streaming content
with a size mismatch in a reconstructed graph search. New command ``bzr
dpush``. Plugins can now define their own annotation tie-breaker when two
revisions introduce the exact same line.

Changes from 1.15.1 to 1.15.2
*****************************

* Use zdll on Windows to build ``_chk_map_pyx`` extension.
  (Alexander Belchenko)

Changes from 1.15final to 1.15.1
*********************************

* Translate errors received from a smart server in response to a
  ``BzrDirFormat.initialize`` or ``BzrDirFormat.initialize_ex`` request.
  This was causing tracebacks even for mundane errors like
  ``PermissionDenied``.  (Andrew Bennetts, #381329)

Changes from 1.15rc1 to 1.15final
*********************************

* No changes

Compatibility Breaks
********************

* ``bzr ls`` is no longer recursive by default. To recurse, use the
  new ``-R`` option. The old ``--non-recursive`` option has been removed.
  If you alias ``ls`` to ``ls -R``, you can disable recursion using
  ``--no-recursive`` instead.  (Ian Clatworthy)

New Features
************

* New command ``bzr dpush`` that can push changes to foreign
  branches (svn, git) without setting custom bzr-specific metadata.
  (Jelmer Vernooij)

* The new development format ``--development6-rich-root`` now supports
  stacking. We chose not to use a new format marker, since old clients
  will just fail to open stacked branches, the same as if we used a new
  format flag. (John Arbash Meinel, #373455)

* Plugins can now define their own annotation tie-breaker when two revisions
  introduce the exact same line. See ``bzrlib.annotate._break_annotation_tie``
  Be aware though that this is temporary, private (as indicated by the leading
  '_') and a first step to address the problem. (Vincent Ladeuil, #348459)

* New command ``bzr dpush`` that can push changes to foreign
  branches (svn, git) without setting custom bzr-specific metadata.
  (Jelmer Vernooij)

* ``bzr send`` will now check the ``child_submit_format`` setting in
  the submit branch to determine what format to use, if none was
  specified on the command-line.  (Jelmer Vernooij)

Improvements
************

* -Dhpss output now includes the number of VFS calls made to the remote
  server. (Jonathan Lange)

* ``--coverage`` works for code running in threads too.
  (Andrew Bennets, Vincent Ladeuil)

* ``bzr pull`` now has a ``--local`` option to only make changes to the
  local branch, and not the bound master branch.
  (Gary van der Merwe, #194716)

* ``bzr rm *`` is now as fast as ``bzr rm * --keep``. (Johan Walles, #180116)

Bug Fixes
*********

* Adding now works properly when path contains a symbolic link.
  (Geoff Bache, #183831)

* An error is now raised for unknown eol values. (Brian de Alwis, #358199)

* ``bzr merge --weave`` will now generate a conflict if one side deletes a
  line, and the other side modifies the line. (John Arbash Meinel, #328171)

* ``bzr reconfigure --standalone`` no longer raises IncompatibleRepositories.
  (Martin von Gagern, #248932)

* ``bzr send`` works to send emails again using MAPI.
  (Neil Martinsen-Burrell, #346998)

* Check for missing parent inventories in StreamSink.  This prevents
  incomplete stacked branches being created by 1.13 bzr:// and
  bzr+ssh:// clients (which have bug #354036).  Instead, the server now
  causes those clients to send the missing records.  (Andrew Bennetts)

* Correctly handle http servers proposing multiple authentication schemes.
  (Vincent Ladeuil, #366107)

* End-Of-Line content filters are now loaded correctly.
  (Ian Clatworthy, Brian de Alwis, #355280)

* Fix a bug in the pure-python ``GroupCompress`` code when handling copies
  longer than 64KiB. (John Arbash Meinel, #364900)

* Fix TypeError in running ``bzr break-lock`` on some URLs.
  (Alexander Belchenko, Martin Pool, #365891)

* Non-recursive ``bzr ls`` now works properly when a path is specified.
  (Jelmer Vernooij, #357863)

* ssh usernames (defined in ~/.ssh/config) are honoured for bzr+ssh connections.
  (Vincent Ladeuil, #367726)

* Several bugs related to unicode symlinks have been fixed and the test suite
  enhanced to better catch regressions for them. (Vincent Ladeuil)

* The smart server will no longer raise 'NoSuchRevision' when streaming
  content with a size mismatch in a reconstructed graph search: it assumes
  that the client will make sure it is happy with what it got, and this
  sort of mismatch is normal for stacked environments.
  bzr 1.13.0/1 will stream from unstacked branches only - in that case not
  getting all the content expected would be a bug. However the graph
  search is how we figured out what we wanted, so a mismatch is both odd
  and unrecoverable without starting over, and starting over will end up
  with the same data as if we just permitted the mismatch. If data is
  gc'd, doing a new search will find only the truncated data, so sending
  only the truncated data seems reasonable. bzr versions newer than this
  will stream from stacked branches and check the stream to find missing
  content in the stacked-on branch, and thus will handle the situation
  implicitly.  (Robert Collins, #360791)

* Upgrading to, or fetching into a 'rich-root' format will now correctly
  set the root data the same way that reconcile does.
  (Robert Collins, #368921)

* Using unicode Windows API to obtain command-line arguments.
  (Alexander Belchenko, #375934)

Documentation
*************

API Changes
***********

* ``InterPackRepo.fetch`` and ``RepoFetcher`` now raise ``NoSuchRevision``
  instead of ``InstallFailed`` when they detect a missing revision.
  ``InstallFailed`` itself has been deleted. (Jonathan Lange)

* Not passing arguments to ``bzrlib.commands.main()`` will now grab the
  arguments from ``osutils.get_unicode_argv()`` which has proper support
  for unicode arguments on windows. Further, the supplied arguments are now
  required to be unicode strings, rather than user_encoded strings.
  (Alexander Belchenko)

Internals
*********

* ``bzrlib.branch.Branch.set_parent`` is now present on the base branch
  class and will call ``_set_parent_location`` after doing unicode
  encoding. (Robert Collins)

* ``bzrlib.remote.RemoteBranch._set_parent_location`` will use a new verb
  ``Branch.set_parent_location`` removing further VFS operations.
  (Robert Collins)

* ``bzrlib.bzrdir.BzrDir._get_config`` now returns a ``TransportConfig``
  or similar when the dir supports configuration settings. The base class
  defaults to None. There is a matching new server verb
  ``BzrDir.get-config_file`` to reduce roundtrips for getting BzrDir
  configuration. (Robert Collins)

* ``bzrlib.tests.ExtendedTestResult`` has new methods ``startTests``
  called before the first test is started, ``done`` called after the last
  test completes, and a new parameter ``strict``. (Robert Collins)

* ``-Dhpss`` when passed to bzr will cause a backtrace to be printed when
  VFS operations are started on a smart server repository. This should not
  occur on regular push and pull operations, and is a key indicator for
  performance regressions. (Robert Collins)

* ``-Dlock`` when passed to the selftest (e.g. ``bzr -Dlock selftest``) will
  cause mismatched physical locks to cause test errors rather than just
  reporting to the screen. (Robert Collins)

* Fallback ``CredentialStore`` instances registered with ``fallback=True``
  are now be able to provide credentials if obtaining credentials
  via ~/.bazaar/authentication.conf fails. (Jelmer Vernooij,
  Vincent Ladeuil, #321918)

* New hook ``Lock.lock_broken`` which runs when a lock is
  broken. This is mainly for testing that lock/unlock are
  balanced in tests. (Vincent Ladeuil)

* New MergeDirective hook 'merge_request_body' allows hooks to supply or
  alter a body for the message produced by ``bzr send``.

* New smart server verb ``BzrDir.initialize_ex`` which implements a
  refactoring to the core of clone allowing less round trips on new
  branches. (Robert Collins)

* New method ``Tags.rename_revisions`` that can rename revision ids tags
  are pointing at. (Jelmer Vernooij)

* Updated the bundled ``ConfigObj`` library to 4.6.0 (Matt Nordhoff)

Testing
*******

* ``bzr selftest`` will now fail if lock/unlock are not correctly balanced in
  tests. Using ``-Dlock`` will turn the related failures into warnings.
  (Vincent Ladeuil, Robert Collins)

(epg)

2009-07-02 00:41:48 UTC MAIN commitmail json YAML

+drupal-5.19, drupal-6.13.

Security release.

(taca)

2009-07-01 13:51:47 UTC MAIN commitmail json YAML

2009-07-01 13:26:32 UTC MAIN commitmail json YAML

+ brasero-2.26.3, cheese-2.26.3, eog-2.26.3, evolution-mapi-0.26.2
  [GNOME 2.26], file-roller-2.26.3, gcalctool-5.26.3, glade3-3.6.7
  [GNOME 2.26], gnome-applets-2.26.3, gnome-desktop-2.26.3,
  gnome-games-2.26.3, gnome-keyring-2.26.3, gnome-mag-0.15.7,
  gnome-menus-2.26.2, gnome-themes-2.26.3, hamster-applet-2.26.3,
  libgweather-2.26.2.1, libsoup24-2.26.3, libwnck-2.26.2,
  libxklavier-4.0, modular-xorg-server-1.6.1.902, mousetweaks-2.26.3,
  nasm-2.06, orca-2.26.3, pango-1.24.4, pessulus-2.26.2 [GNOME
  2.26], phpmyadmin-3.2.0.1, pidgin-2.5.8, texmaker-1.9.2,
  totem-2.26.3, tuxpaint-0.9.21, vala-0.7.4, warzone2100-2.2.1,
  xmp-2.6.2, youtube-dl-20090629.

(wiz)

2009-07-01 10:39:05 UTC MAIN commitmail json YAML

PLIST fix: clientonly does not install libbacsql

(adam)

2009-07-01 02:17:46 UTC MAIN commitmail json YAML

2009-07-01 02:17:11 UTC MAIN commitmail json YAML

Add squid's common ftp download URL as SQUID_MASTER_SITES.

(taca)

2009-07-01 01:39:22 UTC MAIN commitmail json YAML

Add lang-be which will add Belarusian language support.

(taca)

2009-07-01 01:38:34 UTC MAIN commitmail json YAML

+squid-3.1.0.9.

(taca)

2009-07-01 01:37:26 UTC MAIN commitmail json YAML

Note update of www/drupal6-translations package to 20090621.

(taca)

2009-07-01 01:36:45 UTC MAIN commitmail json YAML

Update drupal6-translations package to 20090621.

* pkgsrc change: remove PLIST.common_end which isn't needed any more.
* Add Belarusian(be), Catalan(ca), Indonesian(id), Dutch(nl), Turkish(tr) and
  Ukrainian(uk).
* Update Danish(da), Greek(el), Spanish(es), Brazilian Portuguese(pt-br),
  Russian(ru) and Swedish(sv)

(taca)

2009-07-01 01:03:49 UTC MAIN commitmail json YAML

Note update of www/opengoo package to 1.4.2nb1.

(taca)

2009-07-01 01:03:05 UTC MAIN commitmail json YAML

Needs more php modules.

Bump PKGREVISION.

(taca)

2009-06-30 17:20:12 UTC MAIN commitmail json YAML

Note update of www/typolight27-translations package to 20090630.

(taca)

2009-06-30 17:19:29 UTC MAIN commitmail json YAML

2009-06-30 17:18:25 UTC MAIN commitmail json YAML

Note update of www/squid30 pakcage to 3.0.16.

(taca)

2009-06-30 17:17:39 UTC MAIN commitmail json YAML

Update squid30 package to 3.0.16 (squid-3.0.STABLE16).
(This is a leaf package.)

Changes to squid-3.0.STABLE16 (15 Jun 2009):

- Bug 2672: cacheMemMaxSize 32-bit overflow during snmpwalk
- Bug 2481: Don't set expires: now in generated error responses
- Bug 2387: The calculation of the number of hash buckets correctly
- Fix infinite loop in MSNT auth helper
- Fix FD_SETSIZE on FreeBSD
- Fix stripping NT domain in squid_ldap_group
- Fix RADIUS auth helper build
- Add Translate: and Unless-Modified-Since: headers to known list
- Make fakeauth handle NTLMv2 better
- Better Kerberos support detection
- Several Widows port fixes

Changes to squid-3.0.STABLE16-RC1 (16 May 2009):

- Bug 1148: Ported from 3.1: Chunked Transfer Encoding
- Bug 2648: NTLM helpers not shutting down when deferred

(taca)

2009-06-30 17:16:27 UTC MAIN commitmail json YAML

Delete unused PLIST.common_end now.

(taca)

2009-06-30 17:16:02 UTC MAIN commitmail json YAML

Delete unused PLIST.common_end now.

(taca)

2009-06-30 17:15:42 UTC MAIN commitmail json YAML

Delete unused PLIST.common_end now.

(taca)

2009-06-30 17:11:30 UTC MAIN commitmail json YAML

Revert generating PLIST for error files except @dirrm.
It was accidently deleted by previous commit.

It should fix some bulk problem of squid27/squid30/squid31 packages.

(taca)

2009-06-30 16:11:49 UTC MAIN commitmail json YAML

add a long missing @ in the print-summary-data target that has been causing garbage to appear in the output

(dmcmahill)

2009-06-30 15:33:06 UTC MAIN commitmail json YAML

Hack around the -fPIC compilation problem on amd64 by sed(1)ing
-fPIC in the necessary Makefiles.

(wiz)

2009-06-30 11:05:06 UTC MAIN commitmail json YAML

2009-06-30 00:42:01 UTC MAIN commitmail json YAML

Move PKG_INSTALLATION_TYPES and PKG_DESTDIR_SUPPORT before bsd.prefs.mk.

(joerg)

2009-06-30 00:07:26 UTC MAIN commitmail json YAML

2009-06-29 23:08:53 UTC MAIN commitmail json YAML

Needs Xinerama for modular Xorg.

(joerg)

2009-06-29 23:02:06 UTC MAIN commitmail json YAML

2009-06-29 22:42:31 UTC MAIN commitmail json YAML

Fix INSTALLATION_DIRS.

(joerg)

2009-06-29 22:40:29 UTC MAIN commitmail json YAML

2009-06-29 22:38:39 UTC MAIN commitmail json YAML

Create needed directories.

(joerg)

2009-06-29 20:28:36 UTC MAIN commitmail json YAML

Must explicitly request SDL support.

(joerg)

2009-06-29 20:26:44 UTC MAIN commitmail json YAML

Explicitly request SDL support.

(joerg)

2009-06-29 17:36:12 UTC MAIN commitmail json YAML

Create needed directories.

(joerg)

2009-06-29 17:10:27 UTC MAIN commitmail json YAML

Create needed directories.

(joerg)

2009-06-29 16:36:33 UTC MAIN commitmail json YAML

Add missing directories.

(joerg)

2009-06-29 16:13:30 UTC MAIN commitmail json YAML

Create missing directories.

(joerg)

2009-06-29 16:01:40 UTC MAIN commitmail json YAML

2009-06-29 15:53:35 UTC MAIN commitmail json YAML

2009-06-29 15:42:41 UTC MAIN commitmail json YAML

2009-06-29 15:38:25 UTC MAIN commitmail json YAML

Install as uncompressed man page with suffix .1.

(joerg)

2009-06-29 15:32:34 UTC MAIN commitmail json YAML

dbus option needs pkg-config.

(joerg)

2009-06-29 15:26:32 UTC MAIN commitmail json YAML

Needs Xinerama for modular Xorg.

(joerg)

2009-06-29 14:49:57 UTC MAIN commitmail json YAML

Don't call pkg_admin check-license if the version is too old to support
it.  Explicitly fail in that case and inform the user to update.

If the license condition is simple, provide a C&P-table line.

OK wiz@

(joerg)

2009-06-29 12:54:19 UTC MAIN commitmail json YAML

add two patches from upstream to fix rendering problems which
garble the KDE4 desktop, from Sverre Froyen
bump PKGREVISION

(drochner)

2009-06-28 19:01:33 UTC MAIN commitmail json YAML

Regen for pidgin 2.5.7

(kefren)

2009-06-28 16:34:04 UTC MAIN commitmail json YAML

+ fotoxx-7.3, zziplib-0.13.56.

(wiz)

2009-06-28 16:29:58 UTC MAIN commitmail json YAML

+ akonadi-1.1.95, fontconfig-2.7.0, glib2-2.20.4, gtk2-2.16.3,
  iso-codes-3.10.1, jpeg-7, libogg-1.1.4, libvorbis-1.2.2,
  p5-DBD-mysql-4.012, p5-ExtUtils-CBuilder-0.25, p5-libwww-5.828,
  py-cairo-1.8.6, qt4-libs-4.5.2, scmgit-base-1.6.3.3, scmgit-docs-1.6.3.3,
  telepathy-glib-0.7.33, xmp-2.6.1.

(wiz)

2009-06-28 07:47:40 UTC MAIN commitmail json YAML

Note update of www/typolight27-translations package to 20090626.

(taca)

2009-06-28 07:46:29 UTC MAIN commitmail json YAML

2009-06-28 07:40:55 UTC MAIN commitmail json YAML

Note update of www/typolight27 package to 2.7.2.

(taca)

2009-06-28 07:39:39 UTC MAIN commitmail json YAML

Update www/typolight27 pacakge to 2.7.2. Approved by agc@.

Version 2.7.2 (2009-06-25)
--------------------------
- Improved navigation skip links (#815)
- Fixed a few PHP 5.3 compatibility issues (#783, #785, #786)
- Fixed issue with wrong duplicate newsletter recipient warning (#769)
- Fixed issue with files with special characters not being downloadable (#816)
- Fixed issue with date calculation in "edit multiple" mode (#809)
- Fixed issue with revision date not being set in "edit multiple" mode (#793)
- Fixed issue with news pagination menu not showing (#760)
- Fixed issue with news author notifications not working (#806)
- Fixed issue with "checkCredentials" hook (#811)
- Fixed a few minor issues

(taca)

2009-06-27 23:42:39 UTC MAIN commitmail json YAML

Fix build on HP-UX.
pdksh is so messy.

(ahoka)

2009-06-27 22:30:51 UTC MAIN commitmail json YAML

Require ksh on HP-UX: /bin/sh dumps core during install on certain systems.

(ahoka)

2009-06-27 20:45:48 UTC MAIN commitmail json YAML

Mark as not make-jobs-safe (at least breaks for me with -j16).

(wiz)

2009-06-27 12:47:54 UTC MAIN commitmail json YAML

Need workaround for Upstream Bug#562310.

(obache)

2009-06-27 09:55:09 UTC MAIN commitmail json YAML

Remove kerberos option.  It only implied the sasl option (hackish) and
kerberos is just one of the SASL authentication methods, which have to
be configured in cyrus-sasl, not in openldap.  Fixes PR pkg/41634.

(ghen)

2009-06-27 04:16:57 UTC MAIN commitmail json YAML

Add ${TRUE} to end of the GENERATE_PLIST to avoid picked up exit code of last
test command.

(obache)

2009-06-27 01:01:07 UTC MAIN commitmail json YAML

+ abcmidi-20090623, amavisd-new-2.6.4, bzr-1.16.1, cyrus-imapd-2.3.13,
  electric-8.09, exiv2-0.18.2, tcpreplay-3.4.3, tor-0.2.0.35,
  xmp-2.6.0.

(wiz)

2009-06-26 21:56:40 UTC MAIN commitmail json YAML

add checksum for new patch-as

(jdolecek)

2009-06-26 21:54:35 UTC MAIN commitmail json YAML

resurrect patch originally from databases/php-pdo/patches/patch-aa, so
that databases/php-pdo compiles and works as shared module on Mac OS X
after the package has been modified to use modules shipped with PHP instead
of (obsolete) PCRE versions

(jdolecek)

2009-06-26 20:30:16 UTC MAIN commitmail json YAML

You can't return from a void function.  Fixes Solaris build and gives 999
dependant packages a chance to build.

(sketch)

2009-06-26 19:47:14 UTC MAIN commitmail json YAML

Allow Python 2.6 to fix dependencies of a number of other packages.
Seems to build fine.

(joerg)

2009-06-26 19:44:47 UTC MAIN commitmail json YAML

Accept Python 2.6 for now until evidence of breakage appears. Fixes
dependencies of some other packages.

(joerg)

2009-06-26 11:03:27 UTC MAIN commitmail json YAML

+ neverball-1.5.1 [pkg/41637]

(obache)

2009-06-26 05:40:32 UTC MAIN commitmail json YAML

+stella-2.8.3

(dholland)

2009-06-25 17:37:12 UTC MAIN commitmail json YAML

work around nonexistant config script in gnutls-1.8 the same way
as in wireshark
this restores eg "https" functionality
bump PKGREVISION

(drochner)

2009-06-25 15:33:31 UTC MAIN commitmail json YAML

+ Mesa-7.4.4 [hasso], MesaLib-7.4.4 [hasso], anjuta-2.26.2.2 [GNOME
  2.26], cherokee-0.99.19, clive-2.2.1, dspam-3.9.0, glade3-3.6.6
  [GNOME 2.26], highlight-2.10, htop-0.8.3, liferea-1.6.0rc6,
  mathomatic-14.5.0, musicpd-0.15, pixman-0.15.14, py-subversion-1.6.3,
  stella-2.8.2, subtitleeditor-0.33.0, uim-1.5.6, wine-devel-1.1.24.

(wiz)

2009-06-25 14:22:08 UTC MAIN commitmail json YAML

Add the correct header entry for sparcv8.  Addresses PR pkg/33997.

(dmcmahill)

2009-06-25 11:46:30 UTC MAIN commitmail json YAML

Note update of sun-{jdk,jre}14 to 2.19.

(obache)

2009-06-25 11:43:41 UTC MAIN commitmail json YAML

Update sun-{jre,jdk}14 to 2.19, a.k.a. 1.4.2_19.

Changes in 1.4.2_19

The full internal version number for this update release is 1.4.2_19-b04 (where
"b" means "build"). The external version number is 1.4.2_19.

OlsonData 2008i

  This release contains Olson time zone data version 2008i. For more information,
  refer to Timezone Data Versions in the JRE Software .

Root Certificates Included

  Root Certificates are included in this release. The following root
  certificates have been added:

    * Camerfirma root certificates
    * T-systems root CA certificate (Deutsche Telekom Root CA 2)

Bug Fixes

  This release contains fixes for one or more security vulnerabilities. For more
  information, please see Sun Alerts 244986, 244987, 244988, 244990, 244991,
  245246, 246266, 246346, 246386, and 246387.

Other bug fixes are listed in the following URL:
  http://java.sun.com/j2se/1.4.2/ReleaseNotes.html#142_19

Changes in 1.4.2_18

The full internal version number for this update release is 1.4.2_18-b06 (where
"b" means "build"). The external version number is 1.4.2_18.

OlsonData 2008b

  This release contains Olson time zone data version 2008b. For more information,
  refer to 6679340 or to US DST Timezone Updater.

Bug Fixes

  This release contains fixes for one or more security vulnerabilities. For more
  information, please see Sun Alerts 238666, 238905, 238967, and 238968.

Other bug fixes are listed in the following URL:
  http://java.sun.com/j2se/1.4.2/ReleaseNotes.html#142_18

(obache)

2009-06-25 11:35:28 UTC MAIN commitmail json YAML

Note update of net/ldns to 1.5.1.

(he)

2009-06-25 11:34:38 UTC MAIN commitmail json YAML

Update from version 1.4.0nb1 to 1.5.1.

OK'ed by wiz@

Pkgsrc changes:
o Explicitly mark dependency on openssl >= 0.9.7, should fix PR#41633

Upstream changes:

1.5.1
Example tools:
* ldns-signzone was broken in 1.5.0 for multiple keys, this
          has been repaired

Build system:
        * Removed a small erroneous output warning in
          examples/configure and drill/configure

1.5.0
Bug fixes:
* fixed a possible memory overflow in the RR parser
* build flag fix for Sun Studio
* fixed a building race condition in the copying of header
  files
* EDNS0 extended rcode; the correct assembled code number
  is now printed (still in the EDNS0 field, though)
* ldns_pkt_rr no longer leaks memory (in fact, it no longer
  copies anything all)

API addition:
* ldns_key now has support for 'external' data, in which
  case the OpenSSL EVP structures are not used;
  ldns_key_set_external_key() and ldns_key_external_key()
* added ldns_key_get_file_base_name() which creates a
  'default' filename base string for key storage, of the
  form "K<zone>+<algorithm>+<keytag>"
* the ldns_dnssec_* family of structures now have deep_free()
  functions, which also free the ldns_rr's contained in them
* there is now an ldns_match_wildcard() function, which checks
  whether a domain name matches a wildcard name
* ldns_sign_public has been split up; this resulted in the
  addition of ldns_create_empty_rrsig() and
  ldns_sign_public_buffer()

Examples:
* ldns-signzone can now automatically add DNSKEY records when
  using an OpenSSL engine, as it already did when using key
  files
* added new example tool: ldns-nsec3-hash
* ldns-dpa can now filter on specific query name and types
* ldnsd has fixes for the zone name, a fix for the return
          value of recvfrom(), and an memory initialization fix
          (Thanks to Colm MacC叩rthaigh for the patch)
        * Fixed memory leaks in ldnsd

1.4.1
Bug fixes:
* fixed a build issue where ldns lib existence was done too early
* removed unnecessary check for pcap.h
* NSEC3 optout flag now correctly printed in string output
* inttypes.h moved to configured inclusion
* fixed NSEC3 type bitmaps for empty nonterminals and unsigned
  delegations

API addition:
* for that last fix, we added a new function
  ldns_dname_add_from() that can clone parts of a dname

(he)

2009-06-25 09:54:14 UTC MAIN commitmail json YAML

Enlarge the buffer for communication between auth worker client and server.
This allows exotic authentications that use a large data payload to work.
This patch has been committed upstream.

(manu)

2009-06-25 09:41:45 UTC MAIN commitmail json YAML

fix the gnutls hack so that the installed .pc file doesn't contain
unresolved variables
bump PKGREVISION

(drochner)

2009-06-25 09:38:25 UTC MAIN commitmail json YAML

compensate for missing "libgnutls-config" in gnutls-1.8.0, so that
SSL support is built in again
approved by tron The Maintainer
bump PKGREVISION

(drochner)

2009-06-25 06:42:10 UTC MAIN commitmail json YAML

Updated security/pcsc-lite to 1.5.4.

(hasso)

2009-06-25 06:30:51 UTC MAIN commitmail json YAML

Update to 1.5.4. Changes since 1.5.3:

- SCardGetStatusChange() works again. It was broken in some cases since
  version 1.5.2
- detect buffer overflows if pcscd if used by a rogue client
- force access rights on /var/run/pcscd to be sure it can be used by a
  libpcsclite client without privileges [SECURITY]
- create the PCSCLITE_EVENTS_DIR directory with the sticky bit so only
  root or the owner of the event files can remove them
- if RFAddReader() fails with the libhal scheme then we try with the
  (old) libusb scheme.  This patch should allow proprietary drivers to
  work even if pcsc-lite is compiled with libhal support.
- give a higher priority to a specific driver over the CCID Class
  driver. This should allow proprietary drivers to be used instead of
  libccid when possible
- some other minor improvements and bug corrections

(hasso)

2009-06-25 05:35:36 UTC MAIN commitmail json YAML

squirrelmail-locales and vim

(martti)

2009-06-25 05:34:54 UTC MAIN commitmail json YAML

Updated editors/vim-share to 7.2.218

  1530  7.2.197  warning for uninitialized values of typebuf
  2006  7.2.198  buffer used for termcap entry may be too small
  1894  7.2.199  strange character in comment
10318  7.2.200  reading past string end when using menu bar or resizing window
14460  7.2.201  cannot copy/paste HTML to/from Firefox via the clipboard
  1846  7.2.202  BufWipeout autocmd that edits another buffer causes problems
40481  7.2.203  using current window to work on hidden buffer has side effects
  4407  7.2.204  (extra) Win32: Can't build with Visual Studio 2010 beta 1
  2852  7.2.205  (extra) Win32: No support for High DPI awarenes
  1485  7.2.206  Win32: Can't build netbeans interface with Visual Studio 2010
  2237  7.2.207  using freed memory when ":redrawstatus" works recursively
  2569  7.2.208  "set novice" gives an error message, it should be ignored
  2532  7.2.209  for xxd setmode() is undefined on Cygwin
  1896  7.2.210  warning for file changed outside of vim even after :checktime
  1639  7.2.211  memory leak when expanding a series of file names
  1727  7.2.212  (extra) warnings for redefining SIG macros
  1521  7.2.213  warning for using vsprintf()
  1983  7.2.214  crash with complete function for user command
  8298  7.2.215  ml_get error when using ":vimgrep"
  4822  7.2.216  two error messages have the same number E812
  2020  7.2.217  running tests with valgrind doesn't work as advertised
  1448  7.2.218  cannot build GTK with hangul_input feature

(martti)

2009-06-25 05:29:18 UTC MAIN commitmail json YAML

2009-06-24 20:44:21 UTC MAIN commitmail json YAML

2009-06-24 17:25:36 UTC MAIN commitmail json YAML

zero out a local variable, fixes random behaviour in case a DRI hw module
cannot be loaded and the server falls back to software rendering, from
Rafal Boni per mail to tech-x11
bump PKGREVISION

(drochner)

2009-06-24 14:44:53 UTC MAIN commitmail json YAML

Mention libpurple 2.5.7 update

(kefren)

2009-06-24 14:42:51 UTC MAIN commitmail json YAML

Update to version 2.5.7 (06/19/2009):

* Yahoo Protocol 16 support, including new HTTPS login method; this should
  fix a number of login problems that have recently cropped up.  (Sulabh
  Mahajan, Mike "Maiku" Ruprecht)
* Only display the AIM "Unable to Retrieve Buddy List" message once per
  connection.  (Rob Taft)
* Blocking MSN users not on your buddy list no longer disconnects you.
* When performing operations on MSN, assume users are on the MSN/Passport
  network if we don't get network ID's for them.

(kefren)

2009-06-24 09:17:15 UTC MAIN commitmail json YAML

Updated www/seamonkey, www/seamonkey-bin and www/seamonkey-gtk1 to 1.1.17.

(ghen)

2009-06-24 09:16:24 UTC MAIN commitmail json YAML

Update seamonkey, seamonkey-bin and seamonkey-gtk1 to Seamonkey 1.1.17.

Security fixes in this version:

MFSA 2009-33 Crash viewing multipart/alternative message with text/enhanced part
MFSA 2009-32 JavaScript chrome privilege escalation
MFSA 2009-29 Arbitrary code execution using event listeners attached to an element whose owner document is null
MFSA 2009-27 SSL tampering via non-200 responses to proxy CONNECT requests
MFSA 2009-26 Arbitrary domain cookie access by local file: resources
MFSA 2009-24 Crashes with evidence of memory corruption (rv:1.9.0.11)
MFSA 2009-21 POST data sent to wrong site when saving web page with embedded frame
MFSA 2009-17 Same-origin violations when Adobe Flash loaded via view-source: scheme

For more info, see http://www.seamonkey-project.org/releases/seamonkey1.1.17/

(ghen)

2009-06-24 08:46:47 UTC MAIN commitmail json YAML

Updated mail/thunderbird and mail/thunderbird-gtk1 to 2.0.0.22.

(ghen)

2009-06-24 08:45:52 UTC MAIN commitmail json YAML

Update thunderbird and thunderbird-gtk1 to 2.0.0.22.

Security fixes in this version:

MFSA 2009-33 Crash viewing multipart/alternative message with text/enhanced part
MFSA 2009-32 JavaScript chrome privilege escalation
MFSA 2009-29 Arbitrary code execution using event listeners attached to an element whose owner document is null
MFSA 2009-27 SSL tampering via non-200 responses to proxy CONNECT requests
MFSA 2009-24 Crashes with evidence of memory corruption (rv:1.9.0.11)
MFSA 2009-17 Same-origin violations when Adobe Flash loaded via view-source: scheme
MFSA 2009-14 Crashes with evidence of memory corruption (rv:1.9.0.9)

For more info, see http://www.mozilla.com/en-US/thunderbird/2.0.0.22/releasenotes/

(ghen)

2009-06-24 07:06:34 UTC MAIN commitmail json YAML

Really needs a bison to build.

(hasso)

2009-06-24 05:49:29 UTC MAIN commitmail json YAML

+ libmp3splt-0.5.6, mp3splt-2.2.5

(schmonz)

2009-06-24 04:10:44 UTC MAIN commitmail json YAML

+bind-9.6.1, samba-3.0.35, samba-3.2.13, samba-3.3.6, subversion-1.6.3,
subversion-base-1.6.3.

(taca)

2009-06-24 04:03:48 UTC MAIN commitmail json YAML

seamonkey-1.17 is out

(dholland)

2009-06-23 20:36:27 UTC MAIN commitmail json YAML

add a patch from upstream:
CVE-2009-1888:
In Samba 3.0.31 to 3.3.5 (inclusive), an uninitialized read of a
data value can potentially affect access control when "dos filemode"
is set to "yes".
bump PKGREVISION

(drochner)

2009-06-23 19:41:36 UTC MAIN commitmail json YAML

correct for two more pkgs which were already up-to-date

(drochner)

2009-06-23 11:31:08 UTC MAIN commitmail json YAML

Note update of www/opengoo package to 1.4.2.

(taca)

2009-06-23 11:30:25 UTC MAIN commitmail json YAML

Update www/opengoo package to 1.4.2.  (This is a leaf package.)

* Remove pkglint warnings.
* Add PRINT_PLIST_AWK.

Some additons to Changelog.

* Japanese translation files' directory name is corrected.
* Korean translation files are added.

Changelog
=========

Since 1.4.1
-----------
- bugfix: Error when adding contacts when DEBUG mode is off and All workspace is selected
- bugfix: Tasks showed due date instead of start date
- bugfix: When editing an event on the 31st of a month it appeared on the 1st of the month
- bugfix: An error when making backups.
- bugfix: 'Number of tasks to display' config option fixed.
- bugfix: When creating a user from a contact it wasn't being assigned to the contact

- usability: Language selection displayed in alphabetical order
- usability: Custom properties are no longer truncated.

- langs: Updated translations

(taca)

2009-06-23 04:08:15 UTC MAIN commitmail json YAML

+thunderbird-2.0.0.22.

(taca)

2009-06-22 18:29:33 UTC MAIN commitmail json YAML

2009-06-22 16:18:10 UTC MAIN commitmail json YAML

sync with reality, call it 2.26.2

(drochner)

2009-06-22 14:54:44 UTC MAIN commitmail json YAML

add a patch from upstream
(http://bugzilla.maptools.org/show_bug.cgi?id=2065)
to fix a buffer underflow which can cause DOS or system access
(SA35515)
bump PKGREVISION

(drochner)

2009-06-22 14:39:19 UTC MAIN commitmail json YAML

update to 7.0.4p4
This is a security update.
changes:
-fix integer overflow which can be used for DOS or system access
(SA35180)
-update bundled libpng to 1.2.36 to fix potential security issues

(drochner)

2009-06-22 12:06:00 UTC MAIN commitmail json YAML

Correctly regen the cat page.

(joerg)

2009-06-22 11:50:26 UTC MAIN commitmail json YAML

Regen cat page. Helps Solaris.

(joerg)

2009-06-22 07:56:21 UTC MAIN commitmail json YAML

Remove parrot-1.2.0, as we now have parrot-1.3.0 in pkgsrc.

(he)

2009-06-22 04:12:16 UTC MAIN commitmail json YAML

Oops, update distinfo file properly.

(taca)

2009-06-22 02:02:47 UTC MAIN commitmail json YAML

2009-06-22 01:21:02 UTC MAIN commitmail json YAML

Note update of www/typolight27-translations package to 20090620.

(taca)

2009-06-22 01:20:12 UTC MAIN commitmail json YAML

Update typolight27-translations package to 20090620.

Bulgarian translation files are updated.

(taca)

2009-06-22 01:17:50 UTC MAIN commitmail json YAML

Note update of www/typolight27 package to 2.7.1nb1.

(taca)

2009-06-22 01:17:06 UTC MAIN commitmail json YAML

Add a patch to fix Extention Repository access problem.
Bump PKGREVISION.

Approved by agc@.

(taca)

2009-06-22 01:11:40 UTC MAIN commitmail json YAML

+ cone-0.78 [pkg/41623], tokyocabinet-1.4.27.

(wiz)

2009-06-21 23:18:13 UTC MAIN commitmail json YAML

I have stella, will commit after freeze.

(dholland)

2009-06-21 22:05:05 UTC MAIN commitmail json YAML

dwm and dmenu were updated, so remove them

(ahoka)

2009-06-21 21:37:48 UTC MAIN commitmail json YAML

Fix a problem, when applications using winforms can't find libX11.so with
native NetBSD Xorg by giving them full path to the shared library.

(ahoka)

2009-06-21 18:12:05 UTC MAIN commitmail json YAML

+ anjuta-2.26.2.1, asterisk-1.6.1.1, awesome-3.3.1, bzr-1.16,
  covered-0.7.4, dillo-2.1, eet-1.2.1, gcpio-2.10, graphviz-2.24.0,
  gst-plugins0.10-bad-0.10.13, gst-plugins0.10-ugly-0.10.12,
  libgsf-1.14.15, libixp-0.5, libtorrent-0.12.4, lighttpd-1.4.23,
  mutt-devel-1.5.20, ocrad-0.18 [pkg/41617], p5-Archive-Zip-1.28,
  p5-Array-Compare-1.18, p5-HTML-Parser-3.61, p5-libwww-5.827,
  pango-1.24.3, php5-5.2.10, py-cups-1.9.46, py-lxml-2.2.2,
  py-pytz-2009j, rep-gtk-0.18.6, rtorrent-0.8.4, sdlmess-0.132,
  stella-2.8.1, telepathy-gabble-0.7.29, tomboy-0.14.3, warzone2100-2.2.0,
  x264-devel-20090620, xorg-util-macros-1.2.2.

(wiz)

2009-06-21 15:31:39 UTC MAIN commitmail json YAML

2009-06-20 08:35:02 UTC MAIN commitmail json YAML

Add URL to PR and possible upstream bug report.

(wiz)

2009-06-19 23:43:57 UTC MAIN commitmail json YAML

Put back patch-aj, it's still required for this to build on Solaris.

(sketch)

2009-06-19 18:37:12 UTC MAIN commitmail json YAML

Updated graphics/MesaLib to 7.4.2nb3.

(hasso)

2009-06-19 18:35:14 UTC MAIN commitmail json YAML

Fix build of DRI2 aware drivers (like intel) if MesaLib wasn't built with
dri option.

(hasso)

2009-06-19 18:19:15 UTC MAIN commitmail json YAML

Attempt to make it build cleanly and to solve PLIST problems without dri
option (default for most of platforms). Tested on DragonFly only. Bump
PKGREVISION.

(hasso)

2009-06-19 13:13:51 UTC MAIN commitmail json YAML

Note the update of mail/thunderbird-gtk1 to 2.0.0.21nb1 as well.

(he)

2009-06-19 13:13:06 UTC MAIN commitmail json YAML

Move setting of PKGREVISION from Makefile to the common Makefile,
so that thunderbird-gtk1 also gets the revision bump, as the latter
is already using the newest patch for regxpcom crash fixing.

(he)

2009-06-19 11:35:11 UTC MAIN commitmail json YAML

Note update of mail/thunderbird to 2.0.0.21nb1.

(he)

2009-06-19 11:34:31 UTC MAIN commitmail json YAML

Update from version 2.0.0.21 to 2.0.0.21nb1.

Pkgsrc changes:
o For the benefit of 64-bit strict alignment archs using gcc, such
  as NetBSD/sparc64, ensure that the specially crafted double values
  are properly aligned.  Thanks to martin@ for pointing to the problem.

  This should stop regxpcom from dropping core on NetBSD/sparc64.

OK'ed by wiz@

(he)

2009-06-19 11:26:14 UTC MAIN commitmail json YAML

Note update of time/sunbird to 0.9nb1.

(he)

2009-06-19 11:25:16 UTC MAIN commitmail json YAML

Update from version 0.9 to 0.9nb1.

Pkgsrc changes:
o For the benefit of 64-bit strict alignment archs using gcc, such
  as NetBSD/sparc64, ensure that the specially crafted double values
  are properly aligned.  Thanks to martin@ for pointing to the problem.

  This should stop regxpcom from dropping core on NetBSD/sparc64.

OK'ed by wiz@

(he)

2009-06-19 00:06:56 UTC MAIN commitmail json YAML

add and enable ffplay

(jnemeth)

2009-06-18 16:43:51 UTC MAIN commitmail json YAML

Add two orphan directories

(agc)

2009-06-18 16:36:50 UTC MAIN commitmail json YAML

Clean up some lint in ffplay, re-make patch digests, and add a comment to
ffmpeg's Makefile.common

(agc)

2009-06-18 14:51:56 UTC MAIN commitmail json YAML

fix typo in comment

(tnn)

2009-06-18 11:15:47 UTC MAIN commitmail json YAML

drop Python-2.4 support -- the Makefile was changed recently to
require 2.5+ (by mistake, but anyway), and it doesn't hurt
because libxcb (our only client) needs 2.5+ now

(drochner)

2009-06-18 11:10:55 UTC MAIN commitmail json YAML

2009-06-18 11:08:18 UTC MAIN commitmail json YAML

a Python script needed for build contains tons if these ugly
"conditional expressions", so it needs Python-2.5+

(drochner)

2009-06-18 10:19:47 UTC MAIN commitmail json YAML

Don't build in the doc/examples subdir, as suggested by Joern Clausen
in PRs pkg/39612 and pkg/41610.
The examples are not installed anyway, and this way build problems
on Solaris are avoided.

(drochner)

2009-06-18 08:55:58 UTC MAIN commitmail json YAML

+ cairo-1.8.8, cherokee-0.99.17, clive-2.2.0, gsasl-1.2, gwaei-1.0,
  inputproto-1.5.1, liferea-1.6.0rc5, mathomatic-14.4.5, mpg123-1.8.1,
  p5-Perl-Tidy-20090616, phpmyadmin-3.2.0, pixman-0.15.12,
  py-moin-1.8.4, source-highlight-3.1, weechat-0.2.6.3, wireshark-1.2.0,
  xlog-2.0.2.

(wiz)

2009-06-18 08:54:32 UTC pkgsrc-2009Q1 commitmail json YAML

2009-06-18 08:54:21 UTC pkgsrc-2009Q1 commitmail json YAML

Pullup ticket #2800 - requested by hasso
kdelibs3: security patch

Revisions pulled up:
- x11/kdelibs3/Makefile 1.141
---
Module Name:    pkgsrc
Committed By:  hasso
Date:          Tue Jun 16 16:09:36 UTC 2009

Modified Files:
        pkgsrc/x11/kdelibs3: Makefile

Log Message:
Fix a serious security issue for platforms using kgrantpty (NetBSD isn't
such, but DragonFly is): ${SETUID_ROOT_PERMS} doesn't work for suid
kgrantpty, because the locate() method used to find the path to the binary
expects it to have a read permissions set.

(tron)

2009-06-18 05:30:24 UTC MAIN commitmail json YAML

Remove @unexec ${RMDIR} generating code that is now unnecessary with latest
pkg_install.

(wiz)

2009-06-17 21:32:44 UTC MAIN commitmail json YAML

Note update of lang/parrot to 1.3.0.

(he)

2009-06-17 21:31:59 UTC MAIN commitmail json YAML

Update from version 1.1.0 to 1.3.0.

OK'ed by agc@

Upstream changes:

Parrot 1.3.0 News:

- Core
  + Optimized parts of the IO system
  + Fixed inheritance hierarchy of FileHandle and Socket PMC types
  + Fixed leaks involving subroutines and Parrot_Context
  + Cleaned up and refactored GC internals, including fixes and optimizations
  + Optimized PMC class manipulations to use type numbers instead
    of string names
  + Fixed problems involving hashval calculations in strings
  + Removed unnecessary MULTI dispatches in built-in PMCs
  + Fixed memory leaks involving PMCs that were not properly destroyed
  + Fixed creation of PMCProxy PMCs in correct namespaces
  + Added preliminary Pipe support
  + Fixed cloning of Object PMCs
  + Added root_new opcode
  + Added initial versions of Packfile PMCs with read/write capabilities
- Compilers
  + Fixed several memory leaks in IMCC
  + Updated PCT to use root_new opcode
  + Added support for keyword "self" in NQP
- Documentation
  + Improved and expanded /docs/book
  + Updated project documentation
  + Defined 'experimental' status and procedures in DEPRECATED.pod
- Miscellaneous
  + Cleaned code and improved code-level documentation
  + Various bugfixes, code cleanups, and coding standard fixes
  + Added an experimental compiler library to help use PIR libraries from HLLs
  + Updated OpenGL library and examples to support experimental HLL import

Parrot 1.2.0 News:

- Core
  + Fixes for pir classes inheriting from core pmcs.
  + Cleaned up headers and reorganized some sources into subsystem directories.
  + Clean up PMCs so libparrot.so exports far fewer vtable/method symbols.
  + Clean up the GC API.
  + Several unicode identifier improvements in IMCC.
- Deprecations
  + Protoobject stringification is gone.
- Documentation
  + Rewrite several core documents.
  + Many reworks, improvements & additions to the Parrot Book.
  + Installation PDD is launched out of draft.
- Tools
  + Fixes for running the language shell generator outside the parrot tree.
  + Several fixes for developing and building HLLs from an installed parrot.
  + Configure.pl now has a --no-line-directives option to ease
    source level debugging.
- Miscellaneous
  + Portability updates for macports, netbsd, mingw32, hpux.
  + Several (build time, runtime) performance improvements.
  + Lots of updates to examples and tests.
  + Various bugfixes, code cleanups, and coding standard fixes.

(he)

2009-06-17 18:40:55 UTC MAIN commitmail json YAML

Resolve conflicting edits: back out my change, expand comment.

(asau)

2009-06-17 17:57:55 UTC MAIN commitmail json YAML

Work around build problems on Solaris 10.
Patch from Joern Clausen per PR 41608.
Other platforms are not affected.

(asau)

2009-06-17 17:54:46 UTC MAIN commitmail json YAML

fix build for systems without sys/ioctl.h (as Solaris 10),
addresses the first half of PR pkg/41610 by Joern Clausen

(drochner)

2009-06-17 17:08:29 UTC MAIN commitmail json YAML

explicitely disable "papi" printer support so that it doesn't get
picked up on Solaris
should fix build error reported by Joern Clausen in PR pkg/41608

(drochner)

2009-06-17 14:09:50 UTC MAIN commitmail json YAML

s/gnupg2-2.0.11/gnupg2-2.0.12/.

(taca)

2009-06-17 14:07:36 UTC MAIN commitmail json YAML

patch-aa: Since the 'roman' module is unconditionally present in the PLIST,
it must be unconditionally built and installed.
(when building the py-docutils package while already having it installed,
setup.py excluded the module, causing PLIST breakage with USE_DESTDIR=yes)

(tnn)

2009-06-17 12:54:57 UTC MAIN commitmail json YAML

Make sure that _UPDATE_RUNNING=YES is passed down to su-deinstall for
PKG_PRESERVE packages (e.g. pkg_install). Otherwise an old version of
pkg_install is not removed from pkgdb.

(joerg)

2009-06-17 10:33:36 UTC MAIN commitmail json YAML

Updated net/Transmission to 1.72

(tnn)

2009-06-17 10:33:16 UTC MAIN commitmail json YAML

Update to Transmission-1.72.

Transmission-1.72:
All Platforms
* Fix 1.70 crash with assertion "tv->tv_usec >= 0"
* Fix 1.70 crash with assertion "tr_peerIoSupportsFEXT( msgs->peer->io )"
* Better DHT announce management
* Fix error in reporting webseed counts via RPC
* Better file preallocation on embedded systems
GTK+
* Fix 1.70 crash when setting options in the Properties dialog
* Fix a rare crash in desktop notifications
* Can now sort the file list by priority, download, and completeness
* Adding a torrent from a browser sometimes didn't work.
* Various usability improvements
Daemon
* Remote didn't always send the right Encoding header in requests

Transmission-1.71:
All Platforms
* Fix 1.70 bug that caused high CPU use in high-peer swarms
* Fix 1.70 build problems with DHT and libevent
Daemon
* Fix watchdir issue on OSes that don't have inotify
GTK+
* Fix 1.70 intltool build problem
* Fix crash when the OS's stock mime-type icons are misconfigured
* Handle very long torrent file lists faster
Web Client
* Fix 1.70 bug where some torrents appeared to be duplicates

Transmission-1.70:
All Platforms
* Distributed hash table (DHT) support for public torrents
* Add option for moving and finding a torrent's data on the disk
* JSON RPC messages can be ~85% shorter, saving bandwidth and CPU
* When available, use the system's copy of libevent instead of building one
* Automatically pause torrents when verifying
* Fix small bugs and memory leaks
Web Client
* Big speed improvements, especially with large torrents
* Fix 1.61 bug that broke adding torrents via the web client
* Add the ability to upload multiple torrents at once
* Torrents added by URL were always paused, regardless of preferences
* Comments and announce addresses were cut off in the inspector
* The "data remaining" field wasn't updated when the number reached 0
* Smaller design adjustments
GTK+
* Fix intltool build problem
* Make it clearer that the status bar's ratio mode button is a button
* Torrent comment box did not scroll, so long comments were partially hidden
Qt
* Initial torrent list was sometimes incorrect
* Add-torrent-and-delete-source deleted the source even if there was an error
* Prefs dialog didn't show or modify "Stop seeding torrents at ratio"

(tnn)

2009-06-17 10:18:21 UTC pkgsrc-2009Q1 commitmail json YAML

2009-06-17 10:17:58 UTC pkgsrc-2009Q1 commitmail json YAML

Pullup ticket #2799 - requested by taca
ruby18-base: bug fix update
ruby18-curses: bug fix update
ruby18-tk: bug fix update

Revisions pulled up:
- devel/ruby-curses/distinfo 1.20
- lang/ruby/rubyversion.mk 1.48
- lang/ruby18-base/distinfo 1.39
- x11/ruby-tk/distinfo 1.23
---
odule Name: pkgsrc
Committed By: taca
Date: Tue Jun 16 15:08:38 UTC 2009

Modified Files:
pkgsrc/devel/ruby-curses: distinfo
pkgsrc/lang/ruby: rubyversion.mk
pkgsrc/lang/ruby18-base: distinfo
pkgsrc/x11/ruby-tk: distinfo

Log Message:
Update Ruby packages to 1.8.7.174 (1.8.7-p174).

* Fix critical problem of BigDecimal class in 1.8.7-p173.

Fri Jun 12 16:36:44 2009  Yukihiro Matsumoto  <matz@ruby-lang.org>

* ext/bigdecimal/bigdecimal.c (VpToString): fixed a bug introduced
  in r23613.  [ruby-talk:338957]

(tron)

2009-06-17 08:40:57 UTC MAIN commitmail json YAML

Add companion patch to previous commit.
Fix build on NetBSD-current/i386 by papering over a build time assertion.
(Probably due to 64-bit time_t.)

(tnn)

2009-06-17 08:34:07 UTC MAIN commitmail json YAML

Fix build on NetBSD-current/i386 by papering over a build time assertion.
(Probably due to 64-bit time_t.)
cvs: ----------------------------------------------------------------------

(tnn)

2009-06-17 08:19:04 UTC MAIN commitmail json YAML

Updated pkgtools/pkg_rolling-replace to 0.17

(tnn)

2009-06-17 08:12:18 UTC MAIN commitmail json YAML

pkg_rolling-replace-0.17:
Use "pkg_info -Q" to extract PKGPATH from installed packages instead of
"pkg_info -B" coupled with awk magic. The previous regexp didn't account
for packages that have PREV_PKGPATH set, and blew up while replacing
for example mail/sylpheed and multimedia/ffmpeg.

(tnn)

2009-06-17 08:07:54 UTC MAIN commitmail json YAML

- py-qt3-base-3.18

(hasso)

2009-06-17 08:06:54 UTC MAIN commitmail json YAML

Updated x11/py-sip to 4.8.1
Updated x11/py-qt3-base to 3.18.1
Updated x11/py-qt3-modules to 3.18.1
Updated x11/py-qt3-qscintilla to 3.18.1
Updated x11/py-qt4 to 4.5.1

(hasso)

2009-06-17 07:57:49 UTC MAIN commitmail json YAML

Update to 4.5.1. Changes since 4.5:

* Only convert exact dicts to a QVariantMap and back and not dict
  sub-classes.
* Removed an assertion when building dynamic meta-objects, instead just
  ignore the attribute if it doesn't have the expected type.
* Fixed the handling of QWizard by pyuic.
* Changed the SIP dependency to v4.8.1 (not necessary but we don't want it
  to survive in the wild).
* Changed the roadmap to show how incompatible APIs will be selected.
* Fixed __str__ for QByteArray for Python v3 so it is consistent with
  Python v2.
* Reverted the roadmap change about __hash__ being an incompatibile change.
  The issue isn't that the hash function has changed (which isn't considered
  a compatibility problem) it's that different objects that previously had a
  different hash value (based on their id()) now might have the same hash
  value.
* Updated the roadmap to show that the __hash__ additions (including QUrl)
  are not now considered incompatible changes.
* Removed the Python v3 buffer protocol support for QString.
* Improved the implementation of the Python v3 buffer protocol for QByteArray.
* Fixed a pyuic problem with Python v3 when setting the tab order.
* Added /Transfer/ to QComboBox.setLineEdit().
* Added /KeepReference/ to setValidator() and setCompleter() for QLineEdit
  and QComboBox.
* Added the missing setCoordinateMode() and coordinateMode() methods from
  QGradient.

(hasso)

2009-06-17 07:11:04 UTC MAIN commitmail json YAML

Update to 3.18.1 which makes it actually build with sip-4.8.x.

Changes in 3.18.1 since 3.18:

* Fixed the handwritten code for all QDomDocument.setContent() overloads
  which was using deprecated (and now removed) sipBuildResult() format
  characters.
* Fixed a build problem that affected Python v2.5 and earlier.

Changes in 3.18 since 3.17.6:

* Removed some compiler warning messages.
* Reverted the changes that removed the use of sipSelfWasArg in handwritten
  code.
* Tweaked configure.py so that Python3 can run just enough of it to display
  an error message.
* Fixed a regression in emitting Python signals to Qt signals.
* Handwritten code changes for the removal of the sipProtectVirt_*() methods.
* Fixed a build problem with the GPL version.
* Refactored the signla/slot support.
* Safety checking of latest signal/slot refactoring.
* Safety commit of the PyQt3-specific meta-type and super-type (just stubs
  at the moment).
* Use the %Plugin directive to enable PyQt3 signal support.
* More changes to the QObject.sender() support.
* Updated the QObject::sender() support in response to sip changes.
* Moved the last of the type parsing from sip.
* The type parsing now uses sipResolveTypedef().
* Added the type parsing support from the sip module as PyQt4 no longer uses
  it.
* Replaced sipFindConnection() with sipFindSlot().
* Replaced sipFreeConnection() with sipFreeSipslot().
* Changes required by recent changes to the Qt support API.
* Compatibility changes needed for SIP v4.8.
* Merged the v3.17 maintenance branch into the trunk.
* Made some char* in handwritten code const needed by SIP v4.8.

(hasso)

2009-06-17 07:08:35 UTC MAIN commitmail json YAML

Update to 4.8.1. Changes since 4.8:

* Fixed the reference count handling of a module in the error paths when
  initialising it.
* Added support for (vaguely) defining private assignment operators to
  suppress the generation of PyQt4 assignment helpers.
* Fixed a regression in the creation of new exceptions.
* Various changes (including bumping the major version number of the C API)
  to accomodate the design of the API selection support. The implementation
  should not need any further data structure changes.
* Fixed a code generation bug when an /ArraySize/ argument was typedef'ed.
* Fixed sipResolveTypedef().

(hasso)

2009-06-17 04:47:55 UTC MAIN commitmail json YAML

Updated net/p5-Net-Amazon to 0.53

(obache)

2009-06-17 04:47:41 UTC MAIN commitmail json YAML

Update p5-Net-Amazon to 0.53.
While here, set LICENSE=${PERL5_LICENSE}.

Revision history for Perl extension Net::Amazon:
0.53 (06/13/2009)
  (cb) Nathan Handler re-reported a man page issue on Ubuntu, rt 46708.
        I managed to fix 197 issues, except for the specific one he called
        out in the bug.

0.52 (06/09/2009)
  (cb) Nathan Handler reported a man page issue on Ubuntu, rt 46708.

0.51 (06/05/2009)
  (cb) Vince Veselosky submitted a patch to support request signing, a
        feature that is required for accessing AWS after 2009-08-15.
        Upgrading is recommended.
  (cb) Complete the upgrade to WSDL 2009-03-31 that was started by
        Vince Veselosky.
  (cb) Clean-up POD issues found by pod checker.
  (cb) Indicate the code has moved to github.com.
  (cb) Update the README to reflect the actual date of the WSDL.

(obache)

2009-06-17 04:43:03 UTC MAIN commitmail json YAML

Updated print/acroread8 to 8.1.6

(obache)

2009-06-17 04:42:48 UTC MAIN commitmail json YAML

Update acroread8 to 8.1.6.

The Adobe Acrobat and Reader 8.1.6 update addresses several security
vulnerabilities. Please see Security Bulletin APSB09-07 for details.

(obache)

2009-06-16 22:40:07 UTC MAIN commitmail json YAML

Include BUILD_DEPENDS for devel/gnome-macros in case they're not installed.
Regen with autoreconf -i.

(bjs)

2009-06-16 18:05:35 UTC MAIN commitmail json YAML

configure requires pixman>=0.13.2 so define BUILDLINK_API_DEPENDS.pixman.

If try to workaround that get build failures in rrtransform.h
or runtime problem:

Xorg: Undefined PLT symbol "pixman_transform_init_identity" (symnum = 1603)

(reed)

2009-06-16 16:09:36 UTC MAIN commitmail json YAML

Fix a serious security issue for platforms using kgrantpty (NetBSD isn't
such, but DragonFly is): ${SETUID_ROOT_PERMS} doesn't work for suid
kgrantpty, because the locate() method used to find the path to the binary
expects it to have a read permissions set.

(hasso)

2009-06-16 15:42:30 UTC MAIN commitmail json YAML

+ samba-3.2.12, samba-3.3.5, webmin-1.480.

(taca)

2009-06-16 15:25:32 UTC MAIN commitmail json YAML

2009-06-16 15:11:16 UTC MAIN commitmail json YAML

Update Ruby programming language related package to 1.8.7.174 (1.8.7-p174).

It was approved by agc@.

(taca)

2009-06-16 15:08:38 UTC MAIN commitmail json YAML

Update Ruby packages to 1.8.7.174 (1.8.7-p174).

* Fix critical problem of BigDecimal class in 1.8.7-p173.

Fri Jun 12 16:36:44 2009  Yukihiro Matsumoto  <matz@ruby-lang.org>

* ext/bigdecimal/bigdecimal.c (VpToString): fixed a bug introduced
  in r23613.  [ruby-talk:338957]

(taca)

2009-06-16 05:27:46 UTC MAIN commitmail json YAML

It's actually ikiwiki-3.141 (possibly a TeX-like versioning scheme?), and
I'll handle the update.

(schmonz)

2009-06-16 01:36:28 UTC MAIN commitmail json YAML

Note restriction of acceptable python version came from py-gtk2 and py-cairo.
pygoocanvas itself require just python>=2.2.

(obache)

2009-06-16 00:04:03 UTC MAIN commitmail json YAML

fix for DESTDIR install

(abs)

2009-06-15 23:43:36 UTC MAIN commitmail json YAML

+ caff-1.1.1, ikiwiki-3.14.1, ocaml-3.11.1, p5-Archive-Tar-1.52,
  p5-Digest-1.16, p5-Digest-MD5-2.39, p5-Filter-1.37, p5-MIME-Base64-3.08,
  p5-XML-NamespaceSupport-1.10, telepathy-glib-0.7.32, x264-devel-20090613,
  yaz-3.0.46.

(wiz)

2009-06-15 23:24:28 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Format-Natural to 0.77

(sno)

2009-06-15 23:23:43 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module DateTime::Format::Natural from 0.76 to
    0.77
  - Adjusting license according to META.yaml

Upstream changes:
0.77 Sun Jun 14 20:46:53 CEST 2009
- Merged development version to stable.

0.76_04 Sat Jun 13 14:04:21 CEST 2009
- Remove comment in code about the legacy debug option.
- Use '\s+' instead of the ambiguous ' ' as token split pattern.
- Add some whitespace to the regexp which recognizes additional
  tokens for formatted dates.

0.76_03 Wed Jun 10 11:50:42 CEST 2009
- The current "now" can be overridden through the 'datetime'
  option. [rt #45127 - Giovanni Pensa]
- parse_datetime_duration() handles durations where the second
  part is relative to the first one. [rt #45127 - Giovanni Pensa]
- New supported relative duration: for <count> <unit>.
  [rt #45127 - Giovanni Pensa]

0.76_02 Sat Jun  6 13:24:58 CEST 2009
- When using prefer_future, also allow for weekdays combined with
  the time of day to be parsed correctly. [rt #46689 - Jason May]
- New supported format: <weekday> <time>. [rt #46689 - Jason May]

0.76_01 Mon Jun  1 21:34:06 CEST 2009
- Change in default behavior: Use DateTime's truncate method
  to reset time components. Inspired by [rt #43468 - Clayton
  L. Scott] and suggestions from others.

(sno)

2009-06-15 23:08:09 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-Declare to 0.005005

(sno)

2009-06-15 23:07:30 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module Devel::Declare from 0.005002 to
    0.005005
  - Adjusting license according to META.yaml
  - Use Module::Install as module type
  - Adjust MEM_WRAP_CHECK_ patch (was it submitted upstream?)

Upstream changes:
0.005005
  - Improve compatibility with MAD-enabled perls
    (Reini Urban, Closes RT#45779).

0.005004
  - Don't redefine MEM_WRAP_CHECK_ if it's already defined, getting rid of
    compilation errors on some perls (Maik Fischer).

0.005003
  - Failing tests for line number issues (Ash Berlin).
  - Add strip_names_and_args (Cory Watson).
  - Various pod fixes (Yanick Champoux, Florian Ragwitz).
  - Add copyright statements.

(sno)

2009-06-15 22:45:23 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Component-ACCEPT_CONTEXT to 0.07

(sno)

2009-06-15 22:44:51 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module Catalyst::Component::ACCEPT_CONTEXT
    from 0.06 to 0.07
  - Use Module::Install as module type
  - Adjusting license according to META.yaml

Upstream changes:
0.07    11 June 2009
        Fix tests with Catalyst 5.80005

(sno)

2009-06-15 22:39:30 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Plugin-Authentication to 0.100120

(sno)

2009-06-15 22:38:45 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package for p5 module Catalyst::Plugin::Authentication
    from 0.10011 to 0.10012
  - Adjusting license according to META.yaml
  - Use Module::Install as module type

Upstream changes:
0.10012 Sat Jun  6 10:58:43 BST 2009
      - Add Catalyst::Authentication::Credential::Remote which authenticates you
        directly from environment variables passed by your web server. This
        allows the use of SSL client certificates, NTLM, or just basic/digest
        auth done at the web server level to be used to authenticate users
        to your Catalyst application (kmx)
        - Tests for this
      - Change ->config invocations to be best practices (t0m)
      - Note about session auto-vification even when use_session is set
        to false (robert).
      - Note about how a realms key used to be needed to unconfuse people
        running an old version, but browsing the docs on search.cpan (ruoso)

(sno)

2009-06-15 22:26:54 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Devel to 1.18

(sno)

2009-06-15 22:25:51 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module Catalyst::Devel from 1.17 to 1.18
  - Adjusting dependencies according to META.yaml

Upstream changes:
1.18    2009-06-10 17:43:12
        - The forking restarter was not waiting for the child to exit,
          which could lead to a race condition. If the old child did
          not exit before the new child tried to bind to its socket,
          it would find the old child blocking the port it wanted.
        - More fixes for the Win32 restarter. It was effectively
          ignoring all command-line options except those related to
          the restarter itself.

(sno)

2009-06-15 22:18:13 UTC MAIN commitmail json YAML

Updated databases/p5-CatalystX-CRUD-Model-RDBO to 0.22

(sno)

2009-06-15 22:17:35 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module CatalystX::CRUD::Model::RDBO from 0.20
    to 0.22 to avoid incompatibilities to currently updated
    Catalyst::Runtime
  - Setting license to PERL5_LICENSE according to module documentation
  - Adjusting dependencies according to META.yaml

Upstream changes:
0.22    13 June 2009
        * fix tests for UPPERCASE normalize in newer Sort::SQL of ORDER BY string direction
0.21    13 June 2009
        * fix multiple ORDER BY columns with comma-join (see RT 46904)
        * explicitly call ->delegate->meta to fix moosification issue with Catalyst 5.8x

(sno)

2009-06-15 22:14:24 UTC MAIN commitmail json YAML

Updated databases/p5-CatalystX-CRUD to 0.45

(sno)

2009-06-15 22:13:54 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module CatalystX::CRUD from 0.43 to 0.45 as
    dependency of scheduled update of CatalystX::CRUD::Model::RDBO
  - Adjusting license to ${PERL5_LICENSE} according to module documentation
  - Adjusting dependencies according to META.yaml

Upstream changes:
0.45    13 June 2009
        * fix multi-column sort via cxc-order param (requires Sort::SQL 0.04)
0.44    23 May 2009
        * check for symlink() support in Model::File at compile time and return from rm_related()
          if not supported. Fixes spurious test breakage on Win32.
          See https://rt.cpan.org/Ticket/Display.html?id=46314

(sno)

2009-06-15 22:01:57 UTC MAIN commitmail json YAML

Updated databases/p5-Sort-SQL to 0.06

(sno)

2009-06-15 22:01:16 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module Sort::SQL from 0.05 to 0.06 as dependency
    of scheduled update of CatalystX::CRUD::Model::RDBO

Upstream changes:
0.06  14 June 2009
        - refactor for parse() method

(sno)

2009-06-15 21:53:14 UTC MAIN commitmail json YAML

Updated www/p5-Catalyst-Runtime to 5.80005

(sno)

2009-06-15 21:52:22 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module Catalyst::Runtime from 5.80004 to 5.80005
  - Adjusting license and dependencies according to META.yaml

Upstream changes:
5.80005 2009-06-06 14:40:00

  Behaviour changes:
        - Arguments ($c->req->args) in Chained dispatch are now automatically
          URL decoded to be consistent with Local/Path dispatch (Caelum)

  Documentation:
        - Clarify correct techniques for Moose controllers (domm)

  Bug fixes:
        - Further change pushing 'env' attribute down into Catalyst::Engine
          to make $c->engine->env work in all cases (kmx)
        - Also fix $c->engine->env in Catalyst::Test tests (kmx)
          - Tests for this (t0m)
        - Fix Catalyst failing to start if any plugin changed $_ whilst
          loading (t0m)
          - Tests for this
        - Be stricter about arguments to Args attributes for Chained actions,
          so that they blow up on load instead of causing undefined behavior
          later on (hdp)
          - Tests for this
        - Prefer Path actions with a smaller (or set) number of Args (caelum)
          Bug reported here: http://stackoverflow.com/questions/931653/catalyst-action-that-matches-a-single-file-in-the-root-directory/933181#933181
          - Tests for this

  New features:
        - Add $c->req->remote_user to disambiguate from $c->req->user (dwc)
        - Require MooseX::MethodAttributes 0.12 so that action methods
          (with attributes) can be used in / composed from Moose roles.
        - Allow the generation of cookies with the HTTPOnly flag set

(sno)

2009-06-15 21:38:42 UTC MAIN commitmail json YAML

Updated devel/p5-MooseX-Types to 0.12

(sno)

2009-06-15 21:37:58 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package of p5 module MooseX::Types from 0.10 to 0.12
  - Adjusting dependencies according to META.yaml
  - Setting license to ${PERL5_LICENSE} according to META.yaml
  - Using Module::Install as module type

Upstream changes:
0.12    Sun Jun 14 14:39:57 PDT 2009
        - fix mixing of typelibs with regular Moose classes

0.11    Sat May 23 18:02:35 PDT 2009
        - warning on string types and unregistered class/role types
        - better error for missing comma
        - MooseX::Types::Combine for combining type libs

(sno)

2009-06-15 21:31:43 UTC MAIN commitmail json YAML

Updated devel/p5-MooseX-Emulate-Class-Accessor-Fast to 0.00900

(sno)

2009-06-15 21:31:17 UTC MAIN commitmail json YAML

pkgsrc changes:
  - Updating package for p5 module MooseX::Emulate::Class::Accessor::Fast
    from 0.00802 to 0.00900
  - Adjusting license according to META.yaml
  - Using Module::Install as module type

Upstream changes:
0.00900    May 29, 2009
          - Fix so that classes which implement BUILD themselves still get
            all attributes passed to their constuctor placed into the instance
            hash (t0m)

(sno)

2009-06-15 21:26:36 UTC MAIN commitmail json YAML

Updated devel/p5-MooseX-AttributeHelpers to 0.19

(sno)