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

2024-05-13 11:18:07 UTC Now

2018-01-26 17:18:23 UTC MAIN commitmail json YAML

2018-01-26 17:17:35 UTC MAIN commitmail json YAML

2018-01-26 16:40:50 UTC MAIN commitmail json YAML

2018-01-26 16:27:37 UTC MAIN commitmail json YAML

Updated security/clamav to 0.99.3nb1

(bouyer)

2018-01-26 16:26:57 UTC MAIN commitmail json YAML

2018-01-26 16:24:32 UTC MAIN commitmail json YAML

Reset PKGREVISION, ride previous package version bump.

(bouyer)

2018-01-26 15:47:28 UTC MAIN commitmail json YAML

doc: Updated x11/py-sip to 4.19.5nb1

(jperkin)

2018-01-26 15:47:18 UTC MAIN commitmail json YAML

2018-01-26 15:27:04 UTC MAIN commitmail json YAML

2018-01-26 15:16:29 UTC MAIN commitmail json YAML

2018-01-26 15:01:39 UTC MAIN commitmail json YAML

Add missing description

(triaxx)

2018-01-26 14:55:31 UTC MAIN commitmail json YAML

Remove useless options for duplicity

(triaxx)

2018-01-26 14:54:10 UTC MAIN commitmail json YAML

doc: Updated sysutils/duplicity to 0.7.16

(triaxx)

2018-01-26 14:53:05 UTC MAIN commitmail json YAML

Updated sysutils/duplicity to 0.7.16

New in v0.7.16 (2018/01/12)
---------------------------
* Fixed bug #1733057 AttributeError: 'GPGError' object has no attribute 'decode'
  - Replaced call to util.ufn() with call to util.uexc().  Stupid typo!
* More fixes for Unicode handling
  - Default to 'utf-8' if sys.getfilesystemencoding() returns 'ascii' or None
  - Fixed bug #1386373 with suggestion from Eugene Morozov
* Patched in lp:~crosser/duplicity/fix-oauth-flow
  - Fixed bug #1638236 "BackendException with oauth2client 4.0.0"
* Patched in lp:~crosser/duplicity/dpbx-fix-file-listing
  - Fixed bug #1639664 "Dropbox support needs to be updated for Dropbox SDK v7.1"
* Patched in lp:~crosser/duplicity/fix-small-file-upload
  - Fixed small file upload changes made in Dropbox SDK v7.1
* Fix pylint error in webdavbackend.py

New in v0.7.15 (2017/11/13)
---------------------------
* Fixed bug introduced in new megabackend.py where process_commandline()
  takes a string not a list.  Now it takes both.
* Updated web page for new megabackend requirements.
* Patched in lp:~mterry/duplicity/more-decode-issues
  - Here's some fixes for another couple UnicodeDecodeErrors.
  - The duplicity/dup_time.py fixes when a user passes a utf8 date string (or a string with bogus
    utf8 characters, but they have to really try to do that). This is bug 1334436.
  - The bin/duplicity change from str(e) to util.uexc(e) fixes bug 1324188.
  - The rest of the changes (util.exception_traceback and bin/duplicity changes to use it) are to
    make the printing of exceptions prettier. Without this, if you see a French exception, you see
    "accept\xe9es" instead of "acceptées".
  - You can test all of these changes in one simple line:
    $ LANGUAGE=fr duplicity remove-older-than $'accept\xffées'
* Fix backend.py to allow string, list, and tuple types to support megabackend.py.
* Fixed bug #1715650 with patch from Mattheww S
  - Fix to make duplicity attempt a get first, then create, a container
    in order to support container ACLs.
* Fixed bug #1714663 "Volume signed by XXXXXXXXXXXXXXXX, not XXXXXXXX"
  - Normalized comparison length to min length of compared keys before comparison
  - Avoids comparing mix of short, long, or fingerprint size keys.
* Merged in lp:~mterry/duplicity/rename-dep
  - Make rename command a dependency for LP build
* Fixed bug #1654756 with new b2backend.py module from Vincent Rouille
  - Faster (big files are uploaded in chunks)
  - Added upload progress reporting support
* Fixed bug #1448094 with patch from Wolfgang Rohdewald
  - Don't log incremental deletes for chains that have no incrementals
* Fixed bug #1724144 "--gpg-options unused with some commands"
  - Add --gpg-options to get version run command
* Fixed bug #1720159 - Cannot allocate memory with large manifest file since 0.7.03
  - filelist is not read if --file-changed option in collection-status not present
  - This will keep memory usage lower in non collection-status operations
* Fixed bug #1723890 with patch from Killian Lackhove
  - Fixes error handling in pydrivebackend.py
* Fixed bug #1730902 GPG Error Handling
  - use util.ufn() not str() to handle encoding

New in v0.7.14 (2017/08/31)
---------------------------
* Merged in lp:~dawgfoto/duplicity/skip_sync_collection_status
  - collection-status should not sync metadata
  - up-to-date local metadata is not needed as collection-status is
    generated from remote file list
  - syncing metadata might require to download several GBs
* Fixed slowness in 'collection-status' by basing the status on the
  remote system only.  The local cache is treated as empty.
* Fixed encrypted remote manifest handling to merely put out a non-fatal
  error message and continue if the private key is not available.
* Patched in lp:~mterry/duplicity/giobackend-display-name
  - giobackend: handle a wider variety of gio backends by making less assumptions;
    in particular, this fixes the google-drive: backend
* Fixed bug #1709047 with suggestion from Gary Hasson
  - fixed so default was to use original filename
* Fixed PEP8 errors in bin/duplicity
* Merged in lp:~mterry/duplicity/gio_child_for_display_name_0.7
  - gio: be slightly more correct and get child GFiles based on display name
* Fixed bug #1711905 with suggestion from Schneider
  - log.Warn was invoked with log.warn in webdavbackend.py
* Merged in lp:~mterry/duplicity/gpg-tag-versions
  - Support gpg versions numbers that have tags on them.
  - This can happen if you build gpg from git trunk (e.g. 2.1.15-beta20). Or if you run
    against the freedesktop flatpak runtime (e.g. 2.1.14-unknown).
* Fixed bug #1394386 with new module megabackend.py from Tomas Vondra
  - uses megatools from https://megatools.megous.com/ instead of mega.py library
    which has been deprecated
  - fixed copyright and PEP8 issues
  - replaced subprocess.call() with self.subprocess_popen() to standardize
* Fixed bug #1713640 with patch from Aleksandar Ivanisevic
  - replace 2.7 syntax with 2.6 equivalent
* Fixed bug #1538333 Assertion error in manifest.py: assert filecount == ...
  - Made sure to never pass .part files as true manifest files
  - Changed assert to log.Error to warn about truncated/corrupt filelist
  - Added unit test to make sure detection works
  - Note: while this condition is serious, it will not affect the basic backup and restore
    functions.  Interactive options like --list-files-changed and --file-changed will not
    work correctly for this backup set, so it is advised to run a full backup as soon as
    possible after this error occurs.
* Fixed bug #1638033 Remove leading slash on --file-to-restore
  - code already used rstrip('/') so change to just strip('/')

New in v0.7.13.1 (2017/06/18)
-----------------------------
* Fixed problem in dist/makedist when building on Mac where AppleDouble
  files were being created in the tarball.  See:
  https://superuser.com/questions/61185/why-do-i-get-files-like-foo-in-my-tarball-on-os-x

New in v0.7.13 (2017/06/12)
---------------------------
* Fixed bug #1680682 with patch supplied from Dave Allan
  - Only specify --pinentry-mode=loopback when --use-agent is not specified
* Fixed man page that had 'cancel' instead of 'loopback' for pinentry mode
* Fixed bug #1684312 with suggestion from Wade Rossman
  - Use shutil.copyfile instead of os.system('cp ...')
  - Should reduce overhead of os.system() memory usage.
* Fixed bug #1320832 with suggestion from Oskar Wycislak
  - Use chunks instead of reading it all in swiftbackend
* Fixed bug #1689632 with patch from Howard Kaye
  - On MacOS, the tempfile.TemporaryFile call erroneously raises an
    IOError exception saying that too many files are open. This causes
    restores to fail randomly, after thousands of files have been restored.
* Fixed bug #1320641 and others regarding lockfile
  - swap from lockfile to fasteners module
  - use an fcntl() style lock for process lock of duplicity cache
  - lockfile will now clear if duplicity is killed or crashes
* May have finally fixed bug #1556553, "Too many open files...".
  - Applied patch from Howard Kaye, question #631423.  The fix is to dup
    the file descriptor, and then close the file in the deallocator
    routine in the glue code. Duping the file lets the C code and the Python
    code each close the file when they are done with it.
  - Invalidated and removed the fix put in for bug #1320832.
  - Caveat: long incremental chains will still eat up a large number of file
    descriptors.  It's a very risky practice, so I'm not inclined to fix it.
* Revisited bug #670891 with patch from Edgar Soldin
  - Forced librsync.PatchedFile() to extract file object from TemporaryFile()
    object when on Windows or Cygwin systems.  This allows us to avoid the
    problem of tmpfile() use which creates temp files in the wrong place.
  - See discussion at https://bugs.launchpad.net/duplicity/+bug/670891
* Fix bug #1672540 with patch from Benoit Nadeau
  - Rename would fail to move par files when moving across filesystems.
  - Patch uses shutil.move() to do the rename instead.
* Fixed bug #1265765 with patches from Matthias Larisch and Edgar Soldin
  - SSH Paramiko backend now uses BufferedFile implementation to enable
    collecting the entire list of files on the backend.
* Copy.com is gone so remove copycombackend.py.
* Merged in lp:~xlucas/duplicity/swift-multibackend-bug
  - Fix a bug when swift backend is used in a multibackend configuration.
* Merged in lp:~duplicity-team/duplicity/po-updates

New in v0.7.12 (2017/03/21)
---------------------------
* Fixed bug #1623342 with patch supplied by Daniel Jakots
  - Failing test on OpenBSD because tar/gtar not found
* Fixed bug #1654220 with patch supplied by Kenneth Newwood
  - Duplicity fails on MacOS because GPG version parsing fails
* Fixed bug #1655268 "--gpg-binary option not working"
  - If gpg binary is specified rebuild gpg profile using new binary location
* Fixed bug #1658283 "Duplicity 0.7.11 broken with GnuPG 2.0"
  - Made gpg version check more robust than just major version
  - Now use --pinentry-mode=loopback on gpg 2.1 and greater
  - Removed check for non-Linux systems, a false problem
* Merged in lp:~matthew-t-bentley/duplicity/duplicity
  - Sets a user agent. Backblaze asked for this in case there are errors that originate
    from the Duplicity B2 backend
  - Only retrieves a new upload URL when the current one expires, to bring it in line
    with their best practices for integrations: https://www.backblaze.com/b2/docs/integration_checklist.html
* Add detail about import exceptions in onedrivebackend.py
* Fixed bug #1657916 with patch supplied by Daniel Harvey
  - B2 provider cannot handle two backups in the same bucket
* Fixed bug #1603704 with patch supplied by Maciej Bliziński
  - Crash with UnicodeEncodeError
* Some fixes to gpg.py to handle gpg1 & gpg2 & gpg2.1 commandline issues
  - --gpg-agent is optional on gpg1, but on gpg2 it is used automatically
  - --pinentry-mode is not a valid opt until gpg2.1, so condition on that
* Fixed bug #1367675 - IMAP Backend does not work with Yahoo server
  - added the split() as needed in 'nums=list[0].strip().split(" ")'
  - the other fixes mentioned in the bug report comments were already done
* Fixed bug #1671852 - Code regression caused by revision 1108
  - change util.uexc() back to bare uexc()
* Fixed bug #1668750 - Don't mask backend errors
  - added exception prints to module import errors

New in v0.7.11 (2016/12/31)
---------------------------
* Fixed bugs #815510 and #1615480
  - Changed default --volsize to 200MB
* Merged in lp:~mstoll-de/duplicity/duplicity
  - Backblaze announced a new domain for the b2 api
* Merged in lp:~aaron-whitehouse/duplicity/bug_1620085_exclude-if-present-locked-folder
  - Fixes Bug #1620085: --exclude-if-present gives OSError looking for tag in locked folders
* Fixed bug #1623342 with patch from Daniel Jakots
  - failing test on OpenBSD because tar/gtar not found
* Merged in lp:~mwilck/duplicity/duplicity
  - GPG: enable truly non-interactive operation with gpg2
  - This patch fixes the IMO unexpected behavior that, when using GnuPG2, a pass phrase dialog always pops up for
    saving backups. This is particularly annoying when trying to do unattended / fully automatic backups.
* Fixed bug #1621194 with code from Tornhoof
  - Do backup to google drive working without a service account
* Fixed bug #1642098 - does not create PAR2 archives when '--par2-options' is used
  - Missing space between par2-options plus default options
* Fix bug using 40-char sign keys, from Richard McGraw on mail list
  - Remove truncation of argument and adjust comments
* Merged in lp:~dernils/duplicity/robust-dropbox-backend
  - Added new command line option --backend-retry-delay
    that allows to determine the time that duplicity sleeps
    before retrying after an error has occured.
  - Added some robustness to dpbxbackend.py that ensures re-authentication
    happens in case that a socket is changed (e.g. due to a forced reconnect
    of a dynamic internet connection).
* Merged in lp:~ed.so/duplicity/manpage.fixes
  - Fix html output via rman on the website
* Merged in lp:~horgh/duplicity/copy-symlink-targets-721599
  - Add --copy-links to copy symlink contents, not just the link itself.
* Merged in lp:~aaron-whitehouse/duplicity/Bug_1624725_files_within_folder_slash
  - Fixed Bug #1624725, so that an include glob ending in "/" now includes folder contents (for globs with
    and without special characters). This preserves the behaviour that an expression ending in "/" only
    matches a folder, but now the contents of any matching folder is included.
* Fix problem with gpg2 in yakety and zesty
* Fix Bug #1642813 with patch from Ravi
  - If stat() returns None, don't attempt to set perms.
* Merged in lp:~breunigs/duplicity/amazondrive3
  - As reported on the mailinglist, if a space is entered while duplicity asks for the URL, it fails.
    Since all important spaces are URL encoded anyway, this should be fine even if there are spaces in
    the URL at all. I also patched it in the onedrive backend, because it must have similar issues.
* Prep for 0.7.11

New in v0.7.10 (2016/08/20)
---------------------------
* Merged in lp:~mwilck/duplicity/0.7-series
  - Speedup of path_matches_glob() by about 8x.  See
    https://code.launchpad.net/~mwilck/duplicity/0.7-series/+merge/301332
    for more details.
* Remove -w from setsid in functional tests.
* Fixed conflict in merge from Martin Wilck and applied
  - https://code.launchpad.net/~mwilck/duplicity/0.7-series/+merge/301492
  - merge fixes setsid usage in functional testing.
* Fixed bug #1612472 with patch from David Cuthbert
  - Restore from S3 fails with --with-prefix-archive if prefix includes '/'
* Merged in lp:~arashad.ahamad/duplicity/duplicity_latest
  - Changes for connecting to IBM Bluemix ObjectStorage.  See man page.
* Merged in lp:~fenisilius/duplicity/acd_init_mkdir
  - Allow duplicity to create remote folder

(triaxx)

2018-01-26 14:47:48 UTC MAIN commitmail json YAML

www/nginx*: Remove CFLAGS/SunPro workaround, the problem was fixed
by upstream 5 years ago: https://trac.nginx.org/nginx/ticket/65

(fhajny)

2018-01-26 14:44:36 UTC MAIN commitmail json YAML

2018-01-26 14:42:06 UTC MAIN commitmail json YAML

2018-01-26 14:38:27 UTC MAIN commitmail json YAML

Add www/py-cloudfiles and www/py-swiftclient packages

(triaxx)

2018-01-26 14:36:38 UTC MAIN commitmail json YAML

doc: Added www/py-swiftclient version 3.4.0

(triaxx)

2018-01-26 14:35:32 UTC MAIN commitmail json YAML

2018-01-26 14:33:34 UTC MAIN commitmail json YAML

Add www/py-cloudfiles package version 1.7.11

(triaxx)

2018-01-26 14:24:29 UTC MAIN commitmail json YAML

2018-01-26 13:45:45 UTC MAIN commitmail json YAML

eboard: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:45:31 UTC MAIN commitmail json YAML

crack-attack: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:42:29 UTC MAIN commitmail json YAML

wormz: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:41:21 UTC MAIN commitmail json YAML

inspircd: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:40:17 UTC MAIN commitmail json YAML

postal: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:39:03 UTC MAIN commitmail json YAML

paris-traceroute: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:38:17 UTC MAIN commitmail json YAML

dar: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:37:40 UTC MAIN commitmail json YAML

dbeacon: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:36:44 UTC MAIN commitmail json YAML

sbd: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:35:36 UTC MAIN commitmail json YAML

libsigc++1: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:34:39 UTC MAIN commitmail json YAML

dasher: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:33:26 UTC MAIN commitmail json YAML

htdig: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:28:27 UTC MAIN commitmail json YAML

libproxy: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:25:37 UTC MAIN commitmail json YAML

doc: Updated lang/ruby25-base to 2.5.0nb1

(jperkin)

2018-01-26 13:25:29 UTC MAIN commitmail json YAML

2018-01-26 13:23:07 UTC MAIN commitmail json YAML

doc: Updated lang/ruby24-base to 2.4.3nb1

(jperkin)

2018-01-26 13:22:58 UTC MAIN commitmail json YAML

2018-01-26 13:17:27 UTC MAIN commitmail json YAML

ruby-eventmachine: Specify c++03 to avoid conflicts with std::bind.

(jperkin)

2018-01-26 13:14:35 UTC MAIN commitmail json YAML

mk/compiler.mk: Support gnu++03 and c++03 in USE_LANGUAGES.

These can be used by packages when building with a compiler which defaults
to a newer standard than the source supports (e.g. namespace issues).

(jperkin)

2018-01-26 12:45:59 UTC MAIN commitmail json YAML

Note update of audio/rplay to 3.3.2nb8.

(he)

2018-01-26 12:45:27 UTC MAIN commitmail json YAML

Add a patch / build fix for NetBSD 8.0:

Avoid problems resulting from the SIZE macro expanding to "two
arguments", but the argument list already having been scanned,
leading to build failure with SSP on NetBSD 8.0.

Thanks for hint from joerg@
PKGREVISION bumped.

(he)

2018-01-26 12:21:06 UTC MAIN commitmail json YAML

Updated security/clamav to 0.99.3
Updated security/clamav-doc to 0.99.3

(bouyer)

2018-01-26 12:20:16 UTC MAIN commitmail json YAML

Update clamav and clamav-doc to 0.99.3. Changes since 0.99.2:
Security release fixing CVE-2017-12374, CVE-2017-12375, CVE-2017-12376,
CVE-2017-12377, CVE-2017-12378, CVE-2017-12379, CVE-2017-12380.
Also included are 2 minor fixes to properly detect openssl install locations on FreeBSD 11, and prevent false warnings about zlib 1.2.1# version numbers.

(bouyer)

2018-01-26 11:53:09 UTC MAIN commitmail json YAML

ruby23-base: Change previous to set CFLAGS instead, ride revbump.

(jperkin)

2018-01-26 10:54:24 UTC MAIN commitmail json YAML

doc: Updated lang/ruby23-base to 2.3.6nb1

(jperkin)

2018-01-26 10:54:15 UTC MAIN commitmail json YAML

ruby23-base: Don't add -std=iso9899:1999 to CPPFLAGS, invalid for C++.

Bump PKGREVISION.

(jperkin)

2018-01-26 10:52:47 UTC MAIN commitmail json YAML

doc: Updated net/packit to 1.0nb4

(maya)

2018-01-26 10:52:04 UTC MAIN commitmail json YAML

packit: don't overflow a buffer. now runs with SSP/FORTIFY.

(this is already fixed in an alternative upstream)
++PKGREVISION

(maya)

2018-01-26 10:32:36 UTC MAIN commitmail json YAML

id3lib: Requires libiconv.

(jperkin)

2018-01-26 09:48:46 UTC MAIN commitmail json YAML

muparser: Fix SunOS linker flags and naming.

(jperkin)

2018-01-26 09:41:53 UTC MAIN commitmail json YAML

2018-01-26 09:33:31 UTC MAIN commitmail json YAML

2018-01-26 09:25:10 UTC MAIN commitmail json YAML

gegl0.2: Set C99 correctly.

(jperkin)

2018-01-26 08:10:56 UTC MAIN commitmail json YAML

Updated www/py-w3lib, devel/py-autopep8

(adam)

2018-01-26 08:10:32 UTC MAIN commitmail json YAML

py-autopep8: updated to 1.3.4

v1.3.4:
new feature: add E133 fixed method and --hang-closing option
improved: E712 fixed method logic
fix bugs

(adam)

2018-01-26 08:06:07 UTC MAIN commitmail json YAML

py-w3lib: updated to 1.19.0

1.19.0:
- Add a workaround for CPython segfault (https://bugs.python.org/issue32583)
  which affect w3lib.encoding functions. This is technically **backwards
  incompatible** because it changes the way non-decodable bytes are replaced
  (in some cases instead of two ``\ufffd`` chars you can get one).
  As a side effect, the fix speeds up decoding in Python 3.4+.
- Add 'encoding' parameter for w3lib.http.basic_auth_header.
- Fix pypy testing setup, add pypy3 to CI.

(adam)

2018-01-26 03:44:22 UTC MAIN commitmail json YAML

Back out sysutils/intel-microcode-netbsd from microcode-20180108.tgz
to microcode-20171117.tgz because microcode-20180108.tgz is removed.

(msaitoh)

2018-01-25 23:27:50 UTC MAIN commitmail json YAML

doc: Updated lang/gcc7 to 7.3.0

(maya)

2018-01-25 23:27:30 UTC MAIN commitmail json YAML

gcc7: update to 7.3.0

Local changes:
Remove patch hunks merged upstream (non-c99 compatibility cabs workaround,
linking to libc by default on netbsd).

GCC changes:
Added code generation options to mitigate Spectre variant 2 (CVE-2017-5715)
for the powerpc and x86 targets.

RTEMS: Support has been added for Epiphany target.

List of bugs fixed:
https://gcc.gnu.org/bugzilla/buglist.cgi?bug_status=RESOLVED&list_id=199567&resolution=FIXED&target_milestone=7.3

(maya)

2018-01-25 20:13:25 UTC MAIN commitmail json YAML

doc: Updated graphics/imlib2 to 1.4.10

(leot)

2018-01-25 20:13:08 UTC MAIN commitmail json YAML

imlib2: Update graphics/imlib2 to imlib2-1.4.10

Changes:
1.4.10
------
Kim Woelders (2):
- PNM loader: Fix reading PNM bitmaps.
- Fix missing break.

Tobias Stoeckmann (3):
- Avoid out of boundary operations while parsing xpm
- Properly release resources on error path
- Prevent OOB read with large file support on 32 bit

From Vicente Chaves via PR pkg/52950.

(leot)

2018-01-25 19:52:38 UTC MAIN commitmail json YAML

libssh: fix options.mk for current cmake based build

(markd)

2018-01-25 19:37:37 UTC MAIN commitmail json YAML

Added devel/py-retry_decorator

(bsiegert)

2018-01-25 19:03:04 UTC MAIN commitmail json YAML

Add py-retry_decorator version 1.1.0.

retry_decorator is a Python module that exposes a decorator that retries the
decorated function with exponential backoff.

This is yet another dependency for PR pkg/52941.

(bsiegert)

2018-01-25 18:14:56 UTC MAIN commitmail json YAML

doc: Updated math/R-plyr to 1.8.4

(minskim)

2018-01-25 18:14:36 UTC MAIN commitmail json YAML

math/R-plyr: Update to 1.8.4

Changes:
- Update so R CMD check passes cleanly on R and R-devel.

(minskim)

2018-01-25 16:54:28 UTC MAIN commitmail json YAML

Add missing PATCH_SITES for the new patch files in the last commit.

(veego)

2018-01-25 15:51:32 UTC MAIN commitmail json YAML

doc: Updated converters/TECkit to 2.5.7

(jperkin)

2018-01-25 15:51:24 UTC MAIN commitmail json YAML

TECkit: Update to 2.5.7, primarily for -Wno-narrowing fixes.

2017-06-22
    Version 2.5.7
    Updated Unicode character names and normalization data to 10.0.0
    Added a 64-bit Windows build
    Updated documentation

2016-04-19
    Version 2.5.6
    Added a diversion of /usr/bin/teckit_compile to avoid a conflict with the
      texlive-binaries package on Linux

2016-04-11
    Version 2.5.5
    Split shared libraries into a separate Linux package
    Made Linux packages multiarch-compatible
    Fixed compiler warnings

2014-07-09
    Version 2.5.4
    Improved building and testing scripts
    Enabled tests to be run on Windows without bash

2014-06-30
    Updated Unicode character names and normalization data to 7.0.0
    Fixed data normalization bug
    Updated tests
    Improved Unicode version updating
    Fixed compiler warnings

2011-01-13
    Updated Unicode character names and normalization data to 6.0.0
    Updated copyright dates and contact details

2009-01-30
    Fixed returning zero-length strings in Perl

2008-04-07
    updated Unicode character names and normalization data to 5.1
    now building Windows release with mingw32-gcc instead of CodeWarrior
    minor compiler bugfixes and code cleanup for portability

2006-03-16
    updated Unicode character names and normalization data to 5.0
    added license files and docs to subversion repository
    released new Windows binary package, supporting -x option in teckit_compile

(jperkin)

2018-01-25 15:06:10 UTC MAIN commitmail json YAML

2018-01-25 14:15:26 UTC MAIN commitmail json YAML

2018-01-25 14:13:59 UTC MAIN commitmail json YAML

Updated net/synergy to 2.0.0

(tnn)

2018-01-25 14:13:22 UTC MAIN commitmail json YAML

2018-01-25 14:08:59 UTC MAIN commitmail json YAML

py-sip: Handle SunOS/clang correctly.

(jperkin)

2018-01-25 14:01:28 UTC MAIN commitmail json YAML

apache24: Extend _XOPEN_SOURCE workaround to clang.

(jperkin)

2018-01-25 13:55:43 UTC MAIN commitmail json YAML

libgnomeui: Extend _XOPEN_SOURCE workaround to clang.

(jperkin)

2018-01-25 13:47:22 UTC MAIN commitmail json YAML

2018-01-25 13:31:52 UTC MAIN commitmail json YAML

qt4-libs: Use correct configuration for SunOS/clang.

(jperkin)

2018-01-25 13:01:31 UTC MAIN commitmail json YAML

doc: Updated x11/xorg-cf-files to 1.0.6nb4

(jperkin)

2018-01-25 13:01:23 UTC MAIN commitmail json YAML

2018-01-25 12:33:49 UTC MAIN commitmail json YAML

2018-01-25 11:42:53 UTC MAIN commitmail json YAML

py-ipython5: also DEPEND on py-sqlite3

(adam)

2018-01-25 11:30:53 UTC MAIN commitmail json YAML

Updated graphics/leptonica, graphics/tesseract

(adam)

2018-01-25 11:30:34 UTC MAIN commitmail json YAML

2018-01-25 11:27:35 UTC MAIN commitmail json YAML

leptonica: updated to 1.75.0

This is a new version, for major Ubuntu release 18.04.
$TMPDIR path rewriting turned off on Unix; only used for Windows.
Added pix conversion to depth 2 and 4.  We now have general
  converters to 1, 2, 4, 8, 16 and 32 bpp.
Modified giflib to use read/write from/to memory; no temp files;
  no longer support versions before 5.1.
Move most low-level code from separate files to their callers;
  about 30 of them became static.
Improved table detection on scanned page images (tests: pageseg_reg.c)
Added support for write/compare regression tests for files.
Modified printimage for more flexibility.
Enable lookup by key on comma-separated key/value text file.
Update README.html for building with Visual Studio.
Improved functions for getting pixel averages in RGB images
Simplified and speedup of unsharp masking.
New function for detecting and correcting text orientation.
Remove slow sharpening operation when not appropriate during scaling.
Better handling of gplots with 0 or 1 data point.
Coverity scan fixes.
Modified jpeg2000 header to use openjpeg 2.3.
Improved depth accessors for pixa and pixaa; added size accessors
  for pixa and pixaa.
Bug fix in webp interface on read error.
New function that finds the closest boxes in a boxa to any particular
  box, in each of 4 directions.
New regression tests in automated sequence: blend5_reg, quadtree_reg,
wordboxes_reg.
New program: textorient
Removed programs: snapcolortest

(adam)

2018-01-25 11:15:20 UTC MAIN commitmail json YAML

luatex: Handle C99 correctly.

(jperkin)

2018-01-25 10:44:51 UTC MAIN commitmail json YAML

MesaLib: Use -D__EXTENSIONS__ on SunOS for strict compilers.

(jperkin)

2018-01-25 10:43:59 UTC MAIN commitmail json YAML

2018-01-25 10:41:37 UTC MAIN commitmail json YAML

fam: Disable c++11-narrowing on SunOS with clang.

(jperkin)

2018-01-25 10:40:06 UTC MAIN commitmail json YAML

2018-01-25 10:38:57 UTC MAIN commitmail json YAML

2018-01-25 10:34:25 UTC MAIN commitmail json YAML

ghostscript-gpl: Add _XOPEN_SOURCE workaround for clang too.

(jperkin)

2018-01-25 10:31:24 UTC MAIN commitmail json YAML

ghostscript-agpl: Add _XOPEN_SOURCE workaround.

(jperkin)

2018-01-25 10:29:21 UTC MAIN commitmail json YAML

netpbm: Perform _XOPEN_SOURCE workaround for clang too.

(jperkin)

2018-01-25 10:24:50 UTC MAIN commitmail json YAML

avahi: Set C99 correctly.

(jperkin)

2018-01-25 09:52:48 UTC MAIN commitmail json YAML

Updated devel/py-ipython, devel/py-jupyter_client, devel/py-ipykernel

(adam)

2018-01-25 09:51:57 UTC MAIN commitmail json YAML

py-ipykernel: updated to 4.8.0

4.8.0
- Cleanly shutdown integrated event loops when shutting down the kernel.
- %gui qt now uses Qt 5 by default rather than Qt 4, following a similar
  change in terminal IPython.
- Fix event loop integration for :mod:asyncio when run with Tornado 5,
  which uses asyncio where available.

(adam)

2018-01-25 09:47:35 UTC MAIN commitmail json YAML

py_jupyter_client: updated to 5.2.2

Changes in Jupyter Client 5.2.2
- Fix :meth:.KernelSpecManager.get_all_specs method in subclasses
  that only override :meth:.KernelSpecManager.find_kernel_specs
  and :meth:.KernelSpecManager.get_kernel_spec.
- Eliminate occasional error messages during process exit.
- Improve error message when attempting to bind on invalid address.
- Add missing direct dependency on tornado

(adam)

2018-01-25 09:28:15 UTC MAIN commitmail json YAML

py-ipython: also DEPEND on py-sqlite3

(adam)

2018-01-25 06:23:45 UTC MAIN commitmail json YAML

racket: regen distinfo

No change to checksum, just remove comments (!)

(wiz)

2018-01-25 05:47:47 UTC MAIN commitmail json YAML

Updated textproc/hyphen

(adam)

2018-01-25 05:46:57 UTC MAIN commitmail json YAML

hyphen: updated to 2.8.8

Hyphen 2.8.8:
- remove last coverity warning, 0 remaining

Hyphen 2.8.7:
- various clang scan-build warning fixes

(adam)

2018-01-25 00:34:27 UTC MAIN commitmail json YAML

Don't include TEST_DEPENDS in the normal dependency reduction run.

(joerg)

2018-01-25 00:33:56 UTC MAIN commitmail json YAML

Fix spelling, it is PKGSRC_RUN_TEST.

(joerg)

2018-01-25 00:20:13 UTC MAIN commitmail json YAML

doc: Updated math/R-mvtnorm to 1.0.6

(minskim)

2018-01-25 00:19:52 UTC MAIN commitmail json YAML

math/R-mvtnorm: Update to 1.0-6

Changes:
- use registered C routines

(minskim)

2018-01-24 23:49:16 UTC MAIN commitmail json YAML

doc: Added math/R-gss version 2.1.7

(minskim)

2018-01-24 23:48:50 UTC MAIN commitmail json YAML

math/Makefile: Add R-gss

(minskim)

2018-01-24 23:48:03 UTC MAIN commitmail json YAML

math/R-gss: Import version 2.1-7

This is a comprehensive package for structural multivariate function
estimation using smoothing splines.

(minskim)

2018-01-24 23:30:52 UTC MAIN commitmail json YAML

Updated sysutils/xenkernel48 to 4.8.3
Updated sysutils/xentools48 to 4.8.3

(bouyer)

2018-01-24 23:29:33 UTC MAIN commitmail json YAML

2018-01-24 20:54:22 UTC MAIN commitmail json YAML

Added net/py-socksipy-branch

(bsiegert)

2018-01-24 20:46:42 UTC MAIN commitmail json YAML

Import wip/py-socksipy-branch version 1.01.

From DESCR:

This Python module allows you to create TCP connections through a SOCKS proxy
without any special effort.

This is needed as one of the dependencies of py-gsutil, as noted in
PR pkg/52941.

(bsiegert)

2018-01-24 19:43:34 UTC pkgsrc-2017Q4 commitmail json YAML

2018-01-24 19:43:13 UTC pkgsrc-2017Q4 commitmail json YAML

Pullup ticket #5689 - requested by wiz
www/curl: security fix

Revisions pulled up:
- www/curl/Makefile                                            1.192
- www/curl/PLIST                                                1.67
- www/curl/distinfo                                            1.141
- www/curl/patches/patch-curl-config.in                        1.8

---
  Module Name: pkgsrc
  Committed By: wiz
  Date: Wed Jan 24 07:57:19 UTC 2018

  Modified Files:
  pkgsrc/www/curl: Makefile PLIST distinfo
  pkgsrc/www/curl/patches: patch-curl-config.in

  Log Message:
  curl: update to 7.58.0.

  This release includes the following changes:

    o new libssh-powered SSH SCP/SFTP back-end
    o curl-config: add --ssl-backends [10]

  This release includes the following bugfixes:

    o http2: fix incorrect trailer buffer size [40]
    o http: prevent custom Authorization headers in redirects [55]
    o travis: add boringssl build [1]
    o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
    o SSL: Avoid magic allocation of SSL backend specific data [3]
    o lib: don't export all symbols, just everything curl_* [4]
    o libssh2: send the correct CURLE error code on scp file not found
    o libssh2: return CURLE_UPLOAD_FAILED on failure to upload
    o openssl: enable pkcs12 in boringssl builds [5]
    o libssh2: remove dead code from SSH_SFTP_QUOTE [6]
    o sasl_getmesssage: make sure we have a long enough string to pass [7]
    o conncache: fix several lock issues [8]
    o threaded-shared-conn.c: new example
    o conncache: only allow multiplexing within same multi handle [9]
    o configure: check for netinet/in6.h [11]
    o URL: tolerate backslash after drive letter for FILE: [12]
    o openldap: add commented out debug possibilities [13]
    o include: get netinet/in.h before linux/tcp.h [14]
    o CONNECT: keep close connection flag in http_connect_state struct [15]
    o BINDINGS: another PostgreSQL client
    o curl: limit -# update frequency for unknown total size [16]
    o configure: add AX_CODE_COVERAGE only if using gcc [17]
    o curl.h: remove incorrect comment about ERRORBUFFER
    o openssl: improve data-pending check for https proxy [18]
    o curl: remove __EMX__ #ifdefs [19]
    o CURLOPT_PRIVATE.3: fix grammar [20]
    o sftp: allow quoted commands to use relative paths [21]
    o CURLOPT_DNS_CACHE_TIMEOUT.3: see also CURLOPT_RESOLVE
    o RESOLVE: output verbose text when trying to set a duplicate name
    o openssl: Disable file buffering for Win32 SSLKEYLOGFILE [22]
    o multi_done: prune DNS cache [23]
    o tests: update .gitignore for libtests
    o tests: mark data files as non-executable in git
    o CURLOPT_DNS_LOCAL_IP4.3: fixed the "SEE ALSO" to not self-reference
    o curl.1: documented two missing valid exit codes
    o curl.1: mention http:// and https:// as valid proxy prefixes
    o vtls: replaced getenv() with curl_getenv() [24]
    o setopt: less *or equal* than INT_MAX/1000 should be fine [25]
    o examples/smtp-mail.c: use separate defines for options and mail
    o curl: support >256 bytes warning messsages [26]
    o conncache: fix a return code
    o krb5: fix a potential access of uninitialized memory
    o rand: add a clang-analyzer work-around
    o CURLOPT_READFUNCTION.3: refer to argument with correct name [27]
    o brotli: allow compiling with version 0.6.0
    o content_encoding: rework zlib_inflate [28]
    o curl_easy_reset: release mime-related data [29]
    o examples/rtsp: fix error handling macros [30]
    o build-openssl.bat: Added support for VC15
    o build-wolfssl.bat: Added support for VC15
    o build: Added Visual Studio 2017 project files
    o winbuild: Added support for VC15
    o curl: Support size modifiers for --max-filesize [32]
    o examples/cacertinmem: ignore cert-already-exists error [33]
    o brotli: data at the end of content can be lost [34]
    o curl_version_info.3: call the argument 'age' [35]
    o openssl: fix memory leak of SSLKEYLOGFILE filename
    o build: remove HAVE_LIMITS_H check [36]
    o --mail-rcpt: fix short-text description
    o scripts: allow all perl scripts to be run directly [37]
    o progress: calculate transfer speed on milliseconds if possible [38]
    o system.h: check __LONG_MAX__ for defining curl_off_t [31]
    o easy: fix connection ownership in curl_easy_pause [39]
    o setopt: reintroduce non-static Curl_vsetopt() for OS400 support [41]
    o setopt: fix SSLVERSION to allow CURL_SSLVERSION_MAX_ values [42]
    o configure.ac: append extra linker flags instead of prepending them [43]
    o HTTP: bail out on negative Content-Length: values [44]
    o docs: comment about CURLE_READ_ERROR returned by curl_mime_filedata
    o mime: clone mime tree upon easy handle duplication [45]
    o openssl: enable SSLKEYLOGFILE support by default [46]
    o smtp/pop3/imap_get_message: decrease the data length too... [47]
    o CURLOPT_TCP_NODELAY.3: fix typo [48]
    o SMB: fix numeric constant suffix and variable types [49]
    o ftp-wildcard: fix matching an empty string with "*[^a]" [50]
    o curl_fnmatch: only allow 5 '*' sections in a single pattern
    o openssl: fix potential memory leak in SSLKEYLOGFILE logic
    o SSH: Fix state machine for ssh-agent authentication [51]
    o examples/url2file.c: add missing curl_global_cleanup() call [52]
    o http2: don't close connection when single transfer is stopped [53]
    o libcurl-env.3: first version
    o curl: progress bar refresh, get width using ioctl() [54]
    o CONNECT_TO: fail attempt to set an IPv6 numerical without IPv6 support [56]

(bsiegert)

2018-01-24 19:06:12 UTC MAIN commitmail json YAML

2018-01-24 17:02:15 UTC MAIN commitmail json YAML

Add archivers to CATEGORY

(ryoon)

2018-01-24 17:00:34 UTC MAIN commitmail json YAML

Updated devel/pkgconf to 1.4.1

(ryoon)

2018-01-24 17:00:09 UTC MAIN commitmail json YAML

Update to 1.4.1

Changelog:
Changes from 1.4.0 to 1.4.1:
----------------------------

* Bug fixes:
  - revert some quoting changes because they don't work well with certain
    GCC edge cases (#168)

* Enhancements:
  - add limited support for --cflags with --msvc-syntax

Changes from 1.3.7 to 1.4.0:
----------------------------

* Notable libpkgconf API changes:
  - pkgconf_pkg_t.requires has been renamed to pkgconf_pkg_t.required for
    C++20 compatibility.

* Enhancements:
  - pkgconf and libpkgconf has been ported to Windows as native binaries.
  - improved compatibility with freedesktop.org pkg-config's ${pc_sysrootdir}
    usage pattern.
  - do not mention PKG_CONFIG_SKIP_CONFLICTS environmental variable when
    simplified errors are requested, as with PKG_CONFIG_PATH.
  - the dependency solver now stores solutions to dependency graph elements
    it visits, allowing for the dependency graph to be incrementally solved.
    this improves dependency solving time by an order of magnitude in most
    cases.
  - new --env option allows for exporting cflags/libs fragments as export
    variables
  - new support for building pkgconf with CMake and Meson
  - improved compiler warning flag detection on autoconf and CMake
  - removed PKGCONF_BUFSIZE allocations from the stack where possible
  - allow for customizing the way fragment lists are rendered using
    a callback API
  - new support for --msvc-syntax output using the new fragment rendering
    callbacks
  - fragments are now quoted according to POSIX literal rules
  - new variables on the pkg-config builtin:
    - ${pc_system_includedirs}: the system includedir search path known
      by pkgconf
    - ${pc_system_libdirs}: the system libdir search path known by pkgconf
  - new manpages:
    - pc(5) describing pkgconf's interpretation of pkg-config .pc files
    - pkg.m4(7) describing the autotools macros bundled with pkgconf

* Bug fixes:
  - fix pkgconf_pkg_t.id generation on native Windows where either \ or /
    are usable as path separator.
  - add missing --modversion to --help output
  - do not evaluate module paths for modules that are not actually on disk
  - ensure we work on a zeroed buffer prior to calling realpath(2) with it
  - fix path deduplication edge case when cache-inodes feature is unavailable
  - fix path rewriting regression with PKG_CONFIG_SYSROOT_DIR when
    PKG_CONFIG_SYSROOT_DIR is set to /
  - fix crash in edge case where a .pc file has misquoting in a fragment list.
  - fix logic edge case when comparing relocated paths

Changes from 1.3.6 to 1.3.7:
----------------------------

* Enhancements:
  - improved diagnostics for malformed packages.

* Bug fixes:
  - reject packages which contain incomplete metadata in post-parse phase.

Changes from 1.3.5 to 1.3.6:
----------------------------

* Enhancements:
  - add many cflags to the protected set: -Wa, -Wl, -Wp, -ansi, -std=, -stdlib=,
    -pedantic, -pthread, -trigraphs, -nostdinc, -nostdlibinc, -nobuiltininc.

* Bug fixes:
- handle -include cflag fragments properly.

(ryoon)

2018-01-24 16:54:46 UTC MAIN commitmail json YAML

Updated www/firefox-l10n to 58.0

(ryoon)

2018-01-24 16:54:05 UTC MAIN commitmail json YAML

2018-01-24 16:52:36 UTC MAIN commitmail json YAML

Updated www/firefox to 58.0

(ryoon)

2018-01-24 16:52:08 UTC MAIN commitmail json YAML

Update to 58.0

Changelog:
New
    Performance improvements, including:
        Rendering graphics for Windows users by using Off-Main-Threa
          Painting (OMTP)
        Loading pages faster by changing how Firefox caches and retrieves
          JavaScript

    Improvements to Firefox Screenshots:
        Copy and paste screenshots directly to your clipboard
        Firefox Screenshots now works in Private Browsing mode

    Added Nepali (ne-NP) locale

    In case you missed it--57 Release privacy and performance feature:
      Users can enable Tracking Protection at all times. Learn how to turn
      Tracking Protection on.

Fixed
    Fonts installed in non-standard directories will no longer appear
      blank for Linux users

    Various security fixes

Changed
    User profiles created in Firefox 58 (and in future releases) are not
    supported in previous versions of Firefox. Users who downgrade to
    a previous version should create a new profile for that version.
    Learn about alternatives to downgrading on our support site.

    Added a warning to alert users and site owners of planned security
    changes to sites affected by the gradual distrust plan for
    the Symantec certificate authority

#CVE-2018-5091: Use-after-free with DTMF timers
#CVE-2018-5092: Use-after-free in Web Workers
#CVE-2018-5093: Buffer overflow in WebAssembly during Memory/Table resizing
#CVE-2018-5094: Buffer overflow in WebAssembly with garbage collection on
uninitialized memory
#CVE-2018-5095: Integer overflow in Skia library during edge builder allocation
#CVE-2018-5097: Use-after-free when source document is manipulated during XSLT
#CVE-2018-5098: Use-after-free while manipulating form input elements
#CVE-2018-5099: Use-after-free with widget listener
#CVE-2018-5100: Use-after-free when IsPotentiallyScrollable arguments are
freed from memory
#CVE-2018-5101: Use-after-free with floating first-letter style elements
#CVE-2018-5102: Use-after-free in HTML media elements
#CVE-2018-5103: Use-after-free during mouse event handling
#CVE-2018-5104: Use-after-free during font face manipulation
#CVE-2018-5105: WebExtensions can save and execute files on local file
system without user prompts
#CVE-2018-5106: Developer Tools can expose style editor information
cross-origin through service worker
#CVE-2018-5107: Printing process will follow symlinks for local file access
#CVE-2018-5108: Manually entered blob URL can be accessed by subsequent
private browsing tabs
#CVE-2018-5109: Audio capture prompts and starts with incorrect origin
attribution
#CVE-2018-5110: Cursor can be made invisible on OS X
#CVE-2018-5117: URL spoofing with right-to-left text aligned left-to-right
#CVE-2018-5118: Activity Stream images can attempt to load local content
through file:
#CVE-2018-5119: Reader view will load cross-origin content in violation
of CORS headers
#CVE-2018-5121: OS X Tibetan characters render incompletely in the addressbar
#CVE-2018-5122: Potential integer overflow in DoCrypt
#CVE-2018-5090: Memory safety bugs fixed in Firefox 58
#CVE-2018-5089: Memory safety bugs fixed in Firefox 58 and Firefox ESR 52.6

(ryoon)

2018-01-24 16:40:50 UTC MAIN commitmail json YAML

Updated mail/thunderbird-l10n to 52.5.2

(ryoon)

2018-01-24 16:40:21 UTC MAIN commitmail json YAML

Update to 52.5.2

* Sync with mail/thunderbird-52.5.2

(ryoon)

2018-01-24 16:39:31 UTC MAIN commitmail json YAML

Updated mail/thunderbird to 52.5.2

(ryoon)

2018-01-24 16:39:02 UTC MAIN commitmail json YAML

Update to 52.5.2

Changelog:
Fix
This releases fixes the "Mailsploit" vulnerability and other vulnerabilities
detected by the "Cure53" audit. For details and various other security
fixes see here.

CVE-2017-7845: Buffer overflow when drawing and validating elements with
  ANGLE library using Direct 3D 9
CVE-2017-7846: JavaScript Execution via RSS in mailbox:// origin
CVE-2017-7847: Local path string can be leaked from RSS feed
CVE-2017-7848: RSS Feed vulnerable to new line Injection
CVE-2017-7829: Mailsploit part 1: From address with encoded null character
  is cut off in message header display

(ryoon)

2018-01-24 16:36:11 UTC MAIN commitmail json YAML

Updated www/firefox52-l10n to 52.6.0

(ryoon)

2018-01-24 16:35:28 UTC MAIN commitmail json YAML

2018-01-24 16:31:54 UTC MAIN commitmail json YAML

Updated www/firefox52 to 52.6.0

(ryoon)

2018-01-24 16:31:23 UTC MAIN commitmail json YAML

Update to 52.6.0

Changelog:
CVE-2018-5091: Use-after-free with DTMF timers
CVE-2018-5095: Integer overflow in Skia library during edge builder allocation
CVE-2018-5096: Use-after-free while editing form elements
CVE-2018-5097: Use-after-free when source document is manipulated during XSLT
CVE-2018-5098: Use-after-free while manipulating form input elements
CVE-2018-5099: Use-after-free with widget listener
CVE-2018-5102: Use-after-free in HTML media elements
CVE-2018-5103: Use-after-free during mouse event handling
CVE-2018-5104: Use-after-free during font face manipulation
CVE-2018-5117: URL spoofing with right-to-left text aligned left-to-right
CVE-2018-5089: Memory safety bugs fixed in Firefox 58 and Firefox ESR 52.6

Fix for Speculative execution side-channel attack ("Spectre")

(ryoon)

2018-01-24 16:24:22 UTC MAIN commitmail json YAML

Updated devel/nss to 3.35

(ryoon)

2018-01-24 16:23:52 UTC MAIN commitmail json YAML

Update to 3.35

Changelog:
The NSS team has released Network Security Services (NSS) 3.35,
which is a minor release.

Summary of the major changes included in this release:
- The default database storage format has been changed to SQL,
  using filenames cert9.db, key4.db, pkcs11.txt.
- TLS 1.3 support has been updated to draft -23, along with
  additional significant changes.
- Support for TLS compression was removed.
- Added formally verified implementations of non-vectorized Chacha20
  and non-vectorized Poly1305 64-bit.
- When creating encrypted PKCS#7 or PKCS#12 data, NSS uses a
  higher iteration count for stronger security.
- The CA trust list was updated to version 2.22.

(ryoon)

2018-01-24 16:22:16 UTC MAIN commitmail json YAML

Updated devel/nspr to 4.18

(ryoon)

2018-01-24 16:21:43 UTC MAIN commitmail json YAML

Update to 4.18

Changelog:
NSPR 4.18 contains the following changes:
- removed HP-UX DCE threads support
- improvements for the Windows implementation of PR_SetCurrentThreadName
- fixes for the Windows implementation of TCP Fast Open

(ryoon)

2018-01-24 15:16:49 UTC MAIN commitmail json YAML

dovecot2: Don't automatically add compiler security features.

(jperkin)

2018-01-24 14:20:39 UTC MAIN commitmail json YAML

Updated databases/py-pymysql

(adam)

2018-01-24 14:19:34 UTC MAIN commitmail json YAML

py-pymysql: updated to 0.8.0

0.8:
* **BACKWARD INCOMPATIBLE** binary_prefix option is added and off
  by default because of compatibility with mysqlclient.
  When you need PyMySQL 0.7 behavior, you have to pass binary_prefix=True.
* **BACKWARD INCOMPATIBLE** MULTI_STATEMENTS client flag is no longer
  set by default, while it was on PyMySQL 0.7.  You need to pass
  client_flag=CLIENT.MULTI_STATEMENTS when you connect to explicitly
  enable multi-statement mode.
* Fixed AuthSwitch packet handling.
* Raise OperationalError for MariaDB's constraint error.
* executemany() accepts query without space between VALUES and (.
* Support config file containing option without value.
* Fixed Connection.ping() returned unintended value.

(adam)

2018-01-24 13:56:08 UTC MAIN commitmail json YAML

doc: note update of contao44 and contao45

www/contao44 4.4.13
www/contao45 4.5.3

(taca)

2018-01-24 13:55:20 UTC MAIN commitmail json YAML

www/contao45: update to 4.5.3

Contao 4.5.3 is available 2018/1/23 16:06 by Leo Feyer

Contao version 4.5.3 is available. The bugfix release fixes several minor
issues including a problem with accessing the PHP session.

(taca)

2018-01-24 13:54:50 UTC MAIN commitmail json YAML

www/contao44: update to 4.4.13

Contao 4.4.13 is available 2018/1/23 10:59 by Leo Feyer

Contao version 4.4.13 is available. The bugfix release fixes issues with PHP
7.2 as well as with MariaDB 10.2.4+ and MySQL 8.

(taca)

2018-01-24 13:44:53 UTC MAIN commitmail json YAML

Updated databases/py-ldap3, databases/sqlite3

(adam)

2018-01-24 13:44:14 UTC MAIN commitmail json YAML

sqlite3: updated to 3.22.0

Release 3.22.0:
The output of sqlite3_trace_v2() now shows each individual SQL statement run within a trigger.
Add the ability to read from WAL mode databases even if the application lacks write permission on the database and its containing directory, as long as the -shm and -wal files exist in that directory.
Added the rtreecheck() scalar SQL function to the R-Tree extension.
Added the sqlite3_vtab_nochange() and sqlite3_value_nochange() interfaces to help virtual table implementations optimize UPDATE operations.
Added the sqlite3_vtab_collation() interface.
Added support for the "^" initial token syntax in FTS5.
New extensions:
The Zipfile virtual table can read and write a ZIP Archive.
Added the fsdir(PATH) table-valued function to the fileio.c extension, for listing the files in a directory.
The sqlite_btreeinfo eponymous virtual table for introspecting and estimating the sizes of the btrees in a database.
The Append VFS is a VFS shim that allows an SQLite database to be appended to some other file. This allows (for example) a database to be appended to an executable that then opens and reads the database.
Query planner enhancements:
The optimization that uses an index to quickly compute an aggregate min() or max() is extended to work with indexes on expressions.
The decision of whether to implement a FROM-clause subquery as a co-routine or using query flattening now considers whether the result set of the outer query is "complex" (if it contains functions or expression subqueries). A complex result set biases the decision toward the use of co-routines.
The planner avoids query plans that use indexes with unknown collating functions.
The planner omits unused LEFT JOINs even if they are not the right-most joins of a query.
Other performance optimizations:
A smaller and faster implementation of text to floating-point conversion subroutine: sqlite3AtoF().
The Lemon parser generator creates a faster parser.
Use the strcspn() C-library routine to speed up the LIKE and GLOB operators.
Improvements to the command-line shell:
The ".schema" command shows the structure of virtual tables.
Added support for reading and writing SQL Archive files using the .archive command.
Added the experimental .expert command
Added the ".eqp trigger" variant of the ".eqp" command
Enhance the ".lint fkey-indexes" command so that it works with WITHOUT ROWID tables.
If the filename argument to the shell is a ZIP archive rather than an SQLite database, then the shell automatically opens that ZIP archive using the Zipfile virtual table.
Added the edit() SQL function.
Added the .excel command to simplify exporting database content to a spreadsheet.
Databases are opened using Append VFS when the --append flag is used on the command line or with the .open command.
Enhance the SQLITE_ENABLE_UPDATE_DELETE_LIMIT compile-time option so that it works for WITHOUT ROWID tables.
Provide the sqlite_offset(X) SQL function that returns the byte offset into the database file to the beginning of the record holding value X, when compiling with -DSQLITE_ENABLE_OFFSET_SQL_FUNC.
Bug fixes

(adam)

2018-01-24 13:41:35 UTC MAIN commitmail json YAML

py-ldap3: updated to 2.4.1

2.4.1:
- tested against pyasn1 from version 0.1.8 up to version 0.4.2, Python 2.6.6, Python 2.7.14, Python 3.6.4
- auto_encode parameter is honored when binding
- fixed organizationalName definition in oid
- automatic byte to int conversion working again
- mock connection searchs correctly escape filters
- fixed bind with not unicode characters in Python 2
- extended filter attributes should work again with pyasn1 0.4.1
- fixed error when reading incomplete server info
- NOT keyword properly handled in dit_content_rules
- operational attributes are prorerly returned in Cursor whit get_operational_attributes = True
- start_tls() is properly executed with AD when raise_exceptions=True
- reopening a Connection honours auto_bind setting
- an attribute returned with no value from a flaky server doesn't raise exception anymore
- pwdLastSet in AD is valid only for -1
- fixed docs for ldifProducer
- fixed monkeypatching of pyasn1 for Boolean Value in BER encoding
- check_names was not honoured while validating attribute values
- locks refactored in Connection and in Async strategy
- socket properly closed when checking availability of an invalid server

(adam)

2018-01-24 13:30:05 UTC MAIN commitmail json YAML

mk/tools/replace.mk: Add support for `:test' to add tools to TEST_DEPENDS

With this change is now possible to mark tools only needed for testing via:

USE_TOOLS+= <tool>:test

Discussed with <joerg>

(leot)

2018-01-24 12:40:48 UTC MAIN commitmail json YAML

devel: Add yarn.

(jperkin)

2018-01-24 12:40:20 UTC MAIN commitmail json YAML

doc: Added devel/yarn version 1.3.2

(jperkin)

2018-01-24 12:40:07 UTC MAIN commitmail json YAML

yarn: Import version 1.3.2 into pkgsrc.

Yarn is a package manager for your code.  It allows you to use and share
code with other developers from around the world.  Yarn does this quickly,
securely, and reliably so you don't ever have to worry.

Yarn allows you to use other developers' solutions to different problems,
making it easier for you to develop your software.  If you have problems,
you can report issues or contribute back, and when the problem is fixed,
you can use Yarn to keep it all up to date.

Code is shared through something called a package (sometimes referred to
as a module).  A package contains all the code being shared as well as a
package.json file which describes the package.

(jperkin)

2018-01-24 12:17:44 UTC MAIN commitmail json YAML

curl: Delete if-def block regarding TEST_TARGET and test dependencies

Define TEST_TARGET unconditionally and do not add `perl' to USE_TOOLS, `perl'
is already needed as tool.

(leot)

2018-01-24 11:53:07 UTC MAIN commitmail json YAML

Updated textproc/py-pyquery, time/py-pendulum

(adam)

2018-01-24 11:52:29 UTC MAIN commitmail json YAML

py-pendulum: updated to 1.4.0

1.4.0:
Changed:
format(), diff_for_humans(), in_words() and to_xxx_string() methods now return unicode strings for Python 2.7.
Improved performance of now() and utcnow().

Fixed
Fixed from_format() raising an error with the alternative formatter.

(adam)

2018-01-24 11:51:06 UTC MAIN commitmail json YAML

py-pyquery: updated to 1.4.0

1.4.0:
- Refactoring of `.text()` to match firefox behavior.

(adam)

2018-01-24 10:21:19 UTC MAIN commitmail json YAML

Updated devel/py-pylint, time/py-arrow, devel/py-urwid, devel/py-zconfig, www/py-raven

(adam)

2018-01-24 10:20:32 UTC MAIN commitmail json YAML

py-raven: updated to 6.5.0

6.5.0:
[Core] Fixed missing deprecation on processors.SanitizePasswordsProcessor
[Core] Improve exception handling in Serializer.transform
[Core] Fixed celery.register_logger_signal ignoring subclasses
[Core] Fixed sanitizer skipping byte instances
[Lambda] Fixed AttributeError when requestContext not present

(adam)

2018-01-24 10:17:04 UTC MAIN commitmail json YAML

2018-01-24 09:06:43 UTC MAIN commitmail json YAML

py-urwid: updated to 2.0.1

Urwid 2.0.1
Late fix for proper exception reraising from within main loop

(adam)

2018-01-24 09:06:24 UTC MAIN commitmail json YAML

qt5-qtquickcontrols2: PLIST jit fixes

(markd)

2018-01-24 09:05:10 UTC MAIN commitmail json YAML

py-arrow: updated to 0.12.1

0.12.1:
Bug fixes

(adam)

2018-01-24 08:37:46 UTC MAIN commitmail json YAML

py-pylint: updated to 1.8.2

What's New in Pylint 1.8.2?
* Fixed a crash which occurred when Uninferable wasn't properly handled in stop-iteration-return
* Use the proper node to get the name for redefined functions
* Don't crash when encountering bare raises while checking inconsistent returns
* Fix a false positive inconsistent-return-statements message when if
  statement is inside try/except.
* Fix a false positive inconsistent-return-statements message when
  while loop are used.
* Fix unused-argument false positives with overshadowed variable in
  dictionary comprehension.
* Fix false positive inconsistent-return-statements message when never
  returning functions are used (i.e sys.exit for example).
* Fix error when checking if function is exception, as in bad-exception-context.

(adam)

2018-01-24 07:57:28 UTC MAIN commitmail json YAML

doc: Updated www/curl to 7.58.0

(wiz)

2018-01-24 07:57:19 UTC MAIN commitmail json YAML

curl: update to 7.58.0.

This release includes the following changes:

o new libssh-powered SSH SCP/SFTP back-end
o curl-config: add --ssl-backends [10]

This release includes the following bugfixes:

o http2: fix incorrect trailer buffer size [40]
o http: prevent custom Authorization headers in redirects [55]
o travis: add boringssl build [1]
o examples/xmlstream.c: don't switch off CURL_GLOBAL_SSL [2]
o SSL: Avoid magic allocation of SSL backend specific data [3]
o lib: don't export all symbols, just everything curl_* [4]
o libssh2: send the correct CURLE error code on scp file not found
o libssh2: return CURLE_UPLOAD_FAILED on failure to upload
o openssl: enable pkcs12 in boringssl builds [5]
o libssh2: remove dead code from SSH_SFTP_QUOTE [6]
o sasl_getmesssage: make sure we have a long enough string to pass [7]
o conncache: fix several lock issues [8]
o threaded-shared-conn.c: new example
o conncache: only allow multiplexing within same multi handle [9]
o configure: check for netinet/in6.h [11]
o URL: tolerate backslash after drive letter for FILE: [12]
o openldap: add commented out debug possibilities [13]
o include: get netinet/in.h before linux/tcp.h [14]
o CONNECT: keep close connection flag in http_connect_state struct [15]
o BINDINGS: another PostgreSQL client
o curl: limit -# update frequency for unknown total size [16]
o configure: add AX_CODE_COVERAGE only if using gcc [17]
o curl.h: remove incorrect comment about ERRORBUFFER
o openssl: improve data-pending check for https proxy [18]
o curl: remove __EMX__ #ifdefs [19]
o CURLOPT_PRIVATE.3: fix grammar [20]
o sftp: allow quoted commands to use relative paths [21]
o CURLOPT_DNS_CACHE_TIMEOUT.3: see also CURLOPT_RESOLVE
o RESOLVE: output verbose text when trying to set a duplicate name
o openssl: Disable file buffering for Win32 SSLKEYLOGFILE [22]
o multi_done: prune DNS cache [23]
o tests: update .gitignore for libtests
o tests: mark data files as non-executable in git
o CURLOPT_DNS_LOCAL_IP4.3: fixed the "SEE ALSO" to not self-reference
o curl.1: documented two missing valid exit codes
o curl.1: mention http:// and https:// as valid proxy prefixes
o vtls: replaced getenv() with curl_getenv() [24]
o setopt: less *or equal* than INT_MAX/1000 should be fine [25]
o examples/smtp-mail.c: use separate defines for options and mail
o curl: support >256 bytes warning messsages [26]
o conncache: fix a return code
o krb5: fix a potential access of uninitialized memory
o rand: add a clang-analyzer work-around
o CURLOPT_READFUNCTION.3: refer to argument with correct name [27]
o brotli: allow compiling with version 0.6.0
o content_encoding: rework zlib_inflate [28]
o curl_easy_reset: release mime-related data [29]
o examples/rtsp: fix error handling macros [30]
o build-openssl.bat: Added support for VC15
o build-wolfssl.bat: Added support for VC15
o build: Added Visual Studio 2017 project files
o winbuild: Added support for VC15
o curl: Support size modifiers for --max-filesize [32]
o examples/cacertinmem: ignore cert-already-exists error [33]
o brotli: data at the end of content can be lost [34]
o curl_version_info.3: call the argument 'age' [35]
o openssl: fix memory leak of SSLKEYLOGFILE filename
o build: remove HAVE_LIMITS_H check [36]
o --mail-rcpt: fix short-text description
o scripts: allow all perl scripts to be run directly [37]
o progress: calculate transfer speed on milliseconds if possible [38]
o system.h: check __LONG_MAX__ for defining curl_off_t [31]
o easy: fix connection ownership in curl_easy_pause [39]
o setopt: reintroduce non-static Curl_vsetopt() for OS400 support [41]
o setopt: fix SSLVERSION to allow CURL_SSLVERSION_MAX_ values [42]
o configure.ac: append extra linker flags instead of prepending them [43]
o HTTP: bail out on negative Content-Length: values [44]
o docs: comment about CURLE_READ_ERROR returned by curl_mime_filedata
o mime: clone mime tree upon easy handle duplication [45]
o openssl: enable SSLKEYLOGFILE support by default [46]
o smtp/pop3/imap_get_message: decrease the data length too... [47]
o CURLOPT_TCP_NODELAY.3: fix typo [48]
o SMB: fix numeric constant suffix and variable types [49]
o ftp-wildcard: fix matching an empty string with "*[^a]" [50]
o curl_fnmatch: only allow 5 '*' sections in a single pattern
o openssl: fix potential memory leak in SSLKEYLOGFILE logic
o SSH: Fix state machine for ssh-agent authentication [51]
o examples/url2file.c: add missing curl_global_cleanup() call [52]
o http2: don't close connection when single transfer is stopped [53]
o libcurl-env.3: first version
o curl: progress bar refresh, get width using ioctl() [54]
o CONNECT_TO: fail attempt to set an IPv6 numerical without IPv6 support [56]

(wiz)

2018-01-24 05:54:24 UTC MAIN commitmail json YAML

doc: Updated comms/asterisk14 to 14.7.5

(jnemeth)

2018-01-24 05:51:40 UTC MAIN commitmail json YAML

update Asterisk to 14.7.5 -- this is a bug fix and security update,
it fixes AST-2017-005, AST-2017-006, AST-2017-006, AST-2017-008,
AST-2017-009, AST-2017-010, AST-2017-011, AST-2017-012, AST-2017-013,
and AST-2017-014.  Note that several of these are related to PJSIP
which pkgsrc doesn't use.

----- 14.7.5 -----

The Asterisk Development Team would like to announce security
releases for Asterisk 13, 14 and 15, and Certified Asterisk 13.18.
The available releases are released as versions 13.18.5, 14.7.5,
15.1.5 and 13.18-cert2.

The following security vulnerabilities were resolved in these versions:

* AST-2017-014: Crash in PJSIP resource when missing a contact header
  A select set of SIP messages create a dialog in Asterisk. Those SIP messages
  must contain a contact header. For those messages, if the header was not
  present and using the PJSIP channel driver, it would cause Asterisk to crash.
  The severity of this vulnerability is somewhat mitigated if authentication is
  enabled. If authentication is enabled a user would have to first be authorized
  before reaching the crash point.

For a full list of changes in the current releases, please see the ChangeLogs:

https://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-14.7.5

The security advisory is available at:

https://downloads.asterisk.org/pub/security/AST-2017-014.pdf

Thank you for your continued support of Asterisk!

----- 14.7.4 -----

The Asterisk Development Team has announced security releases for
Certified Asterisk 13.13 and Asterisk 13, 14 and 15.  The available
security releases are released as versions 13.13-cert9, 13.18.4,
14.7.4 and 15.1.4.

The release of these versions resolves the following security
vulnerabilities:

* AST-2017-012: Remote Crash Vulnerability in RTCP Stack
  If a compound RTCP packet is received containing more than
  one report (for example a Receiver Report and a Sender
  Report) the RTCP stack will incorrectly store report
  information outside of allocated memory potentially causing
  a crash.

For a full list of changes in the current releases, please see the
ChangeLogs:
http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog-14.7.4

The security advisories are available at:
http://downloads.asterisk.org/pub/security/AST-2017-012.html
http://downloads.asterisk.org/pub/security/AST-2017-012.pdf

Thank you for your continued support of Asterisk!

----- 14.7.3 -----

The Asterisk Development Team has announced security releases for
Certified Asterisk 13.13 and Asterisk 13, 14 and 15.  The available
security releases are released as versions 13.13-cert8, 13.18.3,
14.7.3 and 15.1.3.

The release of these versions resolves the following security
vulnerabilities:

* AST-2017-013: DOS Vulnerability in Asterisk chan_skinny
  If the chan_skinny (AKA SCCP protocol) channel driver is
  flooded with certain requests it can cause the asterisk
  process to use excessive amounts of virtual memory
  eventually causing asterisk to stop processing requests of
  any kind.

For a full list of changes in the current releases, please see the
ChangeLogs:
http://downloads.asterisk.org/pub/telephony/asterisk/releases/ChangeLog=14.7.3

The security advisories are available at:
http://downloads.asterisk.org/pub/security/AST-2017-013.pdf

Thank you for your continued support of Asterisk!

----- 14.7.2 -----

The Asterisk Development Team would like to announce the release
of Asterisk 14.7.2.

The release of Asterisk 14.7.2 resolves several issues reported by the
community and would have not been possible without your participation.

Thank you!

The following issues are resolved in this release:

Bugs fixed in this release:
-----------------------------------
* ASTERISK-27387 - Regression: pjsip 13.18.0 - from_user - "+"
      character isn't allowed any more
      (Reported by Michael Maier)
* ASTERISK-27391 - Regression: Deadlock between AOR named lock
      and pjproject grp lock
      (Reported by shaurya jain)

For a full list of changes in this release, please see the ChangeLog:
http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-14.7.2

Thank you for your continued support of Asterisk!

----- 14.7.0 -----

The Asterisk Development Team would like to announce the release
of Asterisk 14.7.0.

The release of Asterisk 14.7.0 resolves several issues reported by the
community and would have not been possible without your participation.

Thank you!

The following issues are resolved in this release:

Improvements made in this release:
-----------------------------------
* ASTERISK-27278 - [patch] chan_sip: Provide access to read the
      full SIP Request-URI from INVITE
      (Reported by David J.  Pryke)
* ASTERISK-27255 - alembic: Add support for Microsoft SQL
      server
      (Reported by Florian Floimair)
* ASTERISK-27253 - [patch] libsrtp-2.1.x support
      (Reported by Alexander Traud)
* ASTERISK-27220 - Enable CHANNEL function to get from and to
      tag from SIP Headers
      (Reported by Andre Nazario)
* ASTERISK-27169 - Google OAuth 2.0 support for XMPP / Motif
      (Reported by Andrey)
* ASTERISK-27173 - Support for GMIME 3.0
      (Reported by Tzafrir Cohen)
* ASTERISK-27092 - [patch] app_queue: Add Priority to AMI
      QueueStatus
      (Reported by Niklas Larsson)
* ASTERISK-27085 - [patch] chan_pjsip: Port SIPDtmfMode to
      chan_pjsip
      (Reported by Torrey Searle)

Bugs fixed in this release:
-----------------------------------
* ASTERISK-27346 - res_xmpp: Crash if OAuth 2.0 is used before
      curl is loaded
      (Reported by Ronald Raikes)
* ASTERISK-27372 - ARI: Node ARI client broken in latest
      versions of 13 and 14
      (Reported by Benjamin Keith Ford)
* ASTERISK-27047 - res_pjsip: user=phone added to Anonymous
      caller-id when it shouldn't be.
      (Reported by dtryba)
* ASTERISK-27270 - cdr_mysql: various crashes at second module
      reload if cdr_mysql.conf is configured
      (Reported by Tzafrir Cohen)
* ASTERISK-25266 - Application Originate returns SUCCESS to
      ORIGINATE_STATUS upon failure to originate
      (Reported by Allen Ford)
* ASTERISK-27192 - res_pjsip: Loss of SIP registrations causing
      unavailable endpoints
      (Reported by Richard Mudgett)
* ASTERISK-27305 - res_ari: Memory leaks in ARI when using
      Content-Type: application/json
      (Reported by David Hajek)
* ASTERISK-26922 - chan_sip: tcpbind uses wrong source address
      (Reported by Ksenia)
* ASTERISK-27324 - [patch] Dual-Stack server cannot be used as
      IPv4 client via TCP/TLS
      (Reported by Alexander Traud)
* ASTERISK-27317 - vector: multiple evaluation of elem in
      AST_VECTOR_ADD_SORTED.
      (Reported by Corey Farrell)
* ASTERISK-27318 - res_pjsip_mwi: uninitialized value from
      ast_strings_match
      (Reported by Corey Farrell)
* ASTERISK-27284 - Status of RFC 3323 and PJSIP
      (Reported by dtryba)
* ASTERISK-27296 - [patch] False positive busy checks when
      icalendar's recurrence-id mechanism is involved
      (Reported by Beno樽t Dereck-Tricot)
* ASTERISK-27216 - app_queue: does its
      check-makeannouncement-logic twice each head-caller-loop
      (Reported by Stefan Engstr旦m)
* ASTERISK-27298 - Problem with expires on pjsip /
      outbound-publish
      (Reported by Cyrille Demaret)
* ASTERISK-27295 - Contact is improperly translated after
      d178f497
      (Reported by Sean Bright)
* ASTERISK-27292 - Multiple RTP Stream Created Breaking RFC2833
      (SSRC Changes)
      (Reported by Ross Beer)
* ASTERISK-27289 - A codeblock that maintains a bug,but maybe
      the codeblock will never run
      (Reported by Huangyx)
* ASTERISK-27283 - Realtime config fail with PostgreSQL version
      before 9.1
      (Reported by Rodrigo Ramirez Norambuena)
* ASTERISK-27257 - bridge_native_rtp: half-way direct media
      when using early bridging
      (Reported by Jean Aunis - Prescom)
* ASTERISK-27279 - Crash in pubsub_on_rx_request NULL pointer -
      Possible PJSIP Vulnerability
      (Reported by Ross Beer)
* ASTERISK-26606 - tcptls: Incorrect OpenSSL function call
      leads to misleading error report
      (Reported by Bob Ham)
* ASTERISK-16898 - SRTP unprotect: authentication failure when
      RTP sequence number switches from 65535 -> 0
      (Reported by Marcello Ceschia)
* ASTERISK-27274 - RTCP needs better packet validation to
      resist port scans.
      (Reported by Richard Mudgett)
* ASTERISK-27252 - RTP: One way audio with direct media and
      strictrtp=yes.
      (Reported by Richard Mudgett)
* ASTERISK-25524 - module reload res_calendar.so does not
      reload everything in calendar.conf
      (Reported by Jesper)
* ASTERISK-24588 - res_calendar does not process CalDAV from
      Owncloud [fix included]
      (Reported by Stefan Gofferje)
* ASTERISK-25523 - res_calendar: Warning about invalid channel
      value (for notification) occurs even when event has no
      notification configured.
      (Reported by Jesper)
* ASTERISK-21399 - RTP Multicast of L16 (type 10): Asterisk and
      wireshark disagree
      (Reported by Tzafrir Cohen)
* ASTERISK-27248 - [patch]external_media_address and
      external_signaling_address don't always honor localnet
      (Reported by Walter Doekes)
* ASTERISK-27217 - chan_sip: Asterisk crashing when
      subscription doesn't get set
      (Reported by Bryan Walters)
* ASTERISK-24066 - res_smdi: convert to astobj2
      (Reported by Corey Farrell)
* ASTERISK-17540 - SDP origin attribute modified when issuing
      re-INVITE because of directmedia=yes
      (Reported by saghul)
* ASTERISK-27254 - alembic: prune_on_boot fix erroneous
      (Reported by Florian Floimair)
* ASTERISK-27232 - When in queue on g722 with interruptions,
      music on hold can get stuck and no longer play
      (Reported by Jens T.)
* ASTERISK-27024 - nat/external_media settings ignored in 14.4.1
      (Reported by Christopher van de Sande)
* ASTERISK-26879 - PJSIP external_media_address ignored if no
      local_net options are provided
      (Reported by Matt Jordan)
* ASTERISK-27165 - CDR: CDR(start,u) function won't work in
      cdr_custom config
      (Reported by Jacek Konieczny)
* ASTERISK-27236 - Segfault ast_channel_name (chan=0x0) at
      channel_internal_api.c:478 during T.38 Fax Receive
      (Reported by Ross Beer)
* ASTERISK-27225 - Crash when freeing dtls_cfg->cafile
      (Reported by Richard Kenner)
* ASTERISK-27177 - ooh323c: misleading indentation in
      addons/ooh323c/src/ooSocket.c
      (Reported by Tzafrir Cohen)
* ASTERISK-27241 - libc segfault upon entry into app_directory
      (Reported by David Moore)
* ASTERISK-27152 - Sending a "tel" uri in a From or To header
      in an unauthenticated message causes asterisk to crash
      (Reported by Ross Beer)
* ASTERISK-27103 - core: ast_safe_system command injection
      possible.
      (Reported by Corey Farrell)
* ASTERISK-27013 - res_rtp_asterisk: Media can be hijacked even
      with strict RTP enabled
      (Reported by Joshua Colp)
* ASTERISK-26994 - Confbridge: CBAnn channels intermittently
      become stuck when caller hangs up before recording name
      (Reported by James Terhune)
* ASTERISK-20858 - app_minivm fails to clean up mkstemp files

      (Reported by Walter Doekes)
* ASTERISK-16777 - several filename bugs in Record()
      application
      (Reported by klaus3000)
* ASTERISK-27209 - Incorrect SDP in 200 OK when PJSIP_DTMF_MODE
      is used
      (Reported by Torrey Searle)
* ASTERISK-27168 - alembic: PJSIP scripts are missing column
      dtls_fingerprint in ps_endpoints table
      (Reported by Florian Floimair)
* ASTERISK-19103 - When using realtime queues, function
      QUEUE_MEMBER_LIST() will return an error if no other
      app/function has loaded the queues first. This problem does not
      exist if queues.conf is used.
      (Reported by Jim Van Meggelen)
* ASTERISK-21241 - When using voicemail as announce only
      (maxmsg=0), the star dtmf to enter the voicemail is not honored
      (Reported by Eelco Brolman)
* ASTERISK-27204 - [patch] app_queue: Wrong queue stat
      calculation
      (Reported by sungtae kim)
* ASTERISK-27207 - XMPP OAuth not working due to inverted
      logic
      (Reported by Michael Kuron)
* ASTERISK-27174 - res_calendar_icalendar: Recurring events not
      being loaded from Google calendar using ical
      (Reported by Mark Thompson)
* ASTERISK-27202 - If wget is not installed and "or" is not
      available, external components (excluding pjsip) are not
      installed
      (Reported by Se叩n C. McCord)
* ASTERISK-27147 - Either asterisk or pjproject isn't re-using
      tcp connections (again)
      (Reported by George Joseph)
* ASTERISK-27193 - IPv6 receive address in message doesn't
      include brackets
      (Reported by Scott Griepentrog)
* ASTERISK-26745 - Asymmetric codecs when
      asymmetric_rtp_codec=no
      (Reported by Jesse Ross)
* ASTERISK-27158 - [patch] res_rtp_asterisk: RTCP statistics
      are not available when native bridge is used
      (Reported by Torrey Searle)
* ASTERISK-27110 - RTP session is not fully destroyed on
      channel hangup
      (Reported by Matt Jordan)
* ASTERISK-27171 - Asterisk 15.0.0-Beta1 does not compile
      (Reported by Ira Emus)
* ASTERISK-26659 - res_pjsip: PJSIP presence - missing braces
      around the status element in XML
      (Reported by Abraham Liebsch)
* ASTERISK-27156 - Asterisk won't compile on Fedora 26 with
      devmode enabled.
      (Reported by Corey Farrell)
* ASTERISK-27130 - Applications ARI: Unsubscribe action for
      deviceStates does not remove old subscriptions properly
      (Reported by Sergej Kasumovic)
* ASTERISK-25810 - say.c calls for sounds in the subdir
      "digits" that don't exist (in Core). SayUnixTime or other Say...
      apps will fail out when they call these sounds.
      (Reported by Nicolas Riendeau)
* ASTERISK-27142 - sounds: Conflict between files in
      asterisk-sounds-core-1.6 and asterisk-sounds-extra-1.5
      (Reported by Corey Farrell)
* ASTERISK-27133 - res_rtp_asterisk: RTCP does not use ICE when
      RTCP-MUX in use
      (Reported by Joshua Colp)
* ASTERISK-27123 - confbridge: Name recordings are left on
      filesystem
      (Reported by Sergej Kasumovic)
* ASTERISK-27122 - chan_iax2: On reload MWI taskprocessors keep
      adding up
      (Reported by Sergej Kasumovic)
* ASTERISK-26807 - sounds: New 3-D Binaural audio features
      require new sound prompts
      (Reported by Rusty Newton)
* ASTERISK-25816 - French conf-adminmenu, conf-usermenu prompts
      differ in content from the English files
      (Reported by Benoit Duverger)
* ASTERISK-26274 - Resolve open sounds issues and then create a
      new sounds release (1.5.1? or 1.6?)
      (Reported by Rusty Newton)
* ASTERISK-27128 - [patch]res_stasis_snoop: When recording a
      snoop channel (using ARI) where no media is being received, no
      recording happens when theres no media
      (Reported by Dan Jenkins)
* ASTERISK-27124 - app_playback.c:say_date_generic use
      timezonename parameter
      (Reported by Holger Hans Peter Freyther)
* ASTERISK-27127 - configs: Erroneous load directive in sample
      configuration results in "Error loading module
      'res_pjsip_multihomed.so'"
      (Reported by HZMI8gkCvPpom0tM)
* ASTERISK-27105 - [patch]core: when setting 'maxfiles' in
      asterisk.conf, a message is printed, even in rasterisk -x
      (Reported by Tzafrir Cohen)
* ASTERISK-27036 - res_pjsip: Asterisk crashes when an
      extension tries to use PJSIP trunk with from_user containing '@'
      (Reported by Maxim Vasilev)
* ASTERISK-27023 - res_rtp_asterisk: Deadlock when TURN session
      in use
      (Reported by Jatin Jain)
* ASTERISK-27093 - ODBC deadlocks when app_directory tries to
      play back non-existent voicemail greeting
      (Reported by James Terhune)

New Features made in this release:
-----------------------------------
* ASTERISK-27215 - [patch]AMI : Add CancelAtxfer Action
      (Reported by Thomas Sevestre)
* ASTERISK-27117 - core: Add support for timelen parsing to
      ast_parse_arg and ACO.
      (Reported by Corey Farrell)

For a full list of changes in this release, please see the ChangeLog:
http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-14.7.0

Thank you for your continued support of Asterisk!

----- 14.6.0 -----

The Asterisk Development Team would like to announce the release
of Asterisk 14.6.0.

The release of Asterisk 14.6.0 resolves several issues reported by the
community and would have not been possible without your participation.

Thank you!

The following issues are resolved in this release:

Bugs fixed in this release:
-----------------------------------
* ASTERISK-27108 - Crash using 'data get' CLI command
      (Reported by Sean Bright)
* ASTERISK-27106 - [patch] autodomain (SIP Domain Support): Add
      only really different domain with TLS.
      (Reported by Alexander Traud)
* ASTERISK-27100 - channel: ast_waitfordigit_full fails to
      clear flag in an error branch.
      (Reported by Corey Farrell)
* ASTERISK-27090 - PJSIP: Deadlock using TCP transport
      (Reported by Richard Mudgett)
* ASTERISK-25665 - Duplicate logging in queue log for EXITEMPTY events
      (Reported by Ove Aursand)
* ASTERISK-27065 - call hangup after leaving app_queue
      (Reported by Marek Cervenka)
* ASTERISK-26978 - rtp: Crash in ast_rtp_codecs_payload_code()
      (Reported by Ross Beer)
* ASTERISK-24052 - app_voicemail reloads result in leaked IMAP sockets.
      (Reported by Louis Jocelyn Paquet)
* ASTERISK-27074 - core_local: local channel data not being
      properly unref'ed and unlocked
      (Reported by Kevin Harwell)
* ASTERISK-27075 - bridge: stuck channel(s) after failed
      attended transfer
      (Reported by Kevin Harwell)
* ASTERISK-27060 - Comment typo format_g729.c
      (Reported by Matthew Fredrickson)
* ASTERISK-27041 - Core/PBX: [patch] Deadlock between dialplan
      execution and application unregistration
      (Reported by Frederic LE FOLL)
* ASTERISK-27026 - res_ari: Crash when no ari.conf
      configuration file exists
      (Reported by Ronald Raikes)
* ASTERISK-27057 - Seg Fault in ast_sorcery_object_get_id at
      sorcery.c
      (Reported by Ryan Smith)
* ASTERISK-27024 - nat/external_media settings ignored in
      14.4.1
      (Reported by Christopher van de Sande)
* ASTERISK-27046 - res_pjsip_transport_websocket: segfault in
      get_write_timeout
      (Reported by J淡rgen H)
* ASTERISK-27022 - res_rtp_asterisk: Incorrect SSRC change for
      RTCP component
      (Reported by Michael Walton)
* ASTERISK-26923 - bridging: T.38 request is lost when channels
      are added to bridge
      (Reported by Torrey Searle)
* ASTERISK-27053 - res_pjsip_refer/session: Calls dropped
      during transfer
      (Reported by Kevin Harwell)
* ASTERISK-27052 - Asterisk build process fails with flag
      --with-pjproject-bundled with curl download command and slow
      network
      (Reported by alex)
* ASTERISK-27039 - chan_pjsip: Device state is idle when
      channel from endpoint is in early media
      (Reported by Joshua Colp)
* ASTERISK-26996 - chan_pjsip: Flipping between codecs
      (Reported by Michael Maier)
* ASTERISK-26281 - chan_pjsip would send INVITE to
      'Unreachable' endpoints
      (Reported by Jacek Konieczny)
* ASTERISK-26973 - bridge: Crash when freeing frame and
      snooping
      (Reported by Michel R. Vaillancourt)
* ASTERISK-19291 - Background in realtime
      (Reported by Andrew Nowrot)
* ASTERISK-27025 - channel / meetme: Fix missing parentheses
      (Reported by Joshua Colp)
* ASTERISK-27021 - GET /recordings/stored returns 500 Internal
      Server Error
      (Reported by Tim Morgan)
* ASTERISK-24858 - [patch]Asterisk 13 PJSIP sends RTP packets
      in wrong byte order on Intel platform when using slin codec
      (Reported by Frankie Chin)
* ASTERISK-23951 -  Asterisk attempts and fails to build
      format_mp3 even if mp3lib was not downloaded
      (Reported by Tzafrir Cohen)
* ASTERISK-25294 - srtp's crypto_get_random deprecated
      (Reported by Tzafrir Cohen)
* ASTERISK-23839 - AGI - RECORD FILE - documentation doesn't
      describe BEEP argument
      (Reported by Rusty Newton)
* ASTERISK-22432 - Async AGI crashes Asterisk when issuing "set
      variable" command without args
      (Reported by Antoine Pitrou)
* ASTERISK-25662 - Malformed AGI 520 Usage response
      (Reported by Tony Mountifield)
* ASTERISK-27008 - res_format_attr_h264: SDP parse fails if
      fmtp optional parameters have a space
      (Reported by John Harris)
* ASTERISK-26399 - app_queue: Agent not called when caller is
      parked
      (Reported by wushumasters)
* ASTERISK-26400 - app_queue: Queue member stops being called
      after AMI "Redirect" action for queues with wrapuptime
      (Reported by Etienne Lessard)
* ASTERISK-26715 - app_queue: Member will not receive any new
      calls after doing a transfer if wrapuptime = greater than 0 and
      using Local channel
      (Reported by David Brillert)
* ASTERISK-26975 - app_queue: Non-zero wrapup time can cause
      agents not to receive queue calls after transfer queue call
      (Reported by Lorne Gaetz)
* ASTERISK-27012 - app_confbridge: ConfBridge sometimes does
      not play user name recording while leaving
      (Reported by Robert Mordec)
* ASTERISK-26979 - res_rtp_asterisk: SRTP unprotect failed with
      authentication failure 10 or 110
      (Reported by Javier Riveros)
* ASTERISK-26982 - chan_sip: rtcp_mux setting may cause ice
      completion failure/delay if client offers rtcp-mux as
      negotiable
      (Reported by Stefan Engstr旦m)
* ASTERISK-26964 - res_pjsip_session: Wrong From on reinvite
      when request and To URI differ
      (Reported by Yasin CANER)
* ASTERISK-26789 - Audit manipulation of channel flags without
      locks
      (Reported by Joshua Colp)
* ASTERISK-26333 - Problems with Blind Transfer, PJSIP (Aastra
      6869i)
      (Reported by Matthias Binder)

Improvements made in this release:
-----------------------------------
* ASTERISK-26230 - [patch] res_pjsip_mwi: unsolicited mwi could
      block PJSIP taskprocessor on startup
      (Reported by Alexei Gradinari)
* ASTERISK-27043 - Core/BuildSystem: Add defines to fix build
      with LibreSSL
      (Reported by Guido Falsi)
* ASTERISK-27042 - Unpatched asterisk sources fail to build on
      FreeBSD due to missing crypt.h file
      (Reported by Guido Falsi)
* ASTERISK-26419 - audiohooks: Remove redundant codec
      translations when using audiohooks
      (Reported by Michael Walton)
* ASTERISK-26976 - libsrtp-2.x.x support
      (Reported by Alex)
* ASTERISK-26124 - res_agi: Set audio format for EAGI audio
      stream
      (Reported by John Fawcett)

For a full list of changes in this release, please see the ChangeLog:
http://downloads.asterisk.org/pub/telephony/asterisk/ChangeLog-14.6.0

Thank you for your continued support of Asterisk!

(jnemeth)

2018-01-24 00:46:30 UTC MAIN commitmail json YAML

doc: Added math/py-powerlaw version 1.4.3

(minskim)

2018-01-24 00:45:59 UTC MAIN commitmail json YAML

math/Makefile: Add py-powerlaw

(minskim)

2018-01-24 00:45:21 UTC MAIN commitmail json YAML

math/py-powerlaw: Import version 1.4.3

powerlaw is a toolbox using the statistical methods to determine if a
probability distribution fits a power law.

(minskim)

2018-01-23 19:43:17 UTC MAIN commitmail json YAML

kde4: comment out okular as doesn't build with lack of poppler-qt

(markd)

2018-01-23 19:36:35 UTC MAIN commitmail json YAML

py-qt5: remove commented out SUBST_CLASS.install

(markd)

2018-01-23 19:35:08 UTC MAIN commitmail json YAML

py-qt5: restore PLIST as well

(markd)

2018-01-23 16:42:02 UTC MAIN commitmail json YAML

it was pointed out that python27 is a build only dependency for qt5-qtwebkit
revert previous

(dbj)

2018-01-23 15:31:23 UTC MAIN commitmail json YAML

freeradius: Fix Darwin .dylib extension.

(jperkin)

2018-01-23 14:56:35 UTC MAIN commitmail json YAML

gst-plugins1-bad: Fix PLIST.Darwin for previous update.

(jperkin)

2018-01-23 14:36:32 UTC MAIN commitmail json YAML

rudiments: Avoid -Wdeprecated-declarations failure on Darwin.

(jperkin)

2018-01-23 14:31:45 UTC MAIN commitmail json YAML

Import buildlink3.mk file for devel/libusb-compat

libusb-compat is an API wrapper, emulating devel/libusb through the newer
code from devel/libusb1. On NetBSD, this has multiple advantages, such as
not requiring root privileges when accessing ugen(4) USB devices. We should
therefore consider to default to devel/libusb-compat instead of
devel/libusb on NetBSD at the very least.

Tested with devel/libftdi on NetBSD/amd64.

(khorben)

2018-01-23 14:24:02 UTC MAIN commitmail json YAML

ruby-redmine: Some files are .so not .${RUBY_DLEXT}

(jperkin)

2018-01-23 14:19:55 UTC MAIN commitmail json YAML

p5-Wx: Don't override wx-toolkit, fixes Darwin.

(jperkin)

2018-01-23 13:58:47 UTC MAIN commitmail json YAML

syncthing: Just build the binary we install, fixes some archs.

(jperkin)

2018-01-23 12:57:05 UTC MAIN commitmail json YAML

2018-01-23 11:24:15 UTC MAIN commitmail json YAML

Updated devel/py-gobject-shared, devel/py-gobject

(adam)

2018-01-23 11:23:13 UTC MAIN commitmail json YAML

py-gobject: updated to 2.28.7

2.28.7:
- Move property and signal creation into _class_init()
- gio-types.defs: change some enums to flags
- Fix set_qdata warning on accessing NULL gobject property
- Disable introspection support by default
- Don't install codegen for Python 3
- Ship tests/te_ST@nouppera in release tarballs for tests to succeed
- [gi] Port test_properties from static gio to GI Gio
- [python3] fix build. PYcairo_IMPORT doesn't exists anymore
- [python3] Fix maketrans import
- [gi-overrides] fix MessageBox so it correctly handles the type constructor param
- gdbus tests: Fix hang if test case fails
- Fix crash in Gtk.TextIter overrides
- correctly initialize the _gi_cairo_functions array to be zero filled
- [gtk-override] print warning if user imports Gtk 2.0
- Add support for enums in gobject.property

(adam)

2018-01-23 10:54:30 UTC MAIN commitmail json YAML

doc: Updated net/py-lexicon to 2.1.17

(fhajny)

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

2018-01-23 10:29:27 UTC MAIN commitmail json YAML

Updated net/py-awscli, devel/git

(adam)

2018-01-23 10:28:55 UTC MAIN commitmail json YAML

git: updated to 2.16.1

Git v2.16.1 Release Notes

Fixes since v2.16
* "git clone" segfaulted when cloning a project that happens to
  track two paths that differ only in case on a case insensitive
  filesystem.

(adam)

2018-01-23 10:27:33 UTC MAIN commitmail json YAML

qt5-qtwebkit: Correct pkgconfig symlinks. Bump PKGREVISION

(markd)

2018-01-23 10:25:47 UTC MAIN commitmail json YAML

py-awscli: updated to 1.14.30

1.14.30
api-change:budgets: Update budgets command to latest version

1.14.29
api-change:glue: Update glue command to latest version
api-change:transcribe: Update transcribe command to latest version

1.14.28
api-change:sagemaker: Update sagemaker command to latest version

1.14.27
api-change:ec2: Update ec2 command to latest version
api-change:autoscaling-plans: Update autoscaling-plans command to latest version

1.14.26
api-change:application-autoscaling: Update application-autoscaling command to latest version
api-change:rds: Update rds command to latest version
api-change:autoscaling-plans: Update autoscaling-plans command to latest version

1.14.25
api-change:lambda: Update lambda command to latest version

1.14.24
api-change:glue: Update glue command to latest version

1.14.23
api-change:elb: Update elb command to latest version
api-change:elbv2: Update elbv2 command to latest version
api-change:ssm: Update ssm command to latest version
api-change:rds: Update rds command to latest version

1.14.22
api-change:kms: Update kms command to latest version

1.14.21
api-change:ds: Update ds command to latest version

1.14.20
api-change:discovery: Update discovery command to latest version
api-change:codedeploy: Update codedeploy command to latest version
api-change:route53: Update route53 command to latest version

1.14.19
api-change:snowball: Update snowball command to latest version
api-change:ssm: Update ssm command to latest version
api-change:inspector: Update inspector command to latest version

1.14.18
api-change:rds: Update rds command to latest version

1.14.17
api-change:workspaces: Update workspaces command to latest version

1.14.16
api-change:ecs: Update ecs command to latest version
api-change:ec2: Update ec2 command to latest version
api-change:sagemaker: Update sagemaker command to latest version
api-change:inspector: Update inspector command to latest version

1.14.15
api-change:ec2: Update ec2 command to latest version
api-change:kinesisanalytics: Update kinesisanalytics command to latest version
api-change:codebuild: Update codebuild command to latest version

1.14.14
api-change:config: Update config command to latest version
api-change:iot: Update iot command to latest version

(adam)

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

qt5-qtwebkit: remove python and ruby from buildlink3.mk

they are only build dependencies.

(markd)

2018-01-23 09:54:04 UTC MAIN commitmail json YAML

ocaml-cppo: fix Makefile

(wiz)

2018-01-23 09:50:26 UTC MAIN commitmail json YAML

doc: Updated sysutils/py-borgbackup to 1.1.4nb1

(wiz)

2018-01-23 09:50:18 UTC MAIN commitmail json YAML

py-borgbackup: fix runtime problem

msgpack distribution changed name from 'msgpack-python' to 'msgpack'.

Bump PKGREVISION.

(wiz)

2018-01-23 09:48:35 UTC MAIN commitmail json YAML

doc: Added net/py-namecheap version 0.0.2

(fhajny)

2018-01-23 09:48:23 UTC MAIN commitmail json YAML

2018-01-23 09:33:36 UTC MAIN commitmail json YAML

doc: Updated net/py-boto3 to 1.5.20

(fhajny)

2018-01-23 09:33:27 UTC MAIN commitmail json YAML

Update net/py-boto3 to 1.5.20.

1.5.20
======

- api-change:``budgets``: [``botocore``] Update budgets client to
  latest version

1.5.19
======

- api-change:``glue``: [``botocore``] Update glue client to latest
  version
- api-change:``transcribe``: [``botocore``] Update transcribe client
  to latest version

1.5.18
======

- api-change:``sagemaker``: [``botocore``] Update sagemaker client to
  latest version

1.5.17
======

- api-change:``ec2``: [``botocore``] Update ec2 client to latest
  version
- api-change:``autoscaling-plans``: [``botocore``] Update
  autoscaling-plans client to latest version

1.5.16
======

- api-change:``application-autoscaling``: [``botocore``] Update
  application-autoscaling client to latest version
- api-change:``autoscaling-plans``: [``botocore``] Update
  autoscaling-plans client to latest version
- api-change:``rds``: [``botocore``] Update rds client to latest
  version

1.5.15
======

- api-change:``lambda``: [``botocore``] Update lambda client to latest
  version
- enhancement:cloudformation get_template template body ordering:
  [``botocore``] fixes boto/boto3#1378

1.5.14
======

- api-change:``glue``: [``botocore``] Update glue client to latest
  version

1.5.13
======

- api-change:``ssm``: [``botocore``] Update ssm client to latest
  version
- api-change:``elbv2``: [``botocore``] Update elbv2 client to latest
  version
- api-change:``rds``: [``botocore``] Update rds client to latest
  version
- api-change:``elb``: [``botocore``] Update elb client to latest
  version

1.5.12
======

- api-change:``kms``: [``botocore``] Update kms client to latest
  version

1.5.11
======

- api-change:``ds``: [``botocore``] Update ds client to latest version

1.5.10
======

- api-change:``route53``: [``botocore``] Update route53 client to
  latest version
- api-change:``discovery``: [``botocore``] Update discovery client to
  latest version
- api-change:``codedeploy``: [``botocore``] Update codedeploy client
  to latest version

1.5.9
=====

- api-change:``ssm``: [``botocore``] Update ssm client to latest
  version
- api-change:``inspector``: [``botocore``] Update inspector client to
  latest version
- api-change:``snowball``: [``botocore``] Update snowball client to
  latest version

1.5.8
=====

- api-change:``rds``: [``botocore``] Update rds client to latest
  version

1.5.7
=====

- api-change:``workspaces``: [``botocore``] Update workspaces client
  to latest version

1.5.6
=====

- api-change:``ecs``: [``botocore``] Update ecs client to latest
  version
- api-change:``ec2``: [``botocore``] Update ec2 client to latest
  version
- api-change:``inspector``: [``botocore``] Update inspector client to
  latest version
- api-change:``sagemaker``: [``botocore``] Update sagemaker client to
  latest version

1.5.5
=====

- api-change:``ec2``: [``botocore``] Update ec2 client to latest
  version
- enhancement:Paginator: [``botocore``] Added paginator support for
  lambda list aliases operation.
- api-change:``kinesisanalytics``: [``botocore``] Update
  kinesisanalytics client to latest version
- api-change:``codebuild``: [``botocore``] Update codebuild client to
  latest version

1.5.4
=====

- api-change:``iot``: [``botocore``] Update iot client to latest
  version
- api-change:``config``: [``botocore``] Update config client to latest
  version

(fhajny)

2018-01-23 09:31:01 UTC MAIN commitmail json YAML

doc: Updated net/py-botocore to 1.8.34

(fhajny)

2018-01-23 09:30:53 UTC MAIN commitmail json YAML

Update net/py-botocore to 1.8.34.

1.8.34
======

- api-change:``budgets``: Update budgets client to latest version

1.8.33
======

- api-change:``glue``: Update glue client to latest version
- api-change:``transcribe``: Update transcribe client to latest
  version

1.8.32
======

- api-change:``sagemaker``: Update sagemaker client to latest version

1.8.31
======

- api-change:``ec2``: Update ec2 client to latest version
- api-change:``autoscaling-plans``: Update autoscaling-plans client to
  latest version

1.8.30
======

- api-change:``application-autoscaling``: Update
  application-autoscaling client to latest version
- api-change:``autoscaling-plans``: Update autoscaling-plans client to
  latest version
- api-change:``rds``: Update rds client to latest version

1.8.29
======

- api-change:``lambda``: Update lambda client to latest version
- enhancement:cloudformation get_template template body ordering:
  fixes boto/boto3#1378

1.8.28
======

- api-change:``glue``: Update glue client to latest version

1.8.27
======

- api-change:``ssm``: Update ssm client to latest version
- api-change:``elbv2``: Update elbv2 client to latest version
- api-change:``rds``: Update rds client to latest version
- api-change:``elb``: Update elb client to latest version

1.8.26
======

- api-change:``kms``: Update kms client to latest version

1.8.25
======

- api-change:``ds``: Update ds client to latest version

1.8.24
======

- api-change:``route53``: Update route53 client to latest version
- api-change:``discovery``: Update discovery client to latest version
- api-change:``codedeploy``: Update codedeploy client to latest
  version

1.8.23
======

- api-change:``ssm``: Update ssm client to latest version
- api-change:``inspector``: Update inspector client to latest version
- api-change:``snowball``: Update snowball client to latest version

1.8.22
======

- api-change:``rds``: Update rds client to latest version

1.8.21
======

- api-change:``workspaces``: Update workspaces client to latest
  version

1.8.20
======

- api-change:``ecs``: Update ecs client to latest version
- api-change:``ec2``: Update ec2 client to latest version
- api-change:``inspector``: Update inspector client to latest version
- api-change:``sagemaker``: Update sagemaker client to latest version

1.8.19
======

- api-change:``ec2``: Update ec2 client to latest version
- enhancement:Paginator: Added paginator support for lambda list
  aliases operation.
- api-change:``kinesisanalytics``: Update kinesisanalytics client to
  latest version
- api-change:``codebuild``: Update codebuild client to latest version

1.8.18
======

- api-change:``iot``: Update iot client to latest version
- api-change:``config``: Update config client to latest version

(fhajny)

2018-01-23 08:58:11 UTC MAIN commitmail json YAML

doc: Updated net/py-softlayer to 5.4.0

(fhajny)

2018-01-23 08:58:01 UTC MAIN commitmail json YAML