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

2024-05-23 15:32:24 UTC Now

2011-10-24 10:00:45 UTC MAIN commitmail json YAML

pkgin-0.5.2
        Various minor fixes from NetBSDfr hackathon
        Moved break_depends() at the end of impact.c to avoid inconsistencies
        Check for real filesystem size to be occuppied by upgrade
        Check for user permissions before update_db
        update_db() returns a status so we can warn simple users
        introduced have_enough_rights(), fixed pkg_keep() perms
        Various return codes fixed to satisfy frontends

(imil)

2011-10-24 09:36:45 UTC MAIN commitmail json YAML

Updated devel/p5-Scope-Upper to 0.18.
Updated databases/p5-DBIx-Connector to 0.47.

(hiramatsu)

2011-10-24 09:36:01 UTC MAIN commitmail json YAML

Update p5-DBIx-Connector to 0.47.

Changes from previous:
0.47  2011-09-26T17:12:07Z
      - Use of the deprecated `catch` functionality now warns on every call,
        rather than just the first call from a given caller.

0.46  2011-07-17T00:47:49
      - Eliminated "Use of qw(...) as parentheses is deprecated" warning in
        test when running on Perl 5.14.
      - Properly `local`ing `$$` in the `t/base.t` test so that it doesn't die
        on Perl 5.15. Thanks to Andreas J. Koenig for the report and diagnosis
        and to Nicholas Clark for the fix.
      - Duplicate paragraphs removed from `README.md` thanks to Ask Bj淡rn
        Hansen.
      - The `catch` functionality is deprecated. It will warn once for each
        caller to keep log verbosity down. In the next release, it will warn
        for every call. The release after that, it will be removed altogether.

0.45  2011-05-10T21:44:08
      - Fixed crash when `in_txn()` was called before an actual connection
        was established.
      - Strongly recommend setting `AutoCommit` to true in the documentation.
        Setting `AutoCommit` to false defeats the scoping behavior of `txn()`
        and therefore should not be used.
      - Nested exception handling now works properly in nested calls to
        `run()` in fixup mode and in nested calls to `txn()` in all modes.
        Thanks to Mark Lawrence for the report (RT #66974).

0.44  2011-03-20T01:04:59
      - Fixed bug with the MySQL driver introduced by the auto-reconnection
        fix in 0.43. Sorry for the lame mistake. [Lee Aylward]

0.43  2011-03-17T20:03:16
      - DBIx::Connector now sets the DBI `RaiseError` parameter to true in
        `new()` if neither it nor `HandleError` has been specified. This is to
        increase the likelihood that exception handling will be properly
        triggered in `run()`, `txn()`, and `svp()`. Documentation has also
        been added to emphasize the importance of setting `RaiseError` or
        `HandleError` appropriately.
      - Documented that `AutoInactiveDestroy` is set to true in `new()` if it
        is not specified. It's important tht this attribute be true in forking
        environments.
      - After connecting to the database, the MySQL driver,
        DBIx::Connector::Driver::mysql, now always sets the
        `mysql_auto_reconnect` attribute to false. This is to prevent MySQL's
        auto-reconnection feature from interfering with DBIx::Connector's
        auto-reconnection functionality in `fixup` mode. Thanks to Karen
        Etheridge and Peter Rabbitson for the report.
      - Removed mention of the use of the `catch` function from Try::Tiny,
        since it is no longer compatible to use passing the exception-handling
        function. Just using `catch =>` instead, which is cleaner-looking
        anyway (RT #65196).

0.42  2010-12-17T18:35:54
      - If a catch block died, the exception was not being propagated. That
        is, if a catch block threw an exception, DBIx::Connector ate it, and
        any calling code would not be able to catch it. This was a pretty
        serious bug; upgrading is strongly recommended for anyone using catch
        blocks.
      - When `run()`, `txn()`, or `svp()` was called recursively from within a
        second fixup execution, it was not respecting the fact that it was
        recursive and could try to start a transaction again. This happened
        *only* when a fixup run found that the database was disconnected and
        successfully re-connected, so it's a pretty rare condition.

0.41  2010-12-08T21:02:32
      - `connect()` no longer returns a disconnected database handle. Thanks
        to John Siracusa for the spot (Issue #6).
      - Added `disconnect_on_destroy()`, which can be used to disable
        disconnecting the database handle when the connector object is
        destroyed. Suggested by John Siracusa.

(hiramatsu)

2011-10-24 09:35:26 UTC MAIN commitmail json YAML

Update p5-Scope-Upper to 0.18.

Changes from previous:
0.18    2011-10-10 20:50 UTC
        + Add : The uid() function returns an unique identifier for each dynamic
                scope. The validate_uid() function can be used to check whether
                one such identifier is valid (i.e. that the scope it refers to
                is still alive).
        + Chg : It is no longer possible on perl 5.6 to call goto() in an
                uplevel callback to replace the uplevel call. This change was
                needed in order to ensure consistency between platforms
                regarding to the following fix just below.
        + Fix : The uplevel() tests now pass on Windows.
                Thanks C.H. Kang for bringing this to my attention.

0.17    2011-10-03 21:45 UTC
        + Fix : uplevel() will now use the correct pad when executing its
                callback. This fixes at least two issues :
                - closures defined inside the uplevel callback can now correctly
                access lexicals from inside and outside the callback.
                - state variables in the uplevel callback now work properly.
        + Fix : It is now generally possible to call goto() in the uplevel'd
                code to replace the uplevel stack frame. There are two cases
                for which it is still not possible :
                - if -D flags were set when running perl (as in "perl -Dt ...").
                - if the perl runloop has been replaced with a custom one by
                another module.
                If uplevel() detects that the replacement code contains a goto
                statement, and is in one of those two cases, then it will refuse
                to execute the callback and throw an exception.
                Note that this fix implies a run-time overhead of uplevel()
                proportional to the size of the the callback in every case
                (with a small ratio), and proportional to the size of ALL the
                code executed as the result of the uplevel call (including
                subroutine calls inside the callback) when a goto statement is
                found in the uplevel callback.
        + Fix : uplevel() has been taught how to handle XS callbacks properly.
        + Fix : The cause of "Attempt to free unreferenced scalar" warnings
                when using uplevel() has been addressed.
        + Fix : [RT #71212] : build failure on Windows.
                The module does no longer rely on calling Perl_cv_clone, which
                isn't exported.
                Thanks C.H. Kang for reporting.

(hiramatsu)

2011-10-24 07:15:15 UTC MAIN commitmail json YAML

Note update of the "phpmyadmin" package to version 3.4.7.

(tron)

2011-10-24 07:14:48 UTC MAIN commitmail json YAML

Update "phpmyadmin" package to version 3.4.7. Changes since version 3.4.6:
- bug #3418610 [interface] Links in navigation when
  $cfg['MainPageIconic'] = false
- bug #3418849 [interface] Inline edit shows dropdowns even after closing
- bug [view] View renaming did not work
- bug [navi] Wrong icon for view (MySQL 5.5)
- bug #3420229 [doc] Missing documentation section
- bug #3423725 [pdf] Broken PDF file when exporting database to PDF
- [core] Allow to set language in URL
- bug #3425184 [doc] Fix links to PHP documentation
- bug #3426031 [export] Export to bzip2 is not working

(tron)

2011-10-24 06:43:22 UTC MAIN commitmail json YAML

Add p5-Perl4-CoreLibs

(sbd)

2011-10-24 06:41:52 UTC MAIN commitmail json YAML

Added devel/p5-Perl4-CoreLibs version 0.003

(sbd)

2011-10-24 06:41:15 UTC MAIN commitmail json YAML

Import p5-Perl4-CoreLibs-0.003: Libraries historically supplied with Perl 4

This is a collection of .pl files that have historically been bundled with the
Perl core but are planned not to be so distributed with core version 5.15 or
later. Relying on their presence in the core distribution is deprecated; they
should be acquired from this CPAN distribution instead.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(sbd)

2011-10-24 05:23:58 UTC MAIN commitmail json YAML

2011-10-23 21:20:17 UTC MAIN commitmail json YAML

+coreutils-8.14, from Snader_LB

(dholland)

2011-10-23 19:59:33 UTC MAIN commitmail json YAML

add vendor patch 2011-006-patch-r18 from MITKRB5-SA-2011-006
this fixes CVE-2011-1528, CVE-2011-1529 & CVE-2011-4151

(tez)

2011-10-23 19:58:16 UTC MAIN commitmail json YAML

add vendor patch 2011-006-patch-r18 from MITKRB5-SA-2011-006
this fixes CVE-2011-1528, CVE-2011-1529 & CVE-2011-4151

(tez)

2011-10-23 18:07:24 UTC MAIN commitmail json YAML

2011-10-23 18:06:50 UTC MAIN commitmail json YAML

Fix wrong COMMENT; PKGREVISION -> 2

(dholland)

2011-10-23 16:09:23 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup tickets #3576 and #3577.

(tron)

2011-10-23 16:08:46 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3577 - requested by he
net/ldns: security update

Revisions pulled up:
- net/ldns/Makefile                                            1.19
- net/ldns/PLIST                                                1.4
- net/ldns/distinfo                                            1.11

---
  Module Name: pkgsrc
  Committed By: he
  Date: Sat Oct 22 19:44:54 UTC 2011

  Modified Files:
  pkgsrc/net/ldns: Makefile PLIST distinfo

  Log Message:
  Update to version 1.6.11.

  Pkgsrc changes:
    o Sync PLIST, additional man page installed.

  Upstream changes:
  1.6.11 2011-09-29
  * bugfix #394: Fix socket leak on errors
  * bugfix #392: Apex only and percentage checks for ldns-verify-zone
    (thanks Miek Gieben)
  * bugfix #398: Allow NSEC RRSIGs before the NSEC3 in ldns-verify-zone
  * Fix python site package path from sitelib to sitearch for pyldns.
  * Fix python api to support python2 and python3 (thanks Karel Slany).
  * bugfix #401: Correction of date/time functions algorithm and
    prevention of an infinite loop therein
  * bugfix #402: Correct the minimum and maximum number of rdata fields
    in TSIG. (thanks David Keeler)
  * bugfix #403: Fix heap overflow (thanks David Keeler)
  * bugfix #404: Make parsing APL strings more robust
    (thanks David Keeler)
  * bugfix #391: Complete library assessment to prevent assertion errors
            through ldns_rdf_size usage.
  * Slightly more specific error messaging on wrong number of rdata
    fields with the LDNS_STATUS_MISSING_RDATA_FIELDS_RRSIG and
    LDNS_STATUS_MISSING_RDATA_FIELDS_KEY result codes.
  * bugfix #406: More rigorous openssl result code handling to prevent
    future crashes within openssl.
  * Fix ldns_fetch_valid_domain_keys to search deeper than just one level
            for a DNSKEY that signed a DS RR. (this function was used in the
    check_dnssec_trace nagios module)
  * bugfix #407: Canonicalize TSIG dnames and algorithm fields
  * A new output specifier to accommodate configuration of what to show
    in comment texts when converting host and/or wire-format data to
    string. All conversion to string and printing functions have a new
    version that have such a format specifier as an extra argument.
    The default is changed so that only DNSKEY RR's are annotated with
    an comment show the Key Tag of the DNSKEY.
  * Fixed the ldns resolver to not mark a nameserver unreachable when
    edns0 is tried unsuccessfully with size 4096 (no return packet came),
    but to still try TCP. A big UDP packet might have been corrupted by
    fragments dropping firewalls.
  * Update of libdns.vim (thanks Miek Gieben)
  * Added the ldnsx Python module to our contrib section, which adds even
    more pythonisticism to the usage of ldns with  Python. (Many thanks
    to Christpher Olah and Paul Wouters)
    The ldnsx module is automatically installed when --with-pyldns is
    used with configuring, but may explicitly be excluded with the
    --without-pyldnsx option to configure.
  * bugfix #410: Fix clearing out temporary data on stack in sha2.c
  * bugfix #411: Don't let empty non-terminal NSEC3s cause
    assertion failure.

(tron)

2011-10-23 16:05:41 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3576 - requested by gls
www/moodle: security update

Revisions pulled up:
- www/moodle/Makefile                                          1.7
- www/moodle/PLIST                                              1.5
- www/moodle/distinfo                                          1.5

---
  Module Name: pkgsrc
  Committed By: gls
  Date: Sat Oct 22 11:05:31 UTC 2011

  Modified Files:
  pkgsrc/www/moodle: Makefile PLIST distinfo

  Log Message:
  Upgrade www/moodle to 2.1.2.

  Upstream changes:

  Highlights

  MDL-28729 - Numerous multi-lang fixes and improvements

  Functional changes

  MDL-28410 - Allow a single option in a Choice activity
  MDL-29394 - HTML editor format option selector hidden when there is only one option
  MDL-23520 - Option added to allow deleting of a wiki page

  Security issues:
  MSA-11-0027 to MSA-11-0035, MSA-11-0039 to MSA-11-0041.
  Fixes SA46427

  See http://docs.moodle.org/dev/Moodle_2.1.2_release_notes for complete
  release notes.

(tron)

2011-10-23 15:47:13 UTC MAIN commitmail json YAML

Limit this package to ruby19.  Noted by David Holland via private mail
about devel/ruby-fiddle, too.

(taca)

2011-10-23 15:46:05 UTC MAIN commitmail json YAML

Limit this package to ruby19.

(taca)

2011-10-23 13:32:53 UTC MAIN commitmail json YAML

Updated net/mikutter to 0.0.3.556

(obache)

2011-10-23 13:32:27 UTC MAIN commitmail json YAML

Update mikutter to 0.0.3.556.

* Omit lindices to avoid mismatch between Twitter's tweet escape and indices of
  Entity.
* Fixes URL for opening user's profile page.

(obache)

2011-10-23 13:16:52 UTC MAIN commitmail json YAML

Updated devel/cutter to 1.1.9

(obache)

2011-10-23 13:16:36 UTC MAIN commitmail json YAML

Update cutter to 1.1.9.

= NEWS --- The history of Cutter

== [release-1-1-9] 1.1.9: 2011-10-22

We move the repository to GitHub from SF.net.

=== Cutter

==== Changes

  * Added Ubuntu Oneiric Ocelot support.
  * Added CentOS 6 support.

==== Fixes

  * Fixed as success test count with thread. [SF.net #3383253]
    [Reported by Romain Tarti竪re]

=== Thanks

  * Romain Tarti竪re

(obache)

2011-10-23 11:39:04 UTC MAIN commitmail json YAML

- don't MAKE dirs that we OWN
- use values of STATEDIR and MUNIN_RUN in OWN_DIRS/OWN_DIRS_PERMS

(shattered)

2011-10-23 11:36:02 UTC MAIN commitmail json YAML

2011-10-23 11:32:36 UTC MAIN commitmail json YAML

Add a note about htmldir and munin-graph.

(shattered)

2011-10-23 08:05:05 UTC MAIN commitmail json YAML

Updated finance/gnucash to 2.4.8

(wiz)

2011-10-23 08:04:55 UTC MAIN commitmail json YAML

Update to 2.4.8:

Between 2.4.7 and 2.4.8, the following bugfixes were included:

  * Bug #655901 - Fix build with guile 2.0
  * Fix handling a directory as a dataset file.
  * Bug #626970 - Crash when saving a transaction whose destination account
    was deleted in the meantime
  * Bug #661721 - Exposed Password
  * Bug #651522 - crash in query_free_compiled, gnc_query_list_reset_query
  * Use "Nimbus" gtk theme on Windows. A previous attempt failed to set this
    in the installer.
  * Bug #644977 - Add new Quicken Check 21 format. Thanks to Steve Holland
    <sholland@napervillegi.com>
  * Update Mac customizations for gtk-mac-integration-1.0.0. Mac integration
    has had a name and api change from ige-mac-integration as part of
    migration from Sourceforge to Gnome.
  * Bug #553432 - Status line of edit invoice page mixes invoice currency
    amount with default currency symbol
  * Bug #365928 - Jobs do not stick in Expense Vouchers
  * Find the python libraries and includes even if the path to them includes a
    symlink. When python is installed using MacPorts there is a symlink in the
    path.
  * Bug #612562 - Transfer Funds dialog - 'Show Income/Expense' checkboxes are
    not working. Subaccounts of income and expense are not always shown.
  * Make sure that exiting conn_test_dbi_library on a failure doesn't leave
    the locale at "C".
  * Bug #645216 - Fix wrong permissions on server result in bogus error
    message.
  * Change default post date:
    * customer invoices: post at the current date
    * bills/vouchers: post at the last date on the bill/voucher
  * Bug #658244 - Custom css stylesheet and logo in Tax Invoice report require
    protocol in exported HTML
  * Bug #655901 - Fix build with guile 2.0 Patch by Petr Gajdos
  * Fix critical error regarding the color tabs when trying to display the
    search results and also on the scheduled transactions template.
  * Patch by Robert Fewell

In 2.4.8, the following languages had their translations updated: Japanese,
Lithuanian, Latvian, Russian, Hungarian.

(wiz)

2011-10-22 19:49:00 UTC MAIN commitmail json YAML

Note update of net/ldns to 1.6.11.

(he)

2011-10-22 19:44:54 UTC MAIN commitmail json YAML

Update to version 1.6.11.

Pkgsrc changes:
o Sync PLIST, additional man page installed.

Upstream changes:
1.6.11 2011-09-29
* bugfix #394: Fix socket leak on errors
* bugfix #392: Apex only and percentage checks for ldns-verify-zone
  (thanks Miek Gieben)
* bugfix #398: Allow NSEC RRSIGs before the NSEC3 in ldns-verify-zone
* Fix python site package path from sitelib to sitearch for pyldns.
* Fix python api to support python2 and python3 (thanks Karel Slany).
* bugfix #401: Correction of date/time functions algorithm and
  prevention of an infinite loop therein
* bugfix #402: Correct the minimum and maximum number of rdata fields
  in TSIG. (thanks David Keeler)
* bugfix #403: Fix heap overflow (thanks David Keeler)
* bugfix #404: Make parsing APL strings more robust
  (thanks David Keeler)
* bugfix #391: Complete library assessment to prevent assertion errors
        through ldns_rdf_size usage.
* Slightly more specific error messaging on wrong number of rdata
  fields with the LDNS_STATUS_MISSING_RDATA_FIELDS_RRSIG and
  LDNS_STATUS_MISSING_RDATA_FIELDS_KEY result codes.
* bugfix #406: More rigorous openssl result code handling to prevent
  future crashes within openssl.
* Fix ldns_fetch_valid_domain_keys to search deeper than just one level
          for a DNSKEY that signed a DS RR. (this function was used in the
  check_dnssec_trace nagios module)
* bugfix #407: Canonicalize TSIG dnames and algorithm fields
* A new output specifier to accommodate configuration of what to show
  in comment texts when converting host and/or wire-format data to
  string. All conversion to string and printing functions have a new
  version that have such a format specifier as an extra argument.
  The default is changed so that only DNSKEY RR's are annotated with
  an comment show the Key Tag of the DNSKEY.
* Fixed the ldns resolver to not mark a nameserver unreachable when
  edns0 is tried unsuccessfully with size 4096 (no return packet came),
  but to still try TCP. A big UDP packet might have been corrupted by
  fragments dropping firewalls.
* Update of libdns.vim (thanks Miek Gieben)
* Added the ldnsx Python module to our contrib section, which adds even
  more pythonisticism to the usage of ldns with  Python. (Many thanks
  to Christpher Olah and Paul Wouters)
  The ldnsx module is automatically installed when --with-pyldns is
  used with configuring, but may explicitly be excluded with the
  --without-pyldnsx option to configure.
* bugfix #410: Fix clearing out temporary data on stack in sha2.c
* bugfix #411: Don't let empty non-terminal NSEC3s cause
  assertion failure.

(he)

2011-10-22 18:38:59 UTC MAIN commitmail json YAML

Updated net/clive to 2.3.1.1nb2

(wiz)

2011-10-22 18:09:37 UTC MAIN commitmail json YAML

+ TeXmacs-1.0.7.14, accerciser-3.2.1, anjuta-3.2.1, at-spi-2.2.1,
  blender-2.60, calibre-0.8.22 [pkg/45493], calibre-0.8.23,
  cdialog-1.1.20111020, cheese-3.2.1, cherokee-1.2.101, clutter-1.8.2,
  dnsmasq-2.59, erlang-14.04, fossil-1.20, freeciv-2.3.0, gnome-3.2.1,
  gnome-games-3.2.1, gnome-keyring-3.2.1, gnome-packagekit-3.2.1,
  gnome-power-manager-3.2.1, gtk2-2.24.7, imp-5.0.14, lapack-3.3.1,
  lftp-4.3.3, libfolks-0.6.4.1, mousetweaks-3.2.1, mpich-1.4.1p1,
  nut-17.2, pcre-8.20, proxsmtp-1.10, seahorse-3.2.1, sessreg-1.0.7,
  ucarp-1.5.2 [pkg/45508], vinagre-3.2.1, vino-3.2.1, wine-devel-1.3.31.

(wiz)

2011-10-22 18:07:19 UTC MAIN commitmail json YAML

Add a MESSAGE:

For downloading from vimeo using curl (default), add the following line
to your ~/.curlrc:

user-agent = "Mozilla/5.0"

Bump PKGREVISION.

(wiz)

2011-10-22 17:54:56 UTC MAIN commitmail json YAML

Note update of the "squid31" package to version 3.1.16.

(tron)

2011-10-22 17:54:25 UTC MAIN commitmail json YAML

Update "squid31" package to version 3.1.16. Changes since 3.1.15:
- Bug 3373: invalid URL in ERR_CACHE_ACCESS_DENIED
- Bug 3368: Unhandled exceptions are not logged (workaround)
- Bug 3326: miss_access incorrect default
- Bug 3320: miss_access description confusing
- Bug 3241: squid_kerb_auth cross compilation fix
- Bug 3237: seq fault in free() from rfc1035RRDestroy
- Bug 3190: Large HTTP POST stuck after early ICAP 400 error response
- db_auth: display available DSN drivers on connect error
- Updated OpenSSL 1.0.0 version checks
- ... and several documentation fixes

(tron)

2011-10-22 15:10:37 UTC MAIN commitmail json YAML

Remove PKGREVISION that added by mistake.

(ryoon)

2011-10-22 15:08:10 UTC MAIN commitmail json YAML

Remove ImageMagick and p5-PerlMagick

(ryoon)

2011-10-22 15:06:31 UTC MAIN commitmail json YAML

Note of ImageMagick update and recursive updates.

(ryoon)

2011-10-22 15:00:22 UTC MAIN commitmail json YAML

2011-10-22 14:55:52 UTC MAIN commitmail json YAML

Update to 6.7.3.1

* shlib name has changed.

Changelog:
2011-10-15  6.7.3-1 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.3-1.

2011-10-15  6.7.3-1 Cristy  <quetzlzacatenango@image...>
  * Read TIFF EXIF profile before reading the image data.
  * Fix "test: no: unexpected operator" in the configure script (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19615).
  * Off by one error when writing the JPEG XMP profile (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19616).
  * Revert GetPathComponent() patch.

2011-10-09  6.7.3-0 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.3-0.

2011-10-09  6.7.3-0 Cristy  <quetzlzacatenango@image...>
  * Generate output for caption:"[!]" (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=19589.

2011-10-05  6.7.3-0 Glenn Randers-Pehrson <glennrp@image...>
  * Add "png:format" property with possible values png8, png24, and png32,
    for use when prepending the format type to the filename is not convenient
    or is not possible, e.g., when embedding the PNG in a PNG-encoded ICO.

2011-10-04  6.7.2-10 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-10.

2011-10-04  6.7.2-10 Cristy  <quetzlzacatenango@image...>
  * Remove most of the LLVM compiler warnings.
  * Fix bug in -evaluate-sequence multiply (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19549).
  * Upgrade to sRGB V4 ICC profile (reference
    http://www.color.org/srgbprofiles.xalter).
  * Distinguish embedded PNG vs BMP within the MicroSoft ICON image format.

2011-09-30  6.7.2-10 Glenn Randers-Pehrson <glennrp@image...>
  * Recognize the sRGB version 4 ICC profile and write PNG sRGB chunk instead.
  * Use crc32 instead of "sRGB" string to recognize certain sRGB profiles.

2011-09-26  6.7.2-9 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-9.

2011-09-26  6.7.2-9 Cristy  <quetzlzacatenango@image...>
  * Fix race condition on image rotate @ 90 degrees.

2011-09-25  6.7.2-8 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-8.

2011-09-20  6.7.2-8 Cristy  <quetzlzacatenango@image...>
  * Prevent infinite loop when font is too large for specified width (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19502).
  * Fix LFS cross-compile detection (patch from Mike Frysinger).
  * Add open_utf8(), fopen_utf8(), access_utf8(), etc. utility methods.

2011-09-15  6.7.2-7 Cristy  <quetzlzacatenango@image...>
  * Convert empty .htm / .html file no longer removes source file.
  * -crop 11x2@ now returns 22 images as expected.
  * Enable reading the EXIF profile in a TIFF image under Windows.
  * Support drawing text with bitmap font.

2011-09-13  6.7.2-6 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-6.

2011-09-12  6.7.2-6 Cristy  <quetzlzacatenango@image...>
  * Expand pixel range for 12 bit DCM images stored in 16-bit words.
  * Gray images not displayed properly when saved as MIFF with sRGB
    colorspace.
  * OpenCL's clCreateContextFromType() no longer returns a system default.
  * Use -enable-zero-configuration for zero configuration ImageMagick
    (previously -enable-embeddable).

2011-09-10  6.7.2-5 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-5.

2011-09-10  6.7.2-5 Cristy  <quetzlzacatenango@image...>
  * SO bump.

2011-09-09  6.7.2-4 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-4.

2011-09-05  6.7.2-4 Cristy  <quetzlzacatenango@image...>
  * Fix cut-n-paste error when reading JPEG profiles.

2011-09-07  6.7.2-3 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-3.

2011-09-05  6.7.2-3 Cristy  <quetzlzacatenango@image...>
  * A small memory overwrite when reading TIFF with 1-bit alpha (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19417).
  * Remove a 2 byte memory leak when checking for environment variables.

2011-09-05  6.7.2-2 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-2.

2011-09-03  6.7.2-2 Glenn Randers-Pehrson <glennrp@image...>
  * Recognize the sRGB ICC profile and write the PNG sRGB profile instead
    of a full iCCP chunk.

2011-08-31  6.7.2-2 Cristy  <quetzlzacatenango@image...>
  * Write grayscale MIFF as a single gray pixel component, not RGB (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=2&t=19403).
  * Bail gracefully for corrupt JPEG images.
  * Bail gracefully for negative montage geometries (references
    https://bugzilla.redhat.com/show_bug.cgi?id=735599).
  * Account for DCm bits allocated 16 and significant bits 12 (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19420).
  * Fix bug when appending JPEG image profiles (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19429).

2011-08-29  6.7.2-1 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.2-1.

2011-08-29  6.7.2-1 Cristy  <quetzlzacatenango@image...>
  * The AllChannels defined changed to 0x7ffffff to avoid integer overflow.

2011-08-26  6.7.2-0 Cristy  <quetzlzacatenango@image...>
  * HDR format 32-bit_rle_xyze implies the XYZ colorspace.

2011-08-22  6.7.1-10 Cristy  <quetzlzacatenango@image...>
  * Revert FormatImageAttributeList(), FormatImagePropertyList() (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19339).

2011-08-21  6.7.1-10 Glenn Randers-Pehrson <glennrp@image...>
  * Revised configure.ac (and configure) to look for -lpng15, -lpng14, -lpng12,
    and -lpng in that order instead of just -lpng.  This should help find
    a consistent library and headers when users upgrade their libpng delegate
    from one version to another, incompatible version.

2011-08-20  6.7.1-9 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-9.

2011-08-20  6.7.1-9 Cristy  <quetzlzacatenango@image...>
  * Fix memory leak in text annotation (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=19331).

2011-08-18  6.7.1-9 Glenn Randers-Pehrson <glennrp@image...>
  * The "-strip" option was excluding the PNG tRNS chunk (see 6.6.6-7, below);
  revised the -strip option so it behaves as
  if "-define PNG:include-chunk=none,trns,gama" had appeared on the commandline.
  * When writing a PNG8 and more than one transparent color is present,
  merge them into the image->background_color (Reference
  http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=19329),
  finishing the implementation started in version 6.6.8-7.

2011-08-18  6.7.1-8 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-8.

2011-08-18  6.7.1-8 Cristy  <quetzlzacatenango@image...>
  * Caption now wraps properly for Chinese text (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19249).

2011-08-18  6.7.1-8 Glenn Randers-Pehrson <glennrp@image...>
  * The PNG encoder would sometimes fail to respect the -define PNG:color-type
    option when the incoming image was PseudoClass (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=19262).

2011-08-15  6.7.1-7 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-7.

2011-08-15  6.7.1-7 Cristy  <quetzlzacatenango@image...>
  * Properly handled continued JPEG embedded profiles.

2011-08-12  6.7.1-6 Cristy  <quetzlzacatenango@image...>
  * Yet another attempt to read Japanese filenames under Windows.

2011-08-10  6.7.1-5 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-5.

2011-08-10  6.7.1-5 Cristy  <quetzlzacatenango@image...>
  * Revert -colorspace sRGB option patch (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19256).
  * Revert -type PaletteMatte option patch (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19263

2011-08-09  6.7.1-4 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-4.

2011-08-09  6.7.1-4 Cristy  <quetzlzacatenango@image...>
  * Revert MultiByteToWideChar() for Windows patch.

2011-08-05  6.7.1-3 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-3.

2011-08-05  6.7.1-3 Cristy  <quetzlzacatenango@image...>
  * Use MultiByteToWideChar() for Windows filenames (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=19242).

2011-08-03  6.7.1-2 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-2.

2011-08-02  6.7.1-2 Cristy  <quetzlzacatenango@image...>
  * Windows does not support acosh(), asinh(), or atanh().
  * Accept filenames with time stamps and a sub-image specification (e.g.
    test-18:37.jpg[0]).

2011-08-01  6.7.1-1 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.1-1.

2011-08-01  6.7.1-1 Cristy  <quetzlzacatenango@image...>
  * Support MSL 'set gravity' element.
  * Don't report HSB colors as RGB colornames (e.g. hsb(0%,0%,100%)).
  * Support -fx acosh(), asinh(), and atanh().

2011-07-21  6.7.1-0 Anthony Thyssen <A.Thyssen@griffith...>
  * Removed a case that prevented rotations of rectangle kernels.

2011-07-01  6.7.1-0 Glenn Randers-Pehrson <glennrp@image...>
  * Use zlib default compression strategy instead of Z_RLE and Z_FIXED
    strategies when linking with zlib versions (prior to 1.2.0 and 1.2.2.2,
    respectively) that don't support them.
  * Exit test loop sooner in coders/png.c when a non-gray pixel is found.

2011-06-30  6.7.0-10 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-10.

2011-06-30  6.7.0-10 Glenn Randers-Pehrson <glennrp@image...>
  * Added "-define PNG:compression-level|strategy|filter=value" options to
    the PNG encoder.  If these options are used, they take precedence over
    the -quality option (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?&f=1&p=73548).

2011-06-29  6.7.0-7 Glenn Randers-Pehrson <glennrp@image...>
  * Handle "-quality 97" properly in the png encoder, i.e., use intrapixel
    filtering when writing a MNG file and no filtering when writing a PNG file.
  * Added support for Z_RLE strategy in the png compressor, using
    -quality 98 or 99.

2011-06-28  6.7.0-10 Cristy  <quetzlzacatenango@image...>
  * Properly allocate points when render text with large font size (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18997).

2011-06-25  6.7.0-9 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-9.

2011-06-18  6.7.0-9 Cristy  <quetzlzacatenango@image...>
  * Defend against corrupt PSD resource blocks.

2011-06-15  6.7.0-8 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-8.

2011-06-14  6.7.0-8 Anthony Thyssen <A.Thyssen@griffith...>
  * Added Initial implementation of Cylinder to/from Plane 3D Distorts
    Includes derivative (scaled lookup), and anti-aliased horizon (validity)
    Currently can NOT handle extractions from full 360 cylinder panoramas.

2011-06-13  6.7.0-7 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-7.

2011-06-09  6.7.0-7 Cristy  <quetzlzacatenango@image...>
  * Fixed "conversion from unsigned __int64 to double not implemented"
    so IM can compile under VisualStudio 6.

2011-06-08  6.7.0-7 Glenn Randers-Pehrson <glennrp@image...>
  * The PNG encoder would sometimes make black pixels transparent when some
    other gray level was supposed to be the transparent color (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18900).
    This occurred only with 1, 2, 4-bit grayscale images with Q16 or Q32
    builds.

2011-06-08  6.7.0-6 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-6.

2011-06-08  6.7.0-6 Cristy  <quetzlzacatenango@image...>
  * Fix transient error for composite 'Over' operator.

2011-06-07  6.7.0-5 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-5.

2011-06-07  6.7.0-5 Cristy  <quetzlzacatenango@image...>
  * Fix one-off bug in option parser (reference
    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=609177).
  * Transient bug with composite 'Over' in magick/composite-private.h.

2011-06-06  6.7.0-4 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-4.

2011-06-03  6.7.0-4 Cristy  <quetzlzacatenango@image...>
  * Support -direction right-to-left for the label: and caption: coders.
  * Blue / green reversed for JPEG-compressed TIFF images.

2011-06-03  6.7.0-3 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-3.

2011-06-02  6.7.0-2 Cristy  <quetzlzacatenango@image...>
  * Use memmove() instead of memcpy() in StripString().

2011-05-27  6.7.0-2 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-2.

2011-05-26  6.7.0-2 Cristy  <quetzlzacatenango@image...>
  * ImageMagick now compiles on Hurd (reference
    http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=628020).
  * Use vfprintf rather than fprintf in FormatLocaleFileList().

2011-05-26  6.7.0-1 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-1.

2011-05-25  6.7.0-1 Cristy  <quetzlzacatenango@image...>
  * Not all Linux'es define locale_t (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18819).

2011-05-22  6.7.0-0 Cristy  <quetzlzacatenango@image...>
  * New version 6.7.0-0.

2011-05-21  6.7.0-0 Cristy  <quetzlzacatenango@image...>
  * Avoid fault on corrupt JPEG images.
  * Avoid fault on certain DJVU images (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18807).
  * Fix -fx to interpret scientific notation properly.

2011-05-20  6.6.9-10 Cristy  <quetzlzacatenango@image...>
  * New version 6.6.9-10.

2011-05-20  6.6.9-10 Glenn Randers-Pehrson <glennrp@image...>
  * The PNG encoder now respects the -depth setting, including 1, 2, 4.
    Previously settings other than 8 and 16 were ignored (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18412).

2011-05-16  6.6.9-10 Cristy  <quetzlzacatenango@image...>
  * Don't use comma as a separator for stroked text (reference
    http://www.imagemagick.org/discourse-server/viewtopic.php?f=3&t=18742).
  * Use C locale when generating or interpreting SVG.
  * Fix "unterminated macro" for Q32 build of coders/png.c.

2011-05-15  6.6.9-9 Cristy  <quetzlzacatenango@image...>
  * New version 6.6.9-9.

2011-05-14  6.6.9-9 Cristy  <quetzlzacatenango@image...>
  * The -scale option now considers the alpha channel when scaling.
  * Fix transient bug for HSL to RGB and back.

2011-05-12  6.6.9-9 Glenn Randers-Pehrson <glennrp@image...>
  * Fixed PNG8 reduction to work with an image that reduces to 256 colors
    plus transparency, by merging the two darkest red colors.

(ryoon)

2011-10-22 13:51:44 UTC MAIN commitmail json YAML

Updated graphics/shotwell to 0.11.5

(gls)

2011-10-22 13:51:02 UTC MAIN commitmail json YAML

Updated graphics/shotwell to 0.11.5

Upstream changes:

0.11.5:
-------
This release fixes an issue in
which Shotwell could crash when using the "Import from F-Spot" feature
for the subset of users who continued to experience this problem after
the 0.11.4 upgrade. We recommend that all users upgrade.

0.11.4;
-------
This release fixes two critical
issues present in all previous versions of Shotwell 0.11.x that could
cause Shotwell to crash when using the Import from F-Spot feature.
We recommend that all users upgrade.

0.11.3:
-------
This releases fixes two critical bugs, including:
  * Shotwell could crash at the end of photo imports where one or
more files failed to import correctly
  * Showell crashed when a new tag containing a slash (/) character
was created by context-clicking on the Tags item in the sidebar and
choosing  New
and improves error reporting in the publishing system.

0.11.2:
-------
  * Improved stability working with hierarchical tags
  * Importing hierarchical tags from F-Spot doesn't generate duplicate
top-level tags
  * Fixed "server redirect contained no session key" errors in the
Facebook Connector
  * Corrected problems with item counts over mixed media

(gls)

2011-10-22 13:44:45 UTC MAIN commitmail json YAML

Updated graphics/libraw to 0.14.2

(gls)

2011-10-22 13:44:12 UTC MAIN commitmail json YAML

Upgrade graphics/libraw to 0.14.2

Upstream changes:

LibRaw 0.14.2 (19-10-2011)

        Fixed bug in Canon 1D and 1Ds files decoding.
        New decoder information bit DECODER_HASRAWCURVE

LibRaw 0.14.1 (11-10-2011)

        Imported dcraw 9.11/1.445:
            Support for new cameras added: Fujifilm
    F600EXR, Nikon P7100, Olympus E-PL3 and
    E-PM1, Panasonic DMC-FZ150, Sony NEX-5N,
      A65 and A77.
            Updated color data for: Olympus E-P3,
    Panasonic G3 and GF3, PhaseOne H25, P40
    and P65, Sony NEX-C3, NEX-5, NEX-3, A35 and A55.
            Support for dark frame extraction on Sony cameras.
        DCB demosaicing: reserving 6 pixels instead of 3 to suppress colored
image frame.

LibRaw 0.14.0 (21-09-2011)

        Multiple rendering (LibRaw::dcraw_process() calls) allowed without
re-opening RAW file thrfough the sequence of open()/unpack() calls.
        You should be able to change any processing parameters (except
shot_select parameter) between dcraw_process() calls.
            New sample in samples/multirender_test.cpp: renders data 4 times:
    in half and full modes with different white balance settings.
            Unprocessed RAW data is stored in separate data buffer: (2 bytes
    per pixel for all Bayer-pattern images, 8 bytes per pixel for
    Foveon, sRAW, and other full-color raw formats), so now LibRaw
    uses 25% more memory for full processing of most common Bayer
    images; while for just unpack memory is reduced 4 times.
    New call LibRaw::raw2image() fills imgdata.image array with
    fresh copy of data. There is no need to call raw2image()
    separately if you use dcraw_process() or dcraw_document_mode_processing()
    calls.
    New call LibRaw::get_decoder_info() to determine raw data storage
    layout. See samples/unprocessed_raw.cpp for an example of how to
    use it.
        New call LibRaw::free_image(), deallocates imgdata.image buffer.
    Use this call if current postprocessing results are not needed,
    but it is to early to call recycle() because dcraw_process()
    may be called later.
        New C-API calls libraw_raw2image() - C API for LibRaw::raw2image()
    libraw_free_image() - C API for LibRaw::free_image()
    libraw_get_decoder_info() - C API for LibRaw::get_decoder_info()

If your code uses usual open()/unpack()/dcraw_process() call sequence, then
NOTHING CHANGED: your program should produce same results. For interactive
programs you may skip open()/unpack() calls after adjusting processing parameters,
so user should see image refreshed much faster.

If your code uses raw data (open+unpack calls), you need to call
LibRaw::raw2image(), and imgdata.image will contain same bitmap as in LibRaw 0.13.x

If you code uses access to masked borders data, you need to rewrite it. See
samples/unprocessed_raw.cpp as a sample.

Other changes:

    No separate imgdata.masked_pixels buffers, Bayer raw formats are read to
    buffer with borders. So, no ugly add_masked_border_to_bitmap() call.
    No filtering_mode parameter. Raw tone curve is applied at unpack() stage;
    zero pixels removed on postprocesing stage.
    unprocessed_raw and 4colors samples are adjusted to use new RAW data
    storage layout.
    OpenMP speedup of postprocessing steps (up to 50% for half mode and
    4-core machine)
    Most of LibRaw_datastream function bodies are moved to separate source file
    LibRaw_windows_datastream is merged to main source tree
    Imported dcraw 9.10 (1.444), support for new cameras added: ARRIRAW format,
    Canon SX30 IS, Leica D-LUX 5 and V-LUX2, Olympus E-P3, Panasonic G3 and GF3,
    Sony NEX-C3 and SLT-A35
    Support for RedOne digital movie cameras (R3D format). To enable this
    support you need to:
        install libjasper JPEG2000 support library
        compile LibRaw with -DUSE_JASPER compiler switch
        (./configure will do it for you)
        If you use own LibRaw_datastream implementation, you should implement
        make_jas_stream() call for your datastream. See bottom of
        src/libraw_cxx.cpp for implementations in datafile and mem-buffer LibRaw
        streams.

Bugfix: green matching is turned off if output image is shrinked due to wavelet
filtering or aberration correction.
Removed imgdata.sizes.bottom_margin and right_margin data fields use
imgdata.sizes.raw_width - width - left_margin to get right one, the same
with bottom_margin.
Minor ./configure cleanup
Qmake files and Visual Studio Project files are updated.
New version check macroses.
Documentation changed to reflect 0.14 changes.
Removed LibRaw::rotate_fuji_raw() call and corresponding C-API call.
The LibRaw::adjust_sizes_info_only() call may be called repeated and mixed
with dcraw_process() calls.
Postprocessing speedup and optimization, especially if cropping set.
Cropping works for FujiCCD raws. For the technical reasons, the position of
top-left corner of crop area will be rounded to the nearest multiple of 4
(the corner is shifted top-left).
New sample samples/postprocessing_benchmark.cpp This sample measures
postprocessing speed. All demosaic methods, averaged white balance,
median filtering, wavelet filtration, highlight recovery, and cropping
are supported.

all client code should be recompiled due to internals change.

(gls)

2011-10-22 11:36:01 UTC MAIN commitmail json YAML

Updated devel/libgee to 0.6.2.1

(gls)

2011-10-22 11:35:44 UTC MAIN commitmail json YAML

Update devel/libgee to 0.6.2.1

Upstream changes:

libgee 0.6.2.1
==============

* Add check-news to AM_INIT_AUTOMAKE

libgee 0.6.2
============

  * Fix adding second element to priority queue.
  * Fix problem with key used in range is freed.

(gls)

2011-10-22 11:06:21 UTC MAIN commitmail json YAML

Updated www/moodle to 2.1.2

(gls)

2011-10-22 11:05:31 UTC MAIN commitmail json YAML

Upgrade www/moodle to 2.1.2.

Upstream changes:

Highlights

MDL-28729 - Numerous multi-lang fixes and improvements

Functional changes

MDL-28410 - Allow a single option in a Choice activity
MDL-29394 - HTML editor format option selector hidden when there is only one option
MDL-23520 - Option added to allow deleting of a wiki page

Security issues:
MSA-11-0027 to MSA-11-0035, MSA-11-0039 to MSA-11-0041.
Fixes SA46427

See http://docs.moodle.org/dev/Moodle_2.1.2_release_notes for complete
release notes.

(gls)

2011-10-22 10:33:53 UTC MAIN commitmail json YAML

Updated databases/mysql55-{client,server} to 5.5.17

(adam)

2011-10-22 10:32:37 UTC MAIN commitmail json YAML

Changes 5.5.17:
* Replication: Previously, replication slaves could connect to the master
  server only through master accounts that use native authentication. Now
  replication slaves can also connect through master accounts that use
  nonnative authentication (except Windows native authentication) if the
  required client-side plugin is installed on the slave side in the directory
  named by the slave plugin_dir system variable.
* MEMORY table creation time is now available in the CREATE_TIME column of the
  INFORMATION_SCHEMA.TABLES table and the Create_time column of SHOW TABLE
  STATUS output.
* InnoDB Storage Engine: This fix improves the performance of instrumentation
  code for InnoDB buffer pool operations.
* InnoDB Storage Engine: Data from BLOB columns could be lost if the server
  crashed at a precise moment when other columns were being updated in an
  InnoDB table.
* InnoDB Storage Engine: Lookups using secondary indexes could give incorrect
  matches under a specific set of conditions. The conditions involve an index
  defined on a column prefix, for a BLOB or other long column stored outside
  the index page, with a table using the Barracuda file format.
* InnoDB Storage Engine: This fix corrects cases where the MySQL server could
  hang or abort with a long semaphore wait message. (This is a different issue
  than when these symptoms occurred during a CHECK TABLE statement.)
* Internal conversion of zero to binary and back could yield a result with
  incorrect precision.
* Valgrind warnings generated by filesort operations were fixed.
* mysqld_safe did not properly check for an already running instance of mysqld.
* The help message for mysql_install_db did not indicate that it supports the
  --defaults-file, --defaults-extra-file and --no-defaults options.
* An assertion designed to detect zero-length sort keys also was raised when
  the entire key set fit in memory.
* myisampack could create corrupt FULLTEXT indexes when compressing tables.
* A linking problem prevented the FEDERATED storage engine plugin from loading.

(adam)

2011-10-22 10:06:19 UTC pkgsrc-2011Q3 commitmail json YAML

2011-10-22 10:05:27 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3575 - requested by obache
lang/sun-jdk6: security update
lang/sun-jre6: security update

Revisions pulled up:
- lang/sun-jdk6/Makefile                                        1.27
- lang/sun-jdk6/distinfo                                        1.16
- lang/sun-jre6/Makefile                                        1.33
- lang/sun-jre6/distinfo                                        1.19

---
  Module Name: pkgsrc
  Committed By: obache
  Date: Thu Oct 20 12:28:09 UTC 2011

  Modified Files:
  pkgsrc/lang/sun-jdk6: Makefile distinfo
  pkgsrc/lang/sun-jre6: Makefile distinfo

  Log Message:
  Update sun-{jdk,jre}6 to 6.0.29, aka, 6u29.

  Changes:

  [Olson Data 2011g]
  Java SE 6u29 contains Olson time zone data version 2011g. For more information,
  refer to Timezone Data Versions in the JRE Software .

  [Skipped Version Number]
  Release Java SE 6u29 follows release Java SE 6u27. There is no publicly
  available Java SE 6u28 release. Oracle used release version 6u28 for an internal
  build, which was not necessary once the fixes delivered on Java SE 6u29 were
  released.

  [Blacklist Entries]
  This update release includes the following new entries to the Blacklist:
    * Cisco AnyConnect Mobility Client
    * Microsoft UAG Client

  [RMI Registry Issue]
  A bug in the rmiregistry command included in this release may cause unintended
  exceptions to be thrown when an RMI server attempts to bind an exported object
  which includes codebase annotations using the "file:" URL scheme. The RMI
  servers most likely to be effected are those which are invoked only by RMI
  clients executing on the same host as the server.

  RMI annotates codebase information as part of the serialized state of a remote
  object reference to assist RMI clients in loading the required classes and
  interfaces associated with the object at runtime. Exported objects which are
  looked up in the RMI registry and invoked by RMI clients running on hosts other
  than the server are usually annotated with codebase URL schemes, such as
  "http:" or "ftp:" and these should continue to work correctly.

  As a workaround, RMI servers can set the java.rmi.server.codebase property to
  use codebase URLs other than the "file:" scheme for the objects they export.

  [Bug Fixes]
  This release contains fixes for security vulnerabilities. For more information,
  please see Oracle Java SE Critical Patch Update advisory.

(tron)

2011-10-22 10:01:15 UTC MAIN commitmail json YAML

Updated devel/libmaa to 1.3.1

(cheusov)

2011-10-22 10:01:00 UTC MAIN commitmail json YAML

Update to 1.3.1
  Build failure with gcc-4.6 was fixed.
  Thanks to Andrey N. Oktyabrski for the report.

(cheusov)

2011-10-22 08:52:13 UTC MAIN commitmail json YAML

Updated fonts/liberation-ttf to 1.07.1

(ryoon)

2011-10-22 08:50:18 UTC MAIN commitmail json YAML

Update to 1.07.1

Changelog:
* Wed Sep 21 2011 Pravin Satpute <psatpute@redhat.com>
- resolved bug 738264, corrected height of U+040D in Mono
- resolved bug 729989, corrected macron position on ā, ē, ī, ō, ū in Narrow fonts
- enabled embedding of font
- Added License link https://fedoraproject.org/wiki/Licensing/LiberationFontLicense
- New Release 1.07.1

* Mon May 30 2011 Pravin Satpute <psatpute@redhat.com>
- added U+045D and U+0450 in all fonts, bug 659214
- corrected characters U+0438 and U+0439, bug 708330
- resolved bug 708330, 707973
- New Release 1.07.0

* Wed Feb 23 2011 Pravin Satpute <psatpute@redhat.com>
- added U+0400 and U+040d in all fonts, bug 659214
- fixed for bug 620273, patch from Cody Boisclair <cody@zone38.net>

(ryoon)

2011-10-22 07:33:34 UTC MAIN commitmail json YAML

2011-10-22 07:04:31 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup tickets 3573 and 3474

(sbd)

2011-10-22 07:02:03 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3574 - requested by dholland
textproc/p5-XML-Sablotron build fix

Revisions pulled up:
- textproc/p5-XML-Sablotron/distinfo                            1.4
- textproc/p5-XML-Sablotron/patches/patch-DOM_DOM_xsh          1.1
- textproc/p5-XML-Sablotron/patches/patch-Processor_Processor_h 1.1

---
  Module Name: pkgsrc
  Committed By: dholland
  Date: Sat Oct 15 17:53:51 UTC 2011

  Modified Files:
  pkgsrc/textproc/p5-XML-Sablotron: distinfo
  Added Files:
  pkgsrc/textproc/p5-XML-Sablotron/patches: patch-DOM_DOM_xsh
      patch-Processor_Processor_h

  Log Message:
  Fix build with perl 5.14... I think. Someone who actually knows how to
  write Perl bindings should double-check this.

  XXX: This will almost certainly not work on LP64 platforms as it casts
  XXX: Perl-provided pointers to int and back. However, fixing this
  XXX: requires changing the API of the parent Sablotron package, which
  XXX: doesn't seem like a great idea at the moment.

(sbd)

2011-10-22 07:01:25 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3573 - requested by taca
lang/php53 security update

Revisions pulled up:
- lang/php53/Makefile                                          1.18
- lang/php53/Makefile.php                                      1.9-1.10
- lang/php53/distinfo                                          1.23-1.26
- lang/php53/patches/patch-Zend_zend__builtin__functions.c      1.1-1.2
- lang/php53/patches/patch-as                                  1.1

---
  Module Name: pkgsrc
  Committed By: jklos
  Date: Thu Oct  6 05:34:00 UTC 2011

  Modified Files:
  pkgsrc/lang/php53: distinfo
  Added Files:
  pkgsrc/lang/php53/patches: patch-as

  Log Message:
  Atomic operations via gcc are not supported on many archs. Allow them only
    on amd64, powerpc, i386 and alpha.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Oct 20 12:38:24 UTC 2011

  Modified Files:
  pkgsrc/lang/php53: Makefile.php distinfo

  Log Message:
  Re-add suhosin-patch to distinfo.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Oct 20 12:39:33 UTC 2011

  Modified Files:
  pkgsrc/lang/php53: Makefile.php

  Log Message:
  Revert accidental commit with previous commit.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Oct 20 13:32:20 UTC 2011

  Modified Files:
  pkgsrc/lang/php53: Makefile distinfo
  Added Files:
  pkgsrc/lang/php53/patches: patch-Zend_zend__builtin__functions.c

  Log Message:
  Add fix for 2011-3379 from r317183 from PHP's repository.

  Bump PKGREVISION.

---
  Module Name: pkgsrc
  Committed By: taca
  Date: Thu Oct 20 14:30:55 UTC 2011

  Modified Files:
  pkgsrc/lang/php53: distinfo
  pkgsrc/lang/php53/patches: patch-Zend_zend__builtin__functions.c

  Log Message:
  A small correction in comment text of the patch.

(sbd)

2011-10-22 02:08:31 UTC MAIN commitmail json YAML

+ mysql-client-5.5.17, mysql-server-5.5.17.

(taca)

2011-10-22 01:41:27 UTC MAIN commitmail json YAML

Note update of devel/p5-Tie-Cache-LRU, www/p5-Tatsumaki and
mail/p5-Mail-ListDetector.

(hiramatsu)

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

Update p5-Mail-ListDetector to 1.04.

Changes from previous:
1.02 14 Nov 2009
  - Fix CPAN RT bug 35320 - add missing dependency
  - Add Test::Kwalitee to ensure we always have kwalitee.
  - Add github repo http://github.com/mstevens/Mail--ListDetector

1.03 30 Jun 2010
  - Make license more explicit

1.04 19 Feb 2011
  - Fix pod warnings.

(hiramatsu)

2011-10-22 01:39:58 UTC MAIN commitmail json YAML

Update p5-Tatsumaki to 0.1013.

Change from previous;
0.1013  Thu Jul  7 11:49:18 PDT 2011
        - Added $self->binary(1) in Handler classes to indicate binary responses (gbarr, mateu)
        - Allow $self->json to be set to customize the way JSON is encoded (ask)

0.1012  Sun Feb 13 20:01:46 PST 2011
        - No code changes. Updated terribly outdated Tatsumaki.pm POD

0.1011  Tue Dec 21 11:49:49 PST 2010
        - Fixed to use $r->parameters to make it work with newer Plack::Request
        - Fixed MessageQueue leak when long-poll client immediately reconnects after disconnection (mash)

(hiramatsu)

2011-10-22 01:39:30 UTC MAIN commitmail json YAML

Update p5-Tie-Cache-LRU to 20110205.

Change from previous:
20110205  Sat, 05 Feb 2011 14:57:08 +1100
    Misc
    * Clarified the license

(hiramatsu)

2011-10-21 23:30:47 UTC MAIN commitmail json YAML

Updated devel/mk-configure to 0.21.2

(cheusov)

2011-10-21 23:30:31 UTC MAIN commitmail json YAML

Update to 0.21.2
  mkc_check_compiler has been reimplemented. This fixes problems
  on system with /bin/sh == bash (affected versions: 0.21.1)
  and makes it drammatically faster.

(cheusov)

2011-10-21 21:44:54 UTC MAIN commitmail json YAML

Added archivers/zutils version 0.9

(ryoon)

2011-10-21 21:44:11 UTC MAIN commitmail json YAML

2011-10-21 21:43:29 UTC MAIN commitmail json YAML

Conflict with lzip<1.12

(ryoon)

2011-10-21 21:41:09 UTC MAIN commitmail json YAML

Import zutils-0.9 as archivers/zutils

Zutils is a collection of utilities able to deal with any combination
of compressed and non-compressed files transparently. If any given
file, including standard input, is compressed, its decompressed
content is used. Compressed files are decompressed on the fly; no
temporary files are created. These utilities are not wrapper scripts
but safer and more efficient C++ programs. In particular the
"--recursive" option is very efficient in those utilities supporting it.

The provided utilities are:
Zcat - Decompresses and copies files to standard output.
Zcmp - Decompresses and compares two files byte by byte.
Zdiff - Decompresses and compares two files line by line.
Zgrep - Decompresses and searches files for a regular expression.
Ztest - Tests integrity of compressed files.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(ryoon)

2011-10-21 21:38:28 UTC MAIN commitmail json YAML

2011-10-21 21:28:40 UTC MAIN commitmail json YAML

Remove lzip

(ryoon)

2011-10-21 21:28:11 UTC MAIN commitmail json YAML

Updated archivers/lzip to 1.12

(ryoon)

2011-10-21 21:26:47 UTC MAIN commitmail json YAML

Update to 1.12

* lzdiff and lzgrep are now separate package, zutils (not packaged yet).

Changelog:
2011-04-30  Antonio Diaz Diaz  <ant_diaz@teleline.es>

* Version 1.12 released.
* main.cc: Added new option `-F, --recompress'.
* encoder.h (update_prices): Update high length symbol prices
  independently of the value of `pos_state'. This gives better
  compression for large values of `--match-length' without being
  slower.
* encoder.h encoder.cc: Optimize pair price calculations. This
  reduces compression time for large values of `--match-length'
  by up to 6%.
* Compression time of option `-0' has been reduced by 2%.
* main.cc (decompress): Print only one status line for each
  multimember file when only one `-v' is specified.
* main.cc (decompress): Print up to 6 bytes of trailing garbage
  when `-vvvv' is specified.
* main.cc (open_instream): Do not show the message
  " and `--stdout' was not specified" for directories, etc.
* lziprecover.cc: If `-v' is not specified show errors only.
* testsuite/unzcrash.cc: Use Arg_parser.
* testsuite/unzcrash.cc: Added new options `-b', `-p' and `-s'.

2010-09-16  Antonio Diaz Diaz  <ant_diaz@teleline.es>

* Version 1.11 released.
* Added new option `-0' which produces a compression speed and
  ratio comparable to those of `gzip -9'.
* fast_encoder.h fast_encoder.cc: New files.
* main.cc: Match length limit set by options -1 to -8 has been
  reduced to extend range of use towards gzip. Lower numbers now
  compress less but faster. (-1 now takes 43% less time for only
  20% larger compressed size).
* encoder.cc: Compression of option -9 has been slightly increased.
* lziprecover.cc: Added new option `--merge' which tries to
  produce a correct file merging the good parts of two or more
  damaged copies.
* lziprecover.cc: Added new option `--repair' for repairing a
  1-byte error in single-member files.
* decoder.cc (decode_member): Detect file errors earlier to
  improve efficiency of lziprecover's new repair capability.
  This change also prevents (harmless) access to uninitialized
  memory when decompressing a corrupt file.
* lziprecover.cc: Added new option `--force'.
* lziprecover.cc: Added new option `--output'.
* lziprecover.cc: Added new option `--split' to select the until
  now only operation of splitting multimember files.
* lziprecover.cc: If no operation is specified, warn the user
  and do nothing.
* main.cc: Fixed warning about fchown's return value being ignored.
* decoder.cc: `-tvvvv' now also shows compression ratio.
* main.cc: Set stdin/stdout in binary mode on MSVC and OS2.
* New examples have been added to the manual.
* testsuite: `test1' renamed to `test.txt'. Added new tests.
* Matchfinder types HC4 (4 bytes hash-chain) and HT4 (4 bytes
  hash-table) have been tested and found no better than the
  current BT4.

2010-04-05  Antonio Diaz Diaz  <ant_diaz@teleline.es>

* Version 1.10 released.
* decoder.h: Input_buffer integrated in Range_decoder.
* main.cc: File specified with option `-o' is now created with
  mode 0666 if umask allows it, deleted if interrupted by user.
* main.cc: New constant `o_binary'.
* main.cc: Dictionary size for options -2, -3, -4 and -8 has
  been changed to improve linearity of compressed sizes.
* lzip.h: Fixed warnings produced by over-optimization (-O3).
* Makefile.in: Added quotes to directory names.

2010-01-17  Antonio Diaz Diaz  <ant_diaz@teleline.es>

* Version 1.9 released.
* main.cc (main): Return at least 1 if closing stdout fails.
* Makefile.in: Added `--name' option to help2man invocation.
* testsuite/check.sh: Use `test1' instead of `COPYING' for testing.

2009-09-02  Antonio Diaz Diaz  <ant_diaz@teleline.es>

* Version 1.8 released.
* Compression time has been reduced by 4%.
* Lzdiff and lzgrep have been moved to the new package zutils.
* Fixed warnings on sistems where uint32_t != unsigned int.

(ryoon)

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

Updated www/p5-AnyEvent-HTTPD to 0.93.
Updated security/p5-Authen-Htpasswd to 0.171.

(hiramatsu)

2011-10-21 21:09:43 UTC MAIN commitmail json YAML

Update p5-Authen-Htpasswd to 0.171.

Changes from previous;
0.171  Tue Aug 09 13:09:00 BST 2011
    - re-disting because I failed to notice MYMETA.* in the dist

0.170  Tue Aug 09 12:17:00 BST 2011
    - fix user inflation code to handle arbitrary usernames

(hiramatsu)

2011-10-21 21:09:10 UTC MAIN commitmail json YAML

Update p5-AnyEvent-HTTPD to 0.93.

Changes from previous:
0.93    Thu Aug  4 10:38:09 CEST 2011
        - made it possible to remove default headers
          completely, thanks go to Chris Kastorff for providing a patch.
        - applied also a fix for case handling of the headers,
          thanks go to the patch from Chris Kastorff.
        - fixed some tests. I hate it when all bugs that
          are found via CPAN Testers are bugs in the tests.
        - fixed that the URL returned by Request::url method will
          now also contain the query string (thanks to art sackett for
          spotting this).

0.92    Tue Mar  1 11:46:14 CET 2011
        - added simple SSL/TLS support.
        - removed from tests from the distribution.
        - replaced 01_basic_request.t with a non-wget variant for CPAN.

0.91    Wed Feb  2 15:21:02 CET 2011
        - set the Date header correctly.
        - append a newline to error messages.
        - hopefully improved connection closing mechanism.
        - don't send body when responding to a HEAD request.

0.90    Mon Jan 31 13:04:45 CET 2011
        - fixed a small thing with response on dead connections.
        - added small example of 'request' event usage.
        - make Content-Length: not be empty.
        - hand HEAD requests down to the event handlers.
        - added allowed_methods support from nrh.
        - don't force cache policy anymore.

(hiramatsu)

2011-10-21 20:58:08 UTC MAIN commitmail json YAML

Remove mp3splt

(ryoon)

2011-10-21 20:57:30 UTC MAIN commitmail json YAML

Updated audio/libmp3splt to 0.7
Updated audio/mp3splt to 2.4
Updated audio/mp3splt-gtk to 0.7

(ryoon)

2011-10-21 20:56:00 UTC MAIN commitmail json YAML

Update to 0.7

* Introduce gnome option.

Changelog:
mp3splt-gtk version 0.7

- added trimming using silence detection
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions: (libmp3splt)
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- fixed bug: don't show split files when setting silence splitpoints or trim splitpoints
- fixed #3355210 - gtk not intuitive - split button with text and shadow
- fixed windows bug to take translations from the current directory (+libmp3splt)
- fixed windows bug with wide characters in directory path of executable (+libmp3splt)

(ryoon)

2011-10-21 20:53:29 UTC MAIN commitmail json YAML

Update to 2.4

Changelog:
#mp3splt version 2.4

- added negative splitpoints support with EOF-min.sec[.0-99] (only works when the input is not seekable)
- added trimming using silence detection with -r (use with -p th to set the threshold)
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions: (libmp3splt)
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- fixed windows bug to take translations from the current directory (+libmp3splt)
- fixed windows bug with wide characters in directory path of executable (+libmp3splt)

#mp3splt version 2.3a

- fixed tracktype.org issue (libmp3splt)

#mp3splt version 2.3

- new '-G' option: set tags from filename regular expression
- more translations (project mp3splt-gtk on transifex)
- added genre tag to custom tags and to output format (libmp3splt)
- support for the FILE attribute in CUE files - #1353726 (libmp3splt)
- fixed CUE import bug - spaces at the end are now correctly wiped out (libmp3splt)
- fixed bug #3114384: introduced back the 'file might be VBR' warning (libmp3splt)
- fixed bug #3034474: genre tag problems (libmp3splt)
- fixed ogg stream issues - #2861898 & #1078018 (libmp3splt)

(ryoon)

2011-10-21 20:51:50 UTC MAIN commitmail json YAML

Update to 0.7

* Remove LOCALBASE
* Use pkg-config for library detection (pcre and so on)

Changelog:
libmp3splt version 0.7
-------------------------------------------------------------

- added negative splitpoints support: closes #3005266, #1659204
- added trimming using silence detection: closes #3016524, #3141369, #880051, #1576489
- fixed bug #3034474: genre tag problem + original tags are now correctly copied, with two exceptions:
* only one artist, album, title are supported
* for mp3's, the total tracknumber is not yet supported
- rewritten internet part (tracktype, freedb)
- fixed windows bug to take translations from the current directory
- fixed windows bug with wide characters in directory path of executable

libmp3splt version 0.6.1a
-------------------------------------------------------------

- fixed tracktype.org issue

libmp3splt version 0.6.1
-------------------------------------------------------------

- added genre tag to custom tags and to output format (@g)
- support for the FILE attribute in CUE files - #1353726
- support for setting tags from filename regular expression
- added cutter as unit testing framework in libmp3splt
- fixed CUE import bug - spaces at the end are now correctly wiped out
- fixed bug #3114384: introduced back the 'file might be VBR' warning
- fixed bug #3034474: genre tag problems
- fixed ogg stream issues - #2861898 & #1078018
- fixed bug: setting the saved end time on wrong splitpoint indexes
- more translations (project mp3splt-gtk on transifex)
- and many other bugs ...

(ryoon)

2011-10-21 19:54:58 UTC MAIN commitmail json YAML

2011-10-21 19:38:46 UTC MAIN commitmail json YAML

Remove enscript

(ryoon)

2011-10-21 19:38:28 UTC MAIN commitmail json YAML

Updated print/enscript to 1.6.5.2

(ryoon)

2011-10-21 19:37:29 UTC MAIN commitmail json YAML

Update to 1.6.5.2

* Set LICENSE.
* Make pkglint happy

Changelog:
Summary of changes in enscript version 1.6.5.2:

* Fix CFG_FATAL macro in util.c; this prevents a segmentation fault
  when the configuration file contains unknown parameters. (Savannah
  bug #28769)

* Fix segmentation fault with line lengths over 90 characters.
  (Savannah bug #29198)

Summary of changes in enscript version 1.6.5.1:

* Typo corrections in the manual pages.

* Reorganise source tree to use a single ChangeLog file.

* Actually ship f90.st in the tarball.

* Reorganise INSTALL and README.

Noteworthy changes in enscript version 1.6.5:

* New maintainer.

* Licensing change: GNU Enscript is now distributed under version 3 or
  later of the GNU GPL.

* Build system fixes - distcheck now passes.

* At least four security bug fixes:
  - CAN-2004-1184
  - CAN-2004-1185
  - CAN-2004-1186
  - CVE-2008-3863, CVE-2008-4306

* Syntax highlighting fixes.
  - shell escaping rules from Shawn McMahon.
  - JavaScript regexps now recognised.
  - New highlighting rules for Fortran 90 from David Bowler.

See changelogs for more detailed notes.

(ryoon)

2011-10-21 18:31:13 UTC MAIN commitmail json YAML

Updated xen 4.1 packages to 4.1.2

(cegger)

2011-10-21 18:27:21 UTC MAIN commitmail json YAML

Update to Xen 4.1.2

Fixes/features include:
* New XL toolstack
* kexec/kdump
* Remus
* Device passthrough to HVM guests
* Interrupt handling
* Support for Supervisor Mode Execution Protection (SMEP)

(cegger)

2011-10-21 18:26:58 UTC MAIN commitmail json YAML

Update to Xen 4.1.2

Fixes/features include:
* New XL toolstack
* kexec/kdump
* Remus
* Device passthrough to HVM guests
* Interrupt handling
* Support for Supervisor Mode Execution Protection (SMEP)

(cegger)

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

Updated emulators/suse113_qt4 to 11.3nb1

(chs)

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

update to qt4 4.6.3-2.5.1.
fixes CVE-2011-3193, CVE-2011-3194.

(chs)

2011-10-21 16:02:58 UTC MAIN commitmail json YAML

Updated emulators/suse113_openssl to 11.3nb5

(chs)

2011-10-21 15:56:37 UTC MAIN commitmail json YAML

update to openssl 1.0.0-6.11.1.
fixes CVE-2011-3207, CVE-2011-3210.

(chs)

2011-10-21 14:50:09 UTC MAIN commitmail json YAML

2011-10-21 13:41:11 UTC MAIN commitmail json YAML

+ samba-3.6.1.

(taca)

2011-10-21 13:33:28 UTC MAIN commitmail json YAML

Remove abcmidi

(ryoon)

2011-10-21 13:33:01 UTC MAIN commitmail json YAML

Updated audio/abcmidi to 20111019

(ryoon)

2011-10-21 13:31:55 UTC MAIN commitmail json YAML

2011-10-21 12:39:35 UTC MAIN commitmail json YAML

added devel/lettuce
Behaviour-driven development test tool

(reed)

2011-10-21 12:36:33 UTC MAIN commitmail json YAML

Remove abcm2ps

(ryoon)

2011-10-21 12:36:12 UTC MAIN commitmail json YAML

Updated print/abcm2ps to 6.5.2

(ryoon)

2011-10-21 12:35:30 UTC MAIN commitmail json YAML

Import lettuce 1.1.33

Lettuce is a simple behaviour-driven development (BDD) tool based
on Cucumber. The features of the system (to be tested) are defined
in a natural language with scenarios describing the features. Steps
are written in python.

(I packaged this for my work at ISC. We are developing a
DNS server test suite to be usable for various DNS servers
for compliance testing.)

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(reed)

2011-10-21 12:35:18 UTC MAIN commitmail json YAML

Update to 6.5.2

Changelog:
* SVG output related bug fix
* Some bug fix and improvements.
* In detal, see Changes file.

(ryoon)

2011-10-21 10:08:50 UTC MAIN commitmail json YAML

Added devel/p5-Data-Integer version 0.004.
Updated databases/p5-Rose-DB to 0.764.

(hiramatsu)

2011-10-21 10:07:52 UTC MAIN commitmail json YAML

Update p5-Rose-DB to 0.764.

Changes from previous:
0.764 (10.18.2011) - John Siracusa <siracusa@gmail.com>

    * Use ENGINE=InnoDB instead of TYPE=InnoDB in MySQL table creation
      statements to avoid an incompatibility with MySQL 5.5 (RT 71757)

0.763 (12.30.2010) - John Siracusa <siracusa@gmail.com>

    * Support for Rose::DB::Object 0.794
    * Return from rollback() early if AutoCommit is set.

(hiramatsu)

2011-10-21 10:06:57 UTC MAIN commitmail json YAML

Add p5-Data-Integer.

(hiramatsu)

2011-10-21 10:05:46 UTC MAIN commitmail json YAML

Import perl module Data::Integer into devel/p5-Data-Integer, to prepare
to import DBIx::Class::PassphraseColumn.

This module is about the native integer numerical data type. A native
integer is one of the types of datum that can appear in the numeric part
of a Perl scalar. This module supplies constants describing the native
integer type.

There are actually two native integer representations: signed and
unsigned. Both are handled by this module.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(hiramatsu)

2011-10-21 07:15:26 UTC MAIN commitmail json YAML

Note update of devel/p5-Module-CoreList, devel/p5-MooseX-Getopt and
www/p5-Pod-POM-Web.

(hiramatsu)

2011-10-21 07:14:25 UTC MAIN commitmail json YAML

Update p5-Pod-POM-Web to 1.17.

Changes from previous:
1.17 01.05.2011
  - skip tests on systems that do not have 'perlfunc.pod' or 'perlvar.pod'

1.16 28.04.2011
  - Export 'server' and 'index' functions into main:: namespace if
    called from command-line (suggested by DOLMEN -- Olivier Mengu辿)
  - fix titles containing POD markup
  - explicit error message if perlfunc or perlvar are not installed

1.15 20.11.2010
  - H1 header can be either NAME or TITLE
  - adapt to new structure of perlvar.pod in bleadperl
  - CSS fix for diplaying AnnoCPAN notes
  - dependency on Pod::POM 0.25

(hiramatsu)

2011-10-21 07:13:58 UTC MAIN commitmail json YAML

Update p5-MooseX-Getopt to 0.37.

Changes from previous:
0.37 Wed 30 Mar 2011
  * Fix missing dependency. (RT#67077)

0.36 Tue 29 Mar 2011
  * Fix dist.ini 'Prereq' into 'Prereqs' (Damien Krotkine)
  * MooseX::Getopt::GLD
    - change it to a MooseX::Role::Parameterized, so that it accepts
      'getopt_conf' parameter (Damien Krotkine)

0.35 Wed 09 Feb 2011
  * Fix missed change from Test::Exception to Test::Fatal

0.34 Tue 08 Feb 2011
  * The test suite now uses Test::Fatal instead of Test::Exception. (Karen
    Etheridge)
  * Move most of new_with_options logic into separate publically
    accessible process_argv method, so that arg processing can be
    done without actually creating object (Jonathan Swartz)

(hiramatsu)

2011-10-21 07:10:21 UTC MAIN commitmail json YAML

Update p5-Module-CoreList to 2.56.

Changes from previous:
2.56 Thu Oct 20 2011
  - Updated for v5.15.4

2.56 Tues Sept 20 2011
  - Updated for v5.15.3
  - Corrected version of Module::CoreList shipped
    with v5.10.0
  - Corrected Errno being shipped with v5.6.0 and v5.6.1
  - Corrected VMS::Filespec being shipped with v5.12.3
  - Corrected DB_File being shipped with v5.8.2
  - Added http://perlpunks.de/corelist to SEE ALSO

2.55 Sat Aug 20 2011
  - Updated for v5.15.2

2.54 Wed Jul 20 2011
  - Updated for v5.15.1

2.53 Thu Jul 14 2011
  - Added release date option '-r' to corelist

2.52 Mon Jul 4  2011
  - [rt.cpan.org #69108] Extraneous modules listed
    reported by Dee Newcum

2.51
  - Updated for v5.15.0

2.50
  - Updated for v5.12.4

2.49
  - Updated for v5.14.0

2.46 Sun Mar 20 2011
  - Resolved RT #59511
  - Updated for v5.13.11

2.45 Sun Feb 20 2011
  - Bumped the version number and data for the 5.13.10 release

2.44    Sat Jan 22 2011
  - Merged v5.12.3 and v5.13.9

2.43    Sat Jan 22 2011
  - Updated for v5.12.3

2.42_01 Thu Jan 20 2011
  - Updated for v5.13.9

2.42    Mon Dec 20 2010
  - Updated for v5.13.8

2.41    Sat Nov 20 2010
  - Updated for v5.13.7

2.40    Wed Oct 20 2010
  - Updated for v5.13.6

(hiramatsu)

2011-10-21 06:10:21 UTC MAIN commitmail json YAML

2011-10-21 05:24:13 UTC MAIN commitmail json YAML

Remove (trial) workaround for getaddrinfo() on Linux added over 5 years ago.
It break the feature in these days.

(obache)

2011-10-21 04:47:22 UTC MAIN commitmail json YAML

2011-10-21 04:29:32 UTC MAIN commitmail json YAML

2011-10-21 04:29:23 UTC MAIN commitmail json YAML

2011-10-21 04:05:20 UTC MAIN commitmail json YAML

Note update of textproc/p5-Regexp-Common, databases/p5-DBIx-Class-Fixtures
and www/p5-Dancer.

(hiramatsu)

2011-10-21 04:04:27 UTC MAIN commitmail json YAML

Update p5-Dancer to 1.3072.

Changes are:
- 2 security fixes.
- Documentation improvements including tutorials.
- bugfixes

for complete list, look into CHANGES file contained in the distfile.

(hiramatsu)

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

Update p5-DBIx-Class-Fixtures to 1.001013.

Changes from previous:
1.001013
- fixed functionality in last release by more deeply cloning parameters, which
  prevents bad things when parameters get deleted in the wrong places.  Also
  be sure we clear state properly after a dump.

1.001012
- Added new method 'available_config_sets' which returns and caches a list of
  all the json set configs found in the 'config_dir' directory.  This was added
  to make it easier when you need to dump all the fixtures programatically.
- Added method 'dump_config_sets' to let you dump more than one set at a time
  more easily
- Added method 'dump_all_config_sets' which helps automate dumping all your
  current config sets to a directory.

1.001011
- Added an excludes resultsource option to the ->dump({all=>1,...}) feature
- Allow you to directly set a configuration via a Perl HashRef instead of a
  JSON file.  Useful for testing and when you have simple or generated configs.
- New option to force use of ->create rather than ->populate.
- Fixed a bug in the test suite that would fail on certain JSON parsers

(hiramatsu)

2011-10-21 04:02:55 UTC MAIN commitmail json YAML

Update p5-Regexp-Common to 2011041701.

Changes from previous:
Version 2011041701 Sun Apr 17 14:22:58 CEST 2011
+ Fix documentation (matches should be match). Reported by cogent@cpan.org
  in RT ticket 2833.
+ Added patterns for JavaDoc comments. (RT 13174 by chris+rt@chrisdolan.net)

Version 2011041602 Sat Apr 16 17:06:28 CEST 2011
+ Fix typo in repository (avar@cpan.org)

Version 2011041601 Sat Apr 16 16:07:29 CEST 2011
+ Fix bugs 61712 & 6940: $RE {num} {decimal} and $RE {num} {real} no longer
  match a single dot.

(hiramatsu)

2011-10-21 03:09:48 UTC MAIN commitmail json YAML

Make sure not to build ext/psych.

(taca)

2011-10-20 16:32:57 UTC MAIN commitmail json YAML

2011-10-20 15:14:56 UTC MAIN commitmail json YAML

Note addition of devel/ruby-fiddle and textproc/ruby-psych packages which
are parts of ruby19 and update of lang/ruby19 package to 1.9.2pl290nb1.

(taca)

2011-10-20 15:13:25 UTC MAIN commitmail json YAML

Add two "used by" lines for devel/ruby-fiddle/Makefile and
textproc/ruby-psych/Makefile.

(taca)

2011-10-20 15:12:36 UTC MAIN commitmail json YAML

Make this package depend on devel/ruby-fiddle and textproc/ruby-psych.

Bump PKGREVISION.

(taca)

2011-10-20 15:11:02 UTC MAIN commitmail json YAML

Add and enable ruby-psych.

(taca)

2011-10-20 15:10:13 UTC MAIN commitmail json YAML

Importing textproc/ruby-psych 1.9.2pl290.  It is one of missing
parts from ruby19 package.


Psych is a YAML parser and emitter, actually a part of the
Ruby distribution.


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(taca)

2011-10-20 15:09:23 UTC MAIN commitmail json YAML

Add and enable ruby-fiddle.

(taca)

2011-10-20 15:08:12 UTC MAIN commitmail json YAML

Importing devel/ruby-fiddle version 1.9.2pl290.  It is one of missing
parts from ruby19 package.

Fiddle is the libffi wrapper library, actually a part of the
Ruby distribution.


Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(taca)

2011-10-20 14:30:55 UTC MAIN commitmail json YAML

2011-10-20 13:33:54 UTC MAIN commitmail json YAML

Note update of lang/php53 package to 5.3.8nb1.

(taca)

2011-10-20 13:32:20 UTC MAIN commitmail json YAML

2011-10-20 13:26:34 UTC MAIN commitmail json YAML

Remove aria2

(ryoon)

2011-10-20 13:26:14 UTC MAIN commitmail json YAML

Updated net/aria2 to 1.13.0

(ryoon)

2011-10-20 13:24:47 UTC MAIN commitmail json YAML

Update to 1.13.0

Changelog:
aria2 1.13.0
============

Release Note
------------

This release fixed libgcrypt version check error. Several command line
options were added. For details of each new option, read changes
below.  aria2 now returns error response if RPC request parameter has
wrong type.  For MinGW32 build, Unicode filenames support was added.

>From this release, aria2 uses libnettle and libgmp by default instead
of libgcrypt.  If you want to use libgcrypt, use configure options
--without-libnettle --with-libgcrypt.

Changes
-------

* Check libgcrypt version is greater or equal to required version.
  This will fixes Debian bug#642989.

* Added --piece-length option.  This option sets a piece length for
  HTTP/FTP downloads. This is the boundary when aria2 splits a
  file. All splits occur at multiple of this length. This option will
  be ignored in BitTorrent downloads.  It will be also ignored if
  Metalink file contains piece hashes.

* Throw exception if parameter has wrong type in RPC method.
  Formally, depending on the method implementation, this kind of
  error is just ignored and parameter is skipped. Now aria2 responds
  error for these cases. The required parameter checking is also
  reworked along with this change.

* Cleanup log message for binding server socket.

* Recognize tab as white space before option in -i list.

* Added geom parameter to --stream-piece-selector option.  If 'geom'
  is given, at the beginning aria2 selects piece which has minimum
  index like 'inorder', but it exponentially increasingly keeps space
  from previously selected piece. This will reduce the number of
  establishing connection and at the same time it will download the
  beginning part of the file first. This will be useful to view movie
  while downloading it.

* Added completedLength response key in aria2.getFiles RPC method

* Added #checksum help tag.

* Added --checksum option.  Added --checksum=TYPE=DIGEST option. This
  option sets checksum. TYPE is hash type. The supported hash type is
  listed in "Hash Algorithms" in "aria2c -v". DIGEST is hex digest.
  For example, setting sha-1 digest looks like this:
  sha-1=0192ba11326fe2298c8cb4de616f4d4140213838 This option applies
  only to HTTP(S)/FTP downloads.

* Added --hash-check-only opiton.  Added --hash-check-only opiton.
  If true is given, after hash check using --check-integrity option,
  abort download whether or not download is complete. The default
  value is false.

* Added --download-result option.  Added --download-result=OPT
  option.  This option changes the way "Download Results" is
  formatted. If OPT is 'default', print GID, status, average download
  speed and path/URI. If multiple files are involved, path/URI of
  first requested file is printed and remaining ones are omitted.  If
  OPT is 'full', print GID, status, average download speed,
  percentage of progress and path/URI. The percentage of progress and
  path/URI are printed for each requested file in each row.

* Added --rpc-allow-origin-all option.  This option adds
  Access-Control-Allow-Origin header field with value '*' to the RPC
  response.

* Ignore --out option supplied in command-line if -i is used.  You
  can still use out option in the text file specified in -i.

* Disable SSLv2 by default and optimize memory usage.
  Patch from Cristian Rodr鱈guez.

* Added libnettle and libgmp support.  libnettle and libgmp is used
  by default. Old implementation uses libgcrypt as default. If more
  and more Linux distributions offer libnettle linked GnuTLS, then
  this change decrease library dependency against libgcrypt and
  libgpg-error.  The current library detection for libnettle and
  libgmp is very simple, just use AC_SEARCH_LIBS.
  util::generateRandomData() was written using SimpleRandomizer, thus
  no external library dependency from this function.

* In MinGW32, open file with UNICODE filename and print them in ANSI.

(ryoon)

2011-10-20 12:39:33 UTC MAIN commitmail json YAML

Revert accidental commit with previous commit.

(taca)

2011-10-20 12:38:24 UTC MAIN commitmail json YAML

2011-10-20 12:29:57 UTC MAIN commitmail json YAML

Updated lang/sun-{jre,jdk}6 to 6.0.29.

(obache)

2011-10-20 12:28:09 UTC MAIN commitmail json YAML

Update sun-{jdk,jre}6 to 6.0.29, aka, 6u29.

Changes:

[Olson Data 2011g]
Java SE 6u29 contains Olson time zone data version 2011g. For more information,
refer to Timezone Data Versions in the JRE Software .

[Skipped Version Number]
Release Java SE 6u29 follows release Java SE 6u27. There is no publicly
available Java SE 6u28 release. Oracle used release version 6u28 for an internal
build, which was not necessary once the fixes delivered on Java SE 6u29 were
released.

[Blacklist Entries]
This update release includes the following new entries to the Blacklist:
* Cisco AnyConnect Mobility Client
* Microsoft UAG Client

[RMI Registry Issue]
A bug in the rmiregistry command included in this release may cause unintended
exceptions to be thrown when an RMI server attempts to bind an exported object
which includes codebase annotations using the "file:" URL scheme. The RMI
servers most likely to be effected are those which are invoked only by RMI
clients executing on the same host as the server.

RMI annotates codebase information as part of the serialized state of a remote
object reference to assist RMI clients in loading the required classes and
interfaces associated with the object at runtime. Exported objects which are
looked up in the RMI registry and invoked by RMI clients running on hosts other
than the server are usually annotated with codebase URL schemes, such as
"http:" or "ftp:" and these should continue to work correctly.

As a workaround, RMI servers can set the java.rmi.server.codebase property to
use codebase URLs other than the "file:" scheme for the objects they export.

[Bug Fixes]
This release contains fixes for security vulnerabilities. For more information,
please see Oracle Java SE Critical Patch Update advisory.

(obache)

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

2011-10-20 11:30:10 UTC MAIN commitmail json YAML

Remove unnecessary OWN_DIRS.

(wiz)

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

Added fonts/uni-vga version 1

(wiz)

2011-10-20 11:28:59 UTC MAIN commitmail json YAML

2011-10-20 11:28:43 UTC MAIN commitmail json YAML

Initial import of uni-vga-1, packaged for wip by Moritz Wilhelmy

Monospaced X11 bitmap font; Descendant of the original IBM VGA font with
additional Unicode glyphs.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-20111020

(wiz)

2011-10-20 10:29:07 UTC MAIN commitmail json YAML

Updated devel/gettext to 0.18.1.1nb1

(adam)

2011-10-20 10:22:52 UTC MAIN commitmail json YAML

Fix conflict with other gettext packages

(adam)

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

Replace PHP_VERSION_REQD with PHP_VERSIONS_ACCEPTED. This unbreaks bulk builds (pbulk and distbb)

(cheusov)

2011-10-20 06:02:09 UTC MAIN commitmail json YAML

devel/gps: patch-af omitted from last commit

patch-af should have been part of the last changeset of devel/gps.
The distinfo already reflects the change to this patch.

(marino)

2011-10-20 04:01:35 UTC pkgsrc-2011Q3 commitmail json YAML

2011-10-20 04:00:07 UTC MAIN commitmail json YAML

2011-10-20 03:59:45 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3572 - requested by sbd
lang/python24: build fix
lang/python25: build fix
lang/python26: build fix
lang/python27: build fix
lang/python31: build fix
security/cyrus-sasl: build fix

Revisions pulled up:
- lang/python24/distinfo                                        1.36
- lang/python24/patches/patch-am                                1.7
- lang/python25/distinfo                                        1.18
- lang/python25/patches/patch-am                                1.8
- lang/python26/distinfo                                        1.39
- lang/python26/patches/patch-am                                1.17
- lang/python27/distinfo                                        1.10
- lang/python27/patches/patch-am                                1.4
- lang/python31/distinfo                                        1.4
- lang/python31/patches/patch-am                                1.3
- security/cyrus-sasl/Makefile                                  1.58

---
  Module Name: pkgsrc
  Committed By: sbd
  Date: Tue Oct 18 21:59:19 UTC 2011

  Modified Files:
  pkgsrc/lang/python24: distinfo
  pkgsrc/lang/python24/patches: patch-am
  pkgsrc/lang/python25: distinfo
  pkgsrc/lang/python25/patches: patch-am
  pkgsrc/lang/python26: distinfo
  pkgsrc/lang/python26/patches: patch-am
  pkgsrc/lang/python27: distinfo
  pkgsrc/lang/python27/patches: patch-am
  pkgsrc/lang/python31: distinfo
  pkgsrc/lang/python31/patches: patch-am
  pkgsrc/security/cyrus-sasl: Makefile

  Log Message:
  Deal with the fact that if /usr/include/ndbm.h exists on Linux it probably
  belongs to gdbm_compat.  I.E. _don't_ use ndbm on Linux.

(tron)

2011-10-20 03:42:30 UTC MAIN commitmail json YAML

put back libpcap deleted in last update

(jnemeth)

2011-10-20 01:50:00 UTC pkgsrc-2011Q3 commitmail json YAML

2011-10-20 01:47:40 UTC pkgsrc-2011Q3 commitmail json YAML

Pullup ticket #3567 - requested by obache
multimedia/vlc: security patch

Revisions pulled up:
- multimedia/vlc/Makefile                                      1.118
- multimedia/vlc/distinfo                                      1.50
- multimedia/vlc/patches/patch-au                              1.9

---
  Module Name: pkgsrc
  Committed By: drochner
  Date: Fri Oct  7 12:30:17 UTC 2011

  Modified Files:
  pkgsrc/multimedia/vlc: Makefile distinfo
  Added Files:
  pkgsrc/multimedia/vlc/patches: patch-au

  Log Message:
  Add patch from upstream to fix a NULL dereference vulnerability in the
  HTTP and RTSP server component (possible DOS)

(tron)

2011-10-20 01:25:03 UTC MAIN commitmail json YAML

teTeX/module.mk is no longer needed.

(minskim)

2011-10-20 01:04:56 UTC MAIN commitmail json YAML

Updated sysutils/p5-SSH-Batch to 0.028.
Updated www/p5-Jemplate to 0.261.

(hiramatsu)

2011-10-20 01:04:12 UTC MAIN commitmail json YAML

Update p5-Jemplate to 0.261.

Changes from previous:
---
version: 0.261
date: Tuesday April 27 09:35:06 PDT 2010
changes:
- Fixed rt56956 with test case - DIV operator broken (Agent Zhang)

---
version: 0.260
date: Monday April 26 12:03:40 PDT 2010

---
version: 0.25_2
date: Saturday April 24 18:48:53 PDT 2010
changes:
- Implemented rt4308 - Capture implementation (Tom Molesworth)
- Added test for rt37570 - List method for lists (fixed in 5eaf340da...)

---
version: 0.25_1
date: Thursday April 22 17:58:53 PDT 2010
changes:
- Fixed rt53454 with test case - Support rudimentary array range operator
- Fixed rt53453 with test case - Make Jemplate slice like TT slice
- Fixed rt53967 with test case - Compiler double-dot path fail
- Added test case for rt37539 - Intermediate instantiation
- Added test case for rt37540 - Iterate over empty object
- Added test case for rt37895 - Inconsistent jemplate version

---
version: 0.25
date:    Wednesday April 21 13:44:19 PDT 2010
changes:
- release

---
version: 0.24_4
date:    Saturday January 09 17:06:40 PST 2010
changes:
- added .pairs (VMethod) functionality with tests
- fixed quoted.t failing test

---
version: 0.24_3
date:    Mon Jun 8 2009
changes:
- fixed bug, related to empty template body (http://rt.cpan.org/Public/Bug/Display.html?id=37061)
- fixed bug in Parser.yp, which produced compilation error for macroses
- fixed "intermediate instantiation" issue (http://rt.cpan.org/Public/Bug/Display.html?id=37539)
- fixed "iteration over empty object" issue (http://rt.cpan.org/Public/Bug/Display.html?id=37540)
- added and tested MACRO directive
- added PRE_PROCESS and POST_PROCESS configuration options
- added and tested global scope access via GLOBAL modifier (GLOBAL.jQeuery etc)
- added dummy LOCAL modifier, for symmetry
- added "init" method for Jemplate singleton
- added experimental RAW directive (RAW jQuery, equivalent of jQuery = GLOBAL.jQuery)

VMethods:
- added "list" for lists (http://rt.cpan.org/Public/Bug/Display.html?id=37570)
- added "item" for hashes
- fixed "import" for hashes

Test suite:
- combined back to a single copy

Patches:
- Integrated patch from RT#37895

version: 0.24_2
date: Monday June 08 10:37:54 PDT 2009
changes:
- Fix to get tests working on MSWin32 (rt23883)

---
version: 0.24
date:    Fri Sep 19 15:09:35 PDT 2008
changes:
- Convert tests to standard Test.Base setup!

---
version: 0.23_1
date: Monday August 18 15:22:03 PDT 2008
changes:
- Fixed issue with runtime_source_code that broke Catalyst::View::Jemplate
- Some beta MACRO functionality
- Ingy refactored tjs/ into tests/

(hiramatsu)

2011-10-20 01:03:47 UTC MAIN commitmail json YAML

Update p5-SSH-Batch to 0.028.

Changes from previous:
0.028
- atnodes: fixed tmp file leaks.
- atnodes: automatically check if openssh version >= 4.1.

0.027
- added support for the environment SSH_BATCH_RC to specify a
  different file name than the default ~/.fornodesrc.
  thanks Mithun Ayachit.
- updated host variable format check to /\w[-\.\w]*/.
- added the SSH_BATCH_PASSPHRASE environment for -P and
  SSH_BATCH_PASSWORD env for -w.
- added passphrase support.
- added some docs for tty option.

0.024
- tonodes: added rsync archive, update and compress mode. (liseen)
- fornodes: trim expressions when parsing them. (liseen)
- atnodes: added the use-tty option.
- fornodes: now we automatically create a default ~/.fornodesrc when it's missing.
- atnodes: added the "StrictHostChecking no" option for the first login.

(hiramatsu)

2011-10-19 23:43:56 UTC MAIN commitmail json YAML

2011-10-19 23:42:06 UTC MAIN commitmail json YAML

Import tex-cjk-doc-4.8.2 as print/tex-cjk-doc.

This is documentation for tex-cjk.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 23:41:53 UTC MAIN commitmail json YAML

Import tex-cjk-4.8.2 as print/tex-cjk.

CJK is a macro package for LaTeX, providing simultaneous support for
various Asian scripts in many encodings (including Unicode): Chinese
(both traditional and simplified), Japanese, Korean, and Thai. A
special add-on feature is an interface to the Emacs editor
(cjk-enc.el) which gives simultaneous, easy-to-use support to a bunch
of other scripts in addition to the above: Cyrillic, Greek,
Latin-based scripts, Russian, and Vietnamese.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:53:35 UTC MAIN commitmail json YAML

2011-10-19 22:52:32 UTC MAIN commitmail json YAML

Import cjkutils-4.8.2 as print/cjkutils.

This package provides utilities for CJK LaTeX.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:51:58 UTC MAIN commitmail json YAML

Import tex-cjkutils-doc-4.8.2 as print/tex-cjkutils-doc.

This is documentation for tex-cjkutils.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:51:48 UTC MAIN commitmail json YAML

Import tex-cjkutils-4.8.2 as print/tex-cjkutils.

This package provides configuration files for cjkutils.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:20:31 UTC MAIN commitmail json YAML

2011-10-19 22:19:40 UTC MAIN commitmail json YAML

Import tex-wadalab-doc-2011 as fonts/tex-wadalab-doc.

This is documentation for tex-wadalab.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:19:30 UTC MAIN commitmail json YAML

Import tex-wadalab-2011 as fonts/tex-wadalab.

These are font bundles for the Japanese Wadalab fonts which work with
the CJK package. All subfonts now have glyph names compliant to the
Adobe Glyph List, making ToUnicode CMaps in PDF documents (created
automatically by dvipdfmx) work correctly. All font bundles now contain
virtual Unicode subfonts.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:14:35 UTC MAIN commitmail json YAML

2011-10-19 22:13:49 UTC MAIN commitmail json YAML

Import tex-thailatex-0.4.5 as print/tex-thailatex.

ThaiLaTeX enables typesetting Thai with standard LaTeX document classes.
It is designed to become a part of babel, and may be used as such after
a (small) patch to babel itself.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:10:15 UTC MAIN commitmail json YAML

2011-10-19 22:08:50 UTC MAIN commitmail json YAML

Import tex-norasi-c90-2011 as fonts/tex-norasi-c90.

This package contains files to support for the norasi font in
thailatex.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:07:09 UTC MAIN commitmail json YAML

Import tex-garuda-c90-2011 as fonts/tex-garuda-c90.

This package contains files to support for the garuda font in
thailatex.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

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

2011-10-19 22:02:38 UTC MAIN commitmail json YAML

Import tex-cns-doc-2011 as fonts/tex-cns-doc.

This is documentation for tex-cns.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 22:02:28 UTC MAIN commitmail json YAML

Import tex-cns-2011 as fonts/tex-cns.

This package contains CNS bitmap fonts planes 1-7 and a Big 5 encoded
font built up from CNS bitmap fonts planes 1-3.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 21:44:37 UTC MAIN commitmail json YAML

Note removal of tex-fonts-uhc-{base,extra}.

(minskim)

2011-10-19 21:43:39 UTC MAIN commitmail json YAML

2011-10-19 21:40:22 UTC MAIN commitmail json YAML

2011-10-19 21:39:29 UTC MAIN commitmail json YAML

Import tex-uhc-doc-2011 as fonts/tex-uhc-doc.

This is documentation for tex-uhc.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 21:39:18 UTC MAIN commitmail json YAML

Import tex-uhc-2011 as fonts/tex-uhc.

Support for Korean documents written in Korean standard KSC codes for
LaTeX2e.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 21:30:55 UTC MAIN commitmail json YAML

Remove MANDIR= from MAKE_ENV, it is not needed anymore

(cheusov)

2011-10-19 21:29:42 UTC MAIN commitmail json YAML

Remove MANDIR= from MAKE_ENV, it is not needed anymore

(cheusov)

2011-10-19 21:15:39 UTC MAIN commitmail json YAML

Document optional variable FILE_CKSUM. Approved by wiz@.

(cheusov)

2011-10-19 20:12:56 UTC MAIN commitmail json YAML

2011-10-19 20:11:55 UTC MAIN commitmail json YAML

Import tex-ttfutils-doc-2011 as fonts/tex-ttfutils-doc.

This is documentation for tex-ttfutils.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 20:11:45 UTC MAIN commitmail json YAML

Import tex-ttfutils-2011 as fonts/tex-ttfutils.

This package provides data files used by TeX Live utilities for
TrueType fonts.

Status:

Vendor Tag: TNF
Release Tags: pkgsrc-base

(minskim)

2011-10-19 19:29:10 UTC MAIN commitmail json YAML

Note PKGREVISION bump of latex2html.

(minskim)

2011-10-19 19:28:50 UTC MAIN commitmail json YAML

2011-10-19 18:47:00 UTC MAIN commitmail json YAML

Updated emulators/qemu to 0.15.1

(ryoon)

2011-10-19 18:45:42 UTC MAIN commitmail json YAML

Update to 0.15.1

Changelog:
qed: fix use-after-free during l2 cache commit
sdl: Fix termination in -no-shutdown mode
Fix termination by signal with -no-shutdown
Add support for finding libpng via pkg-config.
Check for presence of compiler -pthread flag.
Allow overriding the location of Samba's smbd.
Fix linker scripts
Fix install(1) usage to be compatible with OpenBSD's install(1).
Fix qjson test of solidus encoding
configure: Copy test data to build directory
monitor: fix build breakage for !CONFIG_VNC
monitor: fix build breakage with --disable-vnc
Fix forcing multicast msgs to loopback on OpenBSD.
user: Restore debug usage message for '-d ?' in user mode emulation

(ryoon)

2011-10-19 18:42:59 UTC MAIN commitmail json YAML

Note removal of ec-fonts-mftraced.

(minskim)

2011-10-19 18:41:49 UTC MAIN commitmail json YAML

Remove ec-fonts-mftraced.

It was needed as a dependency of print/lilypond 2.3.x.  The current
version of lilypond (2.14) no longer uses this.  The TFM fonts
installed by this package are also included in fonts/tex-ec.

(minskim)

2011-10-19 18:34:07 UTC MAIN commitmail json YAML

Updated mail/mew to 6.4

(ryoon)

2011-10-19 18:32:51 UTC MAIN commitmail json YAML

Update to 6.4

* Remove included patches.

Changelog:
Mew 6.4 stable release (2011/10/19)

* cmew falls back to getModificationTime on Windows.
Masamichi HOSODA <trueroad>
* Supporting Ruby 1.9.
Takahiro Kambe <taca>

Mew 6.4 release candidate 1 (2011/09/06)

* A bug of rescan is fixed finally!
* mewl avoids causing error if a folder does not exist.
Masamichi HOSODA <trueroad>
* Catching up to stunnel 4.39.
Ryo ONODERA <ryo_on>
* Supporting text/csv.
Tetsuya Toda <toda>

Mew 6.3.51 (2011/06/29)

* A hack for calling browser on Unix.
"Diogo F. S. Ramos" <diogofsr> and Tatsuya Kinoshita <tats>
* Bug fixes for hankaku.
<tmurata> and Tatsuya Kinoshita <tats>
* Avoiding broken end-of-line for quoted-printable.
* Multibyte hack for Emacs 23 and 24.
* Supporting GBK.
* Fixing excel and powerpoint on Unix.
Kan Sasaki <sasaki@fcc.ad.jp>
* pdftotext support for Windows.
Shuichi KITAGUCHI <ki>
* &rest to mew-user-agent-compose for Emacs 24.
Harald Hanche-Olsen <hanche>
* More gentle for broken Multipart/Signed.
Eisaku YAMAGUCHI <eisaku>
* Improving the documentation of mew-draft-use-format-flowed.
Christophe TROESTLER <Christophe.Troestler>
* varsx hack.
* Fixing regex of time.
Christophe TROESTLER <Christophe.Troestler>
* Fixing major mode hooks.
Hayashi Masahiro <mhayashi1120>
* Inline display of PDF with "pdftotext".
Hideyuki SHIRAI <shirai>
Harumitsu YOSHITAKE <yositake>
* Text/Pdf for Thunderbird
Christophe TROESTLER <Christophe.Troestler>
* Removing warnings for Emacs 23.3
Yu-ji Hosokawa <yu-ji>
* Killing stunnel with -KILL since the spec of stunnel changed.
* The -b option for mewest.
"Diogo F. S. Ramos" <diogofs>

Mew 6.3.50 (2010/08/31)

* Defining mew-draft-use-format-flowed.
Christophe TROESTLER <Christophe.Troestler>
* Making use of mew-save-dir.
* Fixing the hash-vs-array problem of cmew.
Masamichi HOSODA <trueroad>
* Making cmew safer in the case where mewest works at the same time.
Masamichi HOSODA <trueroad>
* Hack for mew-time-rfc-to-sortkey.
Hideyuki SHIRAI <shirai>
* A patch for unzip.
Yu-ji Hosokawa <yu-ji>
* Supporting unzip.
* Bug fix for PGP/MIME of binary encryption.
Shoichi Kurosaka <sho>
* Both cmew and smew in Haskell works well finally!
Shuichi KITAGUCHI <kit>
* Fixing info/Makefile.
Yasuhiro KIMURA <yasu>
* Guarding mew-addrbook-clean-up.
Hideyuki SHIRAI <shirai>
* A bug fix of mew-mime-content-type.
Yu-ji Hosokawa <yu-ji>
* Setting split-width-threshold to nil in mew-summary-reply.
* "b" in Summary saves the buffer of Message mode to a file.
* header-only now can work for M-x mew.
* Bold of font can be specified on Emacs 23.
* Deleting " " from global-mode-string.
Christophe TROESTLER <Christophe.Troestler>
* Correcting the -P option of stunnel3.
Kendall Shaw <kshaw>
* Define mew-sumsym-encode-folder and mew-sumsym-decode-folder.
* set-buffer -> with-current-buffer.
* Making mew-mime-image() safer.
Hideyuki SHIRAI <shirai>

(ryoon)

2011-10-19 18:27:04 UTC MAIN commitmail json YAML

Updated net/youtube-dl to 20111019

(ryoon)

2011-10-19 18:25:49 UTC MAIN commitmail json YAML

Update to 20111019

Changelog from diff:
* Improve youtube.com support.
* Improve vimeo support.
* Add xvideos.com support.
* Add collegehumor.com support.

(ryoon)

2011-10-19 15:04:37 UTC MAIN commitmail json YAML

Adding MANDIR to MAKE_ENV is not needed anymore

(cheusov)