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

2024-05-12 18:07:38 UTC Now

2015-08-07 22:11:23 UTC MAIN commitmail json YAML

use -fno-reorder-blocks for sparc64, mips, and vax and GCC 4.5*.

something in op.c (as miniop.c) is mis-compiled with this option which
is enabled by -O2, when using GCC 4.5.  i didn't try to figure out
exactly what as op.c is 419,359 bytes long and the assembler output
is almost 100% different and approximiately 1.5MB either way (the
diff of the asm output is larger than the combined inputs), so for now
we have this hack.  this problem doesn't appear to occur in newer GCC.

XXX: pullup to 2015Q2.

(mrg)

2015-08-07 12:51:00 UTC MAIN commitmail json YAML

Updated mail/p5-Email-Send to 2.201

(wen)

2015-08-07 12:49:39 UTC MAIN commitmail json YAML

Update to 2.201

Upstream changes:
2.201    2015-03-05
          ** PLEASE CONSIDER USING EMAIL-SENDER INSTEAD **

          add x_deprecated metadata

(wen)

2015-08-07 12:44:16 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-POP3Client to 2.19

(wen)

2015-08-07 12:42:55 UTC MAIN commitmail json YAML

Update to 2.19
Add LICENSE

Upstream changes:
2.19 2013/19/03
        + RT82713 - version number contains a space.

(wen)

2015-08-07 12:38:00 UTC MAIN commitmail json YAML

Updated mail/p5-Email-Address to 1.907

(wen)

2015-08-07 12:35:00 UTC MAIN commitmail json YAML

Update to 1.907

Upstream changes:
1.907    2015-02-03 17:48:10-05:00 America/New_York
        - restore 5.8.x compatibility

1.906    2015-02-03 16:48:11-05:00 America/New_York
        - the test suite tests parses more directly, which eliminates a number
          of misleading (and possibly wrong) test cases
        - escaped characters in a quoted string are now properly unescaped
          for the ->phrase method, which means things should round trip better
          from their decomposed form

(wen)

2015-08-07 11:20:36 UTC MAIN commitmail json YAML

2015-08-07 11:19:23 UTC MAIN commitmail json YAML

2015-08-07 11:19:13 UTC MAIN commitmail json YAML

Updated package to latest version, 6.14. No changes to this release,
except that camlp5 is now compatible with ocaml 4.02.3.

(jaapb)

2015-08-07 11:17:22 UTC MAIN commitmail json YAML

Updated lang/ocaml to 4.02.3

(jaapb)

2015-08-07 11:16:30 UTC MAIN commitmail json YAML

This is an update of lang/ocaml to its latest version, 4.02.3. Changes
include:

Bug fixes:
- Top-level custom printing for GADTs: interface change in 4.02.2
  (Gr辿goire Henry, report by Jeremy Yallop)
- corrupted final_table (ygrek)
- R#6926: Regression: ocamldoc lost unattached comment
  (Damien Doligez, report by Franå·½ois Bobot)
- Aliased result type of GADT constructor results in assertion failure
  (Jacques Garrigue)

Feature wishes:
- PR#6691: install .cmt[i] files for stdlib and compiler-libs
  (David Sheets, request by Gabriel Radanne)
- New primitive: caml_alloc_dummy_function
  (Hugo Heuzard)

(jaapb)

2015-08-07 11:16:16 UTC MAIN commitmail json YAML

Remove PKGREVISION setting from Makefile.common. This should never be here.

Noted by Matthias Ferdinand on pkgsrc-users.

(wiz)

2015-08-07 09:52:23 UTC MAIN commitmail json YAML

netatalk requires libevent 2.x, the builtin one on NetBSD<7 is older.
Fixes pkg/50084.

(fhajny)

2015-08-07 01:43:11 UTC MAIN commitmail json YAML

Updated math/R-DBI to 0.3.1

(wen)

2015-08-07 01:41:38 UTC MAIN commitmail json YAML

Update to 0.3.1

Upstream changes:
# Version 0.3.1

* Actually export `dbIsValid()` :/

* `dbGetQuery()` uses `dbFetch()` in the default implementation.

# Version 0.3.0

## New and enhanced generics

* `dbIsValid()` returns a logical value describing whether a connection or
  result set (or other object) is still valid. (#12).

* `dbQuoteString()` and `dbQuoteIdentifier()` to implement database specific
  quoting mechanisms.

* `dbFetch()` added as alias to `fetch()` to provide consistent name.
  Implementers should define methods for both `fetch()` and `dbFetch()` until
  `fetch()` is deprecated in 2015. For now, the default method for `dbFetch()`
  calls `fetch()`.

* `dbBegin()` begins a transaction (#17). If not supported, DB specific
  methods should throw an error (as should `dbCommit()` and `dbRollback()`).

## New default methods

* `dbGetStatement()`, `dbGetRowsAffected()`, `dbHasCompleted()`, and
  `dbGetRowCount()` gain default methods that extract the appropriate elements
  from `dbGetInfo()`. This means that most drivers should no longer need to
  implement these methods (#13).

* `dbGetQuery()` gains a default method for `DBIConnection` which uses
  `dbSendQuery()`, `fetch()` and `dbClearResult()`.

## Deprecated features

* The following functions are soft-deprecated. They are going away,
  and developers who use the DBI should begin preparing. The formal deprecation
  process will begin in July 2015, where these function will emit warnings
  on use.

    * `fetch()` is replaced by `dbFetch()`.

    * `make.db.names()`, `isSQLKeyword()` and `SQLKeywords()`: a black list
      based approach is fundamentally flawed; instead quote strings and
      identifiers with `dbQuoteIdentifier()` and `dbQuoteString()`.

* `dbGetDBIVersion()` is deprecated since it's now just a thin wrapper
  around `packageVersion("DBI")`.

* `dbSetDataMappings()` (#9) and `dbCallProc()` (#7) are deprecated as no
  implementations were ever provided.

## Other improvements

* `dbiCheckCompliance()` makes it easier for implementors to check that their
  package is in compliance with the DBI specification.

* All examples now use the RSQLite package so that you can easily try out
  the code samples (#4).

* `dbDriver()` gains a more effective search mechanism that doesn't rely on
  packages being loaded (#1).

* DBI has been converted to use roxygen2 for documentation, and now most
  functions have their own documentation files. I would love your feedback
  on how we could make the documentation better!

(wen)

2015-08-07 01:32:36 UTC MAIN commitmail json YAML

Updated mail/p5-Mail-Sender to 0.8.23

(wen)

2015-08-07 01:31:20 UTC MAIN commitmail json YAML

Update to 0.8.23
Add LICENSE

Upstream changes:
Version 0.8.21
- fixed the case in the header names (Content-type -> Content-Type)
- fixed the encoding of non-ascii stuff in headers (RFC 2047)
- fixed using the ctype even for body with MailFile

Version 0.8.23
- fixed problems with long subjects containing accentuated characters
- fixed problems with IO::Socket::SSL
- trims addresses passed in an array (per request)
- changed licence per request from Fedora
- fix to allow very long passwords
- fix error in TestServer()

(wen)

2015-08-07 01:22:20 UTC MAIN commitmail json YAML

Updated textproc/p5-Pod-Tree to 1.25

(wen)

2015-08-07 01:21:01 UTC MAIN commitmail json YAML

Update to 1.25

Upstream changes:
1.25 2015.05.25
    - Rename test files to have number prefix.
    - Move test reqirements to TEST_REQUIRES or BUILD_REQUIRES for older EUMM
    - Older versions of EU::MM require quotes around 2-dot versions (CHORNY)

1.24  2015.05.22
    - Include the rc files in the distribution to use the proper
      Perl::Critic configuration.
    - use Test::Version to make sure we have the same version number
      in every module.
    - Configure Perl::Critic to be level 4.
    - Lots of other refactorings.

(wen)

2015-08-07 00:02:51 UTC MAIN commitmail json YAML

Updated devel/p5-Convert-Binary-C to 0.77

(wen)

2015-08-06 23:59:11 UTC MAIN commitmail json YAML

Update to 0.77

Upstream changes:
Version 0.77 (2015-07-22)
-------------------------

* ensure consistent order of enums when generating code; this was
  a real bug and caused the configuration part of C::B::C to report
  wrong (even invalid) configurations back to the user when built
  using a recent version of Perl that randomises hash keys

* fix cpan #85264: the POD test was reporting a missing =back tag
  in one of the support modules; the ultimate fix was to ensure only
  the provided modules were POD checked

* fix cpan #83167: an artificially low refcnt for immortal variables
  introduced recently for debug Perl builds was causing the refcnt
  tests to fail for SvNULLs; thanks to Reini Urban for his patch;
  also thanks to Nicholas Clark for pointing me to the Perl commit

* fix cpan #78165: spelling errors in the documentation; thanks to
  gregor herrmann for providing a patch

* fix deprecated use of unescaped braces in regex

* fix some gcc and Perl warnings

* switch from SnapshotCM to git repo: github.com/mhx/Convert-Binary-C/

(wen)

2015-08-06 23:56:20 UTC MAIN commitmail json YAML

2015-08-06 23:52:18 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Pluggable to 5.2

(wen)

2015-08-06 23:51:11 UTC MAIN commitmail json YAML

Update to 5.2

Upstream changes:
2015-08-05 - 5.2
    Use Module::Runtime if it's installed (thanks to Olivier Mengu茅)
    Switch to using ExtUtils::MakeMaker (thanks to Karen Etheridge and Tim Orling)

(wen)

2015-08-06 22:38:28 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 22:29:04 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 22:23:17 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 22:16:24 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 21:46:03 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 21:41:43 UTC MAIN commitmail json YAML

Add support for CFLAGS

No functional change intended.

(khorben)

2015-08-06 19:39:29 UTC MAIN commitmail json YAML

Updated chat/finch to 2.10.11nb2

(wiz)

2015-08-06 19:39:19 UTC MAIN commitmail json YAML

Disable gstreamer option by default.
Suggested by Michael McConville to get rid of the x11 dependency
in finch, which you really don't want. Use chat/pidgin for X11.

Bump PKGREVISION.

(wiz)

2015-08-06 13:28:00 UTC MAIN commitmail json YAML

Added databases/py-firebase version 1.2.

(kleink)

2015-08-06 13:26:41 UTC MAIN commitmail json YAML

2015-08-06 13:26:16 UTC MAIN commitmail json YAML

2015-08-06 12:47:36 UTC MAIN commitmail json YAML

Updated devel/libgsf to 1.14.34

(wiz)

2015-08-06 12:47:26 UTC MAIN commitmail json YAML

Update to 1.14.34, so that gnumeric112 has a chance of building.

libgsf 1.14.34

Morten:
* Fix OLE2 property parsing problem.  [#748528]
* Fuzzed file fixes.  [#749120] [#749169] [#749183] [#750809]
  [#751273]
* xlsx: fix problem with absolute relation targets.  [#751120]
* Fix text line problem with very long lines.

--------------------------------------------------------------------------
libgsf 1.14.33

Morten:
* Ensure floats roundtrip through our xml functions.
* Improve handling of unknown xml tags.
* xml parser improvements.
* xml pretty-printing improvements.

--------------------------------------------------------------------------
libgsf 1.14.32

Morten:
* Fix obscure problem with xml parser.
* Add vml to openpkg utils.
* Allow NULL content type for openpkg.
* Plug leak.

--------------------------------------------------------------------------
libgsf 1.14.31

Andreas:
* Add two new localc name spaces to gsf-opendoc-utils

Allin Cottrell:
* Add support for non-default zip compression level.  [#722470]

Morten:
* Plug leaks.
* Dead kittens.
* Reduce number of CRITICALs for corrupted files.
* Read zip files with 64k+ members.  [Part of #732209]
* Read zip files members larger than 4G.  [Part of #732209]
* Speed up zip file reading for lots of members.
* Speed up stdio directory handling with large number of files.
* Fix various issues with files larger than 4G.
* Fix minor zip file issues.
* Write zip archives with more than 64k+ members.
* Store unix modtime in zip.  (Until that overflows.)
* Fix seekability checks in GsfOutputIOChannel.
* Avoid implementation defined behaviour of shifts.
* Start a test suite.

(wiz)

2015-08-06 11:13:42 UTC MAIN commitmail json YAML

Updated converters/psiconv to 0.9.9

(wiz)

2015-08-06 11:13:32 UTC MAIN commitmail json YAML

Update to 0.9.9:

0.9.9  20141019  Bugfix in HTML4 target. Updated toolchain.
                Support for GraphicsMagick. Updated manual page psiconv(1).

0.9.8  20051115  Small bug fixes

(wiz)

2015-08-06 11:07:38 UTC MAIN commitmail json YAML

Updated sysutils/spice-protocol to 0.12.9

(wiz)

2015-08-06 11:07:30 UTC MAIN commitmail json YAML

Update to 0.12.9:

Major changes in 0.12.9
=======================
* rename newly introduced SpiceImageCompress enum to SpiceImageCompression
  as otherwise it was clashing with the definition used by older spice-server
  releases, breaking QEMU build

Major changes in 0.12.8
=======================
* add LZ4 support
* add audio volume synchronization
* deprecate unused vdi-dev
* add 'preferred-compression' message/capability
* add a new Windows driver escape code to send
  monitors capability from guest to client

(wiz)

2015-08-06 11:04:52 UTC MAIN commitmail json YAML

2015-08-06 11:04:43 UTC MAIN commitmail json YAML

Update to 3.07:

3.07 2015-07-17

    - Net::FTP::rmdir() has been made more robust by making use of the MLSD
      command in addition to the NLST command since the latter is known not to
      be processed correctly by some FTP servers.

      [Chris Lindee, CPAN RT#100694]

    - Net::FTP, Net::NNTP, Net::POP3 and Net::SMTP can now restrict domain to
      IPv4 even if IPv6 is available by using the new Domain or Family argument.

      Net::NNTP now supports the LocalPort argument in addition to LocalAddr.

      Net::POP3 now supports the LocalAddr and LocalPort arguments in addition
      to ResvPort (which is retained for backwards compatibility).

      [Steffen Ullrich, PR#18]

    - Fixed a bug in Net::Cmd::datasend() which caused octets in [\x80-\xFF]
      stored in a "binary string" to be replaced with their UTF-8 encodings if
      the string happened to be stored internally in an "upgraded" state (i.e.
      with the UTF-8 flag on).  (As noted below, strings passed to datasend()
      should always be encoded first, and therefore not stored in such a state
      anyway, but it is all too easy for perl to change this internal state
      unless the encodeing is done at the very last minute before calling
      datasend(), so it helps if datasend() plays more nicely in this case.  In
      particular, it was wrong of datasend() to treat upgraded and downgraded
      strings differently when their contents were identical at the Perl level.)

      This bugfix results in a breaking change to the case of a "text string"
      with characters in U+0080..U+00FF stored internally in an upgraded state
      since those characters are likewise no longer encoded to UTF-8 by
      datasend(), but callers of datasend() should not have been relying on this
      behaviour anyway: In general, datasend() has no idea what encoding is
      required for output so callers should always encode the data to be output
      to whatever encoding is required first.  This has now been clarified in
      the documentation.

      Finally, a text string with characters >= U+0100 will now cause a "Wide
      character in print" warning from datasend() since such characters cannot
      be output as bytes and datasend() no longer encodes to UTF-8.  In this
      case, UTF-8 bytes will still be output as before since that happens to be
      the internal representation of such characters, but the warning is new.
      Callers should heed this warning and encode such strings to whatever
      encoding is required before calling datasend(), as noted above.

      [Ricardo Signes, CPAN RT#104433]

(wiz)

2015-08-06 11:03:48 UTC MAIN commitmail json YAML

Updated misc/p5-Locale-libintl to 1.24

(wiz)

2015-08-06 11:03:40 UTC MAIN commitmail json YAML

2015-08-06 11:01:59 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Build-XSUtil to 0.16

(wiz)

2015-08-06 11:01:50 UTC MAIN commitmail json YAML

Update to 0.16:

0.16 2015-06-29T15:55:13Z
    - Fix regexp of _gcc_version for Ubuntu and Debian
        (syohex)
    - Set -std=c99 explicitly for older GCC
        (syohex)

(wiz)

2015-08-06 11:00:01 UTC MAIN commitmail json YAML

Updated devel/p5-Module-Build to 0.42140

(wiz)

2015-08-06 10:59:52 UTC MAIN commitmail json YAML

Update to 0.4214:

0.4214 - Fri Jun 12 00:25:00 CEST 2015

  - Released 0.42_13 as 0.4214

0.42_13 - Sat Jun  6 21:18:24 CEST 2015

  [BUG FIXES]

  - Handle failure to guess license from key better

  [ENHANCEMENTS]

  - Output data in a stable order [J辿r辿my Bobbio]

(wiz)

2015-08-06 10:36:18 UTC MAIN commitmail json YAML

Added devel/p5-inc-latest version 0.500

(wiz)

2015-08-06 10:36:07 UTC MAIN commitmail json YAML

+ p5-inc-latest.

(wiz)

2015-08-06 10:36:01 UTC MAIN commitmail json YAML

Import p5-inc-latest-0.500 as devel/p5-inc-latest.

The inc::latest module helps bootstrap configure-time dependencies
for CPAN distributions. These dependencies get bundled into the
inc directory within a distribution and are used by Makefile.PL or
Build.PL.

Arguments to inc::latest are module names that are checked against
both the current @INC array and against specially-named directories
in inc. If the bundled version is newer than the installed one (or
the module isn't installed, then, the bundled directory is added
to the start of @INC and the module is loaded from there.

(wiz)

2015-08-06 10:16:19 UTC MAIN commitmail json YAML

Updated geography/py-geojson to 1.2.2.

(kleink)

2015-08-06 10:15:12 UTC MAIN commitmail json YAML

Update py-geojson to 1.2.2.

1.2.2 (2015-07-13)
------------------

- Fix tests by including test file into build

  - https://github.com/frewsxcv/python-geojson/issues/61

- Build universal wheels

  - https://packaging.python.org/en/latest/distributing.html#universal-wheels

1.2.1 (2015-06-25)
------------------

- Encode long types correctly with Python 2.x

  - https://github.com/frewsxcv/python-geojson/pull/57

1.2.0 (2015-06-19)
------------------

- Utility function to validate GeoJSON objects

  - https://github.com/frewsxcv/python-geojson/pull/56

1.1.0 (2015-06-08)
------------------

- Stop outputting invalid GeoJSON value id=null on Features

  - https://github.com/frewsxcv/python-geojson/pull/53

(kleink)

2015-08-06 10:14:42 UTC MAIN commitmail json YAML

add and enable go14

(jnemeth)

2015-08-06 09:35:31 UTC MAIN commitmail json YAML

Added devel/p5-inc version 0.06

(wiz)

2015-08-06 09:35:21 UTC MAIN commitmail json YAML

2015-08-06 09:34:55 UTC MAIN commitmail json YAML

Import p5-inc-0.06 as devel/p5-inc.

The inc module redefines @INC to a list of predefined smart objects.
These objects are really just code refs for handy lookup techniques.
For example, only finding modules that were core in Perl 5.8.1, or
only finding non-core modules that are declared prerequisites of
some module.

(wiz)

2015-08-06 09:29:58 UTC MAIN commitmail json YAML

Updated converters/p5-JSON-MaybeXS to 1.003005

(wiz)

2015-08-06 09:29:50 UTC MAIN commitmail json YAML

Update to 1.003005:

1.003005 - 2015-03-22
- fix x_contributors metadata that was killing metacpan (see
  https://github.com/CPAN-API/cpan-api/issues/401)

(wiz)

2015-08-06 09:28:46 UTC MAIN commitmail json YAML

Updated devel/p5-SUPER to 1.20141117

(wiz)

2015-08-06 09:28:37 UTC MAIN commitmail json YAML

Update to 1.20141117:

1.20141117 2014-11-17 09:12:01-08:00 America/Los_Angeles
    - improved export mechanism
    - removed useless Exporter tests
    - improved docs (RT #79681)

1.20141116 2014-11-16 14:07:18-08:00 America/Los_Angeles
    - resolved Test::More changes (RT #97939)

(wiz)

2015-08-06 09:26:29 UTC MAIN commitmail json YAML

Updated devel/p5-Test-DependentModules to 0.21

(wiz)

2015-08-06 09:26:21 UTC MAIN commitmail json YAML

Update to 0.21. Improve DESCR.

0.21  2015-07-17

- If PERL_TEST_DM_CPAN_VERBOSE was true and Test::More had not been loaded in
  the process you would get an error. GH #9.

(wiz)

2015-08-06 09:24:02 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Class to 0.50

(wiz)

2015-08-06 09:23:54 UTC MAIN commitmail json YAML

Update to 0.50:

0.50  [2015-06-07]
    - add links to Ovid's tutorial series on Test::Class (Tim Vroom, PR#19)
    - add links to Test::Class::Most, Test::Class::Moose (Tim Vroom, PR#20)
    - list some distributions that use Test::Class in their test suite (Tim
      Vroom, PR#21)
    - update documentation about running individual tests (Matthew Horsfall,
      PR#22)
    - fix some tests to work with the new Test::Stream (Chad Granum, PR#27)
    - switch packaging to ExtUtils::MakeMaker

(wiz)

2015-08-06 09:22:03 UTC MAIN commitmail json YAML

Updated devel/p5-Inline-C to 0.76

(wiz)

2015-08-06 09:21:54 UTC MAIN commitmail json YAML

Update to 0.76. Fixes test failure noted in Makefile.

0.76 Wed Jul  1 08:09:50 PDT 2015
- Support for cppflags

(wiz)

2015-08-06 09:15:11 UTC MAIN commitmail json YAML

Updated devel/p5-IO-All to 0.86

(wiz)

2015-08-06 09:15:02 UTC MAIN commitmail json YAML

Update to 0.86:

0.86 Thu Jan  1 18:44:25 PST 2015
- Revamp docs

(wiz)

2015-08-06 09:12:32 UTC MAIN commitmail json YAML

Updated www/p5-Hijk to 0.24

(wiz)

2015-08-06 09:12:20 UTC MAIN commitmail json YAML

Update to 0.24.

0.24: # 2015-07-05T13:40:00+0200

- Minor copyediting and formatting changes to the documentation. No
  code changes at all.

0.23: # 2015-07-03T17:00:00+0200

- The "Host" header can now be overriden by supplying a new
  `no_default_host_header` option along with a `Host` header in `head
  => []` to request().

  Before this we'd always send "Host: $host" over, where $host was the
  host we were connecting to, now you can customize this.

- Fixed a bug where if passed passed `head => []` to request() we'd
  emit a ":" header, i.e. just an empty header name with an empty
  value.

  You could have just not passed the `head => ` value if the array was
  empty, but no we won't screw up and emit a single line consisting of
  ":" if given an empty array.

0.22: # 2015-05-27T07:54:17+0200

- No feature change. Re-package due to a missing file in the tarball:
  https://rt.cpan.org/Ticket/Display.html?id=104624

0.21: # 2015-05-22T15:26:23+0200

- Fix "Too many CRLF" issue. Hijk has been always generating HTTP
  request with an extra CRLF at the end. While many HTTP servers are
  ignoring those, some treat it as errors. We now eliminate the extra
  CRLF at the end of every request.
  See also http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html

- Handle better when select() is interrupted by signals.

(wiz)

2015-08-06 09:10:59 UTC MAIN commitmail json YAML

Updated www/p5-HTTP-Server-Simple to 0.50

(wiz)

2015-08-06 09:10:49 UTC MAIN commitmail json YAML

Update to 0.50, add missing p5-CGI dependency:

0.50    2015-02-02
  - All collected changes since 0.44

0.45_08 2015-01-29
- IPv6 skipping code always turned off tests, rather than just
  skipping on bad hosts.

0.45_07 2015-01-27T22:24Z
- Skip IPv6 tests in 01live.t on machines where IPv6 isn't configured

0.45_06 2015-01-23T17:55Z
- Further test iteration and diagnostics for smoke failures

0.45_05 2015-01-22T16:23Z
- Test diagnostics for cpantester failures
- Hopefully better localhost handling

0.45_04 2015-01-20T17:40Z
- Fix compatibility for the IPv6 support in .45_02
- Hopefully improve the live tests

0.45_03 2015-01-14T19:48Z
- Remove useless VERSION from HTTP::Server::Simple::CGI and
  HTTP::Server::Simple::CGI::Environment

0.45_02 2012-05-20T18:15Z
- Support for IPv6 - Daniel Kahn Gillmor [rt.cpan.org #61200]

0.45_01 2011-09-22T10:10:41Z
- Support full URIs as required by RFC2616 - penfold [rt.cpan.org #69445]

(wiz)

2015-08-06 09:06:38 UTC MAIN commitmail json YAML

Updated devel/p5-File-DesktopEntry to 0.12

(wiz)

2015-08-06 09:06:29 UTC MAIN commitmail json YAML

Update to 0.12:

0.12 2015-06-20
- Remove spurious Module::Build from test. Reported by gregor herrmann,
  Debian team, https://bugs.debian.org/789210

0.11 2015-06-11
- Explicitly state minimum perl version as 5.8 in Makefile.PL.

0.10 2015-06-09
- Include new test in MANIFEST
    RT 105112 - SREZIC

0.09 2015-06-09
- Exclude newlines from whitespace on either side of '='
    RT 65394, fix by sdme.

(wiz)

2015-08-06 09:05:37 UTC MAIN commitmail json YAML

Updated security/p5-Digest-JHash to 0.09

(wiz)

2015-08-06 09:05:29 UTC MAIN commitmail json YAML

Update to 0.09:

0.09    2015-05-30
    - Convert to Dist-Zilla.
        - This implies several enhancements including links to the VCS
        repositories in META.yml/META.json.

(wiz)

2015-08-06 09:04:36 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-CheckCompiler to 0.06

(wiz)

2015-08-06 09:04:27 UTC MAIN commitmail json YAML

Update to 0.06:

0.06 2015-06-30T05:22:51Z
    - More strict C99 check code
      (tokuhirom)
    - Fix for older GCC(< 5.0)
      (Syohei YOSHIDA)

(wiz)

2015-08-06 09:03:36 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-CheckBin to 0.04

(wiz)

2015-08-06 09:03:27 UTC MAIN commitmail json YAML

Update to 0.04:

0.04 2015-07-22T07:35:08Z

    - Test case fix.
      * win32 fix.
      * added quotes for perl installed into a path with spaces in it
      (mohawk2++)

(wiz)

2015-08-06 09:01:52 UTC MAIN commitmail json YAML

Updated devel/p5-Class-Load to 0.23

(wiz)

2015-08-06 09:01:42 UTC MAIN commitmail json YAML

Update to 0.23:

0.23    2015-06-25
    - remove use of namespace::clean

(wiz)

2015-08-06 08:37:51 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Format-Strptime to 1.5600

(wiz)

2015-08-06 08:37:43 UTC MAIN commitmail json YAML

Update to 1.56. Changes not found, but fixes test failure noted in pkgsrc
Makefile.

(wiz)

2015-08-06 08:36:02 UTC MAIN commitmail json YAML

Updated devel/p5-Data-Dump to 1.23

(wiz)

2015-08-06 08:35:54 UTC MAIN commitmail json YAML

Update to 1.23:

2015-06-09  Gisle Aas <gisle@ActiveState.com>

  Release 1.23

  Avoid "Negative repeat count does nothing"-warnings from perl-5.22

  Typo fixes by David Steinbrunner

(wiz)

2015-08-06 08:35:20 UTC MAIN commitmail json YAML

Updated databases/p5-DBM-Deep to 2.0012

(wiz)

2015-08-06 08:35:11 UTC MAIN commitmail json YAML

Update to 2.0012:

2.0012 Jun 17 20:30:00 2015 PDT
    - Improved transaction validation and warnings (GH#12)

(wiz)

2015-08-06 08:32:23 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Exception to 0.40

(wiz)

2015-08-06 08:32:15 UTC MAIN commitmail json YAML

Update to 0.40:

0.40  [2015-06-05]
    -  Updated for changes in Test::Stream (Use Test::Stream::Sync)

0.39  [2015-06-04]
    -  Updated for changes in Test::Stream

(wiz)

2015-08-06 08:31:30 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Requires to 0.10

(wiz)

2015-08-06 08:31:22 UTC MAIN commitmail json YAML

Update to 0.10:

0.10 2015-07-21T12:37:03Z

    - Support 5.6 again.

0.09 2015-07-21T04:01:50Z

    - requires 5.8.1

(wiz)

2015-08-06 08:30:41 UTC MAIN commitmail json YAML

Updated net/p5-Test-RequiresInternet to 0.05

(wiz)

2015-08-06 08:30:32 UTC MAIN commitmail json YAML

Update to 0.05:

0.05        2015-05-25
            Fix test error when NO_NETWORK_TESTING is set (Karen Etheridge,
            RT#101996, GH#3)

(wiz)

2015-08-06 08:29:39 UTC MAIN commitmail json YAML

Updated time/p5-Time-Duration to 1.20

(wiz)

2015-08-06 08:29:30 UTC MAIN commitmail json YAML

Update to 1.20:

1.20 2015-04-25 NEILB
    - Switched to Dist::Zilla, in the process fixing RT#90701, RT#101548,
      and RT#101434
    - Reformatted this file as per CPAN::Changes::Spec

1.1_01 2015-04-18 NEILB
    - This release had the changes in 1.20 above, done first as a developer
      release to see what CPAN Testers said.

(wiz)

2015-08-06 08:27:35 UTC MAIN commitmail json YAML

Updated time/p5-Time-Duration-Parse to 0.12

(wiz)

2015-08-06 08:27:27 UTC MAIN commitmail json YAML

Update to 0.12:

0.12 2015-07-02 NEILB
    - Added [MetaJSON] to dist.ini, so the dist will get a META.json file.
      RT#105627 from ETHER.

(wiz)

2015-08-06 08:26:25 UTC MAIN commitmail json YAML

Updated devel/p5-Variable-Magic to 0.58

(wiz)

2015-08-06 08:26:17 UTC MAIN commitmail json YAML

Update to 0.58:

0.58    2015-07-21 16:00 UTC
        + Add : If a non-len magic callback returns a reference, it will now
                only be freed at the end of the statement that caused the
                magic to trigger. This allows the user to attach free magic
                (or a plain destructor) to a token returned from the callbacks
                in order to defer an action after the magic is processed by
                perl.
        + Fix : Test failures of threads tests on systems with harsh resource
                constraints causing the threads to exit() during run.

(wiz)

2015-08-06 08:24:42 UTC MAIN commitmail json YAML

Updated www/p5-WWW-Mechanize to 1.75

(wiz)

2015-08-06 08:24:31 UTC MAIN commitmail json YAML

Update to 1.75, add missing p5-CGI dependency.

1.75
========================================
[OTHER CHANGES]

- WWW::Mechanize::Image and WWW::Mechanize::Link now have a defined $VERSION
- fixed warning about the use of the encoding pragma (new in 5.22) (RT#91971)
- fixed warning about the use of CGI::param in list context (RT#103096)

(wiz)

2015-08-06 08:19:55 UTC MAIN commitmail json YAML

Updated textproc/p5-YAML-LibYAML to 0.59

(wiz)

2015-08-06 08:19:44 UTC MAIN commitmail json YAML

Update to 0.59:

0.59 Mon Jan 26 15:04:10 PST 2015
- PR/23 Better scalar dump heuristics
- More closely match YAML.pm
- Thanks Matthias Bethke

0.58 Tue Jan 20 21:01:49 PST 2015
- Add a VERSION statement to YAML::LibYAML (issue#8)

0.57 Thu Jan 15 23:05:15 EST 2015
- Applied fix for PR/21. nawglan++

0.56 Thu Jan 15 22:21:47 EST 2015
- Update copyright year
- Use Swim cpan-tail block functions in doc

0.55 Mon Dec 22 17:26:27 PST 2014
- Get YAML::XS using latest libyaml

(wiz)

2015-08-06 08:18:02 UTC MAIN commitmail json YAML

Updated devel/p5-namespace-autoclean to 0.26

(wiz)

2015-08-06 08:17:52 UTC MAIN commitmail json YAML

Update to 0.26:

0.26      2015-06-07 02:53:17Z
  - mark all Mouse tests as TODO below perl 5.010, to enable installation
    despite apparent instability issues (see RT#101825)

0.25      2015-06-03 01:09:06Z
  - load Moo::Role earlier in a test, to make a potential misconfiguration
    more visible

(wiz)

2015-08-06 08:11:12 UTC MAIN commitmail json YAML

Updated devel/py-setuptools_scm to 1.6.0

(wiz)

2015-08-06 08:11:01 UTC MAIN commitmail json YAML

Update to 1.6.0:

v1.6.0
======

* bail out early if the scm is missing

  this brings issues with git tarballs and
  older devpi-client releases to light,
  before we would let the setup stay at version 0.0,
  now there is a ValueError

* propperly raise errors on write_to missuse (thanks Te-j辿 Rodgers)

(wiz)

2015-08-06 08:09:58 UTC MAIN commitmail json YAML

Updated net/py-ipaddress to 1.0.14

(wiz)

2015-08-06 08:09:47 UTC MAIN commitmail json YAML

2015-08-06 08:08:12 UTC MAIN commitmail json YAML

2015-08-06 08:08:01 UTC MAIN commitmail json YAML

Update to 2.0:

2.0 (2015-05-18)
++++++++++++++++

- Added support for Unicode IDNA Compatibility Processing (aka Unicode
  Technical Standard #46). Big thanks to Jon Ribbens who contributed this
  functionality.

(wiz)

2015-08-06 08:06:08 UTC MAIN commitmail json YAML

Updated www/py-Routes to 2.2

(wiz)

2015-08-06 08:05:56 UTC MAIN commitmail json YAML

Update to 2.2:

Release 2.2 (July 21, 2015)
===========================
* Fix Python 3 support. Patch by Victor Stinner.

(wiz)

2015-08-06 07:55:09 UTC MAIN commitmail json YAML

Updated devel/libidn to 1.32

(wiz)

2015-08-06 07:54:57 UTC MAIN commitmail json YAML

Update to 1.32:

* Version 1.32 (released 2015-08-01) [beta]

** libidn: Fix crash in idna_to_unicode_8z8z and idna_to_unicode_8zlz.
This problem was introduced in 1.31.  Reported by Adam Sampson.

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

(wiz)

2015-08-06 07:21:38 UTC MAIN commitmail json YAML

Updated x11/proxymngr to 1.0.4

(wiz)

2015-08-06 07:21:29 UTC MAIN commitmail json YAML

2015-08-06 07:21:26 UTC MAIN commitmail json YAML

Update to 1.0.4:

    proxymngr 1.0.4

    Stop checking if pointers are NULL before passing them to free()

    Stop casting results of malloc calls

    Replace last strcpy call + manual append with snprintf call

    Replace malloc(strlen)+strcpy sets with strdup calls

    Ensure memory is initialized before use in PushRequestorQueue
    If authLen <= 0, then we weren't initializing the authName & authData
    pointers until after checking if all the allocations succeeded, but
    if any allocations failed, we'd then try to free them before that.

    Error: Uninitialised memory (CWE 456)
      Possible access to uninitialised memory '&newreq->authData'
            at line 590 of pmdb.c in function 'PushRequestorQueue'.
              &newreq->authData allocated at line 559.
              &newreq->authData uninitialised when authLen <= 0 at line 568.
            at line 591 of pmdb.c in function 'PushRequestorQueue'.
              &newreq->authData allocated at line 559.
              &newreq->authData uninitialised when authLen <= 0 at line 568
                  and newreq->authName == NULL at line 574.
      Possible access to uninitialised memory '&newreq->authName'
            at line 588 of pmdb.c in function 'PushRequestorQueue'.
              &newreq->authName allocated at line 559.
              &newreq->authName uninitialised when authLen <= 0 at line 568.
            at line 589 of pmdb.c in function 'PushRequestorQueue'.
              &newreq->authName allocated at line 559.
              &newreq->authName uninitialised when authLen <= 0 at line 568
                  and newreq->authName != NULL at line 574.

    [ This bug was found by the Parfait 1.5.1 bug checking tool.
      http://labs.oracle.com/pls/apex/f?p=labs:49:::::P49_PROJECT_ID:13 ]

    autogen.sh: Honor NOCONFIGURE=1
    See http://people.gnome.org/~walters/docs/build-api.txt

    configure: Drop AM_MAINTAINER_MODE

    This is not a GNU project, so declare it foreign.

    Assume signal handlers return void, as C89 requires
    Drops use of Imake's obsolete SIGNALRETURNSINT.

(wiz)

2015-08-06 07:19:08 UTC MAIN commitmail json YAML

Updated x11/xcmsdb to 1.0.5

(wiz)

2015-08-06 07:18:58 UTC MAIN commitmail json YAML

Update to 1.0.5:

    xcmsdb 1.0.5

    _XcmsGetProperty: don't deal with uninitialized values, fail instead
    Import commit 502d414118c97d35a44f8e295709682022876331 from the
    master copy of this code in libX11.

    Only use results from GetWindowProperty if it returned Success
    Since Xlib prior to 1.6 didn't always clear values on failure, don't
    assume they're safe to use unless we succeeded.

    Reported by Oracle Parfait 1.5.1:
    Error: Uninitialised memory
      Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_format'
            at line 743 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
              ret_format allocated at line 733.
            at line 757 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
              ret_format allocated at line 733.
      Uninitialised memory variable (CWE 457): Possible access to uninitialised memory variable 'ret_prop'
            at line 748 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
              ret_prop allocated at line 731.
            at line 762 of app/xcmsdb/xcmsdb.c in function 'RemoveSCCData'.
              ret_prop allocated at line 731.

    Strip trailing whitespace from source files
    git ls-files | xargs gsed -i 's/[ \t]*$//'

    autogen.sh: Honor NOCONFIGURE=1
    See http://people.gnome.org/~walters/docs/build-api.txt

    configure: Drop AM_MAINTAINER_MODE

    config: Add missing AC_CONFIG_SRCDIR
    Regroup AC statements under the Autoconf initialization section.
    Regroup AM statements under the Automake initialization section.

    Remove break statements immediately after return statements
    Silences clang -Wunreachable-code warnings

    Fix const char * warnings

    Add -version option to print program version
    Adds both -version and previously undocumented -help to man page

    Print which option was in error along with usage message

    Combine usage message strings

(wiz)

2015-08-06 07:14:57 UTC MAIN commitmail json YAML

2015-08-06 07:14:46 UTC MAIN commitmail json YAML

Update to 1.0.3:

    xmh 1.0.3

    Fixes misplaced shortcut in man page: #89003
    The shortcut Meta-h was on the wrong row in the man page.
    Fixes: https://bugs.freedesktop.org/show_bug.cgi?id=89003

    autogen.sh: Honor NOCONFIGURE=1
    See http://people.gnome.org/~walters/docs/build-api.txt

    configure: Drop AM_MAINTAINER_MODE

    config: Add missing AC_CONFIG_SRCDIR
    Regroup AC statements under the Autoconf initialization section.
    Regroup AM statements under the Automake initialization section.

    Don't rely on the ability to set tan stops.  Use tables instead.
    Also, fix a presentational abuse of the .SS macro.

    config: move man pages into their own directory
    Use services provided by XORG_MANPAGE_SECTIONS.
    Use standard Makefile for man pages.

    man: replace hard coded man page section with substitution strings

    man: remove trailing spaces and tabs
    Using s/[ \t]*$//

    config: replace deprecated AM_CONFIG_HEADER with AC_CONFIG_HEADERS
    This silences an Autoconf warning

    config: replace deprecated AC_HELP_STRING with AS_HELP_STRING
    This silences an Automake warning.

(wiz)

2015-08-06 07:02:03 UTC MAIN commitmail json YAML

Updated fonts/AnonymousPro to 1.002

(wiz)

2015-08-06 07:01:53 UTC MAIN commitmail json YAML

Update to 1.002, from Benedek Gergely on pkgsrc-users.

8 September 2010 (Mark Simonson) Anonymous Pro Version 1.002
- Fixed (stupid) incorrect design of quotesinglbase and quotedblbase
- Lengthened hyphen
- Shortened underscore so that it is distinct from adjacent underscores
- Increased the weight of the ampersand to make it visually the same weight as other glyphs
- Adjusted vertical position of "<", ">" and math characters to align with hyphen
- Modified design of Cyrillic "ze" to better distinguish it from "3"
- Modified 12ppm and 13ppm "m" bitmap so it does not touch adjacent glyphs
- Corrected asymmetrical parentheses in 13ppm bitmaps
- Corrected missing encoding of .null and CR
- Added installation instructions for Linux to README.txt

(wiz)

2015-08-06 06:56:45 UTC MAIN commitmail json YAML

Updated print/cups to 2.0.4

(wiz)

2015-08-06 06:56:33 UTC MAIN commitmail json YAML

Update to 2.0.4:

CHANGES IN CUPS V2.0.4

- Fixed a bug in cupsRasterWritePixels (STR #4650)
- Fixed redirection in the web interface (STR #4538)
- The IPP backend did not respond to side-channel requests (STR #4645)
- The scheduler did not start all pending jobs at once (STR #4646)
- The web search incorrectly searched time-at-xxx values (STR #4652)
- Fixed an RPM spec file issue (STR #4657)
- The scheduler incorrectly started jobs while canceling multiple jobs
  (STR #4648)
- Fixed processing of server overrides without port numbers (STR #4675)
- Documentation changes (STR #4651, STR #4674)

(wiz)

2015-08-06 06:35:19 UTC MAIN commitmail json YAML

2015-08-06 06:35:11 UTC MAIN commitmail json YAML

Update to 1.85b:

--------------
Version 1.85b:
--------------

  - Fixed a garbled sentence in notes on parallel fuzzing. Thanks to Jakub Wilk.

  - Fixed a minor glitch in afl-cmin. Spotted by Jonathan Foote.

--------------
Version 1.84b:
--------------

  - Made SIMPLE_FILES behave as expected when naming backup directories for
    crashes and hangs.

  - Added the total number of favored paths to fuzzer_stats. Requested by
    Ben Nagy.

  - Made afl-tmin, afl-fuzz, and afl-cmin reject negative values passed to
    -t and -m, since they generally won't work as expected.

  - Made a fix for no lahf / sahf support on older versions of FreeBSD.
    Patch contributed by Alex Moneger.

(wiz)

2015-08-06 06:27:44 UTC MAIN commitmail json YAML

Updated mail/p5-MIME-Types to 2.11

(wiz)

2015-08-06 06:27:36 UTC MAIN commitmail json YAML

Update to 2.11:

version 2.11: Tue Jun 16 17:16:20 CEST 2015

Improvements:
- strict Perl 5.8
  rt.cpan.org #105267 [Miyagawa], cpantesters

version 2.10: Mon Jun 15 17:32:22 CEST 2015

Fixes:
- accept field 'q' weights [Theo van Hoesel]

Improvements:
- introduce PERL_MIME_TYPE_DB
  rt.cpan.org#104945 [Philip Gwyn]

(wiz)

2015-08-06 04:17:34 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Dispatch to 2.46

(wen)

2015-08-06 04:16:56 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Dispatch to 2.46

(wen)

2015-08-06 04:15:52 UTC MAIN commitmail json YAML

Update to 2.46

Upstream changes:
2.46    2015-08-05

- Really make the per-thread locking in the Syslog output work. Based on a
  patch by David Schweikert. GitHub #9.

2.45    2015-06-14

- Don't include threads and threads::shared in list of dependencies. This is
  only needed for Log::Dispatch::Syslog and is loaded at runtime as needed
  (which has its own issues but ...). Reported by Kent Fredric. RT #103392.

(wen)

2015-08-06 03:37:56 UTC MAIN commitmail json YAML

Updated devel/p5-File-Slurp-Tiny to 0.004

(wen)

2015-08-06 03:37:23 UTC MAIN commitmail json YAML

Updated devel/p5-File-Slurp-Tiny to 0.004

(wen)

2015-08-06 03:36:25 UTC MAIN commitmail json YAML

Update to 0.004

Upstream changes:
0.004    2015-07-15 16:51:45+02:00 Europe/Amsterdam
          Add discouragement notice
          Don't skip '.\n' amd '..\n' in read_dir
          Don't install benchmark.pl

(wen)

2015-08-06 02:27:01 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.161000

(wen)

2015-08-06 02:25:48 UTC MAIN commitmail json YAML

Updated www/p5-Dancer2 to 0.161000

(wen)

2015-08-06 02:24:09 UTC MAIN commitmail json YAML

Update to 0.161000

Upstream changes:
0.161000  2015-07-08 14:57:16+02:00 Europe/Amsterdam

    [ BUG FIXES ]
    * GH #915, #930: Check existence of optional extension headers when
      behind proxy. (Andy Beverley, Pedro Melo, Russell Jenkins)
    * GH #926, #940: Set session directory default to $apprdir/session.
      (Russell Jenkins)
    * GH #936, #939: Use the error_template configuration on a 404.
      (Russell Jenkins)
    * GH #844, #937: Non-hash serialized params do not cause a crash. (Sawyer X)
    * GH #943: Pass @_ to UNIVERSAL's VERSION so it validates version number.
      (Sawyer X)
    * GH #934: Cleanup internals in the old Dispatcher. (Russell Jenkins)

    [ DOCUMENTATION ]
    * Sanitize Changes
    * GH #938: Fix POD link to params keyword. (Ludovic Tolhurst-Cleaver)
    * GH #935: Provide more details and considerations when using
      behind_proxy. (Andy Beverley)

    [ ENHANCEMENT ]
    * GH #933: use note in tests to produce cleaner non-verbose output (Vernon)
    * Remove unnecessary dependencies: build chain should be smaller. (Sawyer X)
    * No need for Module::Build. (Sawyer X)
    * GH #911: Dancer2 request object is now a subclass of Plack::Request.
      It's also much faster now. (Sawyer X)

(wen)

2015-08-06 02:15:07 UTC MAIN commitmail json YAML

Updated databases/p5-DBI to 1.634

(wen)

2015-08-06 02:13:57 UTC MAIN commitmail json YAML

Update to 1.634

Upstream changes:
Changes in DBI 1.634 - 3rd August 2015

    Enabled strictures on all modules (Jose Luis Perez Diez) #22
        Note that this might cause new exceptions in existing code.
        Please take time for extra testing before deploying to production.
    Improved handling of row counts for compiled drivers and enable them to
        return larger row counts (IV type) by defining new *_iv macros.
    Fixed quote_identifier that was adding a trailing separator when there
        was only a catalog (Martin J. Evans)

    Removed redundant keys() call in fetchall_arrayref with hash slice (ilmari) #24
    Corrected pod xref to Placeholders section (Matthew D. Fuller)
    Corrected pod grammar (Nick Tonkin) #25

    Added support for tables('', '', '', '%') special case (Martin J. Evans)
    Added support for DBD prefixes with numbers (Jens Rehsack) #19
    Added extra initializer for DBI::DBD::SqlEngine based DBD's (Jens Rehsack)
    Added Memory Leaks section to the DBI docs (Tim)
    Added Artistic v1 & GPL v1 LICENSE file (Jose Luis Perez Diez) #21

(wen)

2015-08-06 02:03:49 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Deep to 0.117

(wen)

2015-08-06 02:02:51 UTC MAIN commitmail json YAML

Updated devel/p5-Test-Deep to 0.117

(wen)

2015-08-06 02:01:34 UTC MAIN commitmail json YAML

Update to 0.117
Remove PKGREVSION line

Upstream changes:
0.117    2015-06-21
        - do not lose argument(s) to import
          (fixes https://github.com/rjbs/Test-Deep/issues/29 )

0.116    2015-06-20
        - on its own, :preload options uses default group of exports

(wen)

2015-08-06 01:54:03 UTC MAIN commitmail json YAML

pdated databases/p5-SQL-Translator to 0.11021

(wen)

2015-08-06 01:53:12 UTC MAIN commitmail json YAML

pdated databases/p5-SQL-Translator to 0.11021

(wen)

2015-08-06 01:52:03 UTC MAIN commitmail json YAML

Update to 0.11021

Upstream changes:
0.11021 2015-01-29

* Fix Oracle producer generating an unnecessary / at the end in case there
  are no triggers
* Skip HTML tests if CGI is not installed (RT#98027)
* Fix JSON and YAML tests if the defaults have been tweaked (RT#98824)
* Fixes for parsing and producing identifiers and values that need
  quoting and escaping for SQLite, MySQL, PostgreSQL, SQLServer and
  Oracle (RT#90700, RT#31034)
* Add support for ALTER TABLE ... ADD CONSTRAINT to Oracle parser
* Add trigger support to Oracle parser (RT#62927)
* Fix erroneous PostgreSQL floating point type translations (RT#99725)
* Remove executable bit from Parser/JSON.pm (RT#100532)
* Update the Free Software Foundation's address (RT#100531)
* Provide default index names for SQLite (GH#45)
* Fix SQLite diffing on perl 5.8.1
* Fix multi-column indexes in Parser::DBI::PostgreSQL
* Fix array data types in Parser::PostgreSQL (GH#49)
* Fix multidimensional sizes in Parser::PostgreSQL

(wen)

2015-08-06 01:46:30 UTC MAIN commitmail json YAML

Updated databases/p5-SQL-Statement to 1.407

(wen)

2015-08-06 01:45:40 UTC MAIN commitmail json YAML

Updated databases/p5-SQL-Statement to 1.407

(wen)

2015-08-06 01:44:40 UTC MAIN commitmail json YAML

Update to 1.407
Add missing DEPENDS

Upstream changes:
1.407 2015-05-26
    * Release 1.406_002 without further changes as 1.407

1.406_002 2015-05-22
    [Bug fixes]
    * Fix RT#104579: Redundant argument in sprintf
      submitted by Slaven Rezi
    * Fix RT#104589: t/14parse.t fails if Test::Deep is not installed
      submitted by Slaven Rezi

1.406_001 2015-05-20
    [Misc]
    * clean up Makefile.PL, meta-data and requirements

    [Bug fixes]
    * Fix SQL function CONV to use limited number of sane character sets
      for conversion and rely on Math::Base::Convert instead of own code
      (suggested by Tom Wyant in RT#100551, thanks Tom)
    * fix handling of literal identifiers and for every IMPORT rely on
      literal identifiers to avoid parser errors for column names starting
      with numbers or similar
    * fix capability cache: "$class->can(...)" might return undef and
      therefore inexistent capabilities are queried to often
    * Fix COUNT(DISTINCT col) without GROUP BY clause (patch submitted
      by Grant Mathews, thanks Grant)
    * Fix "parse insert with functions" submitted via GitHub PR#6 by
      fecundf and RT#96628
    * Fix RT#93320: SQL-style comment can not begin inside quotes by
      Tom Wyant - thanks Tom

    [Improvements]
    * reduce blocks and rewrite some inner statements to increase speed
      of sql command processing

(wen)

2015-08-06 01:37:08 UTC MAIN commitmail json YAML

Added math/p5-Math-Base-Convert version 0.08

(wen)

2015-08-06 01:35:25 UTC MAIN commitmail json YAML

add p5-Math-Base-Convert

(wen)

2015-08-06 01:32:11 UTC MAIN commitmail json YAML

Import Math-Base-Convert-0.08 as math/p5-Math-Base-Convert.

This module provides fast functions and methods to convert between arbitrary
number bases from 2 (binary) thru 65535.

This module is pure Perl, has no external dependencies, and is backward
compatible with old versions of Perl 5.

(wen)

2015-08-06 00:17:50 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-Introspector to 0.001005

(wen)

2015-08-06 00:17:07 UTC MAIN commitmail json YAML

Updated databases/p5-DBIx-Introspector to 0.001005

(wen)

2015-08-06 00:15:47 UTC MAIN commitmail json YAML

Update to 0.001005

Upstream changes:
0.001005  2015-01-29 17:47:49-06:00 America/Chicago
- Fix error message for missing values (Thanks Wes Malone!)

(wen)

2015-08-05 21:41:38 UTC MAIN commitmail json YAML

Point out when the latest update was, and that there's a newer
version in gnumeric112 (and gnumeric110 for gnumeric).

(he)

2015-08-05 21:35:13 UTC MAIN commitmail json YAML

Note update of math/gnumeric112 to 1.12.21.

(he)

2015-08-05 21:34:17 UTC MAIN commitmail json YAML

Update to version 1.12.21.

Pkgsrc changes:
* Modify license to dual either gpl2 or gpl3.
* Adjust BUILDLINK_API_DEPENDS settings from configure.ac.
* Adjust PLIST to files now installed.
* Add comments to the existing patches.

Upstream notable changes (see ChangeLog in source for details):
gnumeric 1.12.21:
  * ODS import/export fixes
  * XLSX import/export fixes

gnumeric 1.12.20:
  * ODF import/export fixes and enhancements.
  * XLSX import/export fixes and enhancements.

gnumeric 1.12.19:
  * (no noteworthy major changes)

gnumeric 1.12.18:
  * Workaround gtk+ api/abi breaks.

gnumeric 1.12.17:
  * xlsx import/export improvements.

gnumeric 1.12.16:
  * ODS import/export improvements

gnumeric 1.12.15:
  * ods/xlsx graph import fixes
  * ods import/export fixes

gnumeric 1.12.14:
  * Many fixes related to conditional formats.
  * Try to disable Ubuntu's non-working scroll bars.

gnumeric 1.12.13:
  * ods import/export export fixes.
  * xls import/export export fixes.

gnumeric 1.12.12:
  * Test suite improvements.
  * ods import/export improvements
  * xls import/export improvements
  * xlsx import/export improvements

gnumeric 1.12.11:
  * A problem with saving to Excel97 format was fixed.

gnumeric 1.12.10:
  * Accuracy improvements
  * Work around gtk+ abi breaks
  * Win32 improvements

(he)

2015-08-05 21:18:35 UTC MAIN commitmail json YAML

Updated lang/racket-textual to 6.2

(asau)

2015-08-05 21:17:48 UTC MAIN commitmail json YAML

Updated lang/racket to 6.2

(asau)

2015-08-05 21:17:13 UTC MAIN commitmail json YAML

Updated lang/chicken to 4.10.0

(asau)

2015-08-05 21:14:29 UTC MAIN commitmail json YAML

Update to Racket 6.1.1

Changes:

* The MAC OS X YOSEMITE compatibility problems are fixed. We
  bundled a patched Pango text-drawing library with Racket.

* The WINDOWS [32-bit] releases fixes the window-update crashes.
  We bundled a patched Cairo drawing library with Racket.

* TYPED RACKET closes two safety holes in the exception system.
  The revised type system restricts `raise' to send only
  instances of the `exn' structure type and flat data to
  handlers. It also checks exception handlers properly.
  NOTE: Previously well-typed programs may fail to typecheck.

* TYPED RACKET'S typed regions support casts and predicates.

* 2HTDP/IMAGE'S notion of equality ignores an image's baseline.

* The PACKAGE MANAGER supports a binary library installation mode,
  which allows users to install packages without source or
  documentation.  Use the `--binary-lib' option with `raco pkg
  install'.

* The new DRRACKET-TOOL-LIB package factors out parts of DrRacket's
  IDE so that they can be reused with other editors, such as Emacs.

* The COMPILER'S use-before-defined analysis has been repaired for
  certain forms of nested `letrec', some `let' forms, and some
  uses of `set!' or `with-continuation-mark'.

* The COMPILER performs additional bytecode optimizations.
  Thanks to Gustavo Massaccesi.

* The CML library comes with a new `replace-evt' event constructor.
  Thanks to Jan Dvorak.

* REDEX'S benchmark suite comes with a description of the benchmark
  programs.

* REDEX'S metafunctions can be typeset using the "large left brace"
  notation for conditionals.

* The CONTRACT library comes with an improved `contract-stronger?'.
  Its error messages note that the contract itself might be wrong.

* The GUI library is DPI-aware on Windows.

* The OPENSSL library supports Server Name Indication for servers.
  Thanks to Jay Kominek.

* The SYNTAX/PARSE library allows the definition of new pattern
  forms via pattern expanders, similar to match expanders.
  Thanks to Alex Knauth.

* OpenGL on Linux no longer depends on libgtkgl, and core profiles
  are supported (see `set-legacy?').

* The TEACHING LANGUAGES' unit test framework supports
  `check-satisfied', a construct for checking whether a result
  satisfies a predicate, e.g.: (check-satisfied (sort l) sorted?)

(asau)

2015-08-05 20:42:22 UTC MAIN commitmail json YAML

Amend distinfo for removed patch.

(asau)

2015-08-05 20:41:14 UTC MAIN commitmail json YAML

Update to CHICKEN 4.10.0

This is mostly a bugfix release, containing quite a lot of accumulated
bug fixes but relatively few new features.  Nevertheless, there are a
great many changes in this release since 4.9.0.  It has three security
bugfixes: for CVE-2014-6310, CVE-2014-9651 and CVE-2015-4556.

Another important security-related cleanup/improvement is related to path
expansion: many file procedures in CHICKEN used to automatically and
implicitly convert paths containing tilde ("~") characters to $HOME,
and expand shell variables.  This behaviour was deprecated in 4.9.0,
and has now been removed, in favor of the "pathname-expand" egg.

A few of the build variables have been renamed, so if you have a custom
build script, please review the NEWS file carefully.

Other notable changes:

* The performance of reading and writing SRFI-4 u8vectors has been
  substantially improved.
* Various bugs in the functors implementation have been fixed, making
  them better usable.
* chicken.h can once more be correctly compiled with a C++ compiler.
* The -r5rs-syntax flag has been fixed to enforce r5rs syntax.

For the full list of changes, see bundled NEWS or
http://code.call-cc.org/releases/4.10.0/NEWS-4.10.0

(asau)

2015-08-05 20:17:51 UTC MAIN commitmail json YAML

2015-08-05 19:51:50 UTC MAIN commitmail json YAML

2015-08-05 18:14:27 UTC MAIN commitmail json YAML

Adjust the precompiled header changes to the latest version used in the
NetBSD tree

(martin)

2015-08-05 15:29:43 UTC MAIN commitmail json YAML

Updated databases/pgadmin3 to 1.20.0

(richard)

2015-08-05 15:29:00 UTC MAIN commitmail json YAML

update to pgadmin3 1.20.0

primary changes include:
Date      Dev Ver    Change details
---------- --- ------  --------------
2014-11-28 AV  1.20.0  Resolving the inconsistency of preservation of modified
                      information of the columns, while adding/editing a table
                      from the table dialog [Reported by Jasmine Liu, Patch
                      from Sanket Mehta, and reviewed by Akshay Joshi and me]
2014-11-22 GL  1.20.0  Add missing nodes to graphical explain plan [J.F. Oster]
2014-11-03 AV  1.20.0  Fix the Resource Groups dialog - separated the
                      statements, which can not be ran in single transaction
                      [Akshay Joshi]
2014-10-28 AV  1.20.0  Support for Slony-I 2.2+ with PostgreSQL 9.3+
                      [Neel Patel, Akshay Joshi, Sanket Mehta, Ashesh Vashi]
2014-10-28 AV  1.20.0  Support smallserial columns in Edit Data Window
                      [J.F. Oster]
2014-10-28 AV  1.20.0  Restore the user specified size on the grid (which
                      contains the result) in Query windows to fix an issue
                      related to the column size is too narrow on subsequent
                      Explain execution [J.F. Oster]
2014-10-28 AV  1.20.0  Empty the Undo/Redo history everytime new file is opened
                      [J.F. Oster]
2014-10-28 AV  1.20.0  Added accelerator F8 for 'Execute to file' in the Query
                      window [Mads Jensen]
2014-10-28 AV  1.20.0  Beautify the query shown in the SQL pane for the
                      functions having multiple arguments by adding new lines
                      with small modification by me [J.F. Oster]
2014-10-13 AV  1.20.0  Check for the columnlist for the UPDATE OF syntax on
                      trigger also works with PPAS 9.5+ [Sanket Mehta]
2014-09-27 AV  1.20.0  Proper saving of columns width in the server status
                      window [Dmitriy Olshevskiy]
2014-09-19 DP  1.20.0  Fix support for triggers with inline code on PPAS
                      [Sanket Mehta]
2014-08-09 AV  1.20.0  CHECK OPTION is applicable to the views only, and not
                      the materialized views
2014-08-09 GL  1.20.0  Prevent a crash during the update of the macro or
                      favourite list [Dmitriy Olshevskiy]
2014-07-20 AV  1.20.0  Allow quick injectection of favourites by name
                      [J.F. Oster]
2014-07-20 AV  1.20.0  Fix handling of saving macros after pasting a query in
                      the box [Dmitriy Olshevskiy]
2014-07-14 GL  1.18.2  Fix SQL for GRANT on a sequence. Report from
                      liuyuanyuan.
2014-07-03 DP  1.20.0  Fix handling of char()[] columns in the Edit Grid
                      [Dmitriy Olshevskiy]
2014-07-02 GL  1.20.0  Support the new check_option parameter of views
2014-07-02 GL  1.20.0  Handle the 9.4 MOVE clause of ALTER TABLESPACE
2014-07-02 GL  1.20.0  Add a new action menu to refresh a materialized view
2014-07-02 GL  1.20.0  Support the new 9.4 columns in pg_stat_activity
2014-06-27 DP  1.20.0  Save search options for next time [Dimitriy Olshevskiy]
2014-06-25 DP  1.20.0  Ensure Favourite queries are only saved when the OK
                      button is pressed [Dmitriy Olshevskiy]
2014-06-18 DP  1.20.0  Fix an issue refreshing functions in PPAS packages
                      [Akshay Joshi]
2014-06-18 DP  1.20.0  Improve handling of lost connections [Ashesh Vashi]
2014-06-12 DP  1.20.0  Allow searching for database objects by comment and
                      definition content [J.F. Oster]
2014-06-10 DP  1.20.0  Add support for Resource Groups in PPAS 9.4 [Akshay
                      Joshi]
2014-06-07 DP  1.20.0  Add Save and Exit shortcut keys to the edit grid
                      [Fredrik de Vibe]
2014-05-28 DP  1.18.2  Fix escape handling in pgpass files [Akshay Joshi]
2014-05-04 GL  1.18.2  GQB forgot the materialized views. Report from Eduard
                      Szæ—¦cs.
2014-02-13 AV  1.20.0  Enable backward search in SQL Box using Shift + F3
                      [J.F. Oster]
2014-03-07 AV  1.18.2  Don't set log_min_messages from the debugger
2014-03-07 AV  1.18.2  Fix a crash on OSX when run explain through shortcut in
                      query editor, when mouse is over a existing shape, and
                      popup, showing the step information, is on. Report from
                      Attila Soki
2014-02-26 AV  1.18.2  Using the GetOid() function instead of GetLong() for
                      Oid columns [Ian Barwick]
2014-02-13 DP  1.20.0  Allow more flexible selection/deselection of rows and
                      columns in Edit Grid [J.F. Oster]
2014-02-12 GL  1.20.0  Allow more options with the plain backup.
2014-02-11 DP  1.18.2  Fix SQL comments for inherited columns [J.F. Oster].
2014-01-27 AV  1.18.2  Flush the changes in the settings as soon as new server
                      is added [Kaarel Moppel]
2014-01-27 DP  1.18.2  Don't include obsolete config settings from <= 8.3 in the
                      config editor unless running on an appropriate server.
                      [Neel Patel].
2013-12-16 DP  1.20.0  Use a much smarter auto-sizing algorithm for the columns
                      in the Query Tool output grid [J.F. Oster].
2013-12-06 DP  1.20.0  Remember the last panel used on the Options dialogue,
                      and display the default panel if a group node is
                      selected on the tree [J.F. Oster]
2013-12-06 DP  1.18.2  Ensure the Type dialogue detects name changes [Timon].
2013-12-06 DP  1.18.2  Ensure report titles don't overflow the page width
                      [Dhiraj Chawla]
2013-11-25 DP  1.18.2  Ensure reports overflow the page width properly [Akshay
                      Joshi]
2013-11-20 DP  1.18.2  Add missing "port" option for SSH tunnels [Akshay Joshi].
2013-11-18 AV  1.18.2  Set 32bit PostgreSQL, EnterpriseDB PATH (in case - 64bit
                      respective applications not found, and 32bit(s) are
                      available) for 64bit pgAdmin III [Dinesh Kumar].
2013-10-22 AV  1.18.2  Improved the debugger to work better with PPAS <= 9.2
2013-10-22 DP  1.18.2  Fix the handling of the "Valid Until" date/time on the
                      role dialogue on Mac [Dinesh Kumar].
2013-10-13 GL  1.20.0  Allow parallel dump with -j starting with 9.3

(richard)

2015-08-05 15:17:43 UTC MAIN commitmail json YAML

Updated net/owncloudclient to 1.8.4

(ryoon)

2015-08-05 15:17:21 UTC MAIN commitmail json YAML

Update to 1.8.4

Chagelog:
Release 1.8.4 July 13th 2015
    Release to ship a security release of openSSL. No source changes of the ownCloud Client code.

Release 1.8.3 June 23th 2015
    Fix a bug in the Windows Installer that could crash explorer (#3320)
    Reduce 'Connection closed' errors (#3318, #3313, #3298)
    Ignores: Force a remote discovery after ignore list change (#3172)
    Shibboleth: Avoid crash by letting the webview use its own QNAM (#3359)
    System Ignores: Removed *.tmp from system ignore again. If a user wants to ignore *.tmp, it needs to be added to the user ignore list.

Release 1.8.2 (retracted) June 8th 2015
    Improve reporting of server error messages (#3220)
    Discovery: Ignore folders with any 503 (#3113)
    Wizard: Show server error message if possible (#3220)
    QNAM: Fix handling of mitm cert changes (#3283)
    Win32: Installer translations added (#3277)
    Win32: Allow concurrent OEM (un-)installers (#3272)
    Win32: Make Setup/Update Mutex theme-unique (#3272)
    HTTP: Add the branding name to the UserAgent string
    ConnectonValidator: Always run with new credentials (#3266)
    Recall Feature: Admins can trigger an upload of a file from client to server again (#3246)
    Propagator: Add 'Content-Length: 0' header to MKCOL request (#3256)
    Switch on checksum verification through branding or config
    Add ability for checksum verification of up and download
    Fix opening external links for some labels (#3135)
    AccountState: Run only a single validator, allow error message overriding (#3236, #3153)
    SyncJournalDB: Minor fixes and simplificatons
    SyncEngine: Force re-read of folder Etags for upgrades from 1.8.0 and 1.8.1
    Propagator: Limit length of temporary file name (#2789)
    ShareDialog: Password ui fixes (#3189)
    Fix startup hang by removing QSettings lock file (#3175)
    Wizard: Allow SSL cert dialog to show twice (#3168)
    ProtocolWidget: Fix rename message (#3210)
    Discovery: Test better, treat invalid hrefs as error (#3176)
    Propagator: Overwrite local data only if unchanged (#3156)
    ShareDialog: Improve error reporting for share API fails
    OSX Updater: Only allow updates only if in /Applications (#2931)
    Wizard: Fix lock icon (#1447)
    Fix compilation with GCC 5
    Treat any 503 error as temporary (#3113)
    Work around for the Qt PUT corruption bug (#2425)
    OSX Shell integration: Optimizations
    Windows Shell integration: Optimizations

(ryoon)

2015-08-05 15:16:43 UTC MAIN commitmail json YAML

Updated www/php-owncloud to 8.1.0

(ryoon)

2015-08-05 15:16:10 UTC MAIN commitmail json YAML

Update to 8.1.0

Changelog:
Version 8.1.0 July 6th 2015

    Much polishing, stability and performance improvements
    Encryption 2.0
    Updated Documents
    New Mount Options for External Storage
    Federated Cloud ID
    Integrated documentation
    LDAP Wizard Improvements
    Security Improvements
    App store improvements
    Release channels
    ownCloud API work: 190 new calls, 50 replaced
    Many small improvements

(ryoon)

2015-08-05 14:06:15 UTC MAIN commitmail json YAML

Updated fonts/umefont-ttf to 0.530

(ryoon)

2015-08-05 14:05:46 UTC MAIN commitmail json YAML

Update to 0.530

Status:
Unadjusted glyphs (characters; 1st pass): Uninode 855c-8b95
Unadjusted glyphs (Bushu; 1st pass): Kusakanmuri, Mushi, Koromo, Gonben

(ryoon)

2015-08-05 13:19:52 UTC MAIN commitmail json YAML

Remove contao34 related lines.

(taca)

2015-08-05 13:12:33 UTC MAIN commitmail json YAML

Removed editors/TeXmacs-devel

(ryoon)

2015-08-05 13:11:36 UTC MAIN commitmail json YAML

Remove TeXmacs-devel.

(ryoon)

2015-08-05 13:11:03 UTC MAIN commitmail json YAML

2015-08-05 13:09:42 UTC MAIN commitmail json YAML

Updated editors/TeXmacs to 1.99.2

(ryoon)

2015-08-05 13:09:17 UTC MAIN commitmail json YAML

Update to 1.99.2

Changelog:
<TeXmacs|1.99.2>

<style|<tuple|tmdoc|english>>

<\body>
  <tmdoc-title|<TeXmacs> changelog>

  <section|Changes from version 1.99.1 to 1.99.2>

  <\itemize>
    <item>Enabled new style fonts as the default (1.99.2).

    <item>Use small amount of intercharacter stretching by default (1.99.2).

    <item>Nicer search and replace system (1.99.2).

    <item>Added support for the Croatian language (1.99.2).

    <item>Added experimental ``conservative'' converters for <LaTeX>
    (1.99.2).

    <item>Various improvements for <LaTeX> converters (1.99.2).

    <item>Various bug fixes (1.99.2).
  </itemize>

  <section|Changes from version 1.0.7 to 1.99.1>

  <\itemize>
    <item>Activate the native Pdf renderer by default (1.99.1).

    <item>Many, many bug fixes (1.99.1).

    <item>Introduction of a debugging console (1.99.1).

    <item>Limited recovery from errors (1.99.1).

    <item>Started implementation of search and replace widget (1.99.1).

    <item>Support for marginal notes (1.99.1).

    <item>Complete reorganization of document styles and package (1.0.7.21).

    <item>Major improvements for upcoming native Pdf renderer (1.0.7.21).

    <item>New focus preferences menu (1.0.7.21).

    <item>New widgets for editing macros (1.0.7.21).

    <item>Improved CJK typesetting and support for Fandol fonts (1.0.7.21).

    <item>Stretchable space between letters (1.0.7.21).

    <item>Implementation of protrusion for the standard <verbatim|ecrm> font
    (1.0.7.21).

    <item>Improved ornaments and typesetting adjustments (1.0.7.21).

    <item>Improved presentation mode (1.0.7.20).

    <item>Various improvements for <LaTeX> import and export (1.0.7.20).

    <item>Rewritten <name|Scilab> plug-in (1.0.7.20).

    <item>Better portability of various plug-ins (1.0.7.20).

    <item>Various graphical font effects; experimental, not yet in interface
    (1.0.7.20).

    <item>Profound reorganization of the font system with experimental option
    for testing (1.0.7.19).

    <item><LaTeX> import and export of metadata for various standard styles
    (1.0.7.19).

    <item>Running plug-ins over remote SSH connections; experimental
    (1.0.7.19).

    <item>Started implementation of remote <TeXmacs> file system (1.0.7.19).

    <item>Improved portability of plug-in detection (1.0.7.19).

    <item>Implementation of arbitrary zoom factors and ``fit to paragraph
    width'' (1.0.7.18).

    <item>New widget for user preferences (1.0.7.18).

    <item>More implicit user preferences (1.0.7.18).

    <item>Add developer tools, still experimental (1.0.7.18).

    <item>Start implementation of basic infrastructure for support of system
    fonts (1.0.7.18).

    <item>Started reorganization of titles and other meta-data for documents
    (1.0.7.18).

    <item>Automated generation of documentation about the <name|Scheme> files
    (1.0.7.17).

    <item>Various improvements for <LaTeX> conversion and character encodings
    (1.0.7.17).

    <item>Various improvements for <LaTeX> import (1.0.7.16).

    <item>New and improved <name|Reduce> interface (1.0.7.16).

    <item>Reorganized buffer management and documentation of the new API
    (1.0.7.16).

    <item>Rudimentary support for version control using SVN (1.0.7.16).

    <item>Rudimentary support for graphical macros without text (1.0.7.16).

    <item>Experimental interface with Inkscape (1.0.7.16).

    <item>First rudimentary spreadsheet facility (1.0.7.15).

    <item>Special editing mode for writing <TeXmacs> documentation
    (1.0.7.15).

    <item>Added new widgets to X version, with Qt analogues in progress
    (1.0.7.15).

    <item>Many bug fixes (1.0.7.15).

    <item>New icons for Qt version of <TeXmacs> (1.0.7.14).

    <item>Many bug fixes for graphics mode (1.0.7.14).

    <item>Improved extensible arrows (1.0.7.14).

    <item>Experiment with new set of icons (1.0.7.13).

    <item>Fix Qt image support (1.0.7.13).

    <item>Various bug fixes (1.0.7.13).

    <item>Added plug-in for the <name|Axiom> fork <name|Fricas> (1.0.7.13).

    <item>Make the Qt port default (1.0.7.12).

    <item>Remove the dependency on <TeX>/<LaTeX> (1.0.7.12).

    <item>Distribute the standard fonts with <TeXmacs> (1.0.7.12).

    <item>Move the <TeXmacs> documentation inside the source code (1.0.7.12).

    <item>Support for documentation inside plug-ins (1.0.7.12).

    <item>Support for executable switches (1.0.7.12).

    <item>Markup for CSS and <name|Javascript> customization of generated
    webpages (1.0.7.12).

    <item>Reorganize standard package generation and update website
    (1.0.7.12).

    <item>Support for alpha transparency, Qt version & screen only
    (1.0.7.11).

    <item>Slightly improved interface for presentation mode (1.0.7.11).

    <item>Added debugging facilities when crashing (1.0.7.11).

    <item>Treat big operators as prefixes in mathematical grammar (1.0.7.11).

    <item>Various fixes for native bibliography generator (1.0.7.11).

    <item>Several improvements for <LaTeX> importation (1.0.7.10).

    <item>Menus for mathematical semantics and preferences (1.0.7.10).

    <item>Menus for algorithmic and prominent environments (1.0.7.10).

    <item>Reorganized textual and mathematical menus (1.0.7.10).

    <item>Spacing inside mathematical formulas as a function of adjacency
    semantics (1.0.7.10).

    <item>Further improved support for semantic editing, now at
    <math|\<beta\>>-stage (1.0.7.10).

    <item>Support for remotely controlled laptop presentation (1.0.7.10).

    <item>Many fixes for the Qt version (1.0.7.9).

    <item>Various fixes for semantic editing (1.0.7.9).

    <item>Integrate cursor positions and selections into the undo system
    (1.0.7.9).

    <item>Default to auto-closing and markup-based brackets and big operators
    (1.0.7.9).

    <item>The new interface is more context dependent and based on the newly
    introduced concept of the <em|current focus> (1.0.7.8).

    <item>The graphical user interface has been improved, both for the X11
    and Qt versions (1.0.7.8).

    <item>The generation of dynamic menus and content has been reorganized
    (1.7.0.8).

    <item>The system for contextual overloading has been reorganized
    (1.7.0.8).

    <item>Default look and feel now becomes highly system dependent
    (1.0.7.7).

    <item>Complete reorganization of keyboard shortcuts (1.0.7.7).

    <item>Better support for Gnome, KDE, MacOS and Windows shortcuts
    (1.0.7.7).

    <item>Beta-support for (non rubber) Stix (and some other) fonts
    (1.0.7.7).

    <item>Rudimentary support of CJK input methods in Qt version (1.0.7.7).

    <item>Implementation of a packrat parsing utility (1.0.7.7).

    <item>Add tag type information to DRD (1.0.7.7).

    <item>Source code highlighting based on DRD (1.0.7.7).

    <item>Documentation for beamer style (1.0.7.7).

    <item>Several bug fixes (1.0.7.6).

    <item>Fixes for plug-in support in the Qt port (1.0.7.6).

    <item>Better support for Elsevier styles and JSC (1.0.7.6).

    <item>Several bug fixes for the Qt port (1.0.7.5).

    <item>Replaced testing in <menu|Tools> menu by a nicer debugging tool
    (1.0.7.5).

    <item>Added <verbatim|--enable-pdf-rendering> configuration option for a
    new but experimental native <name|Pdf> export facility (1.0.7.5).

    <item>Native BibTeX-compatible support for bibliographies (1.0.7.5).

    <item>Added a tool for inspection and management of differences between
    two versions (1.0.7.5).

    <item>Improvements in upcoming Qt port (1.0.7.4).

    <item>First beta-release of Qt port for Windows, with installer and build
    environment (1.0.7.4).

    <item>First beta-release of Qt port for MacOS-X, with diskimage
    (1.0.7.4).

    <item>Improvements in upcoming Qt port (1.0.7.3).

    <item>Several bug fixes (1.0.7.3).

    <item>Reimplementation of computer algebra sessions in <name|Scheme>
    (1.0.7.2).

    <item>Cut and paste conform to Opendesktop standard (1.0.7.2).

    <item>Fixes in <LaTeX> export, for latest g++ and mime type support
    (1.0.7.2).

    <item>Replaced <verbatim|fatal_error> exit method by <verbatim|assert>
    statements in code (1.0.7.2).

    <item>Progress on the <name|Windows> version of the <name|Qt> port
    (1.0.7.1).

    <item>Unified memory management for <name|X11> and <name|Qt> version of
    <TeXmacs> (1.0.7.1).

    <item>Added a plug-in for <TeX>graph (1.0.7.1).

    <item>Upgraded license to GNU GPL version 3 or later (1.0.7.1).

    <item>Several fixes and improvements for <name|Html> export (1.0.7.1).

    <item>Development based on <name|Svn> instead of <name|Cvs> (1.0.7.1).
  </itemize>

  <section|Changes from version 1.0.6 to 1.0.7>

  <\itemize>
    <item>Started native Qt port for <TeXmacs> (1.0.7).

    <item>Fixed bugs for re-importing files which were exported to <LaTeX>
    (1.0.7).

    <item>Improved <scheme> mode (1.0.6.15).

    <item>Improved appearance of <name|Wikipedia> mathematical pages
    (1.0.6.15).

    <item>Added plug-in for drawing Feynman diagrams (1.0.6.15).

(ryoon)

2015-08-05 13:08:51 UTC MAIN commitmail json YAML

Updated math/maxima to 5.36.1

(ryoon)

2015-08-05 13:08:22 UTC MAIN commitmail json YAML

Update to 5.36.1

* Use gmake to fix build.

Changelog:

Changes in Release 5.36.1
This is a bug-fix minor release. To see the changes in the major release
5.36, read the Maxima 5.36 change log

Bugs fixed
    Bug 2936: Stack overflow in integrate.
    Bugs in the draw package.
    Problem in loading wxm files from the Explorer in Wxmaxima.

Maxima 5.36 change log
New items in core:
    function parse_timedate: parse time/date string

New items in share:
    function lll: Lenstra-Lenstra-Lovasz algorithm

Changes in core:
    at: remove variables in simplification

Other changes:
    package contrib_ode: update test suite
    package ezunits: additional femto, pico, nano, and micro fractions
    package ezunits: apply rules more aggressively
    package maxima-odesolve: documentation
    package gentran: update
    package draw: geometric transformations for 2D implicit functions
    package coma: new version
    package maximaMathML: hook mechanism
    package noninteractive: new script expand_branches.mac

Bug fixes:
    [#2924]: Maxima fails to run on lisp interpreters
    [#2922]: input '20log(x)' causes strange error
    [#2919]: Definite integration broken: integrate(1/(x^2), x, -inf, inf) gives zero
    [#2913]: trigrat crashes with variable name "e"
    [#2907]: ratsubst(z, sin(x + 1), 0) crashes when radsubstflag = true
    [#2898]: limit of continuous --> und
    [#2892]: julia() and mandelbrot() creates maxout.gnuplot in different place than plot2d()/plot3d()
    [#2883]: load (lsquares); Error
    [#2881]: quad_qags recently got problems evaluating erf
    [#2878]: Installing from maxima-5.35.1.tar.gz requires Makeinfo
    [#2873]: implicit_plot does not accept symbolic ranges
    [#2865]: Use exp as a list
    [#2862]: Incorrect result for integrate(u/(u+1)^2,u,0,inf);
    [#2854]: Integral hangs with domain:complex
    [#2853]: abs_integrate hangs after encountering log(0)

Unnumbered bugs:
    mailing list 2015-03-16: Requesting advice on simplification rules for user-defined operators
    mailing list 2015-02-09: save(..) can't save syntax extensions in a readable form
    mailing list 2015-02-16: expand phenomenon
    mailing list 2015-02-08: Newbie lisp question
    mailing list 2015-01-22: Matrix inversion with detout = true?
    mailing list 2015-01-09: Problem loading package COMA
    mailing list 2015-01-05: order of operands is changed due to source information
    commit [b0a9ab]: Fix jacobi_sc(elliptic_kc(m)/2,m)
    commit [ff92d9]: Fix make_elliptic_f for inverse_jacobi_ns and inverse_jacobi_nc
    commit [b7dc04]: Added device info to paths in cl-info::*info-tables*
    commit [95c186]: Fixes a bug in the style option parser
    commit [bf9a67]: Correct the derivative of bessel_y wrt order: diff(bessel_y(v,z),v)
    commit [0d8d8a]: Handle the (finite) geometric sums with quotient 1.
    commit [b3cffd]: Fix bug controlling non numeric symbols in explicit
    commit [114860]: Add device to maxima-load-pathname-directory.
    commit [72d617]: Fix maxima -s PORT command.

Maxima 5.35 change log

  New items in core:
* in evaluation, allow general expressions as operators

  New items in share:
* package Eulix: numerical solution of ordinary differential equations
* script hermite_reduce.mac: implement Rothstein-Trager algorithm

  Changes in core:
* function supcontext: evaluate argument(s)
* functions supcontext, newcontext: return made-up name if none supplied
* function powerseries: bug fixes

  Other changes:
* many updates to documentation

  Bug fixes:
  #2847: limits of powers of constants
  #2845: Avoid initialization-time compile in commac.lisp
  #2818: Problem with trigreduce
  #2816: Significant reduction in processing LaTeX output in imaxima in new version
  #2815: abs_integrate leads to infinite recursion
  #2814: abs_integrate: integration of x*ceiling(x)
  #2800: a typo in mode_identity documentation
  #2774: desolve doesn't know how to interpret temporary variables
  #2623: shortest_path
  #2575: Integration error: integrate(sqrt(k-k*cos(2*x)), x)
  #2371: limit((exp(a*x)-1)/(exp(a*x)+1),x,inf) fails

  unnumbered bugs:
  mailing list 2014-11-26: Error in histogram and continuous_freq
  mailing list 2014-09-01: SIGN1 strangeness, was: Problem with bfloat

Maxima 5.34 change log
  New items in core:
* function invert_by_gausselim: invert by Gaussian elimination (used to be function invertmx)
* function invert_by_adjoint: invert by adjoint method (used to be function invert)
* functions push, pop: now implemented in core

  New items in share:
* package coma: functions for control engineering
* function sha1sum (package stringproc): compute SHA1 hash
* engineering-format.lisp: change default float display format

  Changes in core:
* function invert: use adjoint method or Gaussian elimination depending on size of matrix
* function tex: Define TeX properties for gamma_incomplete and friends

  Bug fixes:
#2785: dynamics package: plotting fails on evolution() and other functions
#2784: Ceiling gives error, without even an error message
#2782: realroots(x*y) internal error
#2776: Error when integrate sqrt
#2775: powerseries of some log expressions
#2772: powerseries of some trig expressions
#2768: "notequal" tries to put multiprecision rational numbers into floats
#2765: powerseries of a derivative
#2764: power series of 1 + x^n and regression tests in rtest16.mac
#2763: symmetricp(matrix) DOEs not work
#2760: powerseries at infinty broken
#2755: powerseries of natural exponential
#2751: powerseries of bessel functions needlessly fail
#2750: powerseries(x^x,x,0) gives Lisp error
#2749: Float evaluation of sinh causes Lisp error instead of overflowing to bigfloat
#2746: scifac / gcfac crash
#2745: limit with numer:true
#2741: imaxima preamble broken for display in emacs
#2738: Integrate encountered a Lisp error: The value 2 is not of type LIST
#2732: wrong answer for similar to gaussian integral
#2726: integrate produces wrong answer for Gaussian Moments
#2725: pochhammer(n,x) documentation
#2721: maxima can't refresh plots in gnuplot_pipes format
#2719: Matrix invert() behaviour
#2718: imaxima LaTeX definitions conflict with amsmath
#2717: plot2d treats linear and log plots inconsistently
#2716: is allows more than one argument
#2711: `i' is not local in `geosum'
#2710: `rempart' from package `functs' fails
#2707: `rowp' fails if `p' function is defined
#2697: Inconsistent handling of Greek symbols
#2683: Plot2d default terminal broken
#2678: transform_xy rejects argument constructed with make_transform
#2677: [gnuplot_pm3d,false] does not disable pm3d
#2621: "gamma limit error"
#2526: abs_integrate fails on integrate(sqrt(x + sqrt(x)), x)

  unnumbered bugs:
mailing list 2014-08-16: bind stack overflow in loop
mailing list 2014-07-01: "rtest8.mac test failure"
mailing list 2014-06-29: "rule issue"
limit((atan(x)-(%pi/2))/(sin(10/x)),x,inf)
ezgcd(p1,p2,...) => true when ratp returns true for any argument

Maxima 5.33 change log
  New items in share:
* package alt-display: hook for nonstandard display functions
* package kovacicODE: Kovacic method for ordinary differential equations
* package odes: several methods for ordinary differential equations
* package trigtools: manipulating trigonometric function expressions
* package sound: functions for audio synthesis

  Changes in core:
* promote result to bigfloat on floating point overflow
* variables declared to be irrational are considered real
* display floats with leading "0." instead of "." only
* function tex: accepts Lisp objects now
* functions expintegral_shi, expintegral_chi: limits
* functions hankel_1, hankel_2: numerically evaluate when the order is complex
* function declare: rational and irrational properties mutually exclusive
* functions get, put: when first argument is a string, assume it is the name of an operator
* functions round, truncate: handle arguments of zeroa and zerob
* functions for Galois fields: improve power tables and introduce nth root
* operator @: TeX property

  Other changes:
* package ezunits: TeX property for units conversion operator
* package maximaMathML: some updates
* package draw: support for gnuplot terminal canvas
* documentation: updating Brazilian Portuguese translation of user manual

  Bug fixes:
* 2703: plotting option legend causes an error
* 2702: plotting option adapt_depth causes an error
* 2701: plotting option logy causes an error
* 2700: plot option psfile causes an error
* 2699: nticks seems ignored
* 2696: *prompt-prefix* and *prompt-suffix* not inserted for askinteger / asksign
* 2695: kill kills built-in properties of operator after user-defined property
* 2687: call-arguments-limit easily exhaustable in tex1
* 2682: Function zeta fails numerically for large numbers that aren't even integers
* 2681: solve_rec wrong result
* 2676: integral incorrect when variable is subscripted
* 2675: maxima will not do the simplest of definite integrals and will not factor otherwise
* 2671: Since 4833b5 Maxima (with ECL at least) outputs palette numbers gnuplot

unnumbered bugs:
* bug in gnuplot_term option
* bug in starplot
* bug in ratinterpol
* %e^^A should not simplify to %e^A
* %pi is now correctly rounded with high probability
* embedded plotting bug in XMaxima
* bug in single-label case for plotting option 'label'
* bug in comment indentation in Emacs
* $CONS and friends should treat lists the same as other expressions
* mailing list 2014-02-27: "assigning to a list of structure fields does not work"

(ryoon)

2015-08-05 12:38:42 UTC MAIN commitmail json YAML

Updated misc/libreoffice4-bin to 4.4.5

(ryoon)

2015-08-05 12:34:52 UTC MAIN commitmail json YAML

Update to 4.4.5.2

Changelog:
Bugs fixed compared to the 4.4.5 final (rc1):

    coverity#1266485 untrusted value as argument [Caolán McNamara]
    tdf#47832 FILESAVE: Pictures on buttons, created in forms, gone after reopening form [Zolnai Tamás]
    tdf#84762 F9 cell update fails in sheet with combination of randomnumber() with reference to other cells [Eike Rathke]
    tdf#88056 [FILE OPEN/SAVE] field Insert â–¸ Field â–¸ Page Title not saved / reloaded [Caolán McNamara]
    tdf#91453 Use configuration of text to number conversion also in arithmetic matrix operations (was: SUMPRODUCT() doesn't work well with 4.4.3) [Eike Rathke]
    tdf#92468 Range reference not justified in order when copied&pasted [Eike Rathke]

Bugs fixed compared to the 4.4.4 final (rc3):

    bnc#783638 DOCX import: inline picture should have no spacing [Miklos Vajna]
    deb#788713 fix (fatal) perl deprecation in lo-xlate-lang [Rene Engelhard]
    tdf#31577 Calc "INDIRECT" range intermittently fails [Eike Rathke]
    tdf#34548 EDITING: CRASH in action after Undo [David Tardon]
    tdf#34724 EDIT: unintended date recognition of input Jan1 or 1Jan [Eike Rathke]
    tdf#36406 EDITING - Saveas Hangs in Calc after an edit or on time interval set to save a copy. [Takeshi Abe]
    tdf#44419 Allow entire column or entire row ranges in formulae, e.g. A:A or 1:1 [Eike Rathke]
    tdf#46440 SIGSEGV in Application::IsInMain() [Caolán McNamara]
    tdf#55430 EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible [Caolán McNamara]
    tdf#61492 EDITING:Bullet and text overlap in edit view when text font size is increased by using (ctrl +]) shortcut. [Maxim Monastirsky]
    tdf#63685 FILEOPEN: docx import regression: graphic is not displayed [Miklos Vajna]
    tdf#65788 problems with .svg exported from Calc charts [Chr. Rossmanith]
    tdf#67712 form controls and draw objects anchored to cell but changes position after reopening [Henry Castro]
    tdf#68797 FILEOPEN lost position of lines anchored to cell [Henry Castro]
    tdf#70318 EDITING: Paragraph break is inserted unintentionally with Paste special > Text with formatting (rtf) [Miklos Vajna]
    tdf#74880 [Memory leak] LibreOffice crashing when importing data from 8+ ods files, but doesn't crash on same xls files [Caolán McNamara]
    tdf#78854 EDITING: Undoing layout change causes it to crash [David Tardon]
    tdf#79780 Icons not accessible after opening properties dialog in template manager [Caolán McNamara]
    tdf#81806 EDITING: Document corruption and crash when editing tables [Caolán McNamara]
    tdf#82553 FILEOPEN: Wrong import of DOCX with table (Summary in Comment 3) [Miklos Vajna]
    tdf#83365 Other: Access across spreadsheet returns Err:504 [Eike Rathke]
    tdf#84483 PRINTING: Print dialogue called from print preview causes writer to crash [Caolán McNamara]
    tdf#86017 Crash when pasting spreadsheet columns in DDE mode on writer [Caolán McNamara]
    tdf#86305 EDITING: Entering data into a cell changes array formula that references that cell [Eike Rathke]
    tdf#86814 FORMATTING: sometimes no bold style in RTF file [Miklos Vajna]
    tdf#87245 Crash when opening Page dialog, after sorting with a macro [Caolán McNamara]
    tdf#87348 linked textboxes/frames don't work in .docx format [Justin Luth]
    tdf#87460 Losing endnotes in table cell when reading docx in Writer [Miklos Vajna]
    tdf#87574 Outline numbering "None" is not retained when save as docx [Mark Hung]
    tdf#87820 Images not displayed properly in Calc [Caolán McNamara]
    tdf#88290 Numbering toolbar icon not working for certain locales [Maxim Monastirsky]
    tdf#88465 FILEOPEN PDF Import: incorrect image transformations [Vort]
    tdf#88697 FILESAVE: export to word 2003 .doc format formats bibliography entries not appropriately [Michael Stahl]
    tdf#88843 SIDEBAR: Can set over 100% transparency on frames using sidebar [Rishabh Kumar]
    tdf#88911 EDITING: Crash when dragging text from document to navigator pane [Caolán McNamara]
    tdf#89643 report builder: function wizard segfaults as soon as a function is inserted [Caolán McNamara]
    tdf#89698 DOCX: Images anchored with 'as character' should have no spacing [Miklos Vajna]
    tdf#89731 Crash opening docx file [Caolán McNamara]
    tdf#90001 EDITING: Delete firsts or lasts sheets used in 3D formulas generates a #REF error [Markus Mohrhard]
    tdf#90260 EDITING: Copying and pasting from rtf file to odt file adds a paragraph [Miklos Vajna]
    tdf#90315 FILEOPEN: RTF import incorrectly sets table columns positions [Miklos Vajna]
    tdf#90435 [CRASH] Nice to reproduce crash with Print Preview > Esc > Format Page [Caolán McNamara]
    tdf#90565 UI Dialog "Number format" (Writer tables) has focus on Help button, rather then on list Category [Katarina Behrens]
    tdf#90717 Calc crashes when deleting row number 11 [Eike Rathke]
    tdf#90804 Style preview doesnt show correctly in the Font tab [Andras Timar]
    tdf#90960 EDITING: soffice(Calc) crashes when entering CR at end of comment that was just copy/paste'd [Caolán McNamara]
    tdf#90996 EDITING: comment is erased when dragging formula vertically [Mike Kaganski]
    tdf#91001 Cannot increase font size [Maxim Monastirsky]
    tdf#91074 FILEOPEN:RTF FILE OPEN ERROR [Miklos Vajna]
    tdf#91095 crash exporting the given docx to docbook [Miklos Vajna]
    tdf#91214 Calc: Crash on exit (steps in Comment 9) [Caolán McNamara]
    tdf#91228 Writer crash Insert Image, Anchor as character, Go after image, press enter [Michael Stahl]
    tdf#91403 Crash in Insert - Fields - More Fields... [Caolán McNamara]
    tdf#91411 Problems with the cells recalculation - F9 also does not work (hard recalc needed) [Eike Rathke]
    tdf#91416 EDITING: Crash on changing value in simple spreadsheet [Caolán McNamara]
    tdf#91420 date recognition in DateValue [Eike Rathke]
    tdf#91425 CRASH - Calc Insert Columns Left [Takeshi Abe]
    tdf#91602 WRITER: Crash on paste with Zoom - Page width [Michael Stahl]
    tdf#91613 Writer: cannot open sections with double click in the status bar anymore [Andras Timar]
    tdf#91637 EDITING: Crash inserting cross-reference category and number if text in caption has been deleted [Caolán McNamara]
    tdf#91641 using kmfl in calc transposes characters when editing existing text [Justin Luth]
    tdf#91675 Updated Catalan bundled dictionaries (spellchker, hyphenation, thesaurus) [Andras Timar]
    tdf#91697 String in English in macro security dialog [Andras Timar]
    tdf#91726 AutoFormat: Crash when using an existing name for a new preset [Julien Nabet]
    tdf#91878 UI:no way to set a frame for a vertical orientation. [Caolán McNamara]
    tdf#91917 Clicking in the text or using Enter key does not move the cursor anymore [Michael Stahl]
    tdf�n McNamara]
    tdf#92281 FILEOPEN: Only western font is set for symbols in DOC files [Mark Hung]
    tdf#92386 Writer crashes in print preview if the document is in two windows [Julien Nabet]
    tdf#92425 UI: Page view Sifr icons in status bar do not cd when user does not save changes in MS format files [Maxim Monastirsky]
    tdf#92438 regression in LibreLogo icon order [László Németh]
    tdf#92467 Calc crashes in find and replace dialog when arrow down is used [Caolán McNamara]

(ryoon)

2015-08-05 12:33:42 UTC MAIN commitmail json YAML

Updated mail/mew to 6.7

(ryoon)

2015-08-05 12:32:56 UTC MAIN commitmail json YAML

Update to 6.7

Changelog:
  Security fix for GnuPG.
  GnuPG 2.1 is supported only for master password, not for PGP/MIME and S/MIME.

(ryoon)

2015-08-05 08:13:00 UTC MAIN commitmail json YAML

Updated www/squid3 to 3.5.7

(adam)

2015-08-05 08:10:56 UTC MAIN commitmail json YAML

Changes 3.5.7:
* Bug 4293: wrong SNI sent to server after URL-rewrite
* Add ENABLE_POD2MAN_DOC automake conditional for pod2man builds
* basic_smb_auth: rejecting valid credentials
* basic_smb_auth: doesn't handle passwords with backslashes
* basic_smb_auth: nmblookup fails when smb.conf contaisn WINS servers
* Docs: fix man(8) page syntax for lexgrof tool
* Make pod2man an optional dependency
* Handle exceptions during squid.conf parse
* When SBuf chop()s away everything, always clear the buffer.
* Cleanup: avoid mentioning compiler directives in configure output
* Bug 4251: incorrect instance name for memory segments in /dev/shm
* Bug 3345: Support %un (any available user name) format code for external ACLs.
* AUFS: Raise I/O queue congestion limits
* Improve handling of client connections on shutdown
* Avoid SSL certificate db corruption with empty index.txt as a symptom.
* Errors served using invalid certificates when dealing with SSL server errors.
* IPv6: improve BCP 177 compliance
* Polish debugs on NAT failure
* Fix crash in TcpAccepter with profiler enabled
* Splice to origin cache_peer.
* Bug 4227: invalid key in AuthUserHashPointer causing assertation failure

(adam)

2015-08-05 00:45:57 UTC MAIN commitmail json YAML

Fix version number pattern.
pkglint complains.

(ryoon)

2015-08-04 19:11:36 UTC MAIN commitmail json YAML

Updated misc/libreoffice4 to 4.4.5.2

(ryoon)

2015-08-04 19:11:09 UTC MAIN commitmail json YAML

Update to 4.4.5.2

Changelog:
Bugs fixed compared to the 4.4.5 final (rc1):

    coverity#1266485 untrusted value as argument [Caolán McNamara]
    tdf#47832 FILESAVE: Pictures on buttons, created in forms, gone after reopening form [Zolnai Tamás]
    tdf#84762 F9 cell update fails in sheet with combination of randomnumber() with reference to other cells [Eike Rathke]
    tdf#88056 [FILE OPEN/SAVE] field Insert â–¸ Field â–¸ Page Title not saved / reloaded [Caolán McNamara]
    tdf#91453 Use configuration of text to number conversion also in arithmetic matrix operations (was: SUMPRODUCT() doesn't work well with 4.4.3) [Eike Rathke]
    tdf#92468 Range reference not justified in order when copied&pasted [Eike Rathke]

Bugs fixed compared to the 4.4.4 final (rc3):

    bnc#783638 DOCX import: inline picture should have no spacing [Miklos Vajna]
    deb#788713 fix (fatal) perl deprecation in lo-xlate-lang [Rene Engelhard]
    tdf#31577 Calc "INDIRECT" range intermittently fails [Eike Rathke]
    tdf#34548 EDITING: CRASH in action after Undo [David Tardon]
    tdf#34724 EDIT: unintended date recognition of input Jan1 or 1Jan [Eike Rathke]
    tdf#36406 EDITING - Saveas Hangs in Calc after an edit or on time interval set to save a copy. [Takeshi Abe]
    tdf#44419 Allow entire column or entire row ranges in formulae, e.g. A:A or 1:1 [Eike Rathke]
    tdf#46440 SIGSEGV in Application::IsInMain() [Caolán McNamara]
    tdf#55430 EDITING: Single mouse click selection of element completely drawn in front of selected filled area impossible [Caolán McNamara]
    tdf#61492 EDITING:Bullet and text overlap in edit view when text font size is increased by using (ctrl +]) shortcut. [Maxim Monastirsky]
    tdf#63685 FILEOPEN: docx import regression: graphic is not displayed [Miklos Vajna]
    tdf#65788 problems with .svg exported from Calc charts [Chr. Rossmanith]
    tdf#67712 form controls and draw objects anchored to cell but changes position after reopening [Henry Castro]
    tdf#68797 FILEOPEN lost position of lines anchored to cell [Henry Castro]
    tdf#70318 EDITING: Paragraph break is inserted unintentionally with Paste special > Text with formatting (rtf) [Miklos Vajna]
    tdf#74880 [Memory leak] LibreOffice crashing when importing data from 8+ ods files, but doesn't crash on same xls files [Caolán McNamara]
    tdf#78854 EDITING: Undoing layout change causes it to crash [David Tardon]
    tdf#79780 Icons not accessible after opening properties dialog in template manager [Caolán McNamara]
    tdf#81806 EDITING: Document corruption and crash when editing tables [Caolán McNamara]
    tdf#82553 FILEOPEN: Wrong import of DOCX with table (Summary in Comment 3) [Miklos Vajna]
    tdf#83365 Other: Access across spreadsheet returns Err:504 [Eike Rathke]
    tdf#84483 PRINTING: Print dialogue called from print preview causes writer to crash [Caolán McNamara]
    tdf#86017 Crash when pasting spreadsheet columns in DDE mode on writer [Caolán McNamara]
    tdf#86305 EDITING: Entering data into a cell changes array formula that references that cell [Eike Rathke]
    tdf#86814 FORMATTING: sometimes no bold style in RTF file [Miklos Vajna]
    tdf#87245 Crash when opening Page dialog, after sorting with a macro [Caolán McNamara]
    tdf#87348 linked textboxes/frames don't work in .docx format [Justin Luth]
    tdf#87460 Losing endnotes in table cell when reading docx in Writer [Miklos Vajna]
    tdf#87574 Outline numbering "None" is not retained when save as docx [Mark Hung]
    tdf#87820 Images not displayed properly in Calc [Caolán McNamara]
    tdf#88290 Numbering toolbar icon not working for certain locales [Maxim Monastirsky]
    tdf#88465 FILEOPEN PDF Import: incorrect image transformations [Vort]
    tdf#88697 FILESAVE: export to word 2003 .doc format formats bibliography entries not appropriately [Michael Stahl]
    tdf#88843 SIDEBAR: Can set over 100% transparency on frames using sidebar [Rishabh Kumar]
    tdf#88911 EDITING: Crash when dragging text from document to navigator pane [Caolán McNamara]
    tdf#89643 report builder: function wizard segfaults as soon as a function is inserted [Caolán McNamara]
    tdf#89698 DOCX: Images anchored with 'as character' should have no spacing [Miklos Vajna]
    tdf#89731 Crash opening docx file [Caolán McNamara]
    tdf#90001 EDITING: Delete firsts or lasts sheets used in 3D formulas generates a #REF error [Markus Mohrhard]
    tdf#90260 EDITING: Copying and pasting from rtf file to odt file adds a paragraph [Miklos Vajna]
    tdf#90315 FILEOPEN: RTF import incorrectly sets table columns positions [Miklos Vajna]
    tdf#90435 [CRASH] Nice to reproduce crash with Print Preview > Esc > Format Page [Caolán McNamara]
    tdf#90565 UI Dialog "Number format" (Writer tables) has focus on Help button, rather then on list Category [Katarina Behrens]
    tdf#90717 Calc crashes when deleting row number 11 [Eike Rathke]
    tdf#90804 Style preview doesnt show correctly in the Font tab [Andras Timar]
    tdf#90960 EDITING: soffice(Calc) crashes when entering CR at end of comment that was just copy/paste'd [Caolán McNamara]
    tdf#90996 EDITING: comment is erased when dragging formula vertically [Mike Kaganski]
    tdf#91001 Cannot increase font size [Maxim Monastirsky]
    tdf#91074 FILEOPEN:RTF FILE OPEN ERROR [Miklos Vajna]
    tdf#91095 crash exporting the given docx to docbook [Miklos Vajna]
    tdf#91214 Calc: Crash on exit (steps in Comment 9) [Caolán McNamara]
    tdf#91228 Writer crash Insert Image, Anchor as character, Go after image, press enter [Michael Stahl]
    tdf#91403 Crash in Insert - Fields - More Fields... [Caolán McNamara]
    tdf#91411 Problems with the cells recalculation - F9 also does not work (hard recalc needed) [Eike Rathke]
    tdf#91416 EDITING: Crash on changing value in simple spreadsheet [Caolán McNamara]
    tdf#91420 date recognition in DateValue [Eike Rathke]
    tdf#91425 CRASH - Calc Insert Columns Left [Takeshi Abe]
    tdf#91602 WRITER: Crash on paste with Zoom - Page width [Michael Stahl]
    tdf#91613 Writer: cannot open sections with double click in the status bar anymore [Andras Timar]
    tdf#91637 EDITING: Crash inserting cross-reference category and number if text in caption has been deleted [Caolán McNamara]
    tdf#91641 using kmfl in calc transposes characters when editing existing text [Justin Luth]
    tdf#91675 Updated Catalan bundled dictionaries (spellchker, hyphenation, thesaurus) [Andras Timar]
    tdf#91697 String in English in macro security dialog [Andras Timar]
    tdf#91726 AutoFormat: Crash when using an existing name for a new preset [Julien Nabet]
    tdf#91878 UI:no way to set a frame for a vertical orientation. [Caolán McNamara]
    tdf#91917 Clicking in the text or using Enter key does not move the cursor anymore [Michael Stahl]
    tdf�n McNamara]
    tdf#92281 FILEOPEN: Only western font is set for symbols in DOC files [Mark Hung]
    tdf#92386 Writer crashes in print preview if the document is in two windows [Julien Nabet]
    tdf#92425 UI: Page view Sifr icons in status bar do not cd when user does not save changes in MS format files [Maxim Monastirsky]
    tdf#92438 regression in LibreLogo icon order [László Németh]
    tdf#92467 Calc crashes in find and replace dialog when arrow down is used [Caolán McNamara]

(ryoon)

2015-08-04 18:22:54 UTC MAIN commitmail json YAML

Remove separate Japanese localization of Trac in www/ja-trac.
It is reported that Trac (www/trac) has Japanese translation
natively and requires no modifications.

(asau)

2015-08-04 18:19:08 UTC MAIN commitmail json YAML

2015-08-04 18:05:32 UTC MAIN commitmail json YAML

libarchive is required as revealed on linux.

(asau)