Link [ pkgsrc | NetBSD | pkgsrc git mirror | PR fulltext-search | netbsd commit viewer ]


   
        usage: [branch:branch] [user:user] [path[@revision]] keyword [... [-excludekeyword [...]]] (e.g. branch:MAIN pkgtools/pkg)




switch to index mode

recent branches: MAIN (4h)  pkgsrc-2024Q1 (14d)  pkgsrc-2023Q4 (42d)  pkgsrc-2023Q2 (74d)  pkgsrc-2023Q3 (154d) 

2024-05-13 05:08:35 UTC Now

2018-08-07 10:06:47 UTC MAIN commitmail json YAML

py-setuptools_scm: updated to 3.0.6

v3.0.6
fix 295 - correctly handle selfinstall from tarballs

v3.0.5
fix 292 - match leading 'V' character as well
https://www.python.org/dev/peps/pep-0440/#preceding-v-character

v3.0.4
rerelease of 3.0.3 after fixing the release process

v3.0.3 (pulled from pypi due to a packaging issue)
fix 286 - duo an oversight a helper functio nwas returning a generator instead of a list

v3.0.2
fix a regression from tag parsing - support for multi-dashed prefixes

v3.0.1
fix a regression in setuptools_scm.git.parse - reorder arguments so the positional invocation from before works as expected

v3.0.0
introduce pre-commit and use black
print the origin module to help testing
switch to src layout (breaking change)
no longer alias tag and parsed_version in order to support understanding a version parse failure
require parse results to be ScmVersion or None (breaking change)
fix 266 by requiring the prefix word to be a word again (breaking change as the bug allowed arbitrary prefixes while the original feature only allowed words")
introduce a internal config object to allow the configruation fo tag parsing and prefixes (thanks to @punkadiddle for introducing it and passing it trough)

(adam)

2018-08-07 10:04:04 UTC MAIN commitmail json YAML

py-pylint-django: updated to 2.0

Version 2.0:
Requires pylint >= 2.0 which doesn窶冲 support Python 2 anymore!
Add modelform-uses-unicode check to flag dangerous use of the exclude attribute in ModelForm.Meta

(adam)

2018-08-07 09:58:05 UTC MAIN commitmail json YAML

Updated devel/py-setuptools, devel/py-pip, devel/py-pbr

(adam)

2018-08-07 09:57:22 UTC MAIN commitmail json YAML

py-pbr: updated to 4.2.0

4.2.0
* Deprecate 'test' integration
* Deprecate 'build\_sphinx' integration
* Add Sphinx extension
* doc: Add documentation for missing '[pbr]' options
* doc: Fix formatting of packagers guide
* Switch to stestr

(adam)

2018-08-07 09:56:53 UTC MAIN commitmail json YAML

py-pip: updated to 18.0

18.0:

Process
- Switch to a Calendar based versioning scheme.
- Formally document our deprecation process as a minimum of 6 months of deprecation
  warnings.
- Adopt and document NEWS fragment writing style.
- Switch to releasing a new, non bug fix version of pip every 3 months.

Deprecations and Removals
- Remove the legacy format from pip list.
- Dropped support for Python 3.3.
- Remove support for cleaning up #egg fragment postfixes.
- Remove the shim for the old get-pip.py location.

  For the past 2 years, it's only been redirecting users to use the newer
  https://bootstrap.pypa.io/get-pip.py location.

Features
- Introduce a new --prefer-binary flag, to prefer older wheels over newer source packages.
- Improve autocompletion function on file name completion after options
  which have ``<file>``, ``<dir>`` or ``<path>`` as metavar.
- Add support for installing PEP 518 build dependencies from source.
- Improve status message when upgrade is skipped due to only-if-needed strategy.

Bug Fixes
- Update pip's self-check logic to not use a virtualenv specific file and honor cache-dir.
- Remove compiled pyo files for wheel packages.
- Speed up printing of newly installed package versions.
- Restrict install time dependency warnings to directly-dependant packages.

  Warning about the entire package set has resulted in users getting confused as
  to why pip is printing these warnings.
- Improve handling of PEP 518 build requirements: support environment markers and extras.
- Remove username/password from log message when using index with basic auth.
- Remove trailing os.sep from PATH directories to avoid false negatives.
- Fix "pip wheel pip" being blocked by the "don't use pip to modify itself" check.
- Disable pip's version check (and upgrade message) when installed by a different package manager.

  This works better with Linux distributions where pip's upgrade message may
  result in users running pip in a manner that modifies files that should be
  managed by the OS's package manager.
- Check for file existence and unlink first when clobbering existing files during a wheel install.
- Improve error message to be more specific when no files are found as listed in as listed in PKG-INFO.
- Always read ``pyproject.toml`` as UTF-8. This fixes Unicode handling on Windows and Python 2.
- Fix a crash that occurs when PATH not set, while generating script location warning.
- Disallow packages with ``pyproject.toml`` files that have an empty build-system table.

Vendored Libraries
- Update CacheControl to 0.12.5.
- Update certifi to 2018.4.16.
- Update distro to 1.3.0.
- Update idna to 2.7.
- Update ipaddress to 1.0.22.
- Update pkg_resources to 39.2.0 (via setuptools).
- Update progress to 1.4.
- Update pytoml to 0.1.16.
- Update requests to 2.19.1.
- Update urllib3 to 1.23.

Improved Documentation
- Document how to use pip with a proxy server.
- Document that the output of pip show is in RFC-compliant mail header format.

(adam)

2018-08-07 09:55:29 UTC MAIN commitmail json YAML

py-setuptools: updated to 40.0.0

v40.0.0
Drop support for Python 3.3.
In package_index, fixed handling of encoded entities in URLs.
In pkg_resources VendorImporter, avoid removing packages imported from the root.
Minor doc fixes after actually using the new release process.
Removed section on non-package data files.
Fix developer's guide.
Fix PEP 518 configuration: set build requirements in pyproject.toml to ["wheel"].

(adam)

2018-08-07 09:54:28 UTC MAIN commitmail json YAML

Updated devel/py-cython, www/py-django2

(adam)

2018-08-07 09:53:53 UTC MAIN commitmail json YAML

py-django2: updated to 2.1

2.1:
Model 窶忻iew窶� permission

django.contrib.admin
ModelAdmin.search_fields now accepts any lookup such as field__exact.
jQuery is upgraded from version 2.2.3 to 3.3.1.
The new ModelAdmin.delete_queryset() method allows customizing the deletion process of the 窶彭elete selected objects窶� action.
You can now override the default admin site.
The new ModelAdmin.sortable_by attribute and ModelAdmin.get_sortable_by() method allow limiting the columns that can be sorted in the change list page.
The admin_order_field attribute for elements in ModelAdmin.list_display may now be a query expression.
The new ModelAdmin.get_deleted_objects() method allows customizing the deletion process of the delete view and the 窶彭elete selected窶� action.
The actions.html, change_list_results.html, date_hierarchy.html, pagination.html, prepopulated_fields_js.html, search_form.html, and submit_line.html templates can now be overridden per app or per model (besides overridden globally).
The admin change list and change form object tools can now be overridden per app, per model, or globally with change_list_object_tools.html and change_form_object_tools.html templates.
InlineModelAdmin.has_add_permission() is now passed the parent object as the second positional argument, obj.
Admin actions may now specify permissions to limit their availability to certain users.

django.contrib.auth
createsuperuser now gives a prompt to allow bypassing the AUTH_PASSWORD_VALIDATORS checks.
UserCreationForm and UserChangeForm no longer need to be rewritten for a custom user model.

django.contrib.gis
The new GEOSGeometry.buffer_with_style() method is a version of buffer() that allows customizing the style of the buffer.
OpenLayersWidget is now based on OpenLayers 4.6.5 (previously 3.20.1).

django.contrib.sessions
Added the SESSION_COOKIE_SAMESITE setting to set the SameSite cookie flag on session cookies.

Cache
The local-memory cache backend now uses a least-recently-used (LRU) culling strategy rather than a pseudo-random one.
The new touch() method of the low-level cache API updates the timeout of cache keys.

CSRF
Added the CSRF_COOKIE_SAMESITE setting to set the SameSite cookie flag on CSRF cookies.

Forms
The widget for ImageField now renders with the HTML attribute accept="image/*".

Internationalization
Added the get_supported_language_variant() function.
Untranslated strings for territorial language variants now use the translations of the generic language. For example, untranslated pt_BR strings use pt translations.

Management Commands
The new inspectdb --include-views option allows creating models for database views.
The BaseCommand class now uses a custom help formatter so that the standard options like --verbosity or --settings appear last in the help output, giving a more prominent position to subclassed command窶冱 options.

Migrations
Added support for serialization of functools.partialmethod objects.
To support frozen environments, migrations may be loaded from .pyc files.

Models
Models can now use __init_subclass__() from PEP 487.
A BinaryField may now be set to editable=True if you wish to include it in model forms.
A number of new text database functions are added: Chr, Left, LPad, LTrim, Ord, Repeat, Replace, Right, RPad, RTrim, and Trim.
The new TruncWeek function truncates DateField and DateTimeField to the Monday of a week.
Query expressions can now be negated using a minus sign.
QuerySet.order_by() and distinct(*fields) now support using field transforms.
BooleanField can now be null=True. This is encouraged instead of NullBooleanField, which will likely be deprecated in the future.
The new QuerySet.explain() method displays the database窶冱 execution plan of a queryset窶冱 query.
QuerySet.raw() now supports prefetch_related().

Requests and Responses
Added HttpRequest.get_full_path_info().
Added the samesite argument to HttpResponse.set_cookie() to allow setting the SameSite cookie flag.
The new as_attachment argument for FileResponse sets the Content-Disposition header to make the browser ask if the user wants to download the file. FileResponse also tries to set the Content-Type and Content-Length headers where appropriate.

Templates
The new json_script filter safely outputs a Python object as JSON, wrapped in a <script> tag, ready for use with JavaScript.

(adam)

2018-08-07 09:44:13 UTC MAIN commitmail json YAML

2018-08-07 09:36:42 UTC MAIN commitmail json YAML

py-cython: updated to 0.28.5

0.28.5:

Bugs fixed

* The discouraged usage of GCC's attribute optimize("Os") was replaced by the
  similar attribute cold to reduce the code impact of the module init functions.

* A reference leak in Py2.x was fixed when comparing str to unicode for equality.

(adam)

2018-08-07 09:25:08 UTC MAIN commitmail json YAML

Added devel/py-cogapp, lang/py-paver

(adam)

2018-08-07 09:24:36 UTC MAIN commitmail json YAML

py-paver: added version 1.3.4

Paver is a Python-based build/distribution/deployment scripting tool along the
lines of Make or Rake. What makes Paver unique is its integration with commonly
used Python libraries. Common tasks that were easy before remain easy. More
importantly, dealing with your applications specific needs and requirements is
also easy.

(adam)

2018-08-07 09:21:18 UTC MAIN commitmail json YAML

py-cogapp: added version 2.5.1

Cog is a file generation tool. It lets you use pieces of Python code as
generators in your source files to generate whatever text you need.

(adam)

2018-08-07 08:45:12 UTC MAIN commitmail json YAML

Updated lang/python35, lang/python34

(adam)

2018-08-07 08:44:41 UTC MAIN commitmail json YAML

python34: updated to 3.4.9

3.4.9:
Bug fix release for Python 3.4.

(adam)

2018-08-07 08:44:02 UTC MAIN commitmail json YAML

python35: updated to 3.5.6

3.5.6:
Bug fix release for Python 3.5.

(adam)

2018-08-07 08:41:58 UTC MAIN commitmail json YAML

Updated devel/py-iso3166, net/py-celery

(adam)

2018-08-07 08:41:26 UTC MAIN commitmail json YAML

py-celery: updated to 4.2.1

4.2.1:
- **Result Backend**: Fix deserialization of exceptions that are present in the producer codebase but not in the consumer codebase.
- **Message Protocol Compatibility**: Fix error caused by an invalid (None) timelimit value in the message headers when migrating messages from 3.x to 4.x.
- **Result Backend**: Fix serialization of exception arguments when exception arguments are not JSON serializable by default.
- **Worker**: Fixed multiple issues with rate limited tasks
  Maintain scheduling order.
  Fix possible scheduling of a :class:celery.worker.request.Request with the wrong :class:kombu.utils.limits.TokenBucket which could cause tasks' rate limit to behave incorrectly.
  Fix possible duplicated execution of tasks that were rate limited or if ETA/Countdown was provided for them.
- **Worker**: Defensively handle invalid timelimit header values in requests.

(adam)

2018-08-07 08:36:59 UTC MAIN commitmail json YAML

py-iso3166: updated to 0.9

0.9:
* Updated entries
  - New entry for Kosovo (XK / XKX)
  - Swaziland changed to Eswatini (effective 2018-07-16)

(adam)

2018-08-07 08:32:32 UTC MAIN commitmail json YAML

Updated security/py-gssapi, devel/py-greenlet, textproc/py-html-sanitizer, textproc/py-regex

(adam)

2018-08-07 08:31:30 UTC MAIN commitmail json YAML

py-regex: updated to 2018.07.11

2018.07.11:
Unknown changes.

(adam)

2018-08-07 08:29:43 UTC MAIN commitmail json YAML

hunspell: Specify C++03.

(jperkin)

2018-08-07 08:29:40 UTC MAIN commitmail json YAML

py-html-sanitizer: updated to 1.6.1

1.6:
Fixed another edge case where a tag which is allowed to be empty was erroneously removed if it contained not only whitespace but also a <br> tag.

1.5:
Fixed a few edge whitespace normalization edge cases and a bug where removing an empty tag removed all whitespace.
Added black for automatically formatting the Python code.
By default, links with target="_blank" get an additional rel="noopener" attribute (Article by Mathias Bynens). If you're overriding the list of allowed attributes for anchor tags you must add rel to your list.

(adam)

2018-08-07 08:26:13 UTC MAIN commitmail json YAML

py-greenlet: updated to 0.4.14

0.4.14:
- Support for C-SKY architecture
- Fixed support for ppc64 ABI
- Fixed support for Python 3.7

(adam)

2018-08-07 08:23:09 UTC MAIN commitmail json YAML

py-gssapi: updated to 1.5.1

1.5.1:
Remove warning about collections.abc usage for Python 3.7+

(adam)

2018-08-07 06:32:28 UTC MAIN commitmail json YAML

Updated devel/py-txaio, www/py-django-mptt

(adam)

2018-08-07 06:31:28 UTC MAIN commitmail json YAML

2018-08-07 06:28:03 UTC MAIN commitmail json YAML

py-txaio: updated to 18.7.1

18.7.1
- move to calver
- deprecate Python 3.3 support and CI testing

(adam)

2018-08-07 06:21:35 UTC MAIN commitmail json YAML

Updated archivers/py-lz4, graphics/py-altgraph, devel/py-macholib

(adam)

2018-08-07 06:19:43 UTC MAIN commitmail json YAML

py-macholib: updated to 1.10

macholib 1.10
* Add support for LC_NOTE and LC_BUILD_VERSION

(adam)

2018-08-07 06:18:54 UTC MAIN commitmail json YAML

py-altgraph: updated to 0.16.1

0.16.1:
Explicitly mark Python 3.7 as supported in wheel metadata.

0.16:
Add LICENSE file

(adam)

2018-08-07 06:17:46 UTC MAIN commitmail json YAML

py-lz4: updated to 2.1.0

v2.1.0:
Enhance support for block decompression with unknown size of decompressed data

(adam)

2018-08-07 06:09:43 UTC MAIN commitmail json YAML

Updated devel/py-serpent, textproc/py-vobject

(adam)

2018-08-07 06:09:09 UTC MAIN commitmail json YAML

2018-08-07 06:05:58 UTC MAIN commitmail json YAML

py-serpent: updated to 1.27

release 1.27:
fixed serialization of unicode elements in dicts and sets (this was a regression on Python 2.x)

release 1.26:
support for enum34 backport library for enums in older python versions.

(adam)

2018-08-06 23:05:05 UTC MAIN commitmail json YAML

doc: Updated www/thttpd to 2.29

(nia)

2018-08-06 20:17:32 UTC MAIN commitmail json YAML

Updated textproc/py-sphinx-rtd-theme, textproc/py-sphinx, textproc/py-openpyxl

(adam)

2018-08-06 20:15:45 UTC MAIN commitmail json YAML

py-openpyxl: updated to 2.5.5

2.5.5:

Bugfixes
Files with Mac epoch are read incorrectly
Cannot copy merged cells
Cannot access ws.active_cell

Pull Requests
Introduce read-support for images

(adam)

2018-08-06 20:13:47 UTC MAIN commitmail json YAML

py-sphinx: do not depend on py-sphinx-rtd-theme, but the other way around

(adam)

2018-08-06 20:12:57 UTC MAIN commitmail json YAML

py-sphinx-rtd-theme: updated to 0.4.1

v0.4.1:

Fixes
Line height adjustments for Liberation Mono

Other Changes
Add Sphinx as a dependency

(adam)

2018-08-06 19:59:05 UTC MAIN commitmail json YAML

Updated devel/py-async_generator, devel/py-pylint

(adam)

2018-08-06 19:58:41 UTC MAIN commitmail json YAML

py-pylint: updated to 2.1.1

What's New in Pylint 2.1.1?
* fix pylint crash due to misplaced-format-function not correctly handling class attribute.

(adam)

2018-08-06 19:55:28 UTC MAIN commitmail json YAML

py-async_generator: updated to 1.10

Async_Generator 1.10:

Features
- Add support for PEP 525-style finalization hooks via
  set_asyncgen_hooks() and get_asyncgen_hooks() functions. On
  Python 3.6+, these are aliases for the versions in sys; on
  Python 3.5, they're work-alike implementations. And,
  @async_generator generators now call these hooks at the
  appropriate times.

Fixes
- Package now properly includes license files.

(adam)

2018-08-06 19:52:30 UTC MAIN commitmail json YAML

Updated textproc/py-lxml, devel/py-uvloop, devel/waf, www/py-selenium

(adam)

2018-08-06 19:52:01 UTC MAIN commitmail json YAML

py-selenium: updated to 3.14.0

Selenium 3.14.0
* Fix doc of URL-related ExpectedCondition
* Added ExpectedCondition invisibility_of_element
* Swap out httplib for urllib3
* Be consistent with webdriver init kwarg service_log_path

(adam)

2018-08-06 19:45:10 UTC MAIN commitmail json YAML

waf: updated to 2.0.10

NEW IN WAF 2.0.10
* Add a task semaphore system
* Fix --help when no wscript is supplied
* Fix Fortran processing with generated Fortran files

(adam)

2018-08-06 19:42:55 UTC MAIN commitmail json YAML

py-uvloop: updated to 0.11.1

v0.11.1:

Bug Fixes
Fix server to shutdown when alive connections exist
Fix a few bugs and crashes in UDP layer
Fix FD leakage if spawning a subprocess fails
Fix libuv process handles leak when uv_spawn() fails

(adam)

2018-08-06 19:35:29 UTC MAIN commitmail json YAML

py-lxml: updated to 4.2.4

4.2.4:
Features added
* Allow using pkg-config for build configuration.

Bugs fixed
* Crash when moving an element to another document with
  Element.insert().

(adam)

2018-08-06 19:30:44 UTC MAIN commitmail json YAML

Updated security/py-asn1, security/py-asn1-modules

(adam)

2018-08-06 19:30:15 UTC MAIN commitmail json YAML

py-asn1-modules: updated to 0.2.2

Revision 0.2.2:
- Copyright notice extended to the year 2018
- Migrated references from SourceForge
- rfc2986 module added

(adam)

2018-08-06 19:21:51 UTC MAIN commitmail json YAML

py-asn1: updated to 0.4.4

Revision 0.4.4:
- Fixed native encoder type map to include all ASN.1 types
  rather than just ambiguous ones
- Fixed crash in .prettyPrint of Sequence and Set occurring
  at OPTIONAL components

(adam)

2018-08-06 16:18:41 UTC MAIN commitmail json YAML

doc: Updated math/py-scikit-learn to 0.19.2

(minskim)

2018-08-06 16:18:12 UTC MAIN commitmail json YAML

math/py-scikit-learn: Update to 0.19.2

This release is exclusively in order to support Python 3.7.

(minskim)

2018-08-06 15:54:38 UTC MAIN commitmail json YAML

www/thttpd: acme.com now supports TLS. No distfiles change.

(nia)

2018-08-06 15:51:41 UTC MAIN commitmail json YAML

www/thttpd: Update to 2.29.

Changes:

* Allow CGI to handle HTTP methods besides GET/HEAD/POST.

(nia)

2018-08-06 14:42:53 UTC MAIN commitmail json YAML

Patch original ends being installed as copied.
Just add to PLIST, as patch will disappear with next update.

(prlw1)

2018-08-06 13:25:56 UTC MAIN commitmail json YAML

Updated audio/libvorbis to 1.3.6nb1

(snj)

2018-08-06 13:25:38 UTC MAIN commitmail json YAML

2018-08-06 12:55:55 UTC MAIN commitmail json YAML

Updated archivers/zziplib to 0.13.69

(snj)

2018-08-06 12:55:38 UTC MAIN commitmail json YAML

zziplib: Update to 0.13.69.

Changes:
2018-03-15  guidod  <guidod@gmx.de>
    * fix a number of CVEs reported with special *.zip PoC files
    * man-pages are generated with new dbk2man.py - docbook xmlto is optional now
    * completing some doc strings while checking the new man-pages to look good
    * allow the zziptests.py testsuite to run with an installed /bin path
    * try to fix some issues on testing with non-installed binaries on non-linux platfors
    * update autotools to allow compiling on some newer Mac / Win machines
    * a zip-program is still required for testing, but some errors are gone when not there
    * complete the approximation of fnmatch for the test binaries (on platforms without)
    * allow windows __mmap.h to be simpler, helping with some problems on MingW
    * integrate 'fopen("wb")' from TexLive to be more portable across
    * more portability as well for helpers like strnlen being used in the sources
    * update doc refs to point to github instead of sf.net
    * update the sf.net pages to have a prominent hint on newer github.com location
    * release v0.13.69

(snj)

2018-08-06 11:12:27 UTC MAIN commitmail json YAML

2018-08-06 11:03:18 UTC MAIN commitmail json YAML

2018-08-06 10:58:43 UTC MAIN commitmail json YAML

2018-08-06 09:38:42 UTC MAIN commitmail json YAML

doc: Updated mail/pymsgauth to 2.1.0nb10

(schmonz)

2018-08-06 09:38:21 UTC MAIN commitmail json YAML

Update to latest filter3 patch (missed some static string methods, so
pymsgauth-confirm didn't work). Bump PKGREVISION.

(schmonz)

2018-08-06 05:03:07 UTC MAIN commitmail json YAML

doc: Updated sysutils/salt-docs to 2018.3.2

(tpaul)

2018-08-06 05:02:40 UTC MAIN commitmail json YAML

Update salt-docs to 2018.3.2

Sync salt-docs with current version of salt

(tpaul)

2018-08-06 05:01:49 UTC MAIN commitmail json YAML

doc: Updated sysutils/salt to 2018.3.2

(tpaul)

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

Update salt to 2018.3.2

pkgsrc changes:
- Add patch for NetBSD 8 support
- Update patches to note they can be removed in the next release
- Fix existing patch so it doesn't crash when running with swap enabled

Changes:
Version 2018.3.2 is a bugfix release for 2018.3.0.

The 2018.3.2 release contains only a small number of fixes, which are
detailed below.

This release fixes two critical issues.

The first is Issue #48038, which is a critical bug that occurs in a
multi-syndic setup where the same job is run multiple times on a minion.

The second issue is #48130. This bug appears in certain setups where the
Master reports a Minion time-out, even though the job is still running
on the Minion.

Both of these issues have been fixed with this release.

(tpaul)

2018-08-06 02:22:31 UTC MAIN commitmail json YAML

2018-08-06 02:17:04 UTC MAIN commitmail json YAML

2018-08-05 21:28:46 UTC MAIN commitmail json YAML

Updated emulators/atari800, net/lftp

(adam)

2018-08-05 21:27:46 UTC MAIN commitmail json YAML

lftp: updated to 4.8.4

Version 4.8.4:
* fixed a security vulnerability with "file:" file names.
* fixed mirror --flat.
* http: extract links from <source> tags.
* fixed upload of zero-length files over ftps.
* fixed assert on "mput -d".
* fixed a core dump.
* avoid multiple backup files of DHT cache.
* translations updated (uk, zh_CN).

(adam)

2018-08-05 21:27:04 UTC MAIN commitmail json YAML

atari800: updated to 4.0.0

Version 4.0.0:

This release brings four years of hard work of fellow Atari800 developers
on improvements and bugfixes of our favorite Atari emulator.

Ports to Atari ST/TT/Falcon, Android, Raspberry Pi and Sega Dreamcast
have been improved (some of them greatly).

CPU, SIO, ANTIC, GTIA, POKEY and PIA emulation has been corrected.

Atari800 now includes Altirra BIOS so it is now possible to run *some*
programs even without installing the original ROM files.

The total number of changes is so huge that major version bump was necessary.

Contrary to usual NEWS entries here follows a very incomplete list. It might
be updated in later releases. In the meantime please read DOC/ChangeLog
and the commit history in git for complete list of changes.

This release contains breaking changes in color handling. Users updating from
an earlier version should reset their color settings, or else the display
might be unreadable. To reset the color settings, do one of these:
* Select one of the presets available in the menu option "Display settings"->
  "Color preset"; or
* Run atari800 with the -color-preset command-line option, e.g.:
  atari800 -colors-preset standard; or
* Delete the emulator's config file (.atari800.cfg). Caution: you'll lose
  all Atari800 settings!

New features:
-------------
* Support for loading of CAS images with "fsk" chunks - images of
  copy-protected tapes can now be loaded, with SIO patch being disabled.
* Bit3 Full View 80 Column card emulation.
* New cartridge type 68: "Atrax 128 KB cartridge".
  Previously existing cartridge type 17: "Atrax 128 KB cartridge" was based
  on a misconception - real Atrax cartridges have their address and data
  lines intermixed, so type 17 could not be used with actual ROM dumps. So,
  type 17 has been renamed to "Decoded Atrax 128 KB cartridge", and new type
  68 has been added, whcih now can be used for Atrax ROM chip dumps.
* New cartridge types supported:
  - aDawliah 32 KB cartridge
  - aDawliah 64 KB cartridge

* new command line switch "-volume" (for 16bit sound output) that can set
  the output volume of the Atari 800 emulator with value from 0 to 100.

Changes:
--------
* The Sound Settings option "Fragment size" has been renamed to less cryptic
  "Hardware buffer size".
* Total emulator volume is lower now because the output has been shifted
  in order to fix a possible annoying humming sound in silence on some
  receivers (TV sets).

Fixes:
------
* Fixed computation of gamma adjustment - now it is applied to each of the
  three RGB channels separately.
* On systems that support synchronized sound: Fixed the emulator crashing
  when Dual POKEY was enabled while High Fidelity POKEY was turned off.
* Improve screen update routines in the Dreamcast port. They don't use
  DIRTYRECT anymore but are faster than the old routines when the whole
  screen is dirty.

(adam)

2018-08-05 20:42:10 UTC MAIN commitmail json YAML

games/plib: this needs to include another hid header to build on netbsd now.

(nia)

2018-08-05 19:57:22 UTC MAIN commitmail json YAML

doc: Updated net/dnscrypt-proxy2 to 2.0.16

(nia)

2018-08-05 18:31:02 UTC MAIN commitmail json YAML

devel/py-typing-extensions: Fix PLIST for py27 and py34

(minskim)

2018-08-05 17:59:55 UTC MAIN commitmail json YAML

audio/flite: add a buildlink file.

(nia)

2018-08-05 15:59:26 UTC MAIN commitmail json YAML

2018-08-05 15:02:36 UTC MAIN commitmail json YAML

doc: Added sysutils/qpasswd version 0.5

(schmonz)

2018-08-05 15:02:01 UTC MAIN commitmail json YAML

Add and enable qpasswd.

(schmonz)

2018-08-05 15:00:46 UTC MAIN commitmail json YAML

Add qpasswd, a set of password-checking tools for many
authentication schemes.

The qpasswd tools are meant for use with checkpassword-compatible
authentication programs like qmail-popup and qmail-smtpd. Currently, the
following auth mechanisms are supported: plain, login, apop, cram-md5,
cram-sha1, cram-ripemd, and digest-md5. The tools:

- multicheckpw (runs multiple checkpassword programs)

- checkqpasswd (for virtual users)

- checkpasswd (for system users in /etc/passwd)

(schmonz)

2018-08-05 12:51:55 UTC MAIN commitmail json YAML

Updated graphics/py-blockdiag, devel/py-dash

(adam)

2018-08-05 12:46:42 UTC MAIN commitmail json YAML

py-dash: updated to 4.7.1

v4.7.1:
New Features
- Modify to_dict to first try to convert using dict() before falling back to using pydash.helpers.iterator().

v4.7.0:
Misc
- Internal code optimizations.

(adam)

2018-08-05 12:40:53 UTC MAIN commitmail json YAML

2018-08-05 12:28:06 UTC MAIN commitmail json YAML

net/dnscrypt-proxy2: Update to 2.0.16. Take maintainership.

Changes:

- On Unix-like systems, the server can run as an unprivileged user,
and the main process will automatically restart if an error occurs.
- pledge() on OpenBSD.
- New "offline" mode to serve queries locally without contacting any
upstream servers. This can be especially useful along with the
cloaking module for local development.
- New logo.
- TTL of OPT records is properly ignored by the caching module.
- The proxy doesn't quit any more if new TCP connections cannot be
created.

(nia)

2018-08-05 11:40:29 UTC MAIN commitmail json YAML

nodejs needs a recent libuv (1.22.0).

Bump revision.

This fixes a build failure on my machine with an older libuv version
installed.

(bsiegert)

2018-08-05 10:54:58 UTC MAIN commitmail json YAML

Change MAINTAINER to a valid address.

(rjs)

2018-08-05 10:30:48 UTC MAIN commitmail json YAML

Updated fonts/py-fonttools, devel/py-test-xdist, devel/py-test, devel/py-test-asyncio, devel/py-pluggy, devel/py-test-relaxed

(adam)

2018-08-05 10:30:12 UTC MAIN commitmail json YAML

py-test-relaxed: updated to 1.1.4

1.1.4:
- :support:- backported Add missing universal wheel indicator in setup
  metadata.

1.1.3:
- :bug:- Fix the @raises helper decorator so it actually raises an
  exception when the requested exception is not raised by the decorated
  function. That's definitely not a confusing sentence.

(adam)

2018-08-05 10:27:30 UTC MAIN commitmail json YAML

py-test: bump py-pluggy DEPENDS

(adam)

2018-08-05 10:25:24 UTC MAIN commitmail json YAML

py-pluggy: updated to 0.7.1

pluggy 0.7.1:

Deprecations and Removals
- Deprecate the implprefix kwarg to PluginManager and instead
  expect users to start using explicit HookimplMarker everywhere.

Features
- Add .plugin member to PluginValidationError to access failing plugin during post-mortem.
- Add per implementation warnings support for hookspecs allowing for both
  deprecation and future warnings of legacy and (future) experimental hooks
  respectively.

Bug Fixes
- Fix a bug where _HookCaller.call_historic() would call the proc
  arg even when the default is None resulting in a TypeError.
- Fix problem when handling VersionConflict errors when loading setuptools plugins.

Improved Documentation
- Document how exceptions are handled and how the hook call loop
  terminates immediately on the first error which is then delivered
  to any surrounding wrappers.
- Docs rework including a much better introduction and comprehensive example
  set for new users. A big thanks goes out to @obestwalter for the great work!

Trivial/Internal Changes
- Break up the main monolithic package modules into separate modules by concern
- Automate setuptools wheels building and PyPi upload using TravisCI.
- Reorganize tests more appropriately by modules relating to each
  internal component/feature. This is in an effort to avoid (future)
  duplication and better separation of concerns in the test set.
- Add HookImpl.__repr__() for better debugging.
- Start using towncrier and a custom tox environment to prepare releases!

pluggy 0.7.0 (Unreleased)
* We discovered a deployment issue so this version was never released to PyPI, only the tag exists.

(adam)

2018-08-05 10:19:16 UTC MAIN commitmail json YAML

py-test-asyncio: updated to 0.9.0

0.9.0:
Python 3.7 support.
Remove event_loop_process_pool fixture and pytest.mark.asyncio_process_pool marker.

(adam)

2018-08-05 10:17:47 UTC MAIN commitmail json YAML

py-test: updated to 3.7.1

pytest 3.7.1:

Bug Fixes
- Raise immediately if approx() is given an expected value of a type it doesn't understand (e.g. strings, nested dicts, etc.).
- Correctly represent the dimensions of an numpy array when calling repr() on approx().
- Display the absolute path if cache_dir is not relative to the rootdir instead of failing.
- Fix compatibility problem with plugins and the warning code issued by fixture functions when they are called directly.
- Fix infinite recursion in pytest.approx with arrays in numpy<1.13.
- Pin pathlib2 to >=2.2.0 as we require __fspath__ support.
- Fix TypeError when the assertion message is bytes in python 3.

pytest 3.7.0:

Deprecations and Removals
- pytest_namespace has been deprecated.
  See the documentation for pytest_namespace hook for suggestions on how to deal
  with this in plugins which use this functionality.
- Calling a fixture function directly, as opposed to request them in a test function, now issues a RemovedInPytest4Warning. It will be changed into an error in pytest 4.0.
  This is a great source of confusion to new users, which will often call the fixture functions and request them from test functions interchangeably, which breaks the fixture resolution model.

Features
- New package fixture scope: fixtures are finalized when the last test of a *package* finishes. This feature is considered **experimental**, so use it sparingly.
- Node.add_marker now supports an append=True/False parameter to determine whether the mark comes last (default) or first.
- Fixture caplog now has a messages property, providing convenient access to the format-interpolated log messages without the extra data provided by the formatter/handler.
- New --trace option to enter the debugger at the start of a test.
- Introduce pytester.copy_example as helper to do acceptance tests against examples from the project.

Bug Fixes
- Fix a bug where fixtures overridden by direct parameters (for example parametrization) were being instantiated even if they were not being used by a test.
- Fix ApproxNumpy initialisation argument mixup, abs and rel tolerances were flipped causing strange comparsion results.
  Add tests to check abs and rel tolerances for np.array and test for expecting nan with np.array()
- Fix truncated locals output in verbose mode.

Improved Documentation
- Correct the usage documentation of --last-failed-no-failures by adding the missing --last-failed argument in the presented examples, because they are misleading and lead to think that the missing argument is not needed.

Trivial/Internal Changes
- Now a README.md file is created in .pytest_cache to make it clear why the directory exists.

(adam)

2018-08-05 10:12:47 UTC MAIN commitmail json YAML

py-test-xdist: updated to 1.22.5

pytest-xdist 1.22.5:
Bug Fixes
- Revert change that dropped support for pytest<3.4 and require six.
  This change caused problems in some installations, and was a mistaken
  in the first place as we should not change version requirements
  in bug-fix releases unless they fix an actual bug.

pytest-xdist 1.22.4:
Bug Fixes
- Remove last references to obsolete py.code.
  Remove some unnecessary references to py.builtin.
- Workaround cpu detection on Travis CI.

(adam)

2018-08-05 10:10:43 UTC MAIN commitmail json YAML

py-fonttools: updated to 3.29.0

3.29.0:
- [feaLib] In the OTL table builder, when the name table is excluded
  from the list of tables to be build, skip compiling featureNames blocks,
  as the records referenced in FeatureParams table don't exist.
- [otBase] Try ExtensionLookup if other offset-overflow methods fail.
- [feaLib] Added support for explicit subtable; break statements in
  PairPos lookups; previously these were ignored.
- [cffLib.specializer] Make sure the stack depth does not exceed maxstack - 1,
  so that a subroutinizer can insert subroutine calls.
- [otTables] Added support for fixing offset overflow errors occurring inside
  MarkBasePos subtables.
- [subset] Write the default output file extension based on --flavor option,
  or the value of TTFont.sfntVersion.
- [unicodedata] Updated Blocks, Scripts and ScriptExtensions for Unicode 11.
- [xmlWriter] Added context manager to XMLWriter class to autoclose file
  descriptor on exit.
- [psCharStrings] Optimize the charstring's bytecode by encoding as integers
  all float values that have no decimal portion.
- [ttFont] Fixed missing import of TTLibError exception.
- [feaLib] Allow any languages other than dflt under DFLT script.

(adam)

2018-08-04 21:56:55 UTC MAIN commitmail json YAML

doc: Updated net/py-grpcio to 1.13.0

(minskim)

2018-08-04 21:56:47 UTC MAIN commitmail json YAML

net/py-grpcio: Update to 1.13.0

Notable changes:
- Eliminate grpcio package dependency on protobuf package
- A new grpc.Channel.close method is introduced and correct use of
  gRPC Python now requires that channels be closed after use.
- Python errors have become more verbose.
- GRPC_ENABLE_FORK_SUPPORT=false is no longer required when running
  fork-exec.
- Relying on an explicit with statement or explicitly calling
  Channel.close to release the underlying resources in Channel objects
  is now a required coding practice starting in v1.13.0.

(minskim)

2018-08-04 21:43:53 UTC MAIN commitmail json YAML

devel/libcompizconfig: PKGREVISION bump for protobuf update

(minskim)

2018-08-04 21:42:28 UTC MAIN commitmail json YAML

biology/plinkseq: Requires c++11 to build with protobuf-3.6.0

(minskim)

2018-08-04 21:41:01 UTC MAIN commitmail json YAML

doc: Updated net/dnsdist to 1.3.2

(minskim)

2018-08-04 21:40:53 UTC MAIN commitmail json YAML

net/dnsdist: Update to 1.3.2

New features:
- Add support for more than one TLS certificate
- Add a negative ttl option to the packet cache
- Add the ability to dump a summary of the cache content
- Add netmask-based {ex,in}clusions to DynblockRulesGroup
- Add DNSAction.NoOp to debug dynamic blocks
- Add SetECSAction to set an arbitrary outgoing ecs value
- Add support for rotating certificates and keys

(minskim)

2018-08-04 21:38:59 UTC MAIN commitmail json YAML

net/mosh: Requires c++11 to build with protobuf-3.6.0

(minskim)

2018-08-04 21:36:16 UTC MAIN commitmail json YAML

2018-08-04 21:33:02 UTC MAIN commitmail json YAML

doc: Updated devel/py-protobuf to 3.6.0

(minskim)

2018-08-04 21:32:53 UTC MAIN commitmail json YAML

2018-08-04 21:26:09 UTC MAIN commitmail json YAML

doc: Updated net/grpc to 1.13.1

(minskim)

2018-08-04 21:25:59 UTC MAIN commitmail json YAML

net/grpc: Update to 1.13.1

Notable changes since 1.11.0:
- Make GrpcBuffer{Reader|Writer} Public
- Compile Out Tracers Option
- Add RpcException.StatusCode property
- gRPC stats will only be collected for debug builds or if
  GRPC_COLLECT_STATS is defined.
- cmake install now also installs should also installs the roots.pem
  file

(minskim)

2018-08-04 21:20:26 UTC MAIN commitmail json YAML

doc: Updated devel/protobuf to 3.6.0

(minskim)

2018-08-04 21:19:39 UTC MAIN commitmail json YAML

2018-08-04 19:05:13 UTC MAIN commitmail json YAML

2018-08-04 17:12:45 UTC MAIN commitmail json YAML

doc: Updated security/stunnel to 5.48

(schmonz)

2018-08-04 17:12:28 UTC MAIN commitmail json YAML

Update to 5.48. From the changelog:

* Security bugfixes
  - Fixed requesting client certificate when specified
    as a global option.
* New features
  - Certificate subject checks modified to accept certificates
    if at least one of the specified checks matches.

(schmonz)

2018-08-04 11:35:23 UTC MAIN commitmail json YAML

games/simgear: add missing things to buildlink.

(nia)

2018-08-04 11:33:01 UTC MAIN commitmail json YAML

2018-08-04 10:44:15 UTC MAIN commitmail json YAML

doc: Updated mail/pymsgauth to 2.1.0nb9

(schmonz)

2018-08-04 10:43:58 UTC MAIN commitmail json YAML

Run under Python 3 (using my new "filter3" patch). Bump PKGREVISION.

(schmonz)

2018-08-04 09:54:05 UTC MAIN commitmail json YAML

Updated devel/py-ipython5, textproc/json-c

(adam)

2018-08-04 09:53:05 UTC MAIN commitmail json YAML

json-c: updated to 0.13.1

0.13.1:
* Bump the major version of the .so library generated up to 4.0 to avoid
  conflicts because some downstream packagers of json-c had already done
  their own bump to ".so.3" for a much older 0.12 release.
* Add const size_t json_c_object_sizeof()
* Avoid invalid free (and thus a segfault) when ref_count gets < 0
* fix handling of custom double formats that include a ".0"
* Avoid uninitialized variable warnings in json_object_object_foreach
* Issue 396: fix build for certain uClibc based systems.
* Add a top level fuzz directory for fuzzers run by OSS-Fuzz

0.13:
This release, being three and a half years after the 0.12 branch (f84d9c),
  has quite a number of changes included.  The following is a sampling of
  the most significant ones.

Since the 0.12 release, 250 issues and pull requests have been closed.
See issues_closed_for_0.13.md for a complete list.

Deprecated and removed features:
--------------------------------
* All internal use of bits.h has been eliminated.  The file will be removed.
        Do not use: hexdigit(), error_ptr(), error_descrition() and it_error()
* lh_abort() is deprecated.  It will be removed.

Behavior changes:
-----------------
* Tighten the number parsing algorithm to raise errors instead of truncating
    the results.  For example 12.3.4 or 2015-01-15, which now return null.
        See commit 99d8fc

* Use size_t for array length and size.  Platforms where sizeof(size_t) != sizeof(int) may not be backwards compatible
        See commits 45c56b, 92e9a5 and others.

* Check for failue when allocating memory, returning NULL and errno=ENOMEM.
        See commit 2149a04.

* Change json_object_object_add() return type from void to int, and will return -1 on failures, instead of exiting. (Note: this is not an ABI change)

New features:
-------------
* We're aiming to follow RFC 7159 now.

* Add a couple of additional option to json_object_to_json_string_ext:
        JSON_C_TO_STRING_PRETTY_TAB
        JSON_C_TO_STRING_NOSLASHESCAPE

* Add a json_object_object_add_ex() function to allow for performance
        improvements when certain constraints are known to be true.

* Make serialization format of doubles configurable, in two different ways:
        Call json_object_set_serializer with json_object_double_to_json_string and a custom
        format on each double object, or
        Call json_c_set_serialization_double_format() to set a global or thread-wide format.

* Add utility function for comparing json_objects - json_object_equal()

* Add a way to copy entire object trees: json_object_deep_copy()
* Add json_object_set_<type> function to modify the value of existing json_object's
without the need to recreate them.  Also add a json_object_int_inc function to
adjust an int's value.
* Add support for JSON pointer, RFC 6901.  See json_pointer.h
* Add a json_util_get_last_err() function to retrieve the string describing the
cause of errors, instead of printing to stderr.
* Add perllike hash function for strings, and json_global_set_string_hash() 8f8d03d
* Add a json_c_visit() function to provide a way to iterate over a tree of json-c objects.

Notable bug fixes and other improvements:
-----------------------------------------
* Make reference increment and decrement atomic to allow passing json objects between threads.
* Fix json_object_object_foreach to avoid uninitialized variable warnings.
* Improve performance by removing unneeded data items from hashtable code and reducing duplicate hash computation.
* Improve performance by storing small strings inside json_object
* Improve performance of json_object_to_json_string by removing variadic printf. commit 9ff0f49
* Issue 371: fix parsing of "-Infinity", and avoid needlessly copying the input when doing so.
* Fix stack buffer overflow in json_object_double_to_json_string_format() - commit 2c2deb87
* Fix various potential null ptr deref and int32 overflows
* Issue 332: fix a long-standing bug in array_list_put_idx() where it would attempt to free previously free'd entries due to not checking the current array length.
* Issue 195: use uselocale() instead of setlocale() in json_tokener to behave better in threaded environments.
* Issue 275: fix out of bounds read when handling unicode surrogate pairs.
* Ensure doubles that happen to be a whole number are emitted with ".0" - commit ca7a19
* for Visual Studio, use a snprintf/vsnprintf wrapper that ensures the string is terminated.
* Fix double to int cast overflow in json_object_get_int64.
* Clamp double to int32 when narrowing in json_object_get_int.
* Use strtoll() to parse ints - instead of sscanf
* Miscellaneous smaller changes, including removing unused variables, fixing warning
about uninitialized variables adding const qualifiers, reformatting code, etc...

(adam)

2018-08-04 09:29:59 UTC MAIN commitmail json YAML

py-ipython5: updated to 5.8.0

IPython 5.8.0
* Update inspecting function/methods for future-proofing.

(adam)

2018-08-04 04:08:13 UTC MAIN commitmail json YAML

doc: Updated games/simgear to 2018.2.2

(nia)

2018-08-04 04:04:28 UTC MAIN commitmail json YAML

2018-08-04 03:59:22 UTC MAIN commitmail json YAML

doc: Updated graphics/osg to 3.4.1

(nia)

2018-08-04 01:27:17 UTC MAIN commitmail json YAML

doc/TODO: osg updated.

(nia)

2018-08-04 01:07:34 UTC MAIN commitmail json YAML

graphics/osg: Use ffmpeg4 in buildlink.

(nia)

2018-08-04 01:05:10 UTC MAIN commitmail json YAML

2018-08-03 21:21:21 UTC MAIN commitmail json YAML

devel/libcompizconfig: Do not depend on an unavailable package

devel/libinotify is not available on Linux.

(minskim)

2018-08-03 21:17:47 UTC MAIN commitmail json YAML

wm/compiz: Do not suggest an unavailable option

devel/libinotify is not available on Linux.

(minskim)

2018-08-03 16:19:30 UTC MAIN commitmail json YAML

doc: Updated net/gallery-dl to 1.5.0

(leot)

2018-08-03 16:19:11 UTC MAIN commitmail json YAML

gallery-dl: Update net/gallery-dl to 1.5.0

Changes:
1.5.0
-----
- Added support for:
  - `behance` - https://www.behance.net/
  - `myportfolio` - https://www.myportfolio.com/ (#95)
- Added custom format string options to handle long strings (#92, #94)
  - Slicing: `"{field[10:40]}"`
  - Replacement: `"{field:L40/too long/}"`
- Improved frame rate handling for ugoira conversions
- Improved private access token usage on `deviantart`
- Fixed metadata extraction for some images on `nijie`
- Fixed chapter extraction on `mangahere`
- Removed `whatisthisimnotgoodwithcomputers`
- Removed support for Python 3.3

(leot)

2018-08-03 14:03:09 UTC MAIN commitmail json YAML

2018-08-03 09:19:56 UTC MAIN commitmail json YAML

Added dependency to camlp4 option for devel/js_of_ocaml

Said package needs devel/ocaml-deriving-ocsigen to compile the entirety
of its camlp4 stuff.

(jaapb)

2018-08-03 08:51:48 UTC MAIN commitmail json YAML

Fixed www/ocsigenserver to build with ocaml 4.07.

This comes from upstream Github issue 152, which has not yet been
released. I expect to be able to remove this with a new upstream release.

(jaapb)

2018-08-03 06:43:41 UTC MAIN commitmail json YAML

gegl complains about outdated babl, express this in makefile.

(maya)

2018-08-02 17:00:28 UTC MAIN commitmail json YAML

doc: Updated geography/osm2pgsql to 0.96.0

(gdt)

2018-08-02 17:00:15 UTC MAIN commitmail json YAML

osm2pgsql: Update to 0.96.0

Upstream does not provide NEWS, but reading the git commit messages
from 0.94, this is mostly bugfixes and a number of efficiency
improvements.

(gdt)

2018-08-02 16:19:07 UTC MAIN commitmail json YAML

doc: Updated www/drupal7 to 7.59nb1

(prlw1)

2018-08-02 16:18:47 UTC MAIN commitmail json YAML

2018-08-02 15:40:04 UTC MAIN commitmail json YAML

Updated finance/py-braintree, www/py-beautifulsoup4, devel/py-test-flake8, www/py-MechanicalSoup

(adam)

2018-08-02 15:39:31 UTC MAIN commitmail json YAML

py-MechanicalSoup: updated to 0.10.0

Version 0.10

Main changes:
Added StatefulBrowser.refresh() to reload the current page with the same request.
StatefulBrowser.follow_link, StatefulBrowser.submit_selected() and the new StatefulBrowser.download_link now sets the Referer: HTTP header to the page from which the link is followed.
Added method StatefulBrowser.download_link, which will download the contents of a link to a file without changing the state of the browser.
The selector argument of Browser.select_form can now be a bs4.element.Tag in addition to a CSS selector.
Browser.submit and StatefulBrowser.submit_selected accept a larger number of keyword arguments. Arguments are forwarded to requests.Session.request.

Internal changes:
StatefulBrowser.choose_submit will now ignore input elements that are missing a name-attribute instead of raising a KeyError.
Private methods Browser._build_request and Browser._prepare_request have been replaced by a single method Browser._request.

(adam)

2018-08-02 15:36:55 UTC MAIN commitmail json YAML

py-test-flake8: updated to 1.0.2

1.0.2
- Test on Python 3.7
- Escape a regex tring with r""

(adam)

2018-08-02 15:31:03 UTC MAIN commitmail json YAML

py-beautifulsoup4: updated to 4.6.1

4.6.1:

* Stop data loss when encountering an empty numeric entity, and
  possibly in other cases.

* Preserve XML namespaces introduced inside an XML document, not just
  the ones introduced at the top level.

* Added a new formatter, "html5", which represents void elements
  as "<element>" rather than "<element/>".

* Fixed a problem where the html.parser tree builder interpreted
  a string like "&foo " as the character entity "&foo;"

* Correctly handle invalid HTML numeric character entities
  which reference code points that are not Unicode code points. Note
  that this is only fixed when Beautiful Soup is used with the
  html.parser parser -- html5lib already worked and I couldn't fix it
  with lxml.

* Improved the warning given when no parser is specified.

* When markup contains duplicate elements, a select() call that
  includes multiple match clauses will match all relevant
  elements.

* Fixed code that was causing deprecation warnings in recent Python 3
  versions.

* Fixed a Windows crash in diagnose() when checking whether a long
  markup string is a filename.

* Stopped HTMLParser from raising an exception in very rare cases of
  bad markup.

* Fixed a bug where find_all() was not working when asked to find a
  tag with a namespaced name in an XML document that was parsed as
  HTML.

* You can get finer control over formatting by subclassing
  bs4.element.Formatter and passing a Formatter instance into (e.g.)
  encode().

* You can pass a dictionary of `attrs` into
  BeautifulSoup.new_tag. This makes it possible to create a tag with
  an attribute like 'name' that would otherwise be masked by another
  argument of new_tag.

* Clarified the deprecation warning when accessing tag.fooTag, to cover
  the possibility that you might really have been looking for a tag
  called 'fooTag'.

(adam)

2018-08-02 15:26:03 UTC MAIN commitmail json YAML

py-braintree: updated to 3.47.0

3.47.0
Add processor respone code and processor response text to authorization adjustments subfield in transaction response.
Add support for Samsung Pay

(adam)

2018-08-02 15:19:23 UTC MAIN commitmail json YAML

py-pylint: updated to 2.1.0

What's New in Pylint 2.1?

  * trailing-comma-tuple gets emitted for yield statements as well.

  * Get only the arguments of the scope function for redefined-argument-from-local

  * Add a check misplaced-format-function which is emitted if format function is used on
    non str object.

  * chain.from_iterable no longer emits dict-{}-not-iterating when dealing with dict values and keys

  * Demote the try-except-raise message from an error to a warning (E0705 -> W0706)

  * Correctly handle the new name of the Python implementation of the abc module.

    * Modules with __getattr__ are exempted by default from no-member

      There's no easy way to figure out if a module has a particular member when
      the said module uses __getattr__, which is a new addition to Python 3.7.
      Instead we assume the safe thing to do, in the same way we do for classes,
      and skip those modules from checking.

    * Fix a false positive invalid name message when method or attribute name is longer then 30 characters.

    * Include the type of the next branch in no-else-return

    * Fix inconsistent behaviour for bad-continuation on first line of file

    * Fix not being able to disable certain messages on the last line through
      the global disable option

    * Don't emit useless-return when we have a single statement that is the return itself

      We still want to be explicit when a function is supposed to return
      an optional value; even though pass could still work, it's not explicit
      enough and the function might look like it's missing an implementation.

  * Fix false-positive undefined-variable for self referential class name in lamdbas

    * Don't crash when pylint is unable to infer the value of an argument to next()

    * Don't emit not-an-iterable when dealing with async iterators.

      But do emit it when using the usual iteration protocol against
      async iterators.

  * Can specify a default docstring type for when the check cannot guess the type

(adam)

2018-08-02 15:13:34 UTC MAIN commitmail json YAML

py-astroid: updated to 2.0.2

What's New in astroid 2.0.2?
  * Stop repeat inference attempt causing a RuntimeError in Python3.7

  *  infer_call_result can raise InferenceError so make sure to handle that for the call sites
      where it is used

    infer_call_result started recently to raise InferenceError for objects for which it
    could not find any returns. Previously it was silently raising a StopIteration,
    which was especially leaking when calling builtin methods.
    Since it is after all an inference method, it is expected that it
    could raise an InferenceError rather than returning nothing.

(adam)

2018-08-02 15:03:03 UTC MAIN commitmail json YAML

Updated databases/redis, graphics/png, graphics/pngcrush

(adam)

2018-08-02 15:02:12 UTC MAIN commitmail json YAML

pngcrush: updated to 1.8.13

Version 1.8.13 (built with libpng-1.6.32 and zlib-1.2.11)
  Add "exit(0)" after processing "-version" argument, to avoid
    displaying the Usage information
  Fix problem with MacOS prior to Sierra; it uses CLOCK_MONOTONIC
    for some other purpose

Version 1.8.12 (built with libpng-1.6.31 and zlib-1.2.11)
  Added POWERPC-VSX support.
  Report whether using optimizations.
  Added filter_method 6 (same as filter 5 with -speed).
  Added "methods" 149-176 (that use filter_method 6).
  Changed default verbosity from 1 (normal) to 0 (quiet). Use "-v" to get
    the previous default behavior and "-v -v" to get the previous "verbose"
    behavior. The "-s" (silent) and "-q" (quiet) options behave as before.

(adam)

2018-08-02 15:01:12 UTC MAIN commitmail json YAML

png: updated to 1.6.35

Version 1.6.35:
* Replaced the remaining uses of png_size_t with size_t (Cosmin)
* Fixed the calculation of row_factor in png_check_chunk_length
* Added missing parentheses to a macro definition

(adam)

2018-08-02 14:47:34 UTC MAIN commitmail json YAML

redis: updated to 4.0.10

Redis 4.0.10 fixes a number of important issues:

* Important security issues related to the Lua scripting engine.
  Please check https://github.com/antirez/redis/issues/5017
  for more information.

* A bug with SCAN, SSCAN, HSCAN and ZSCAN, that may not return all the elements.
  We also add a regression test that can trigger the issue often when present, and
  may in theory be able to find unrelated regressions.

* A PSYNC2 bug is fixed: Redis should not expire keys when saving RDB files
  because otherwise it is no longer possible to use such RDB file as a base
  for partial resynchronization. It no longer represents the right state.

* Compatibility of AOF with RDB preamble when the RDB checksum is disabled.

* Sentinel bug that in some cases prevented Sentinel to detect that the master
  was down immediately. A delay was added to the detection.

* Other minor issues.

(adam)

2018-08-02 14:06:43 UTC MAIN commitmail json YAML

Updated www/py-django, devel/py-ipython

(adam)

2018-08-02 14:06:23 UTC MAIN commitmail json YAML

py-ipython: updated to 6.5.0

IPython 6.5.0

Miscellaneous bug fixes and compatibility with Python 3.7.

* Autocompletion fix for modules with out __init__.py
* update the %pastebin magic to use dpaste.com instead of GitHub Gist
  which now requires authentication
* Fix crash with multiprocessing

(adam)

2018-08-02 14:02:21 UTC MAIN commitmail json YAML

py-django: updated to 1.11.5

1.11.5:
Fix CVE-2018-14574: Open redirect possibility in CommonMiddleware

If the CommonMiddleware and the APPEND_SLASH setting are both enabled, and if the project has a URL pattern that accepts any path ending in a slash (many content management systems have such a pattern), then a request to a maliciously crafted URL of that site could lead to a redirect to another site, enabling phishing and other attacks.

CommonMiddleware now escapes leading slashes to prevent redirects to other domains.

(adam)

2018-08-02 12:57:17 UTC MAIN commitmail json YAML

doc: Updated lang/coq to 8.8.1

(jaapb)

2018-08-02 12:57:03 UTC MAIN commitmail json YAML

Updated package lang/coq to version 8.8.1.

The list of improvements, additions, bugfixes and so on is quite large;
those interested can refer to the CHANGES file in the distribution.

The reference manual has been fully ported to Sphinx.

(jaapb)

2018-08-02 12:28:53 UTC MAIN commitmail json YAML

doc: Updated lang/npm to 6.3.0

(fhajny)

2018-08-02 12:28:35 UTC MAIN commitmail json YAML

lang/npm: Update tp 6.3.0.

## v6.3.0 (2018-08-01):

- `figgy-pudding@3.2.0`
- `cacache@11.1.0`

## v6.3.0-next.0 (2018-07-25):

### NEW FEATURES

- `npm version` now supports a `--preid` option to specify the preid
  for prereleases. For example, `npm version premajor --preid rc` will tag
  a version like `2.0.0-rc.0`.

### MESSAGING IMPROVEMENTS

- Make `npm audit fix` message provide better instructions for
  vulnerabilities that require manual review.
- Fix missing colon next to tarball url in new `npm view` output.
- Use the defaut OTP explanation everywhere except when the context is
  "OTP-aware" (like when setting double-authentication). This improves
  the overall CLI messaging when prompting for an OTP code.

### MISC

- Use the extracted `stringify-package` package.
- `wrappy` was previously added to dependencies in order to flatten
  it, but we no longer do legacy-style for npm itself, so it has been
  removed from `package.json`.

## v6.2.0 (2018-07-13):

### FEATURES

- Add support for tab-separated output for `npm audit` data with the
  `--parseable` flag.
- Add new `sign-git-commit` config to control whether the git commit
  itself gets signed, or just the tag (which is the default).

### FIXES

- Do not use `SET` to fetch the env in git-bash or Cygwin.

### DEPENDENCY BUMPS

- `request@2.81.0`: Downgraded to allow better deduplication. This
  does introduce a bunch of `hoek`-related audit reports, but they don't
  affect npm itself so we consider it safe. We'll upgrade `request` again
  once `node-gyp` unpins it.
- `node-gyp@3.7.0`
_ `cli-table3@0.5.0`: `cli-table2` is unmaintained and required
  `lodash`. With this dependency bump, we've removed `lodash` from our tree,
  which cut back tarball size by another 300kb.
- `npm-audit-report@1.3.1`
- Add `cli-table3` to bundleDeps.
- Make `standard` happy.

## v6.2.0-next.1 (2018-07-05):

- Remove postinstall script that depended on source files, thus
  preventing `npm@next` from being installable from the registry.

## v6.2.0-next.0 (2018-06-28):

### NEW FEATURES

- You can now disable the update notifier entirely by using
  `--no-update-notifier` or setting it in your config with `npm config
  set update-notifier false`.
- When `npm run-script <script>` fails due to a typo or missing
  script, npm will now do a "did you mean?..." for scripts that do exist.

### BUGFIXES

- Fix the regular expression matching in `xcode_emulation` in
  `node-gyp` to also handle version numbers with multiple-digit major
  versions which would otherwise break under use of XCode 10.
- Stop trying to hoist/dedupe bundles dependencies.
- Add synopsis to brief help for `npm audit` and suppress trailing
  newline.
- Exclude /.github directory from npm tarball.
- Add suggestion to use a temporary cache instead of `npm cache clear
  --force`.

### DEPENDENCY SHUFFLE!

We did some reshuffling and moving around of npm's own dependencies.
This significantly reduces the total bundle size of the npm pack,
from 8MB to 4.8MB for the distributed tarball! We also moved around
what we actually commit to the repo as far as devDeps go.

- Flatten and dedupe our dependencies!
- Remove unused direct dependency `ansi-regex`.
- Reshuffle ansi-regex for better deduping.
- Reshuffle strip-ansi for better deduping.
- Reshuffle is-fullwidth-code-point for better deduping.
- Add fake-registry, npm-registry-mock replacement.

### DEPENDENCIES

- `tar@4.4.3`
- `pacote@8.1.6`
- `libcipm@2.0.0`
- `request@2.87.0`
- `which@1.3.1`
- `tar@4.4.4`
- `JSONStream@1.3.3`
- `is-cidr@2.0.6`
- `marked@0.4.0`
- `tap@12.0.1`
- `npm-profile@3.0.2`
- `uuid@3.3.2`

(fhajny)

2018-08-02 12:18:41 UTC MAIN commitmail json YAML

doc: Updated lang/nodejs to 10.8.0

(fhajny)

2018-08-02 12:18:24 UTC MAIN commitmail json YAML

lang/nodejs: Update to 10.8.0.

No notable changes besides update to npm 6.2.0, which we do not
bundle.

(fhajny)

2018-08-02 11:44:15 UTC MAIN commitmail json YAML

doc: Updated x11/libdrm to 2.4.93

(wiz)

2018-08-02 11:44:06 UTC MAIN commitmail json YAML

libdrm: update to 2.4.93.

Christian K旦nig (1):
      amdgpu: make sure to set CLOEXEC on duplicated FDs

Emil Velikov (10):
      xf86drm: drmGetDevice2: error out if the fd has unknown subsys
      xf86drm: introduce drm_device_has_rdev() helper
      xf86drm: Fold drmDevice processing into process_device() helper
      xf86drm: Allocate drmDevicePtr's on stack
      xf86drm: introduce a get_real_pci_path() helper
      xf86drm: Add drmDevice support for virtio_gpu
      tests/drmdevices: install alongside other utilities
      tests/drmdevice: add a couple of printf headers
      drmdevice: convert the tabbed output into a tree
      drmdevice: print the correct host1x information

Jan Vesely (3):
      amdgpu: Take a lock before removing devices from fd_tab hash table.
      amdgpu/util_hash_table: Add helper function to count the number of entries in hash table
      amdgpu: Destroy fd_hash table when the last device is removed.

Jos辿 Roberto de Souza (2):
      intel: Introducing Whiskey Lake platform
      intel: Introducing Amber Lake platform

Kevin Strasser (1):
      xf86drm: Be sure to closedir before return

Marek Ol邸叩k (3):
      amdgpu: don't call add_handle_to_table for KMS BO exports
      amdgpu: add amdgpu_bo_handle_type_kms_noimport
      configure.ac: bump version to 2.4.93

Mariusz Ceier (1):
      xf86drm: Fix error path in drmGetDevice2

Michel D辰nzer (2):
      Always pass O_CLOEXEC when opening DRM file descriptors
      Revert "amdgpu: don't call add_handle_to_table for KMS BO exports"

Rob Clark (5):
      freedreno: add user ptr to fd_ringbuffer
      freedreno: add fd_ringbuffer_new_object()
      freedreno: small cleanup
      freedreno: slight reordering
      freedreno/msm: "stateobj" support

(wiz)

2018-08-02 02:57:47 UTC MAIN commitmail json YAML

2018-08-02 02:47:06 UTC MAIN commitmail json YAML

doc: Updated sysutils/dmidecode to 3.1nb3

(msaitoh)

2018-08-02 02:45:50 UTC MAIN commitmail json YAML

Add two officially recommended patch to sysutils/dmidecode

2018-08-01: Avoid OOB read on invalid entry point length

Don't let the entry point checksum verification run beyond the end
of the buffer holding it (32 bytes). This bug was discovered by
Lionel Debroux using the AFL fuzzer and AddressSanitizer.
Signed-off-by: Jean Delvare <jdelvare@suse.de>

2018-08-01: Validate structure completeness before decoding

Ensure that the whole DMI structure fits in the announced table
length before performing any action on it. Otherwise we might end
up reading beyond the end of our memory buffer. This bug was
discovered by Lionel Debroux using the AFL fuzzer and
AddressSanitizer. Its probability is very low, as it requires a DMI
table corrupted in one of two very specific ways to trigger. This
bug exists since dmidecode version 2.9, although it is hard to
test because option --from-dump was only introduced in version
2.10.
Signed-off-by: Jean Delvare <jdelvare@suse.de>

(msaitoh)

2018-08-01 21:00:10 UTC MAIN commitmail json YAML

Colord depends on lcms2.

(youri)

2018-08-01 19:20:42 UTC MAIN commitmail json YAML

doc/CHANGES-2018: fix time warps

When updating a package, some package authors use local time for the
entries in doc/CHANGES, and my system clock was off by several days. To
detect and fix these problems early, pkglint now checks that the dates
are properly ordered.

(rillig)

2018-08-01 19:18:19 UTC MAIN commitmail json YAML

2018-08-01 18:01:32 UTC MAIN commitmail json YAML

mk/fetch/github.mk: document that PKGBASE influences GitHub variables

See https://mail-index.netbsd.org/pkgsrc-users/2018/07/thread1.html#027251

(rillig)

2018-08-01 17:43:25 UTC MAIN commitmail json YAML

2018-08-01 15:50:46 UTC MAIN commitmail json YAML

doc: Updated sysutils/dc-tools to 1.6nb1

(tpaul)

2018-08-01 15:50:16 UTC MAIN commitmail json YAML

Honor LDFLAGS, now builds with PKGSRC_USE_RELRO=yes

Bump PKGREVISION
ok <abs>

(tpaul)

2018-08-01 15:01:24 UTC MAIN commitmail json YAML

doc: Updated x11/qt5-qtwebkit to 5.212.0.alpha2nb8

(maya)

2018-08-01 15:01:09 UTC MAIN commitmail json YAML

qtwebkit: don't disable JIT on netbsd, declare functions like linux.

this works well enough to browse javascript websites with otter-browser,
which needed paxctl +m, although I didn't try it without these changes.

XXX this package might be crashing from feeding bogus values to
posix_memalign.

(maya)

2018-08-01 14:30:48 UTC MAIN commitmail json YAML

doc: Updated www/otter-browser to 0.9.99.1

(maya)

2018-08-01 14:30:29 UTC MAIN commitmail json YAML

otter-browser: update to 0.9.99.1
Additionally, this fixes the build.
Mark paxctl +m, I probably needed this because I locally
enabled qt-webkit's JIT.

0.9.99.1:
    added importer for OPML files;
    added support for abp: protocol for adding new content filtering profiles;
    added ability to open selection as link if it macthes URL format;
    various fixes and minor improvements for Feeds reader.

0.9.99:
    initial version of Feeds Reader:
        Atom and RSS 2.0 parsers;
        support for categories;
        ability to preview feeds before subscribing using view-feed: protocol;
    added action to take page screenshot;
    some minor optimizations.

0.9.98:
several enhancements in experimental backend for QtWebEngine (Blink):

    initial work on global history support;
    added support for alternative stylesheets;
    added support for fetching lists of search engines, feeds and links;

initial work on Feeds Reader;
several bug fixes and some minor optimizations.

0.9.97:
    added initial version of Tab History panel;
    some minor optimizations.

0.9.96:
added initial version of Tab History panel;
some minor optimizations

0.9.95:
    added initial version of toolbar widget for viewing downloads from current session;
    added some new keyboard shortcuts;
    some minor fixes.

0.9.94:
    added new default style for Start Page by Kamil N��cek;
    added interface allowing to manage list of hosts using customized website overrides;
    several bug fixes and some optimizations.

0.9.93:
    added Page Information panel;
    added support for external icons for User Scripts;
    some minor fixes and optimizations.

0.9.92:
    improved support for styling tab bar text;
    added support for deleting User Scripts in Addons Manager;
    restored inline URLs completion;
    added action for peeking tab contents;
    multiple bug fixes and stability improvements.

0.9.91:
reworked toolbars:

    added support for visibility toggle button (collapsing contents);
    fixed unified toolbar and titlebar style under macOS;
    toolbar visibility and location is now stored per main window;

improved sidebar(s):

    added ability to add new sidebars;
    allow to change their location by drag and drop;

vastly improved error pages:

    special error pages are now used instead of SSL warning dialogs;
    blocked content triggers dedicated error pages;

improved User Agents configuration;
added support for managing multiple proxy configurations and setting them per page or host;
reworked internal actions handling system allows to specify parameters for actions trigerred by keyboard shortcuts and mouse gestures;
vastly decreased import time for large bookmark files;
added module for listing opened windows and tabs;
improved styling under Windows, Unity and macOS;
added new default icon theme by Kamil N��cek;
item views can now allocate extra space to predefined column other than last one;
added action to set, reset or toggle an option;
global editing actions now apply to focused single and multi line text edit widgets too;
added ability to drop URLs onto bookmark bars;
spell checking is now available in other multi line text edit widgets;
added action to control multimedia playback rate;
keyboard shortcuts are now validated while editing;
added support for customizing F12 menu;
implemented "Validate Using" menu;
added support for configurable Fast Forward rules;

0.9.12:
    greatly improved tab bar:
        allow to detach tabs by dragging them away;
        allow to drop URLs and tabs from other windows;
        added option to show embedded tab thumbnails;
        improved handling of visibility of close button;
        tabs demanding attention are drawn using bold font;
        improved RTL support;
        decreased default tab padding;
        tab text is no longer centered horizontally;
        fixed status tip messages while rearranging tabs;
    improved KDE5 and Unity integration:
        added support for progress information;
        added support for desktop actions;
    several MacOS X specific fixes and improvements:
        improved rendering of platform style;
        added dock icon menu;
        added support for listing applications associated with given MIME type;
    added support for Windows jump list;
    added fullscreen support for QtWebKit backend;
    open file path is saved;
    improved RTL support in address and search fields;
    many other fixes and improvements.

0.9.11:
    added initial support for storing passwords:
        support for multiple credential sets per host;
        basic passwords management;
        disabled by default (no encryption yet);
    added crash reporter;
    added support for muting tab media;
    F12 menu now exposes all modes for Images visibility (including new option to show cached images only) and Plugins;
    QtWebEngine backend is now capable of saving pages in MIME HTML format and as complete set of files;
    added new toolbar visibility settings for full screen mode;
    added new widget for showing content blocking details;
    added ability to customize progress bar;
    added ability to add loading progress information widgets to any toolbar;
    various improvements in handling of content blocking profiles:
        added new definitions and updated existing;
        added option to add custom blocking rules;
        profiles are now grouped by type;
    various minor fixes and improvements.

(maya)

2018-08-01 13:40:41 UTC MAIN commitmail json YAML

py-configobj: Depend on py-six

(gdt)

2018-08-01 09:32:27 UTC MAIN commitmail json YAML

TLS is broken on NetBSD aarch64, so force use of pthread_{set,get}specific

(jmcneill)

2018-08-01 07:40:59 UTC MAIN commitmail json YAML

Updated www/p5-CGI-Simple to 1.16

(wen)

2018-08-01 07:40:14 UTC MAIN commitmail json YAML

Update to 1.16

Upstream changes:
1.16  2018-07-25 MANWAR
      - Made t/manifest.t AUTHOR only (RT #125383).
      - Removed +x bits from test scripts.

(wen)

2018-08-01 07:37:23 UTC MAIN commitmail json YAML

Updated www/p5-App-Nopaste to 1.012

(wen)

2018-08-01 07:36:27 UTC MAIN commitmail json YAML

Update to 1.012

Upstream changes:
1.012  2018-07-08 03:56:39Z
        - add GitLab service

(wen)

2018-08-01 07:15:37 UTC MAIN commitmail json YAML

doc: Updated mail/qmail-run to 20180801

(schmonz)

2018-08-01 07:15:21 UTC MAIN commitmail json YAML

Depend on pkgtools/pkg_alternatives and a new enough mail/qmail to rely
on finding "nbcheckpassword" (which, at present, might be either
checkpassword-pam or DJB's original).

Depend (unconditionally) on mail/qmail-rejectutils, instead of having it
as an option on mail/qmail.

Bump version.

(schmonz)

2018-08-01 07:10:46 UTC MAIN commitmail json YAML

doc: Updated mail/qmail to 1.03nb36

(schmonz)

2018-08-01 07:10:27 UTC MAIN commitmail json YAML

Depend on new enough sysutils/checkpassword{,-pam} such that qmail-run
can (by itself depending on pkgtools/pkg_alternatives) expect to find
"nbcheckpassword".

Remove 'qmail-rejectutils' option, which will become an unconditional
dependency in qmail-run.

Bump PKGREVISION.

(schmonz)

2018-08-01 07:07:16 UTC MAIN commitmail json YAML

Updated textproc/p5-Text-Quoted to 2.10

(wen)

2018-08-01 07:05:29 UTC MAIN commitmail json YAML

Update to 2.10

Upstream changes:
2.10 2018-07-26
- Add no_separators option (RJBS)
- Fix "Negative repeat count does nothing" warning (thanks to Stefan
  Bühler)
- Fix Makefile.PL for perl 5.26 where "." is not in @INC by default
  (thanks to Petr Písař)

(wen)

2018-08-01 06:53:51 UTC MAIN commitmail json YAML

doc: Updated sysutils/checkpassword-pam to 0.99nb1

(schmonz)

2018-08-01 06:53:34 UTC MAIN commitmail json YAML

Offer an 'nbcheckpassword' alternative to pkg_alternatives(8). Bump PKGREVISION.

(schmonz)

2018-08-01 06:52:47 UTC MAIN commitmail json YAML

doc: Updated sysutils/checkpassword to 0.90nb1

(schmonz)

2018-08-01 06:52:29 UTC MAIN commitmail json YAML

Offer an 'nbcheckpassword' alternative to pkg_alternatives(8). Bump PKGREVISION.

(schmonz)

2018-08-01 05:34:39 UTC MAIN commitmail json YAML

doc: Updated security/putty to 0.69nb4

(maya)

2018-08-01 05:34:18 UTC MAIN commitmail json YAML

2018-07-31 22:06:54 UTC MAIN commitmail json YAML

caribou: Add missing dependencies.

(jperkin)

2018-07-31 21:14:33 UTC MAIN commitmail json YAML

2018-07-31 21:10:29 UTC MAIN commitmail json YAML

2018-07-31 19:13:10 UTC MAIN commitmail json YAML

2018-07-31 16:44:37 UTC MAIN commitmail json YAML

doc: Added www/py-http_ece version 1.0.5

(nia)

2018-07-31 16:44:21 UTC MAIN commitmail json YAML

www/py-http_ece: Import http_ece-1.0.5

py-http_ece is a simple implementation of the HTTP encrypted
content-encoding (RFC 8188).

(nia)

2018-07-31 16:15:33 UTC MAIN commitmail json YAML

chat/tootstream: Add a patch removing the use of the 'async' keyword,
allowing it to be used with Python 3.7.

(nia)

2018-07-31 16:14:29 UTC MAIN commitmail json YAML

chat/py-mastodon: Add a patch to avoid the use of the 'async' keyword,
allowing it to be used with Python 3.7.

(nia)