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

2024-05-12 19:42:15 UTC Now

2016-06-20 15:25:39 UTC MAIN commitmail json YAML

Revert changing the default away from "inet6".

(schnoebe)

2016-06-20 15:20:03 UTC MAIN commitmail json YAML

2016-06-20 15:13:00 UTC MAIN commitmail json YAML

Revbump to make sure package gets compiled with newer version of
mk/ocaml.mk.

(jaapb)

2016-06-20 15:10:49 UTC MAIN commitmail json YAML

Updated devel/ocaml-sexplib to 113.33.03

(jaapb)

2016-06-20 15:10:30 UTC MAIN commitmail json YAML

Updated package to latest version, 113.33.00. Changes include:

- Changes `Sexp.to_string` to escape all non-ASCII characters.

  Previously chars >= 127 are escaped or not depending on:
  1. other character in the string
  2. the system
  3. environment variable settings

  (2) and (3) are because `String.escaped` from the stdlib uses the C
  function `isprint` which is locale and OS dependent.

  This can cause invalid UTF-8 sequence to be printed by sexplib, which
  is annoying:

    https://github.com/janestreet/sexplib/issues/18

  Starting with this release, sexplib:
  1. copies the `String.escaped` function of OCaml 4.03 which escapes
    all non-ascii characters
  2. make sure we escape the string when it contains characters >= 127

- Clean up the documentation for sexplib, modernizing it to include
  `ppx_sexp_conv`, and breaking up the documentation between sexplib and
  `ppx_sexp_conv`.  Also changed the formatting to use org-mode, so it
  will render properly on github.  Markdown doesn't render well by
  default, unless you use quite different conventions about linebeaks.

- In sexp macro library, avoid returning success when there is any error
  reading a sexp. In particular, this prevents

    sexp resolve <(echo '(:use x)')

  from silently succeeding.

  Also, now we no longer read an included file multiple times.
  This lets even crazy stuff like this to work:

    $ echo 'hi ' | sexp resolve <(echo '((:include /dev/stdin) (:include /dev/stdin))')

(jaapb)

2016-06-20 15:03:47 UTC MAIN commitmail json YAML

Updated security/p5-Authen-CAS-Client to 0.07

(mef)

2016-06-20 15:01:39 UTC MAIN commitmail json YAML

Updated security/p5-Authen-CAS-Client to 0.07
---------------------------------------------
changes from 0.06 to 0.07
=========================
  * changed license to MIT for consistency with other module distributions

  * removed MYMETA.yml and MYMETA.json from module distribution
    per CPAN standards

  * updated documentation to reflect new formatting standards

changes from 0.05 to 0.06
=========================
* fixed a bug when using defined on an array

* minor documentation fixup referencing incorrect package for response objects

(mef)

2016-06-20 14:58:46 UTC MAIN commitmail json YAML

2016-06-20 14:51:10 UTC MAIN commitmail json YAML

Added ocaml-js-build-tools to SUBDIRs

(jaapb)

2016-06-20 14:50:32 UTC MAIN commitmail json YAML

Added devel/ocaml-js-build-tools version 113.33.04

(jaapb)

2016-06-20 14:50:12 UTC MAIN commitmail json YAML

2016-06-20 14:02:05 UTC MAIN commitmail json YAML

Updated devel/js_of_ocaml to 2.8

(jaapb)

2016-06-20 14:01:53 UTC MAIN commitmail json YAML

Updated package to latest version, 2.8. Changes include:

* Features/Changes
** Compiler: allow dynlink of precompiled javascript file
** Compiler: Improve tailcall optimization
** Compiler: Improve pretty mode
** Compiler: More inlining and static evaluation
** Compiler: Better source map support, to leverage resolve_variable_names
  in chrome DevTools
** Compiler: preserve as much as possible the initial OCaml variable names
** Lib: synchronize with tyxml 4.0.0
** Lib: convert string/bigstring to/from typed_array
** Lib: add Tyxml_js.Register API.
** Lib: Support for Core_kernel and Async_kernel (32bit only).
** Lib: Mutation observer.
** Runtime: bigstring, caml_int32_bits_of_float, ..
** Runtime: better nodejs integration

* Misc
** Support for OCaml 4.03
** Toplevel with ppx syntax

* Bug fixes
** Compiler: Fix float printing
** Compiler: fix separate compilation

(jaapb)

2016-06-20 14:01:42 UTC MAIN commitmail json YAML

Updated package to latest version, 2.8. Changes include:

* Features/Changes
** Compiler: allow dynlink of precompiled javascript file
** Compiler: Improve tailcall optimization
** Compiler: Improve pretty mode
** Compiler: More inlining and static evaluation
** Compiler: Better source map support, to leverage resolve_variable_names
  in chrome DevTools
** Compiler: preserve as much as possible the initial OCaml variable names
** Lib: synchronize with tyxml 4.0.0
** Lib: convert string/bigstring to/from typed_array
** Lib: add Tyxml_js.Register API.
** Lib: Support for Core_kernel and Async_kernel (32bit only).
** Lib: Mutation observer.
** Runtime: bigstring, caml_int32_bits_of_float, ..
** Runtime: better nodejs integration

* Misc
** Support for OCaml 4.03
** Toplevel with ppx syntax

* Bug fixes
** Compiler: Fix float printing
** Compiler: fix separate compilation

(jaapb)

2016-06-20 12:34:01 UTC MAIN commitmail json YAML

Restore lost patchsum.

(joerg)

2016-06-20 11:10:40 UTC MAIN commitmail json YAML

Updated package to latest version, 4.0.0. Changes include:

====== Features ======
* A new PPX has been added that allows to use tyxml with the HTML/SVG syntax, using the markup library (contribution by Anton 'aantron' Bachin).
* New Format-based printers are available, both as functors and has `pp` functions in the various implementations. Old printers are deprecated.
* Toplevel printers are now available for the `tyxml` library.
* The `str` library has been replaced by `re`.
* Various attributes arguments have been simplified. In particular:
  * Constants arguments have been removed
  * `` `On|`Off `` arguments are now replaced by booleans.
  * Some arguments now use an option type.

* XML comments are now properly serialized (without escaping but with sanitization).

====== Elements and attributes ======
* Add srcset and sizes attributes (contribution by St辿phane 'slegrand45' Legrand).
* The arguments of the `sandbox` attributes are now more consistent (contributino by Anton 'aantron' Bachin).
* Various SVG attributes and elements are now properly named (contributino by Anton 'aantron' Bachin).
* Add inputmode attribute.

====== Documentation ======
* Both the API documentation and the manual have been completely rewritten! Do not hesitate to read them and provide feedback.
* Various examples have been added in the `example/` directory. (basic_website contributed by Edgar 'fxfactorial' Aroutiounian).

====== Renaming and deprecations ======
* Files in the `tyxml` library are now packed in a `Tyxml` module.
  If you were using one of `Html5`, `Svg` and `Xml` module, simply open `Tyxml`.
* All Html5 modules are now named Html
* Various attributes and elements have been renamed. The original versions have been kept and marked deprecated.
* Various elements that were both deprecated in the HTML specification and not usable due to typing constraints have been removed.

(jaapb)

2016-06-20 11:09:21 UTC MAIN commitmail json YAML

Added ocaml-markup to SUBDIRs

(jaapb)

2016-06-20 11:08:44 UTC MAIN commitmail json YAML

Added textproc/ocaml-markup version 0.7.2

(jaapb)

2016-06-20 11:08:31 UTC MAIN commitmail json YAML

2016-06-20 10:43:19 UTC MAIN commitmail json YAML

Updated buildlink3.mk file to reflect API change, revbump, removed
unused patch.

(jaapb)

2016-06-20 10:39:52 UTC MAIN commitmail json YAML

Updated buidlink3.mk file to reflect API change, revbump, removed unused
patches

(jaapb)

2016-06-20 10:36:38 UTC MAIN commitmail json YAML

2016-06-20 10:31:22 UTC MAIN commitmail json YAML

Revbump to make sure package gets recompiled with newer mk/ocaml.mk, and
removed old findlib-register execs from PLIST.

(jaapb)

2016-06-20 10:29:29 UTC MAIN commitmail json YAML

Revbump to make sure package gets recompiled with newer mk/ocaml.mk, and
removed old register execs from PLIST

(jaapb)

2016-06-20 10:26:21 UTC MAIN commitmail json YAML

Revbump to make sure the package gets recompiled with newer mk/ocaml.mk,
and some cleaning up of the Makefile.

(jaapb)

2016-06-20 10:21:52 UTC MAIN commitmail json YAML

Revbump to make sure package gets recompiled with newer mk/ocaml.mk

(jaapb)

2016-06-20 10:18:52 UTC MAIN commitmail json YAML

Revbump to make sure package gets recompiled with newer mk/ocaml.mk

(jaapb)

2016-06-20 10:15:52 UTC MAIN commitmail json YAML

Revbump to make sure package gets recompiled with new mk/ocaml.mk

(jaapb)

2016-06-20 08:21:47 UTC MAIN commitmail json YAML

Added audio/ardour version 4.7

(kamil)

2016-06-20 08:20:34 UTC MAIN commitmail json YAML

Add audio/ardour

(kamil)

2016-06-20 08:17:43 UTC MAIN commitmail json YAML

2016-06-20 08:11:38 UTC MAIN commitmail json YAML

Added audio/liblo version 0.28

(kamil)

2016-06-20 08:10:13 UTC MAIN commitmail json YAML

Add audio/liblo

(kamil)

2016-06-20 08:09:40 UTC MAIN commitmail json YAML

Import liblo-0.28 as audio/liblo

liblo is an implementation of the Open Sound Control
protocol for POSIX systems.

Originally packaged in pkgsrc-wip by:
- Johann Franz,
- Sergey Svishchev,
- Blair Sadewitz,
- Tobias Nygren,
- Joerg Sonnenberg,
- Thomas Klausner,
- Aleksej Saushev,
- Blue Rats
and
- myself.

(kamil)

2016-06-20 05:54:55 UTC MAIN commitmail json YAML

2016-06-19 23:48:22 UTC MAIN commitmail json YAML

Remove AppleDouble files from data directories upon installation into DESTDIR.

(jakllsch)

2016-06-19 23:23:20 UTC MAIN commitmail json YAML

Updated misc/ocaml-opam to 1.2.2

(jaapb)

2016-06-19 23:23:02 UTC MAIN commitmail json YAML

Updated package to latest version, 1.2.2. Changes include:

1.2.2
* Fixed wrong locks being taken during `switch reinstall` (#2051)
* Fixed `config report` that wasn't displaying the external solver (#2059)
* Follow glibc standard on detecting an UTF8 locale (#2065)
* Fixed issues with fish shell init scripts (#2063)
* Restored printing of commands with `--verbose` and `--dry-run`
* More concise printing of conflicts, with accurate version numbers
* Small improvements to the causes of actions
* Fixed issue causing the state cache not to be used on some OSes (OSX) (#2077)
* Added numbers to lint checks, and some new checks
* Restored the handling of a simple path to an `aspcud`-compatible executable
  in variable OPAMEXTERNALSOLVER (#2085)
* Added package universe output to new PEF format for diagnostics
* Prioritise newer versions even when the latest can't be installed (#2109)
* Automatically install plugins on `opam plugin-name` (#2092)
* Fixed a fd leak on solver calls (#2134)
* Accept opam files with errors when no debug or strict options are set, for
  easier format updates
* Add `opam list --resolve` to get dependencies as a consistent set of packages
* Provide the expected checksum to download commands
* Changed return code of `opam list` when no patterns are supplied and the list
  is empty

1.2.1
* Non-system compiler definitions without source are now allowed
* Better handling of compiler "base" packages allows to move build instructions
  from compiler definitions to packages
* Rewritten action resolution mechanism to be based on atomic actions.
  Actions are not aborted anymore on first failure when there is no
  inter-dependency
* Rewritten parallel command execution engine
* Better display of actions, lots of improved messages
* `opam upgrade pkg` now fails if no new version of `pkg` can be installed
* fixed shell configuration for various shells
* Updated Dose dependency to 3.3
* Fixed behaviour of `opam switch` and related commands when a switch
  is locally set in a shell (through `OPAMSWITCH`)
* Better behaviour on failed `opam switch`
* New pinning mode: when pinning using version-control on a local path and
  without a branch specified, use current file tree, but limited to
  version-tracked files
* Faster and cleaner handling of downloads
* Now compiles with --safe-string on OCaml 4.02, better compatibility handling
* `opam unpin` now accepts multiple arguments
* `opam pin add <pkg>.<version> <target>` is now allowed to specify
  the advertised version
* Fixed bug leading to a bad `CAML_LD_LIBRARY_PATH` when switching from system
* Better `opam lint`, reporting warnings and errors, including format errors
* `opam config setup` now takes `--shell=` instead of `--sh`, `--csh`, `--fish`,
  `--zsh`
* Provisional feature: dependency flag `dev` is accepted (but does nothing)
* Provisional feature: field `features` in opam files implemented (beta), not
  for use in production
* Better definition of the `filter` language within opam files: propagates
  undefined values, bool-to-string converter syntax
* Provisional feature: `verbose` may be specified in package flags
* OPAM git-like plugins (commands of the form opam-xxx) are now searched in the
  correct OPAM path
* ~/.opam/config doesn't refer to OPAM's patch-version anymore, to allow
  downgrading
* Recognise <name>.opam files and directories when pinning a package to source
* Cleaned up debug and verbose messages, allow more control (`-v` can now be
  repeated)
* Pinning URL can now be explicit in the form `VC+URL`, e.g. `git+ssh://`,
  `hg+https://`...
* New flexible way to specify download and solver commands in `~/.opam/config`
  or in variables `OPAMFETCH` and `OPAMEXTERNALSOLVER`
* Lots of bug-fixes

(jaapb)

2016-06-19 23:05:51 UTC MAIN commitmail json YAML

Conditionalize two routing message flags that no longer exist in
NetBSD/current.

(joerg)

2016-06-19 23:05:17 UTC MAIN commitmail json YAML

2016-06-19 23:02:06 UTC MAIN commitmail json YAML

Also specify the directory for ld itself to check for libX11.

(joerg)

2016-06-19 23:01:33 UTC MAIN commitmail json YAML

2016-06-19 23:01:01 UTC MAIN commitmail json YAML

clang objects to the nullptr emulation, so just real C++11 for it.

(joerg)

2016-06-19 23:00:30 UTC MAIN commitmail json YAML

Workaround GNU ld bug on NetBSD by dropping --fatal-warnings from the
linker flags.

(joerg)

2016-06-19 22:59:30 UTC MAIN commitmail json YAML

Sync PLIST with Doxygen update.

(joerg)

2016-06-19 22:57:55 UTC MAIN commitmail json YAML

A X program works better with a couple of X11 libraries around. Pick Xv
and OpenGL as sane options for output for now. Bump revision.

(joerg)

2016-06-19 22:55:18 UTC MAIN commitmail json YAML

Recognize TIFF images with alpha channel when using the photometric
color tag. Bump revision.

(joerg)

2016-06-19 22:16:48 UTC MAIN commitmail json YAML

Clean up .orig files after patch... makes things tidier.

Reported by joerg@, thanks

(jym)

2016-06-19 21:29:08 UTC MAIN commitmail json YAML

Updated databases/redis to 3.2.1

(fhajny)

2016-06-19 21:28:58 UTC MAIN commitmail json YAML

Update databases/redis to 3.2.1.

Upgrade urgency HIGH: Critical fix to Redis Sentinel, due to 3.2.0
regression compared to 3.0.

Hey, this is Redis 3.2.1, and this release should bring some grain of
maturity to Redis 3.2. The list of commits following this note will tell
you the details, but the main things addressed in this release are the
following:

1. A critical bug in Sentinel was hopefully fixed. During the big 3.2
  refactoring of Redis Sentinel, in order to implement connection sharing
  to make Sentinel able to scale better (few Sentinels to monitor many
  masters), a bug was introduced that mis-counted the number of pending
  commands in the Redis link. This in turn resulted into an inability to
  talk with certain Redis instances. A common result of this bug was the
  inability of Redis Sentinel to reconfigure back the old master, after
  a failover, when it is reachable again, as the slave of the new master.
  This was due to the inability to talk with the old master at all.

2. BITFIELD bugs fixed.

3. GEO commands fixes on syntax errors and edge cases.

4. RESTORE now accepts dumps generated by older Redis versions.

5. Jemalloc now is really configured to save you memory, for a problem a
  change in the jemalloc configuration did not really survived when the
  3.2.0 release was finalized.

6. TTL and TYPE command no longer alter the last access time of a key, for
  LRU evictions purposes. A new TOUCH command was introduced *just* to
  update the access time of a key.

7. A bug was fixed in redis-cli, that connected to the instance running on
  the port 6379 if there was one, regardless of what was specified.

8. TCP keep alive is now enabled by default. This should fix most ghost
  connections problems without resulting in any practical change in
  otherwise sane deployments.

9. A Sentinel crash that could happen during failovers was fixed.

(fhajny)

2016-06-19 21:21:43 UTC MAIN commitmail json YAML

Removed split PostgreSQL contrib packages, added
postgresql9[1-5]-contrib ones.

(fhajny)

2016-06-19 21:14:35 UTC MAIN commitmail json YAML

Add dependency on tex-graphics-cfg

(markd)

2016-06-19 21:11:44 UTC MAIN commitmail json YAML

Add dependency on tex-graphics-cfg

(markd)

2016-06-19 21:11:22 UTC MAIN commitmail json YAML

Enable postgresql9[1-5]-contrib packages, disable previous split
packages.

(fhajny)

2016-06-19 21:09:58 UTC MAIN commitmail json YAML

2016-06-19 20:51:33 UTC MAIN commitmail json YAML

2016-06-19 20:49:04 UTC MAIN commitmail json YAML

Updated fonts/fontconfig to 2.12.0

(wiz)

2016-06-19 20:48:55 UTC MAIN commitmail json YAML

Updated fontconfig to 2.12.0.

Here is the announcement for the stable release after 2 years, which
many features and bug fixes contains.

Summary of the changes since last stable release is:
- - Support the size specific design selection in OS/2 table version 5
- - Allow the modification on 'lang' and 'charset' objects
- - Increase the refcount in FcConfigSetCurrent()
- - some updates in orth files
- - Add --error-on-no-fonts option to fc-cache
- - Use lang=und instead of lang=xx for "undetermined"
- - Add FC_WEIGHT_DEMILIGHT and change from 65 to 55
- - Add FC_COLOR
- - Treat color fonts as scalable
- - no FC_LANG added with FcConfigSubstitute() when it has "und"
- - Hardcode blanks in library
- - Support symbol fonts
- - Unicode 8.0 support
- - Add hintstyle templates and default hintslight
- - GX font support
- - Improve the footprint issue on updating caches
- - Bump the cache version to 6
- - more bug fixes
- - and more...

(wiz)

2016-06-19 20:48:29 UTC MAIN commitmail json YAML

Import postgresql9[1-5]-contrib packages. These supersede the
previous handful of packages like -datatypes or -dblink. They
contain all of the contrib subtree, matching what similar packages
carry in e.g. FreeBSD ports or what PostgreSQL users generally
expect.

This subtree contains porting tools, analysis utilities, and
plug-in features that are not part of the core PostgreSQL system,
mainly because they address a limited audience or are too
experimental to be part of the main source tree. This does not
preclude their usefulness.

(fhajny)

2016-06-19 20:44:34 UTC MAIN commitmail json YAML

Updated devel/confuse to 3.0

(wiz)

2016-06-19 20:44:24 UTC MAIN commitmail json YAML

Updated confuse to 3.0.

[v3.0][] - 2016-03-03
---------------------

This release signifies a major change in libConfuse.  On out-of-memory
conditions at run time, invalid API input, and some other odd use-cases,
libConfuse will no longer `assert()`.  Instead, `NULL` or `CFG_FAIL` is
returned with an error code for you to handle.  For some users this will
completely change how your application works, so heads up!  The library
ABI version has also been stepped due to this.

Special thanks in this release goes out to Frank Hunleth, Peter Rosin
and David Grayson for their tireless efforts in helping improve this
library!

**Note:** libConfuse no longer calls `setlocale()` for `LC_MESSAGES` and
  `LC_CTYPE`.  See the documentation for `cfg_init()` for details.

### Changes

* Support for handling unknown options.  The idea is to provide future
  proofing of configuration files, i.e. if a new parameter is added, the
  new config file will not fail if loaded in an older version of your
  program.  See the `CFGF_IGNORE_UNKNOWN` flag in the documenation for
  more information.  Idea and implementation by Frank Hunleth.
* Add public API for removing sections at runtime, by Peter Rosin.
* Allow `cfg_opt_getval()` on options that are `CFGF_MULTI` sections,
  by Peter Rosin.
* Add `cfg_setmulti()` and `cfg_opt_setmulti()`, by Peter Rosin.
* Add CLI example of how to manage configuration changes at runtime,
  also by Peter Rosin.
* Support for Travis-CI and Coverity Scan, by Joachim Nilsson.
* Use `autoreconf` in `autogen.sh` instead of calling tools separately.
* Powershell script for AppVeyor CI to build libConfuse with MSYS2
  by David Grayson.
* Removed calls to `setlocale()` intended to localize messages, with
  `LC_MESSAGES`, and region specific types, with `LC_CTYPE`.  This is
  now the responsibility of the user of the library.
* Reindent to Linux coding style for a clear and well defined look,
  this to ease future maintenance.  Issue #33
* Add support for `CFGF_DEPRECATED` and `CFGF_DROP` option flags.  The
  former causes libConfuse to print a deprecated warning message and the
  latter drops the read value on input.  Idea and implementation by
  Sebastian Geiger.  Issue #24
* Add `HACKING.md` document to detail maintenance and release checklists

### Fixes

* Do not assert on API input validation, memory allocation, or similar.
  Instead, return error code to user for further handling.  This change
  also includes fixes for a lot of unchecked API return values, e.g.,
  `strdup()`.  Issue #37
* Protect callers arguments to `cfg_setopt()`, by Peter Rosin
* If new value to `cfg_setopt()` fails parsing, do not lose old value,
  by Peter Rosin.
* Fixes to update support for older versions of Microsoft Visual Studio
  as well as MSYS2/mingw-w64 by Peter Rosin and David Grayson.
* Issue #45: `cfg_init()` does not report error on multiple options with
  the same name.  Fixed by Peter Rosin.
* Fixes for memory leaks, invalid expressions, unused variables and
  missing error handling, all thanks to Coverity Scan

(wiz)

2016-06-19 20:41:51 UTC MAIN commitmail json YAML

Updated time/py-vdirsyncer to 0.11.2

(wiz)

2016-06-19 20:41:42 UTC MAIN commitmail json YAML

Updated py-vdirsyncer to 0.11.2.

Version 0.11.2
==============

*released on 15 June 2016*

- Fix typo that would break tests.

Version 0.11.1
==============

*released on 15 June 2016*

- Fix a bug in collection validation.
- Fix a cosmetic bug in debug output.
- Various documentation improvements.

(wiz)

2016-06-19 20:40:57 UTC MAIN commitmail json YAML

2016-06-19 20:40:48 UTC MAIN commitmail json YAML

Updated pcre to 8.39.

Release 8.39 14-June-2016
-------------------------

Some appropriate PCRE2 JIT improvements have been retro-fitted to PCRE1. Apart
from that, this is another bug-fix release. Note that this library (now called
PCRE1) is now being maintained for bug fixes only. New projects are advised to
use the new PCRE2 libraries.

(wiz)

2016-06-19 20:40:10 UTC MAIN commitmail json YAML

Backport a minor tweak from newer branches that fixes building the
contrib/postgres_fdw extension with PGXS.

(fhajny)

2016-06-19 20:39:25 UTC MAIN commitmail json YAML

Updated time/p5-DateTime-Locale to 1.04

(wiz)

2016-06-19 20:39:16 UTC MAIN commitmail json YAML

Updated p5-DateTime-Locale to 1.04.

1.04    2016-06-17

- Replaced List::MoreUtils with List::Util.

(wiz)

2016-06-19 20:34:47 UTC MAIN commitmail json YAML

Updated audio/musicpd to 0.19.16

(wiz)

2016-06-19 20:34:38 UTC MAIN commitmail json YAML

Updated musicpd to 0.19.16.

ver 0.19.16 (2016/06/13)
* faster seeking
* fix system include path order
* add missing DocBook file to tarball

(wiz)

2016-06-19 20:32:42 UTC MAIN commitmail json YAML

Updated devel/meld to 3.16.1

(wiz)

2016-06-19 20:32:32 UTC MAIN commitmail json YAML

Updated meld to 3.16.1.

2016-06-19 meld 3.16.1
======================

  Fixes:

  * Fix regression in support for file comparisons from pipes (Kai Willadsen)
  * Add open build service directories to the version control filter
    (Dominique Leuenberger)
  * Add darcs to list of loaded plugins (pbgc)
  * Fix the dark style (Kai Willadsen)
  * Windows build fixes (Kai Willadsen)

(wiz)

2016-06-19 20:30:46 UTC MAIN commitmail json YAML

Updated security/libgpg-error to 1.23

(wiz)

2016-06-19 20:30:37 UTC MAIN commitmail json YAML

Updated libgpg-error to 1.23.

Noteworthy changes in version 1.23 (2016-06-15) [C19/A19/R0)
-----------------------------------------------

* Fixes an assertion failure due to es_flush on read/write streams.

* Fixes a bug with a too short memory limit is es_fopenmen.

* Cross-build support for powerpc-unknown-linux-gnuspe and
  tilegx-unknown-linux-gnu architectures.

* Interface changes relative to the 1.22 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
GPG_ERR_SUBKEYS_EXP_OR_REV      NEW.

(wiz)

2016-06-19 20:29:54 UTC MAIN commitmail json YAML

Updated misc/calibre to 2.59.0

(wiz)

2016-06-19 20:29:44 UTC MAIN commitmail json YAML

Updated calibre to 2.59.0.

New Features

    Amazon metadata download: Download the series information when available from amazon.com
    Amazon metadata download: Recognize common patterns of embedding the series name after the title and remove it automatically
    Edit Book: Add support for EPUB 3 to the Table of Contents tool. Now when editing EPUB 3 files using the tool will automatically generate both the EPUB 3 navigation document and the NCX table of contents for backwards compatibility.
    EPUB Input: Implement reading of Table of Contents from EPUB 3 files that do not specify a fallback NCX ToC
    EPUB metadata: When setting a cover image for an EPUB file that has no metadata cover image defined, add the new cover image as a pure metadata cover instead of aborting.

Bug Fixes

    Fix crash on exit if any plugins have loaded code that raises exceptions during shutdown.

    Closes tickets: 1592414
    Copy to library: Speed up checking for duplicates when copying multiple books to a large library.

    Closes tickets: 1593027
    Get Books: Update Smashwords plugin for website changes.

    Closes tickets: 1590653
    Edit Book: Fix a bug in the new text search facility that could cause searches to fail when searching from the current cursor position instead of the top of the file.

    Closes tickets: 1588778
    Bulk conversion dialog: Fix page margin settings being ignored when converting to DOCX
    Make the default shortcut for remove books Backspace on OS X since many mac keyboards have no delete key and the backspace key is labelled as delete
    Edit Book: Check Book: Do not warn if a cover image is not referenced in the text
    E-book viewer: Fix a bug that could cause incorrect rendering of chapter titles in some rare circumstances.
    Windows console output: Handle consoles with non black and white color scheme correctly
    Fix a regression in 2.57 that caused auto-removal of borders from covers to become much less proficient at detecting borders
    Fix a regression in 2.57 that broke grayscaling of images

Improved news sources

    Technology Review (DE)

(wiz)

2016-06-19 20:24:47 UTC MAIN commitmail json YAML

2016-06-19 20:24:38 UTC MAIN commitmail json YAML

Updated afl to 2.15b.

--------------
Version 2.15b:
--------------

  - Added a README section on looking for non-crashing bugs.

  - Added license data to several boring files. Contributed by
    Jonathan Metzman.

(wiz)

2016-06-19 20:21:51 UTC MAIN commitmail json YAML

Updated graphics/ImageMagick to 7.0.2.0

(wiz)

2016-06-19 20:21:40 UTC MAIN commitmail json YAML

Updated ImageMagick to 7.0.2.0.

2016-06-09  7.0.2-0 Cristy  <quetzlzacatenango@image...>
  * Backoff finite precision epsilon (reference
    https://github.com/ImageMagick/ImageMagick/issues/215).
  * Fix drawing glitch for stroke widths greater than 2 (reference
    https://github.com/ImageMagick/ImageMagick/issues/218).

(wiz)

2016-06-19 20:03:35 UTC MAIN commitmail json YAML

mk: remove support for INSTALLATION_PREFIX [wiz 2016-06-19]

(wiz)

2016-06-19 20:03:09 UTC MAIN commitmail json YAML

2016-06-19 19:10:49 UTC MAIN commitmail json YAML

2016-06-19 18:13:00 UTC MAIN commitmail json YAML

Remove INSTALLATION_PREFIX; no change to package.

(wiz)

2016-06-19 18:04:04 UTC MAIN commitmail json YAML

mk: remove support for USE_CROSSBASE [wiz 2016-06-19]

(wiz)

2016-06-19 18:03:29 UTC MAIN commitmail json YAML

USE_CROSSBASE is deprecated, remove it.

Bump version.

(wiz)

2016-06-19 18:03:14 UTC MAIN commitmail json YAML

Updated pkgtools/pkglint4 to 4.163

(wiz)

2016-06-19 18:03:05 UTC MAIN commitmail json YAML

USE_CROSSBASE is deprecated, remove it.

Bump version.

(wiz)

2016-06-19 18:01:58 UTC MAIN commitmail json YAML

2016-06-19 17:25:53 UTC MAIN commitmail json YAML

2016-06-19 17:25:31 UTC MAIN commitmail json YAML

Update ne to 3.02

Change Log for New E (NE)
-------------------------

Version 3.02 15-May-12
----------------------

1. The icurrent command did not remove the line number from the line it copied.

2. Cutting and pasting did not always remove line numbers, as it is documented
  to do.

3. Some additional information has been added to the output from "show
  settings".

Version 3.01 02-Mar-12
----------------------

1. There were bugs in the table the controls what commands may be obeyed in
  read-only mode. For example, the "readonly" command was not allowed, so the
  mode could not be turned off. Doh! In addition, the single-character
  commands such as # ? etc. were not correctly handled in readonly mode;
  neither were bracketed groups nor procedures. Using any of these commands
  caused segfaults.

Version 3.00 23-Feb-11
----------------------

1. Rather than just fixing an out-by-one bug in eversion.c, I re-designed how
it works. Added the copyright notice to the -help output. Added a lot more
casts for signed/unsigned chars so that it compiles clean with -Wall on today's
compilers (it's been over 5 years since the last release).

2. Renamed configure.in as configure.ac in line with modern practice, and did
some tidying/updating of the configure and make files.

3. Made --help a synonym of -help, and added -v and --version as synonyms of
(the very ancient) -id.

4. Removed the -stream facility, as it seems redundant nowadays.

5. Fixed reference to unset memory in rdargs.c.

6. Removed redundant code for various special (no longer existing) terminal
types, and unused code for the Acorn windowing environment. The only special
terminal type now recognized is xterm. Also removed the unixregexp command,
which used to switch between different regex types, but has been obsolete for
ages.

7. In screen mode, test whether an xterm is set to UTF-8, and adjust output
accordingly. UTF-8 sequences are sent for certain characters whose code points
are greater than 127. Characters that do not occupy exactly one cell on an
xterm display are displayed as the substitute character (defaulting to a
question mark). These include zero-width and double-width characters.
Characters with code points greater than 0xFFFF are also substituted.

8. If -w[idechars] is specified, or the "widechars on" command is obeyed,
recognize valid wide UTF-8 characters in the text being edited, without
modifying the text bytes. A top-bit-set byte that is not part of a valid UTF-8
character is treated as a single-byte character. This affects how data lines
are displayed on the screen and in verification output. You can flip between
modes during an editing session.

9. "Show wordcount" was including line-ending characters in its character
count, contrary to its documentation. Of course, previously it was just a byte
count. It now shows both a byte count and a character count in wide character
mode, in both cases excluding line ending characters. Words are now delimited
by either tabs or spaces (previously it was just spaces). The output is now on
multiple lines.

10. Added new keyboard escapes for inputting Unicode characters, for example,
ESC A ' for aacute. Also recognize ESC U or ESC u followed by up to 5 hex
digits (short-terminated by a non-hex digit or another ESC). This feature
applies only to input in screen mode because in line-by-line mode the commands
are read using standard C input functions.

11. While implementing 8/9/10, several old bugs/infelicities were found and
fixed:

    (a) In the code for formatting paragraphs, if the begin/end paragraph
        settings did not include indented lines, and some lines of a paragraph
        were indented less than earlier lines, characters could sometimes get
        scrambled.

    (b) Characters deleted by keystroke while in overstrike mode did not get
        remembered for recall by "undelete".

    (c) Some redundant arguments for certain functions were discovered and
        removed (they probably related to code for environments no longer
        supported which itself has gone).

    (d) If a command line from a .nerc file was recovered by the use of the
        "up" key in a screen command line, the final newline was still present,
        and displayed as "?".

12. When running in an xterm, NE now recognizes a left-button mouse click in
the window, and moves the cursor appropriately. It also recognizes twiddling
the wheel in a wheel mouse, and for each twiddle scrolls the screen up or down
by an amount that can be set by "set autovmousescroll" (default 1). The current
line is changed only if it would disappear off the screen. The "mouse" command
can be used to turn mouse recognition on and off. Unfortunately, you have to
turn it off if you want to use normal xterm cut-and-paste.

13. NE was maintaining a value in a variable called main_currentlinenumber, but
never actually using it for anything. This must be an historic relic. Removing
it does not seem to have broken anything.

14. When writing a file, NE was not testing for an error on the fclose() call
at the end. Errors can happen here if, for example, the system is buffering the
output and a quota overrun is not detected until fclose().

15. When "show keys" was issued in screen mode, NE was pausing for interaction
more often than actually necessary if the screen or window was relatively deep.
It now notices the available depth.

16. The subchar command now allows for altering the character that is
substituted on screen for undisplayable characters.

Version 2.01 06-Jun-05
----------------------

1. Lines whose length was between 32768 and 65535 were ending up with
negative lengths because I was using short int rather than unsigned short
int. They showed up therefore as empty lines, which was pretty disastrous. As
well as inserting "unsigned", I have removed "short", since memory is plentiful
these days. So line lengths can in principle be *really* big.

2. Change from -lcurses to -lncurses in the Makefile.

3. Insert $(DESTDIR) before all the path names for make install.

Version 2.00 01-Mar-04
----------------------

This version has had the code refactored in several ways, and the compiling
process has been converted into a conventional "configure, make, make install"
paradigm. Only PCRE regular expressions are supported, and the PCRE library has
to be installed. Only Unix-like systems are now supported. The initialization
now uses .nerc instead of an environment variable. A number of other tidies and
minor interface changes were made. The documentation was re-worked to remove
all the obsolete stuff and to incorporate the changes.

(prlw1)

2016-06-19 17:20:44 UTC MAIN commitmail json YAML

Revbump to make sure package gets rebuilt with new mk/ocaml.mk.

(jaapb)

2016-06-19 17:03:47 UTC pkgsrc-2016Q1 commitmail json YAML

2016-06-19 17:03:04 UTC pkgsrc-2016Q1 commitmail json YAML

Pullup ticket #5043 - requested by jperkin
multimedia/xine-lib: dependency fix

Revisions pulled up:
- multimedia/xine-lib/Makefile                                  1.140
- multimedia/xine-lib/PLIST.common                              1.39
- multimedia/xine-lib/options.mk                                1.1-1.2

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: jperkin
  Date: Tue Apr 19 10:41:14 UTC 2016

  Modified Files:
  pkgsrc/multimedia/xine-lib: Makefile
  Added Files:
  pkgsrc/multimedia/xine-lib: options.mk

  Log Message:
  Remove dependency on audio/faac (appears unused) and move audio/libdca
  dependency to options.mk, defaulting to disabled.  Both these packages
  are marked NO_BIN_ON_* so xine-lib couldn't previously be distributed
  in binary package sets.

  Bump PKGREVISION.

  To generate a diff of this commit:
  cvs rdiff -u -r1.139 -r1.140 pkgsrc/multimedia/xine-lib/Makefile
  cvs rdiff -u -r0 -r1.1 pkgsrc/multimedia/xine-lib/options.mk

-------------------------------------------------------------------
  Module Name: pkgsrc
  Committed By: jperkin
  Date: Tue Apr 19 13:48:31 UTC 2016

  Modified Files:
  pkgsrc/multimedia/xine-lib: PLIST.common options.mk

  Log Message:
  Handle dts PLIST entries correctly.

  To generate a diff of this commit:
  cvs rdiff -u -r1.38 -r1.39 pkgsrc/multimedia/xine-lib/PLIST.common
  cvs rdiff -u -r1.1 -r1.2 pkgsrc/multimedia/xine-lib/options.mk

(spz)

2016-06-19 16:56:43 UTC MAIN commitmail json YAML

Updated editors/bvi to 1.4.0

(tsutsui)

2016-06-19 16:55:28 UTC MAIN commitmail json YAML

Update bvi to 1.4.0.

Upstream CHANGES:
http://bvi.sourceforge.net/new140.html

bvi 1.4.0 - stable release

    * Minor fixes

bvi 1.4.0rc2

    * Ubuntu bug #252604 fixed
    * set scroll fixed
    * adding ASCII_DEL 0x7f for backspace

bvi 1.4.0rc

    * b B w W commands behave equally now (SF bug #5)
    * .bvirc empty line bug fixed (SF bug #6)
    * g-command bug fixed (SF bug #7)
    * several minor fixes

bvi 1.4.0beta

    * ~ - bug fixed (by elo3456)
    * debian bug #469704 fixed (bmore)
    * debian bug #715687 fixed (bmore)
    * red hat bug #925119 fixed

bvi 1.4.0alpha

    * Highlighting of search results
    * Large File Support added
    * Binary representation of current byte in status line added
    * command line options renamed for compability with hexdump
    * Offset handling fixed (Bug item #3036881)
    * noshowmode: fix length of statusline
    * bmore: 'b' bug fixed
    * ';' bug fixed
    * ZZ write bug fixed (ZZ ignores readonly)
    * Buffer overflow if terminal > 255 columns fixed
    * configure fixed
    * ncurses with tinfo fixed

(tsutsui)

2016-06-19 16:51:30 UTC MAIN commitmail json YAML

2016-06-19 16:51:02 UTC MAIN commitmail json YAML

2016-06-19 16:50:32 UTC MAIN commitmail json YAML

Don't expect /usr/sbin to be in PATH.

(joerg)

2016-06-19 16:49:46 UTC MAIN commitmail json YAML

Fix dependencies. Ultimately ignore the errors from latex though, since
undefined references remain.

(joerg)

2016-06-19 16:26:23 UTC MAIN commitmail json YAML

Mention cross/* changes.

(wiz)

2016-06-19 16:24:00 UTC MAIN commitmail json YAML

2016-06-19 16:20:28 UTC MAIN commitmail json YAML

2016-06-19 16:19:04 UTC MAIN commitmail json YAML

Move libtool-base to cross-libtool-base to make PKGNAME match directory name.

Convert away from USE_CROSSBASE to plain ${PREFIX}/cross.

(wiz)

2016-06-19 16:18:28 UTC MAIN commitmail json YAML

2016-06-19 16:16:57 UTC MAIN commitmail json YAML

Add some missing dependencies. Many more are missing.

To find out which, remove \batchmode from refman.tex and fix the errors
as they occur.

(wiz)

2016-06-19 16:13:39 UTC MAIN commitmail json YAML

Updated devel/p5-Pegex to 0.61

(schmonz)

2016-06-19 16:13:33 UTC MAIN commitmail json YAML

Update to 0.61. From the changelog:

- Performance improvements by @agentzh++

(schmonz)

2016-06-19 16:02:17 UTC MAIN commitmail json YAML

Updated textproc/gspell to 1.0.2

(prlw1)

2016-06-19 16:01:57 UTC MAIN commitmail json YAML

Update gspell to 1.0.2

News in 1.0.2
-------------
* Fix gtk-doc build issue
* Translation update

(prlw1)

2016-06-19 15:55:20 UTC MAIN commitmail json YAML

Updated devel/py-at-spi2 to 2.20.2

(prlw1)

2016-06-19 15:55:00 UTC MAIN commitmail json YAML

Update py-at-spi2 to 2.20.2

What's new in pyatspi 2.20.2:

* Update STATE_LAST_DEFINED so that STATE_READ_ONLY is recognized
  (bgo#766121).

What's new in pyatspi 2.20.1:

* gettext: Don't modify endOffset (bgo#721860).

(prlw1)

2016-06-19 15:48:29 UTC MAIN commitmail json YAML

Drop accelerator specifiers of Alt + NUL (as in ASCII NUL). For unknown
reasons, GCC 4.8.4 seems to leak memory when hitting NULs embedded in
strings. Bump revision.

(joerg)

2016-06-19 15:46:47 UTC MAIN commitmail json YAML

Update location

(prlw1)

2016-06-19 15:46:47 UTC MAIN commitmail json YAML

2016-06-19 15:40:40 UTC MAIN commitmail json YAML

Updated math/gnome-calculator to 3.20.1

(prlw1)

2016-06-19 15:40:11 UTC MAIN commitmail json YAML

Update gnome-calculator to 3.20.1

Overview of changes in gnome-calculator 3.20.1
    * Fix: precedence of root operator (Alexis Poirier and Alberto Ruiz)
    * Update: Translation (Translation team)

(prlw1)

2016-06-19 15:25:28 UTC MAIN commitmail json YAML

Updated graphics/eog3 to 3.20.2

(prlw1)

2016-06-19 15:25:07 UTC MAIN commitmail json YAML

Update eog3 to 3.20.2

Version 3.20.2
--------------

New and updated translations:

- Fabio Tomat [fur]
- GunChleoc [gd]
- Sergio Cardeira [pt]

New and updated manual translations

- sujiniku, Jiro Matsuzawa [ja]

(prlw1)

2016-06-19 14:42:23 UTC MAIN commitmail json YAML

Updated games/gnome-sudoku to 3.20.2

(prlw1)

2016-06-19 14:41:53 UTC MAIN commitmail json YAML

Update gnome-sudoku to 3.20.2

3.20.2 - May 22, 2016
=====================

* Fix window size growing out of control with GTK+ 3.20

3.20.1 - May 7, 2016
====================

* Updated translations

(prlw1)

2016-06-19 14:33:12 UTC MAIN commitmail json YAML

2016-06-19 12:54:13 UTC MAIN commitmail json YAML

Note addition of www/contao42 package version 4.2.0.

(taca)

2016-06-19 12:53:49 UTC MAIN commitmail json YAML

Add and enable contao42.

(taca)

2016-06-19 12:53:04 UTC MAIN commitmail json YAML

Add contao42 4.2.0 to pkgsrc.

Contao is an Open Source Content Management Framework developed by Leo Feyer
and distributed under the LGPL license (see GPL.txt and LGPL.txt for more
information).  It was formerly known as TYPOlight Open Source CMS.

Its open architecture allows everybody to extend the system to fit his
needs. Contao specializes in accessible websites and is accessbile
itself (front end and back end), rendering valid HTML5 or XHTML pages.

Contao 4.2 is third minor release of Contao 4, which has incompatible API
from Contao 3.

* Now Contao is Symfony bundle.
* Contao 4 dose not use .htaccess files for protexting directory.
* DocumentRoot is "web" subdirecotry.
* XHTML support has gone, HTML5 only.
* Schema.org markup support.

Additionally, these new features.

* Tree view supports filter support.
* File manager support file searching.
* Vimeo video is also supported additinally Youtube.

(taca)

2016-06-19 12:33:21 UTC MAIN commitmail json YAML

Updated devel/p5-Git-Version-Compare to 1.004
Updated devel/p5-Gnome2 to 1.046
Updated devel/p5-Search-Elasticsearch to 2.03
Updated devel/p5-MetaCPAN-Client to 1.015000
Updated devel/p5-Log-Dispatch to 2.56
Updated devel/p5-IPC-SysV to 2.07
Updated devel/p5-IO-AIO to 4.34
Updated devel/p5-Hash-Util-FieldHash-Compat to 0.11

(mef)

2016-06-19 12:31:31 UTC MAIN commitmail json YAML

Updated devel/p5-Hash-Util-FieldHash-Compat to 0.11
---------------------------------------------------
0.11      2016-06-13 21:57:55Z
        - be gentle to older toolchains by avoiding the use of
          Module::Metadata in configure-requires (RT#115310)

(mef)

2016-06-19 12:29:07 UTC MAIN commitmail json YAML

Updated devel/p5-IO-AIO to 4.34
-------------------------------
4.34  Sun May  1 19:18:24 CEST 2016
        - def0.h was not properly generated during previous release, causing
          compile errors on various platforms.
        - major/minor were accidentally switched (reported by Alexander Lishenyuk).
        - removed duplicate definition of MAP_HUGETLB, that was found due to
          a bug in Perl::Tidy (testcase by alaska332@gmail.com).
        - added (untested!) aio_fcntl, aio_ioctl requests.
        - (libeio) names set via prctl are truncated to 15 chars + nul, not 16,
          as manpages-dev originally claimed.

4.33  Mon Jan 18 12:50:10 CET 2016
        - add IO::AIO::pipe2 function.
        - added support for FALLOC_FL_COLLAPSE_RANGE and FALLOC_FL_ZERO_RANGE
          constants.
        - added support for O_TMPFILE and O_PATH constants.
        - added support for MAP_FIXED, MAP_GROWSDOWN,MAP_32BIT, MAP_HUGETLB, MAP_STACK
          consdtants, whether they can be sensibly used or not.
        - use NO_INIT where applicable.
        - update libecb.
        - added stability canary support.
        - updated linux super magic table to 4.3.3.

(mef)

2016-06-19 12:18:47 UTC MAIN commitmail json YAML

Updated devel/p5-IPC-SysV to 2.07
---------------------------------
2.07 - 2016-05-09
    * CPAN #112827: incorrect skip count in t/ipcsysv.t
      (thanks to Tony Cook for providing a patch)

(mef)

2016-06-19 12:17:58 UTC MAIN commitmail json YAML

Add viewvc-1.1.24

(ryoon)

2016-06-19 12:16:26 UTC MAIN commitmail json YAML

Updated devel/p5-Log-Dispatch to 2.56
-------------------------------------
2.56    2016-05-06
- Cleaned up some cruft in Pod. Some sections ended up in there twice.

2.55    2016-05-06
- The values of $@, $!, and $? are protected in various cases where they could
  end up being changed by logging code. Patch by Salvador Fandi単o. GitHub #18.

- Treat MSYS2 like Cygwin in tests. Fix by Graham Ollis. GitHub #19.

(mef)

2016-06-19 12:12:02 UTC MAIN commitmail json YAML

Updated devel/p5-MetaCPAN-Client to 1.015000
--------------------------------------------
1.015000    02.06.15
            * Adding `source` method to MetaCPAN::Client::File (stevan)

1.014000    29.04.15
            * Fix warning on missing fields param (Mickey, Sawyer X)
            * Switch to Search::Elasticsearch 2.0. (Sawyer X)
            * You can test MetaCPAN::API with a different domain using the
              environment variable "METACPAN_DOMAIN". (Mickey)

(mef)

2016-06-19 12:06:07 UTC MAIN commitmail json YAML

Updated devel/p5-Search-Elasticsearch from 2.00 to 2.03
-------------------------------------------------------
2.03    2016-05-24

        Added register_qs() to allow plugins to expand known query string params
        Added api_version() to API roles so that plugins can determine which
        API version they should load.

2.02    2016-04-20

        Bug fix:
            Sniffed http addresses may or may not have the hostname/ prepended

2.01    2016-04-15

        Updated for Elasticsearch 2.3.0

        New features:
            * Added delete_by_query(), reindex(), and update_by_query()
            * Added tasks.list() and tasks.cancel()
            * Added ignore_unavailable to cat.snapshots()
            * Added attributes and explain to indices.analyze()
            * Added verbose to indices.segments()
            * S::ES::Error now implements TO_JSON
            * TestServer can now be used with forked processes

        Bug fixes:
            * Search::Elasticsearch::Error shouldn't be a Moo class
            * Search::Elasticsearch::Scroll can now be used in a forked process
            * Hijk is now optional as it doesn't work on windows
            * cat.snapshots requires a repository

(mef)

2016-06-19 12:02:31 UTC MAIN commitmail json YAML

Updated devel/p5-Gnome2 to 1.046
--------------------------------
(From https://github.com/GNOME/perl-Gnome2/blob/master/NEWS)
Overview of changes in Gnome2 1.046
===================================
* RT#104191; Don't use localtime() in POD output; patch submitted by intrigeri
  for the Debian Reproducable Builds project

(mef)

2016-06-19 11:57:38 UTC MAIN commitmail json YAML

(pkgsrc)
- Add following line for make test
  BUILD_DEPENDS+=        p5-Test-NoWarnings-[0-9]*:../../devel/p5-Test-NoWarnings

(upstream)
- Updated devel/p5-Git-Version-Compare to 1.004
---------------------------------------------
1.004 2016-05-24 BOOK
    - Remove a dependency on namespace::clean
    - Update the cache using the normalized version string
    - Ignore minor versions of special builds (msysgit, windows, etc.)
    - Ensure the tests do not throw any warning
    - Add a few more version numbers to the tests

1.003 2016-05-03 BOOK
    - Added support for version strings with comments (thanks to PINE)

(mef)

2016-06-19 10:53:05 UTC MAIN commitmail json YAML

Remove incorrect MASTER_SITE.

(wiz)

2016-06-19 10:44:15 UTC MAIN commitmail json YAML

Updated editors/nano to 2.6.0

(wiedi)

2016-06-19 10:43:34 UTC MAIN commitmail json YAML

Update editors/nano to 2.6.0

2016.06.17 - nano 2.6.0 "Rubicon" fixes more than fifty little bugs -- and
some of them not so little.  It improves moving about in
the file browser, corrects failings of the internal spell
checker, adds a new feature (comment/uncomment lines, with
default binding M-3), makes some error messages clearer,
shows more of a file when positionlog is used and the cursor
is near the end, displays all error messages at startup if
there are multiple ones, does not misinterpret keystrokes
when typing very fast, is less eager to trim the filename
on narrow terminals, speeds up case-insensitive searches,
and allows to abort re-searches.  Among bunches of other
things.  It is worth the trouble to upgrade.

(wiedi)

2016-06-19 10:37:16 UTC MAIN commitmail json YAML

Updated misc/dose3 to 5.0rc2

(jaapb)

2016-06-19 10:36:59 UTC MAIN commitmail json YAML

Updated package to latest version, 5.0~rc2. Changes include:

dose3 (5.0) UNRELEASED; urgency=low
* finally implement keep_package/version/feature properly. The globalid
  index that was used to optionally encode the global constraints is
  now disappeared. This simplify the interface of the solver.
* massive refactoring. Change of API . All functions in Depsolver*
  accept a new paramenter "global_constraints" that is a vpkgformula
  enconding all packages that must be co-installed by by default with
  each request. This is used to properly encode debian essential packages
  without abusing 'Keep_package as before.
* Depsolver_int.{solve,init_solver_unit,init_solver_cache} have a new optional
  argument 'explain'. When false, reduce the memory footprint.
* Depsolver.{check_request,check_request_using} accept a new parameter dummy
  that can be used to pass arbitrary contraints as a cudf.package that is going
  to be coinstalled as part of the request and filtered out in the result.
* improvements to the documentation and test units
* add --compare to ceve when used with pef://
* improvements to distcheck --lowmem
* StdOptions.lastest now returns an integer to consider only the last n versions
  of each package
* API change : CudfAdd.latest
* API change : CudfAdd.inttovar -> CudfAdd.inttopkg
* API change : add parameter to check_request and check_request_using
* apt-cudf : package up or downgrades are expressed in a single
  "Install" request and that these do not show up as a "Remove" request anymore.
* StdOptions.DistribOptions.add_options are now different for each input ( ex.
  StdOptions.DistribOptions.add_debian_options )uu
* Debian.Printer.pp_* functions are now methods of the Debian.package class

-- Pietro Abate <pietro.abate@inria.fr>  Thur, 06 Jun 2016 13:13:06 +0200

dose3 (4.3) UNRELEASED; urgency=low
* Fix exitcode problem with apt-cudf
* Add new comparison functions to parse npm like versions
* Make ocamlgraph a hard dependency of dose.
* Switch to ocamlgraph based explanation graphs by default
* add {foregin,native}-architecture field to distcheck output
* bump output-version to 1.2
* add --lowmem option to distcheck (slow, but consumes less memory)
* remove build-essential field from buildcheck
* add --deb-drop-b-d-indep and --deb-profiles to ceve
* API Change. Debian.Debutil.debvpkg is replaced by Pef.Pefcudf.pefvpkg
* API Change. Depsolver_int.solve has a addition argument "explain"
* add new option to ditcheck and ceve --compare to specify a comparison
  function to be used with the pef format.

-- Pietro Abate <pietro.abate@inria.fr>  Thur, 21 Apr 2016 13:13:06 +0200

dose3 (4.2) UNRELEASED; urgency=low

* Fix META file and other compilation problems (notably on 32 bits architectures)
* Add back the "Enhances" field in the debian printer
* the new yaml format also drops the architecture suffix in the package and
  unsat-dependency fields
* Add new function Depsolver.is_consistent and Debian.Debcudf.get_real_name
* Expose Diagnostic.request and Diagnostic.result
* Update the yaml output of outdated (no more cudf-related cruft in package names)
* bump yaml output-version to 1.1

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Thur, 14 Jan 2016 13:13:06 +0200

dose3 (4.1) UNRELEASED; urgency=low
  * New optimization criteria parser. apt-cudf now accepts only optimization criterias in
    misc2012 format.
  * the extended MISC 2012 syntax extends the count criteria allowing the
    following additional forms:
      count(selector,field:=/plain/)
      count(selector,field:~/regex/)
  * Update Documentation
  * Modules are renamed (compiled with -pack) :
    Versioning.Debian
    Versioning.Semver
  * API change : Debian.Debcudf.get_real_version tables now returns
    a tuple (name, version) . Name is the original Debian name without
    encoding ( "src:" , ":$arch" , "--virtual-" ).
  * Implement versioned provides
  * strict dependency ocamlgraph >= 1.8.6
  * strict dependency extlib >= 1.7.0
  * new cudf property for deb/edsp types
    native is 1 if the pkg architecture is equal to the native architecture,
    0 otherwise. This can be used to maximise the number of packages
    belonging to the native architecture ( +sum(solution,active) )
  * better parsing and error reporting
  * More Module refactoring (algo/deb/pef/opam)

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Tue, 01 Dec 2015 13:13:06 +0200

dose3 (4.0) UNRELEASED; urgency=low
  * Minor Bugs
  * Add opam module
  * Major refactoring of parsing functions Pef/Deb/Opam

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Mon, 29 June 2015 13:13:06 +0200

dose3 (4.0-rc3) UNRELEASED; urgency=low
  * Minor Bugs

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Mon, 29 June 2015 13:13:06 +0200

dose3 (4.0-rc2) UNRELEASED; urgency=low
  * Add new module Versioning to group all the comparison functions
  * Add a new comparison schema (http://semver.org/)
  * Add new two new ceve output formats: deb and debsrc

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Fri, 26 June 2015 13:13:06 +0200

dose3 (4.0-rc1) UNRELEASED; urgency=low
  * Remove dependency to camlp4. Add build dependency to cppo
  * Add option --dot to create explanation graphs in dot format
  * add 'out-version' field to yaml format
  * Debian Essential packages are now kept into account while
    generating strong dependencies. You must pass
    --deb-ignore-essential to restore the previous behaviour
  * Add --latest to challenged
  * Add new format PEF : package export format
  * Drop eclipse format (superceded by PEF)
  * Drop cv format (superceded by PEF)
  * Ceve can read source packages
  * Add grep-able one line explanations (success/failure) to distcheck
  * Switch architecture and name around in cudf representation for debian packages
  * Add new function to detect unsused dependencies/conflicts
  * API change : Diagnostic.request, Depsolver.request, StdLoaders.load_list,
    Debcudf.init_tables,
  * add debsrc input format to ceve

-- Pietro Abate <pietro.abate@pps.univ-paris-diderot.fr>  Wed, 24 June 2015 13:13:06 +0200

(jaapb)

2016-06-19 10:36:10 UTC pkgsrc-2016Q1 commitmail json YAML

2016-06-19 10:35:08 UTC pkgsrc-2016Q1 commitmail json YAML

Pullup ticket #5044 - requested by bsiegert
security/libksba: security update

Revisions pulled up:
- security/libksba/Makefile                                    1.32
- security/libksba/distinfo                                    1.20

-------------------------------------------------------------------
  Module Name:    pkgsrc
  Committed By:  bsiegert
  Date:          Sat Jun 18 07:25:13 UTC 2016

  Modified Files:
          pkgsrc/security/libksba: Makefile distinfo

  Log Message:
  Update libksba to 1.3.4, fixing several vulnerabilities.

  Noteworthy changes in version 1.3.4 (2016-05-03) [C19/A11/R4]
  ------------------------------------------------

    * Fixed two OOB read access bugs which could be used to force a DoS.

    * Fixed a crash due to faulty curve OID lookup code.

    * Synced the list of supported curves with those of Libgcrypt.

    * New configure option --enable-build-timestamp; a build timestamp is
      not anymore used by default.

  To generate a diff of this commit:
  cvs rdiff -u -r1.31 -r1.32 pkgsrc/security/libksba/Makefile
  cvs rdiff -u -r1.19 -r1.20 pkgsrc/security/libksba/distinfo

(spz)

2016-06-19 10:12:18 UTC MAIN commitmail json YAML

Updated buildlink3.mk file for 1.7.0 (API has changed!)

(jaapb)

2016-06-19 10:11:14 UTC MAIN commitmail json YAML

Revbump: ocaml-extlib was updated

(jaapb)

2016-06-19 10:08:05 UTC MAIN commitmail json YAML

Updated devel/ocaml-extlib to 1.7.0

(jaapb)

2016-06-19 10:07:47 UTC MAIN commitmail json YAML

Updated package to latest version, 1.7.0. Also changed upstream (package
moved to github).

Changes include:
* Switch to git and move repo to github
* `-safe-string` compatibility
* use cppo instead of camlp4
* allow to set the exit code in optParse
* add new upstream functions in String

(jaapb)

2016-06-19 09:58:12 UTC MAIN commitmail json YAML

Remove whitespace

(ryoon)

2016-06-19 09:51:52 UTC MAIN commitmail json YAML

2016-06-19 09:18:10 UTC MAIN commitmail json YAML

Added audio/xjadeo version 0.8.5

(kamil)

2016-06-19 09:16:57 UTC MAIN commitmail json YAML

Add audio/xjadeo

(kamil)

2016-06-19 09:16:15 UTC MAIN commitmail json YAML

2016-06-19 09:16:08 UTC MAIN commitmail json YAML

+ ImageMagick-7.0.2.0, afl-2.15b, calibre-2.59.0, fontconfig-2.12.0,
  libgpg-error-1.23, meld-3.16.1, musicpd-0.19.16, p5-DateTime-Locale-1.04,
  pcre-8.39, py-betamax-0.7.1, py-vdirsyncer-0.11.2, supertuxkart-0.9.2,
  wine-1.8.3, x264-devel-20160618.

(wiz)

2016-06-19 07:40:17 UTC MAIN commitmail json YAML

2016-06-19 06:36:24 UTC MAIN commitmail json YAML

Updated mail/thunderbird-l10n to 45.1.1

(ryoon)

2016-06-19 06:35:57 UTC MAIN commitmail json YAML

2016-06-19 06:34:54 UTC MAIN commitmail json YAML

Updated mail/thunderbird to 45.1.1

(ryoon)

2016-06-19 06:34:26 UTC MAIN commitmail json YAML

Update to 45.1.1

Changelog:
    Fixed When entering members into a mailing list, the enter key dismissed the panel instead of just moving onto the next line
    Fixed Email without HTML elements was sent as HTML, despite "Delivery Format: Auto-detect" option
    Fixed Options applied to a template were lost when the template was used.
    Fixed Contacts could not be deleted when they were found through a search
    Fixed Views from global searches did not respect "mail.threadpane.use_correspondents"

(ryoon)

2016-06-19 06:32:39 UTC MAIN commitmail json YAML

Updated mail/thunderbird38-l10n to 38.8.0

(ryoon)

2016-06-19 06:32:17 UTC MAIN commitmail json YAML

2016-06-19 06:31:39 UTC MAIN commitmail json YAML

Updated mail/thunderbird38 to 38.8.0

(ryoon)

2016-06-19 06:31:13 UTC MAIN commitmail json YAML

Updated devel/xulrunner45 to 45.2.0

(ryoon)

2016-06-19 06:30:29 UTC MAIN commitmail json YAML

Update to 38.8.0

Changelog:
Security bugs
Fixed in Thunderbird 38.8
    2016-39 Miscellaneous memory safety hazards (rv:46.0 / rv:45.1 / rv:38.8)
    2016-36 Use-after-free during processing of DER encoded keys in NSS

(ryoon)

2016-06-19 06:28:48 UTC MAIN commitmail json YAML

Update to 45.2.0

* Sync with firefox45-45.2.0

(ryoon)

2016-06-19 06:26:42 UTC MAIN commitmail json YAML

Updated www/firefox45-l10n to 45.2.0

(ryoon)

2016-06-19 06:26:16 UTC MAIN commitmail json YAML

Update to 45.2.0

* Fix PKGNAME
* Sync with firefox45-45.2.0

(ryoon)

2016-06-19 06:24:48 UTC MAIN commitmail json YAML

Updated www/firefox45 to 45.2.0

(ryoon)

2016-06-19 06:24:09 UTC MAIN commitmail json YAML

Update to 45.2.0

Changelog:
Fixed
    Graphics-related crashes (Bugs 1261320, 1224199)
    Various security fixes
    Unicode support for AutoConfig API (Bug 1271032)
    Web compatibility fix for addEventListener API (Bug 1266194)

Fixed in Firefox ESR 45.2
    2016-58 Entering fullscreen and persistent pointerlock without user permission
    2016-56 Use-after-free when textures are used in WebGL operations after recycle pool destruction
    2016-55 File overwrite and privilege escalation through Mozilla Windows updater
    2016-53 Out-of-bounds write with WebGL shader
    2016-52 Addressbar spoofing though the SELECT element
    2016-51 Use-after-free deleting tables from a contenteditable document
    2016-50 Buffer overflow parsing HTML5 fragments
    2016-49 Miscellaneous memory safety hazards (rv:47.0 / rv:45.2)

(ryoon)

2016-06-19 05:55:57 UTC MAIN commitmail json YAML

2016-06-19 05:26:37 UTC MAIN commitmail json YAML

Don't try to use sphinx if found.

(markd)

2016-06-19 05:09:12 UTC MAIN commitmail json YAML

Updates to p5-Scope-Upper and libraw

(markd)

2016-06-19 05:07:24 UTC MAIN commitmail json YAML

Add dependency on qt5-qtwebsockets

(markd)

2016-06-19 05:04:57 UTC MAIN commitmail json YAML

Update libraw to 0.17.2

plus gcc6 fix to dcraw_common.cpp

LibRaw 0.17.2
* strncpy usage was not compatible with glibc bounds check
LibRaw 0.17.1
* fixed two errors found by AlphaFuzzer
* phase_one_correct always returns value; handle P1 return codes in
  postprocessing
LibRaw 0.17.0
* Fixed dcraw.c ljpeg_start possibly buffer overrun
* fixed several bugs detected by using American Fuzzy Lop
* C-API extension to support 3DLut Creator
* More metadata parsing/extraction:
  XMP packet extracted (if exists)
  DNG Color information parsed
  GPS data (partially) parsed
  EXIF/Makernotes parsed for used optics (for both RAW files and DNG
  converted by Adobe convertor).
* Exif/Makernotes parser callback (called for each processed tag)
* Sony ARW2.3 decoder:
  params.sony_arw2_hack removed, decoded data are always in 0...17k range
  (note the difference with dcraw!)
  Additional processing options for Sony lossy compression techincal
  analysis.
* Dcraw 9.26 imported (but some changes not approved because Libraw do it
  better) with some exceptions:
  no Pentax K3-II frame selection code
  no built-in JPEG decompressor
* Many improvements in data decoding/processing:
  Correct decoding of black level values from metadata for many formats,
  LibRaw do not rely on hardcoded black levels.
* 224 camera models added to supported camera list. Some of them are new
  (released since LibRaw 0.16 come out), some was supported before, but
  missed from the list.
* Fujifilm F700/S20Pro second frame support

(markd)

2016-06-19 04:54:30 UTC MAIN commitmail json YAML

Update to p5-Scope-Upper 0.29

2016-06-06 12:00 UTC
+ Chg : A large chunk of boilerplate XS code, which is also used in
        other XS modules, has been factored out of the main .xs file
        to a collection of .h files in the xsh subdirectory.
+ Fix : Blead breaks Scope::Upper
        Dave Mitchell provided a new implementation of reap(),
        localize_*() and uplevel() to match the new context stack
        handling in perl 5.24. Many thanks to him.

(markd)

2016-06-19 04:19:37 UTC MAIN commitmail json YAML

more texlive 2016 additions.

(markd)

2016-06-19 04:17:57 UTC MAIN commitmail json YAML

Add tex-graphics-cfg and tex-dvisvgm-def completing the collection

(markd)

2016-06-19 04:13:06 UTC MAIN commitmail json YAML

Note dependency on tex-graphics-cfg

(markd)

2016-06-19 04:11:16 UTC MAIN commitmail json YAML

Add tex-graphics-cfg{,-doc} tex-dvisvgm-def{,-doc}

(markd)

2016-06-19 04:09:07 UTC MAIN commitmail json YAML

2016-06-18 22:15:38 UTC MAIN commitmail json YAML

Added multimedia/harvid version 0.8.1

(kamil)

2016-06-18 22:13:43 UTC MAIN commitmail json YAML

Add multimedia/harvid

(kamil)

2016-06-18 22:11:53 UTC MAIN commitmail json YAML

Import harvid-0.8.1 as multimedia/harvid

harvid -- HTTP Ardour Video Daemon

Harvid decodes still images from movie files and serves them via HTTP.

Its intended use-case is to efficiently provide frame-accurate data and act as
second level cache for rendering the video-timeline in Ardour.

Originally packaged in pkgsrc-wip by myself.

Reviewed by <youri>

(kamil)

2016-06-18 21:54:44 UTC MAIN commitmail json YAML

consolekit: Revert buildlink3.mk.

(youri)

2016-06-18 21:49:15 UTC MAIN commitmail json YAML

Updated x11/mate-panel to 1.14.1nb1

(youri)

2016-06-18 21:49:05 UTC MAIN commitmail json YAML

Bump PKGREVISION for binary package change.

(youri)

2016-06-18 21:46:07 UTC MAIN commitmail json YAML

Add WAF_REPLACE_EXECUTABLE in waf.mk

The waf tool has been designed as a bundled 3rd party script in a software
tarball. For this reason some vendors freely modify these scripts and are
technically incompatible with the stock one.

Allow to use waf.mk goodies in such circumstances by specifying
"WAF_REPLACE_EXECUTABL=no" in a package's Makefile. Retain the default
behavior of replacing or copying waf into a package unchanged.

Reviewed by <wiz>

(kamil)

2016-06-18 21:32:35 UTC MAIN commitmail json YAML

Updated x11/xephem to 3.7.7

(jakllsch)

2016-06-18 21:32:10 UTC MAIN commitmail json YAML

Update xephem to 3.7.7 with OK from gdt@.

Changes from 3.7.6 to 3.7.7
Released August 9, 2015

    Bugs fixed:

        Improved earth satellite range rate
        Fixed some typos in help file
        Updated magnetic declination model for 2015-2020
        Update Makefile for OS X.10 Yosemite to look for X11 in /opt/X11
        Magnetic declination tooltip was reversed
        Update Minor Planet Center donwloading script, mpcorb2edb.pl
        INDI was not sending all Switches as required by specification.
        Change astorb2edbl.pl to use curl and try both with and without EPSV.

    New features:

        Include new simpleINDI demo program.
        Add support for UCAC4

Changes from 3.7.5 to 3.7.6
Released January 20, 2013

    New features:

        Show transit azimuth
        Plots now show coordinates under cursor.
        Improved Earth night lights file, nearth.gif.
        Update Jupiter Great Red Spot default longitude.
        Show satellite element age in Index.
        Add Curiosity landing coordinates to mars_db
        Separate Sky View horizon clipping option
        SOHO is back
        New daytime earth image with improved geography shading
        SkyView -> Favorites offers same controls as map right-click
        Telescope GoTo honors horizon map

    Bugs fixed:

        Improve Earth sunline in cyl graphic projection near equinox.
        Improve error handling downloading asteroid data.
        Improve accuracy of Earth satellite transits.
        Significantly improve speed of Earth satellite rise and set predictions.
        Significantly improve accuracy of Earth satellite transit predictions.
        Eliminate Earth satellite Objects table values flashing.
        Improve accuracy of Earth satellite ground footprint.
        Saving Favorites after downloading new elements now saves new values.
        Improved earth satellite height and solver stability.
        Improve INDI menu interactions for type ISwitchVectorProperty
        Sky view horizon clipping incorrectly in rare cases.
        Better isolation of applicable Sky View options in individual planet rendering.
        In Moon view: subearth, subsolar and anti-subsolar options moved from Grid to {Pen}Umbra.
        Show sun in moonview during solar eclipse
        Better handling of proxies and large files in web downloads
        Favorites menu updates when db that is also a favorite changes.
        Fixed crash if Earth view showing Favorite that is updated from file or download

(jakllsch)

2016-06-18 21:18:31 UTC MAIN commitmail json YAML

Updated games/wesnoth to 1.12.6

(leot)

2016-06-18 21:18:16 UTC MAIN commitmail json YAML

Update games/wesnoth to 1.12.6

Changes:
Version 1.12.6:
* Campaigns:
  * Legend of Wesmere:
    * Fixed recruit lists for AI sides in MP mode.
    * Made it so the campaign displays an error and aborts when started with
      Shuffle Sides enabled in MP mode.
* Language and i18n:
  * Updated translations: British English, Galician, Italian, Japanese,
    Portuguese, RACV, Russian, Scottish Gaelic, Slovak, Spanish, Swedish
* Terrains:
  * Fixed glitches of river ford transitions.
* User interface:
  * GUI1 comboboxes now use the thinner menu frame style.
  * Fixed minimap buttons appearing without contents or in the wrong state
    when the game window is resized, when using debug commands to toggle fog
    and/or shroud, and probably a lot of other occurrences that are now
    covered by a proper fix on top of the quick hacks shipped with versions
    1.11.16 and 1.12.3.
  * Fixed MP lobby games list coming up empty when Invert is checked while
    Apply Filter is not (bug #23117).
  * Fixed Observers icon appearing behind other top bar items in MP games on
    horizontal UI resolutions < 1024 (bug #24455).
  * Fixed ToD schedule progress indicator appearing behind other top bar items
    on vertical UI resolutions < 600.
* Miscellaneous and bug fixes:
  * Revert all updates to hot-key handling which broke letter-based short-cuts
    on non-US keyboard layouts, where characters are in different key
    locations (bug #24186).
  * Fix the move-to-targets candidate action of the default AI ignoring tunnels
  * Fix two rare bugs in the goto candidate action that resulted in goto moves
    by other units being skipped after a unit could not get to its goal.
  * Fixed possible assertion failures in multiplayer.
  * Fixed false positive OOS messages in replay when replaying games from an
    older Wesnoth version.
  * Fixed saving the game during a replay creating corrupt saves (bug #23310).
  * Fixed unit test compilation against Boost 1.60 and later (bug #24234).

(leot)

2016-06-18 20:55:01 UTC MAIN commitmail json YAML

2016-06-18 20:36:56 UTC MAIN commitmail json YAML

Updated print/cups to 2.1.4

(leot)

2016-06-18 20:36:38 UTC MAIN commitmail json YAML

Update print/cups to 2.1.4

pkgsrc changes:
- Switch MASTER_SITES to MASTER_SITE_GITHUB (per-upstream), simplify DISTNAME
  handling and get rid of comment (because also the bug handling changed to
  GitHub issues)

Changes:
CHANGES IN CUPS V2.1.4
----------------------
- Fixed reporting of 1284 Device IDs (Issue #3835, PR #3836)
- Fixed printing of multiple files to raw queues (Issue #4782)
- The scheduler did not implement the Hold-New-Jobs opertion correctly
  (Issue #4767)
- The ipptool program truncated values at 8k (Issue #4786)
- The ipptool program did not correctly report uriScheme values in plist
  output (Issue #4785)
- The cups-lpd mini-daemon incorrectly included the document-name
  attribute when creating a job.  It should only be included when
  sending a job (Issue #4790)
- USB quirk updates (Issue #4778, Issue #4789)
- Documentation update (Issue #4772)

(leot)

2016-06-18 20:28:17 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-PPPort to 3.34
Updated devel/p5-Event to 1.26
Updated devel/p5-Getopt-Long to 2.49.1
Updated devel/p5-System-Command to 1.118
Updated devel/p5-Git-Repository to 1.320

(mef)

2016-06-18 20:27:08 UTC MAIN commitmail json YAML

Updated devel/p5-Git-Repository to 1.320
----------------------------------------
1.320 2016-06-12 BOOK
    [ENHANCEMENTS]
    - Rewrite Git::Repository::Command's final_output() using
      System::Command's loop_on()
    [TESTS]
    - Fix a test that failed with Git versions with "comments" (Samit Badle)

(mef)

2016-06-18 20:25:22 UTC MAIN commitmail json YAML

Updated devel/p5-System-Command to 1.118
----------------------------------------
1.118 Thu Jun 2 2016
    [ENHANCEMENTS]
    - Avoid calling waitpid() more than necessary in _reap()
    - Close all pipes when loop_on() ends successfully, and avoid a warning
      when the exit value is not available
    [TESTS]
    - Fix t/20-zombie.t, which was broken in Strawberry Perl (viviparous)

1.117 Sun Jan 17 2016
    [ENHANCEMENT]
    - New method loop_on() allows to run callbacks on the output/errput

1.116 Sun Jan 3 2016
    [BUG FIX]
    - Fix for the 'interactive' option (RKINYON)
    [COMPATIBILITY]
    - Remove a warning that was showing up under Perl 5.6

(mef)

2016-06-18 20:23:25 UTC MAIN commitmail json YAML

Updated devel/p5-Getopt-Long to 2.49.1
--------------------------------------
Changes in version 2.49.1
-------------------------
* Emergency fix Makefile.PL for non-GNUmake.

Changes in version 2.49
-----------------------
* Fix bug https://rt.cpan.org/Ticket/Display.html?id=114999
  Thanks Roy Ivy III for finding and fixing this.

* Fix bug https://rt.cpan.org/Ticket/Display.html?id=113748
  Thanks Tom Wyant for finding and fixing this.

(mef)

2016-06-18 20:20:16 UTC MAIN commitmail json YAML

Updated devel/p5-Event to 1.26
------------------------------
1.26 2015-06-13
  - fix doc typos (Lucas Kanashiro)

1.25 2015-06-06
  - Fix Event::PRIO_NORMAL call in Watcher.pm (Lucas Kanashiro)
  - update Changes

(mef)

2016-06-18 20:18:54 UTC MAIN commitmail json YAML

Updated devel/p5-Devel-PPPort to 3.34
-------------------------------------
3.34 - 2016-06-04
    * Fix compilation on Windows with certain compilers.
      (__attribute__ not recognized. (#GH 36)

(mef)

2016-06-18 18:57:40 UTC MAIN commitmail json YAML

2016-06-18 18:55:52 UTC MAIN commitmail json YAML

Update mpop to 1.2.5. From Onno van der Linden in PR pkg/51253.

Version 1.2.5:
- Support SHA256 fingerprints for tls_fingerprint, and mark both SHA1 and MD5 as
  deprecated.

Version 1.2.4:
- The system default policy is used with GnuTLS instead of a hardcoded one.

Version 1.2.3:
- A bug in SOCKS support was fixed.
- Handling non-fatal errors in TLS handshakes was fixed.

Version 1.2.2:
- No significant changes.

Version 1.2.1:
- The new configure option --with-tls replaces --with-ssl.
- A new configure option --disable-gai-idn was added.

Version 1.2.0:
- Support for SOCKS proxies was added. This allows mpop to be used with Tor.
- GNOME Keyring support now uses libsecret instead of libgnome-keyring. It is
  now documented how to use secret-tool to manage passwords for mpop; the
  obsolete mpop-gnome-tool script is removed.
- Configuration file security is now only checked if the file actually contains
  secrets such as passwords. (If you still store passwords in the configuration
  file, consider using the passwordeval command or a key ring instead.)
- The GSSAPI authentication method is not chosen automatically anymore, you have
  to request it manually if you really want to use it.
- Libidn is not required for IDN support anymore on systems where getaddrinfo()
  supports the AI_IDN flag and the GnuTLS version is >= 3.4.0.
- SSLv3 is disabled, and the obsolete tls_force_sslv3 command and
  --tls-force-sslv3 option have no effect anymore.

Version 1.0.29:
- No significant changes.

(bsiegert)