Commit graph

289637 commits

Author SHA1 Message Date
adam
4a93293af5 py-ipykernel: updated to 5.1.0
5.1.0
- Fix message-ordering bug that could result in out-of-order executions,
  especially on Windows
- Fix classifiers to indicate dropped Python 2 support
- Remove some dead code
- Support rich-media responses in inspect_requests (tooltips)

5.0.0
- Drop support for Python 2. ipykernel 5.0 requires Python >= 3.4
- Add support for IPython's asynchronous code execution
- Update release process in CONTRIBUTING.md
2018-11-29 18:24:36 +00:00
nia
f1783887e2 libretro-dolphin: -lrt seems needed on netbsd 2018-11-29 17:12:13 +00:00
joerg
ec0accb457 Given that the launchd support is useless in the given form anyway, just
drop it. Bump revision.
2018-11-29 17:09:12 +00:00
joerg
d4a1a1ccc2 Revert last, which is rather obviously wrong from the context of the
package.
2018-11-29 16:59:16 +00:00
wiz
2b9db6edd2 doc: Updated x11/proxymngr to 1.0.4nb2 2018-11-29 16:28:18 +00:00
wiz
75a3dd692d proxymngr: make sure target directory for config exists.
pkglint fix: Add PKG_SYSCONFBASE to BUILD_DEFS.

Bump PKGREVISION.
2018-11-29 16:28:08 +00:00
wiz
9d9f03e38d doc: Updated security/polkit to 0.115nb2 2018-11-29 16:21:18 +00:00
wiz
aa12876027 polkit: make sure target directory for config file copying exists.
Bump PKGREVISION.
2018-11-29 16:21:07 +00:00
nia
96ffc003bc doc: Updated lang/erlang to 21.1.3 2018-11-29 15:21:37 +00:00
nia
721a655dea erlang: Update to 21.1.3.
---------------------------------------------------------------------
 --- erts-10.1.3 -----------------------------------------------------
 ---------------------------------------------------------------------

 Note! The erts-10.1.3 application can *not* be applied independently
       of other applications on an arbitrary OTP 21 installation.

       On a full OTP 21 installation, also the following runtime
       dependency has to be satisfied:
       -- kernel-6.1 (first satisfied in OTP 21.1)


 --- Improvements and New Features ---

  OTP-15430    Application(s): erts
               Related Id(s): ERIERL-237

               Added an optional ./configure flag to compile the
               emulator with spectre mitigation:
               --with-spectre-mitigation

               Note that this requires a recent version of GCC with
               support for spectre mitigation and the
               --mindirect-branch=thunk flag, such as 8.1.


 Full runtime dependencies of erts-10.1.3: kernel-6.1, sasl-3.0.1,
 stdlib-3.5


 ---------------------------------------------------------------------
 --- compiler-7.2.7 --------------------------------------------------
 ---------------------------------------------------------------------

 The compiler-7.2.7 application can be applied independently of other
 applications on a full OTP 21 installation.

 --- Fixed Bugs and Malfunctions ---

  OTP-15353    Application(s): compiler
               Related Id(s): ERL-753

               Fixed a bug where incorrect code was generated
               following a binary match guard.


 Full runtime dependencies of compiler-7.2.7: crypto-3.6, erts-9.0,
 hipe-3.12, kernel-4.0, stdlib-2.5


 ---------------------------------------------------------------------
 --- erts-10.1.2 -----------------------------------------------------
 ---------------------------------------------------------------------

 Note! The erts-10.1.2 application can *not* be applied independently
       of other applications on an arbitrary OTP 21 installation.

       On a full OTP 21 installation, also the following runtime
       dependency has to be satisfied:
       -- kernel-6.1 (first satisfied in OTP 21.1)


 --- Fixed Bugs and Malfunctions ---

  OTP-15421    Application(s): erts

               Fixed a rare bug where files could be closed on a
               normal instead of an IO scheduler, resulting in system
               instability if the operation blocked.


 Full runtime dependencies of erts-10.1.2: kernel-6.1, sasl-3.0.1,
 stdlib-3.5


 ---------------------------------------------------------------------
 --- public_key-1.6.3 ------------------------------------------------
 ---------------------------------------------------------------------

 The public_key-1.6.3 application can be applied independently of
 other applications on a full OTP 21 installation.

 --- Fixed Bugs and Malfunctions ---

  OTP-15367    Application(s): public_key

               Add DSA SHA2 oids in public_keys ASN1-spec and
               public_key:pkix_sign_types/1


 Full runtime dependencies of public_key-1.6.3: asn1-3.0, crypto-3.8,
 erts-6.0, kernel-3.0, stdlib-3.5


 ---------------------------------------------------------------------
 ---------------------------------------------------------------------
 ---------------------------------------------------------------------
2018-11-29 15:21:26 +00:00
taca
27c6d8cb06 doc: Updated net/samba4 to 4.9.3 2018-11-29 14:47:40 +00:00
taca
56c9409edd net/samba4: update to 4.9.3
=============================
                   Release Notes for Samba 4.9.3
                         November 27, 2018
                   =============================


This is a security release in order to address the following defects:

o  CVE-2018-14629 (Unprivileged adding of CNAME record causing loop in AD
                   Internal DNS server)
o  CVE-2018-16841 (Double-free in Samba AD DC KDC with PKINIT)
o  CVE-2018-16851 (NULL pointer de-reference in Samba AD DC LDAP server)
o  CVE-2018-16852 (NULL pointer de-reference in Samba AD DC DNS servers)
o  CVE-2018-16853 (Samba AD DC S4U2Self crash in experimental MIT Kerberos
                   configuration (unsupported))
o  CVE-2018-16857 (Bad password count in AD DC not always effective)


=======
Details
=======

o  CVE-2018-14629:
   All versions of Samba from 4.0.0 onwards are vulnerable to infinite
   query recursion caused by CNAME loops. Any dns record can be added via
   ldap by an unprivileged user using the ldbadd tool, so this is a
   security issue.

o  CVE-2018-16841:
   When configured to accept smart-card authentication, Samba's KDC will call
   talloc_free() twice on the same memory if the principal in a validly signed
   certificate does not match the principal in the AS-REQ.

   This is only possible after authentication with a trusted certificate.

   talloc is robust against further corruption from a double-free with
   talloc_free() and directly calls abort(), terminating the KDC process.

   There is no further vulnerability associated with this issue, merely a
   denial of service.

o  CVE-2018-16851:
   During the processing of an LDAP search before Samba's AD DC returns
   the LDAP entries to the client, the entries are cached in a single
   memory object with a maximum size of 256MB.  When this size is
   reached, the Samba process providing the LDAP service will follow the
   NULL pointer, terminating the process.

   There is no further vulnerability associated with this issue, merely a
   denial of service.

o  CVE-2018-16852:
   During the processing of an DNS zone in the DNS management DCE/RPC server,
   the internal DNS server or the Samba DLZ plugin for BIND9, if the
   DSPROPERTY_ZONE_MASTER_SERVERS property or DSPROPERTY_ZONE_SCAVENGING_SERVERS
   property is set, the server will follow a NULL pointer and terminate.

   There is no further vulnerability associated with this issue, merely a
   denial of service.

o  CVE-2018-16853:
   A user in a Samba AD domain can crash the KDC when Samba is built in the
   non-default MIT Kerberos configuration.

   With this advisory we clarify that the MIT Kerberos build of the Samba
   AD DC is considered experimental.  Therefore the Samba Team will not
   issue security patches for this configuration.

o  CVE-2018-16857:
   AD DC Configurations watching for bad passwords (to restrict brute forcing
   of passwords) in a window of more than 3 minutes may not watch for bad
   passwords at all.

For more details and workarounds, please refer to the security advisories.
2018-11-29 14:46:46 +00:00
taca
62e74af709 doc: Removed sysutils/ruby-activesambaldap 2018-11-29 14:38:30 +00:00
taca
bc3b4c157e sysutils/ruby-activesambaldap: remove ruby-activesambaldap
Remove ruby-activesambaldap which is not maintained for long time.
2018-11-29 14:37:24 +00:00
taca
c03d421ec2 sysutils/Makefile: remove ruby-activesambaldap 2018-11-29 14:36:46 +00:00
jperkin
7b43da8718 doc: Updated lang/rust to 1.30.1nb1 2018-11-29 14:32:24 +00:00
jperkin
52a85611ad rust: Ensure the bundled http-parser is used.
Trying to mix and match pkgsrc and bundled dependencies resulted in conflicts
between libgit and http-parser, such that cargo was unable to fetch indexes
from crates.io with spurious network error regarding Content-Type headers.

While here add a note about why these dependencies are currently disabled.

Bump PKGREVISION.
2018-11-29 14:32:14 +00:00
taca
d48e6ff5c8 doc: update ruby-rails51 related packages to 5.1.6.1
devel/ruby-activesupport51
	devel/ruby-activemodel51
	devel/ruby-activejob51
	www/ruby-actionview51
	www/ruby-actionpack51
	www/ruby-actioncable51
	databases/ruby-activerecord51
	mail/ruby-actionmailer51
	devel/ruby-railties51
	www/ruby-rails51
2018-11-29 14:18:52 +00:00
taca
934343dc59 www/ruby-rails51: update to 5.1.6.1
No change except version.
2018-11-29 14:17:44 +00:00
taca
9e412ce011 devel/ruby-railties51: update to 5.1.6.1
Remove junk ".DS_Store" files from distribution.
2018-11-29 14:17:20 +00:00
taca
a7605f447c mail/ruby-actionmailer51: update to 5.1.6.1
No change except version.
2018-11-29 14:16:47 +00:00
taca
192dadf028 databases/ruby-activerecord51: update to 5.1.6.1
No change except version.
2018-11-29 14:16:31 +00:00
taca
686732511c www/ruby-actioncable51: update to 5.1.6.1
No change except version.
2018-11-29 14:16:13 +00:00
taca
4d5689190b www/ruby-actionpack51: update to 5.1.6.1
pkgsrc change: reset PKGREVISION.
2018-11-29 14:15:56 +00:00
taca
89d1d56234 www/ruby-actionview51: update to 5.1.6.1
No change except version.
2018-11-29 14:15:32 +00:00
taca
fd2759ddfe devel/ruby-activejob51: update to 5.1.6.1
## Rails 5.1.6.1 (November 27, 2018) ##

*   Do not deserialize GlobalID objects that were not generated by Active Job.

    Trusting any GlobaID object when deserializing jobs can allow attackers to access
    information that should not be accessible to them.

    Fix CVE-2018-16476.

    *Rafael Mendonça França*
2018-11-29 14:15:16 +00:00
taca
0a78c444d6 devel/ruby-activemodel51: update to 5.1.6.1
No change except version.
2018-11-29 14:14:25 +00:00
taca
f37892a022 devel/ruby-activesupport51: update to 5.1.6.1
No change except version.
2018-11-29 14:14:05 +00:00
taca
d43ed11098 lang/ruby/rails.mk: start update of ruby-rails51 to 5.1.6.1
Start update of Ruby on Rails to 5.1.6.1.
2018-11-29 14:12:40 +00:00
leot
3d304c7528 doc: Updated graphics/imlib2 to 1.5.1 2018-11-29 13:59:31 +00:00
leot
b01a543f54 imlib2: Update graphics/imlib to 1.5.1
pkgsrc changes:
- Remove lround patches: lround is no longer used
- Remove #ifndef blocks to rip out XShm support.  Unfortunately
  the logic is much more convoluted now and #ifndef parts of the code
  no longer scale.
  Please note that this can break support on Interix!

Changes:
1.5.1
*****
Kim Woelders (13):
 - Fix build without HAVE_X11_SHM_FD (T6752)
 - XPM loader: Fix potential use of uninitialized value (T6746)
 - BMP loader: Fix infinite loop with invalid bmp images (T6749)
 - PNM loader: Simplify (fixing ASCII format parsing issues T6751)
 - BMP loader: Fix warnings found with -O3
 - Maximum image dimension should be 32767, not 32766
 - PNG loader: Correct various error handling cases
 - Add missing const to imlib_apply_filter() script argument
 - Warning fixes in imlib2_... programs
 - imlib2_view: Limit window dimensions to 32767
 - grab.c: Fix gcc8 warning
 - imlib2_conv.c: Fix gcc8 warning
 - 1.5.1.

1.5.0
*****
Alexander Volkov (3):
 - put a check for shared memory inside __imlib_ShmGetXImage()
 - introduce __imlib_ShmDestroyXImage() instead of __imlib_ShmDetach()
 - Add support for MIT-SHM FD-passing

Kim Woelders (19):
 - XPM loader: Fix incorrect image invalidation.
 - Make some more functions static.
 - Introduce __imlib_LoadImageData()
 - Remove redundant CAST_IMAGE()
 - imlib2_grab: Always use imlib_create_scaled_image_from_drawable() to grab image
 - imlib_create_scaled_image_from_drawable(): speed up 1:1 case
 - imlib_create_scaled_image_from_drawable(): Drop shape handling if unshaped
 - Indent
 - Autofoo cosmetics
 - Strip trailing whitespace, cosmetics
 - Fix potential OOB memory access if border elements are negative
 - Fix potential OOB memory access if border sizes exceed image dimensions
 - Introduce IMLIB2_SHM_OPT to enable overriding/testing SHM modes
 - Add IMLIB2_XIMAGE_CACHE_COUNT to enable testing the ximage cache
 - Refactor the XImage cache
 - Add imlib_get_cache_used()
 - Expose XImage cache control functions
 - Drop -Waggregate-return
 - 1.5.0.
2018-11-29 13:58:58 +00:00
taca
69f8f1c6c5 doc: note update of ruby-rails42 related pacakges to 4.2.11
devel/ruby-activesupport42
	devel/ruby-activejob42
	devel/ruby-activemodel42
	databases/ruby-activerecord42
	www/ruby-actionview42
	www/ruby-actionpack42
	mail/ruby-actionmailer42
	devel/ruby-railties42
	www/ruby-rails42
2018-11-29 13:58:23 +00:00
taca
1df80547ec www/ruby-rails42: update to 4.2.11
No change except version.
2018-11-29 13:52:50 +00:00
taca
003c9254ae devel/ruby-railties42: update to 4.2.11
No change except version.
2018-11-29 13:52:38 +00:00
taca
e8c12da853 mail/ruby-actionmailer42: update to 4.2.11
No change except version.
2018-11-29 13:52:27 +00:00
taca
a7b204a99d www/ruby-actionpack42: update to 4.2.11
No change except version.
2018-11-29 13:52:12 +00:00
taca
8abe15b0a9 www/ruby-actionview42: update to 4.2.11
No change except version.
2018-11-29 13:51:51 +00:00
taca
716e5bf6e0 databases/ruby-activerecord42: update to 4.2.11
No change except version.
2018-11-29 13:51:19 +00:00
taca
0a0077299d devel/ruby-activejob42: update to 4.2.11
## Rails 4.2.11 (November 27, 2018) ##

*   Do not deserialize GlobalID objects that were not generated by Active Job.

    Trusting any GlobaID object when deserializing jobs can allow attackers to access
    information that should not be accessible to them.

    Fix CVE-2018-16476.

    *Rafael Mendonça França*
2018-11-29 13:49:44 +00:00
taca
89badf562c devel/ruby-activesupport42: update to 4.2.11
No change except version.
2018-11-29 13:49:00 +00:00
taca
5cdc1b1e28 lang/ruby: start ruby on rails42 to 4.2.11
Start update of Ruby on Rails to 4.2.11.
2018-11-29 13:47:23 +00:00
taca
9ea95daf01 doc/TODO: -claws-mail and + clamav
- claws-mail-3.17.0
+ clamav-0.100.2
2018-11-29 13:20:38 +00:00
jaapb
2b6ead7569 Updated www/eliom to compile with tyxml 4.3.0 and use xml-light. 2018-11-29 12:04:23 +00:00
jaapb
502fe82fb4 doc: Updated textproc/ocaml-tyxml to 4.3.0 2018-11-29 12:00:58 +00:00
jaapb
0e9f6ddfb3 Updated package textproc/ocaml-tyxml to version 4.3.0.
This mostly changes the build system to dune and removes deprecated
libraries. Some minor changes as well.
2018-11-29 12:00:45 +00:00
jaapb
ab740aae1a Updated package devel/js_of_ocaml to use dune and new ocaml-tyxml 2018-11-29 11:59:21 +00:00
jaapb
c522923e67 Removed nonexisting file from distinfo in devel/ocaml-lwt 2018-11-29 11:58:00 +00:00
jaapb
fb0a2897e0 Updated package devel/ocaml-ppx_optcomp to use dune 2018-11-29 11:56:54 +00:00
prlw1
603b5ccdc7 Revbump for libcanberra gstreamer change. 2018-11-29 11:21:45 +00:00
prlw1
8504628c6e doc: Updated audio/libcanberra to 0.30 2018-11-29 11:20:45 +00:00