Commit graph

308492 commits

Author SHA1 Message Date
pho
ad097bb0b3 Import th-abstraction-0.3.1.0
This package normalizes variations in the interface for inspecting
datatype information via Template Haskell so that packages and support
a single, easier to use informational datatype while supporting many
versions of Template Haskell.
2019-12-31 15:34:56 +00:00
pho
b2e4b5dc61 doc: Updated devel/hs-tagged to 0.8.6 2019-12-31 14:47:21 +00:00
pho
7f322416fe Update to tagged-0.8.6
0.8.6 [2018.07.02]
* Make the Read(1) instances for Proxy ignore the precedence argument,
  mirroring similar changes to base here.
* Fix a bug in the Floating instance for Tagged in which logBase was
  defined in terms of (**).
* Avoid incurring some dependencies when using recent GHCs.

0.8.5
* Support Data.Bifoldable/Data.Bitraversable in base for GHC 8.1+.
* Backport the Eq1, Ord1, Read1, and Show1 instances for Proxy from
  base-4.9
* Add Eq1/2, Ord1/2, Read1/2, and Show1/2 instances for Tagged

0.8.4
* Backport the Alternative, MonadPlus, and MonadZip instances for
  Proxy from base-4.9
* Add Bits, FiniteBits, IsString, and Storable instances for Tagged

0.8.3
* Manual Generic1 support to work around a bug in GHC 7.6
* Invert the dependency to supply the Semigroup instance ourselves
  when building on GHC 8

0.8.2
* deepseq support.
* Widened template-haskell dependency bounds.

0.8.1
* Add KProxy to the backwards compatibility Data.Proxy module.
* Add a Generic instance to Proxy.

0.8.0.1
* Fix builds on GHC 7.4.

0.8
* Added Data.Proxy.TH, based on the code from Frames by Anthony Cowley.
* Removed reproxy from Data.Proxy. This is a bad API decision, but it
  isn't present in GHC's Data.Proxy, and this makes the API more
  stable.

0.7.3
* Support Data.Bifunctor in base for GHC 7.9+.
2019-12-31 14:47:06 +00:00
rhialto
2581aace0c doc: Updated emulators/vice to 3.4 2019-12-31 14:42:45 +00:00
rhialto
b3b83871fa emulators/vice: update to 3.4
Much shortened from vice-3.4/NEWS or http://vice-emu.sourceforge.net/NEWS :

* Changes in Vice 3.4
=====================

We also needs support in fixing the various keyboard mappings, please test the
keyboard in your favourite OS and port and report any problems.

** General
----------

- Remove support for Syllable OS, SCO, QNX4, QNX6, SGI, AIX, OpenStep/NextStep/
  Rhapsody, Solaris/OpenIndiana and remaining traces of Minix, NeXT, SKYOS,
  UNIXWARE, Sortix

- Remove remaining traces of support for WATCOM, MSVC, OpenWatcom

- Remove aRts support

- Remove YUV rendering

- Remove generation of .chm, .hlp and .info files. Please use the .pdf or .html

- skip building x64 unless --enable-x64 is passed to configure

- do not use the new/experimental 8580 filters unless --enable-new8580filter
  is passed to configure

- update pattern generator for uninitialized ram. changed defaults so all
  raminitpattern tests pass.

- remove block device disk image (rawdrive) "support". in linux it was never
  needed (just use the device file) and on windows it was never implemented.

- added support for the IP232 protocol that was used by the long lost VICE1.19
  hack, and which is supported by tcpser for emulating DTR/DCD (carrier detect)

- various userport rs232 fixes

- always save gifs as gif89

- added a couple shift flags to keyboard maps to support virtual cbm/ctrl and
  mandatory pressed host modifiers. not all keymaps have been updated yet.

- ACIA IRQ fix

- create empty half tracks when mounting d64. fixes skew.d64

- new headless port that can be enabled by passing --enable-headlessui to
  configure. this can be used to build an emulator without video output, which
  may be useful for scripting.

[ omitted sections: ]
** Autostart fixes
** Snapshot fixes
** 6510 fixes
** VIC-II fixes
** VIC fixes
** SID fixes
** Monitor
** vdrive
** C-64 fixes
** C-128 fixes
** Gtk3 UI
** SDL fixes
** macOS fixes
2019-12-31 14:42:22 +00:00
nia
bb19ae1755 doc: Updated net/dnscrypt-proxy2 to 2.0.36 2019-12-31 14:41:50 +00:00
nia
139964bd66 dnscrypt-proxy2: Update to 2.0.36
* Version 2.0.36
 - New option: `block_undelegated`. When enabled, `dnscrypt-proxy` will
directly respond to queries for locally-served zones (https://sk.tl/2QqB971U)
and nonexistent zones that should have been kept local, but are frequently
leaked. This reduces latency and improves privacy.
 - Conformance: the `DO` bit is now set in synthetic responses if it was
set in a question, and the `AD` bit is cleared.
 - The `miegkg/dns` module was updated to version 1.1.26, that fixes a
security issue affecting non-encrypted/non-authenticated DNS traffic. In
`dnscrypt-proxy`, this only affects the forwarding feature.
2019-12-31 14:41:38 +00:00
pho
9fa07db2be doc: Updated devel/hs-transformers to 0.5.6.2 2019-12-31 14:36:37 +00:00
pho
f6b0a98312 Update to transformers-0.5.6.2
0.5.6.2 Ross Paterson Feb 2019
* Further backward compatability fix

0.5.6.1 Ross Paterson Feb 2019
* Backward compatability fix for MonadFix ListT instance

0.5.6.0 Ross Paterson Feb 2019
* Generalized type of except
* Added Control.Monad.Trans.Writer.CPS and Control.Monad.Trans.RWS.CPS
* Added Contravariant instances
* Added MonadFix instance for ListT

0.5.5.0 Ross Paterson Oct 2017
* Added mapSelect and mapSelectT
* Renamed selectToCont to selectToContT for consistency
* Defined explicit method definitions to fix space leaks
* Added missing Semigroup instance to `Constant` functor

0.5.4.0 Ross Paterson Feb 2017
* Migrate Bifoldable and Bitraversable instances for Constant

0.5.3.1 Ross Paterson Feb 2017
* Fixed for pre-AMP environments

0.5.3.0 Ross Paterson Feb 2017
* Added AccumT and SelectT monad transformers
* Deprecated ListT
* Added Monad (and related) instances for Reverse
* Added elimLift and eitherToErrors
* Added specialized definitions of several methods for efficiency
* Removed specialized definition of sequenceA for Reverse
* Backported Eq1/Ord1/Read1/Show1 instances for Proxy

0.5.2.0 Ross Paterson Feb 2016
* Re-added orphan instances for Either to deprecated module
* Added lots of INLINE pragmas

0.5.1.0 Ross Paterson Jan 2016
* Bump minor version number, required by added instances

0.5.0.2 Ross Paterson Jan 2016
* Backported extra instances for Identity

0.5.0.1 Ross Paterson Jan 2016
* Tightened GHC bounds for PolyKinds and DeriveDataTypeable

0.5.0.0 Ross Paterson Dec 2015
* Control.Monad.IO.Class in base for GHC >= 8.0
* Data.Functor.{Classes,Compose,Product,Sum} in base for GHC >= 8.0
* Added PolyKinds for GHC >= 7.4
* Added instances of base classes MonadZip and MonadFail
* Changed liftings of Prelude classes to use explicit dictionaries

0.4.3.0 Ross Paterson Mar 2015
* Added Eq1, Ord1, Show1 and Read1 instances for Const
2019-12-31 14:36:26 +00:00
rhialto
b88412f48d options.description: add x64 and cpuhistory, for emulators/vice. 2019-12-31 14:30:09 +00:00
pho
3837f26e45 doc: Added devel/hs-fail version 4.9.0.0 2019-12-31 14:25:09 +00:00
pho
9f21ffd50b Import fail-4.9.0.0
This package contains the Control.Monad.Fail module providing the
MonadFail class that became available in base-4.9.0.0 for older base
package versions.

This package turns into an empty package when used with GHC versions
which already provide the Control.Monad.Fail module to make way for
GHC's own Control.Monad.Fail module.
2019-12-31 14:24:57 +00:00
pho
74eb1cf601 doc: Updated math/hs-scientific to 0.3.6.2 2019-12-31 14:11:06 +00:00
pho
f238ae0f35 Update to scientific-0.3.6.2
0.3.6.2
* Due to a regression introduced in 0.3.4.14 the RealFrac methods and
  floatingOrInteger became vulnerable to a space blowup when applied
  to scientifics with huge exponents. This has now been fixed again.

0.3.6.1
* Fix build on GHC < 8.

0.3.6.0
* Make the methods of the Hashable, Eq and Ord instances safe to use
  when applied to scientific numbers coming from untrusted
  sources. Previously these methods first converted their arguments to
  Rational before applying the operation. This is unsafe because
  converting a Scientific to a Rational could fill up all space and
  crash your program when the Scientific has a huge base10Exponent.

  Do note that the hash computation of the Hashable Scientific
  instance has been changed because of this improvement!

  Thanks to Tom Sydney Kerckhove (@NorfairKing) for pushing me to fix
  this.

* fromRational :: Rational -> Scientific now throws an error instead
  of diverging when applied to a repeating decimal. This does mean it
  will consume space linear in the number of digits of the resulting
  scientific. This makes "fromRational" and the other Fractional
  methods "recip" and "/" a bit safer to use.

* To get the old unsafe but more efficient behaviour the following
  function was added: unsafeFromRational :: Rational -> Scientific.

* Add alternatives for fromRationalRepetend:

  fromRationalRepetendLimited
      :: Int -- ^ limit
      -> Rational
      -> Either (Scientific, Rational)
            (Scientific, Maybe Int)

  and:

  fromRationalRepetendUnlimited
      :: Rational -> (Scientific, Maybe Int)

  Thanks to Ian Jeffries (@seagreen) for the idea.

0.3.5.3
* Dropped upper version bounds of dependencies because it's to much
  work to maintain.

0.3.5.2
* Remove unused ghc-prim dependency.
* Added unit tests for read and scientificP

0.3.5.1
* Replace use of Vector from vector with Array from primitive.

0.3.5.0
* Export scientificP :: ReadP Scientific
  (Courtesy of Shlok Datye @shlok)

0.3.4.15
* Fix build for base < 4.8.

0.3.4.14
* Some minor performance improvements.

0.3.4.13
* Support criterion-1.2

0.3.4.12
* Support base-4.10

0.3.4.11
* Support tasty-ant-xml-1.1.0

0.3.4.10
* Tighten lower bound on vector from 0.5 to 0.7 because building with
  vector < 0.7 results in a build error.

* Move the internal modules Math.NumberTheory.Logarithms and
  GHC.Integer.Logarithms.Compat to their own package
  integer-logarithms so other people can share that code.

0.3.4.9
* Support QuickCheck-2.9.

0.3.4.8
* Make bytestring-builder's installation conditional based on a Cabal flag.

0.3.4.7
* Unconditionally export Data.ByteString.Builder.Scientific. The
  bytestring-builder cabal flag has been removed. Depend on
  bytestring-builder for backwards compatibility for GHC < 7.8.

0.3.4.6
* Made toDecimalDigits more similar to floatToDigits

  Previously:
    toDecimalDigits 0 == ([0],1)

  Now:
    toDecimalDigits 0 == ([0],0)

  Because:
    Numeric.floatToDigits 10 (0 :: Double) == ([0],0)

* Introduce a special case for 0 in fromFloatDigits

    fromFloatDigits 0 = 0

  This should fix https://github.com/bos/aeson/issues/369

0.3.4.5
* The following are all a courtesy of Oleg Grenrus (phadej):
  * Support GHC-8.0.1
  * Support binary-0.8
  * Enable Travis continuous integration

0.3.4.4
* Improved performance of toDecimalDigits by 13%.

0.3.4.3
* Fix build with integer-simple.

0.3.4.2
* Fix build on GHC-7.4. Courtesy of Adam Bergmark..

0.3.4.1
* Fix build on GHC-7.0.4

0.3.4.0
* Added fromRationalRepetend & toRationalRepetend for safely
  converting from and to rationals which have a repeating decimal
  representation like:
  1 % 28 = 0.03(571428).
* Added a Binary instance.
* Various performance improvements.
* Support vector-0.11
* Support tasty-0.11
* Support criterion-1.1.0.0

0.3.3.8
* Support QuickCheck-2.8.

0.3.3.7
* Fixed both the

      Prelude Data.Scientific> reads "0.0" :: [(Data.Scientific.Scientific,String)]
      [(0.0,".0"),(0.0,"")]

  problem and the

      read " 8" :: Scientific fails, while read " 8" :: Double succeeds

  problem. Courtesy of neongreen.

0.3.3.6
* Fixed bug in the x / y method for Scientific. Since I was using the
  default implementation: `x * recip y` the operation would diverge
  when `recip y` had an infinite decimal output. This shouldn't happen
  when the result of / is finite again. For example: 0.6 / 0.3 should
  yield 2.0.

  This is now fixed by using the following implementation:

  `x / y = fromRational $ toRational x / toRational y`
2019-12-31 14:10:51 +00:00
pho
3c3c56e90c doc: Added math/hs-integer-logarithms version 1.0.3 2019-12-31 14:05:03 +00:00
pho
86ce40fa1e Import integer-logarithms-1.0.3
Math.NumberTheory.Logarithms and Math.NumberTheory.Powers.Integer from
the arithmoi package.

Also provides GHC.Integer.Logarithms.Compat and
Math.NumberTheory.Power.Natural modules, as well as some additional
functions in migrated modules.
2019-12-31 14:04:52 +00:00
pho
6cbe7210ea doc: Updated math/hs-nats to 1.1.2 2019-12-31 13:55:59 +00:00
pho
1b0fdc6a98 Update to nats-1.1.2
1.1.2 [2018-02-06]
* Don't enable Safe on GHC 7.2.

1.1.1
* Backported a more efficient Binary instance for Nat
* Allow binary-0.8

1.1
* Backported Lift instances.

1.0
* Make nats a compat-package since Numeric.Natural moved to base-4.8.0.0.

0.2.1
* Better readsPrec handling when you try to feed it a negative
  number. Note it is a failed parse rather than an error.
2019-12-31 13:55:47 +00:00
mef
d240442237 doc: Updated sysutils/pidof to 2.96 2019-12-31 13:55:26 +00:00
mef
e03831afa2 (sysutils/pidof) Updated 2.88sdf to 2.96, ChangeLog lines to large, omitted.
(..sysutils/pidof)% wc  ChangeLog-2.88sdf-2.96
     434    3459   22753 ChangeLog-2.88sdf-2.96

The last part is as below:

sysvinit (2.96) released; urgency=low

  [ Jesse Smith ]

    * Added -z command line paramter to pidof which tells pidof to
      try to find processes in uninterruptable (D) or zombie (Z) states.
      This can cause pidof to hang, but produces a more complete process
      list.
       Closes Savannah bug #56534

    * Reformatted init code to make if/while logic more clear.

    * Cleaned up some output from readbootlog.

    * Added -e flag to bootlogd. When -e is used, data saved
      to the boot log file does not have escape characters
      removed. This means colour and cursor movement codes
      stay in the log file. The may then look nicer when
      read with "less -R', but may appear cluttered or
      out of alignment when viewed with other, plain-text tools.
      When -e is not used, escape characters are removed/filtered.
      Closes Debian bug #672361.

    * Make sure src/Makefile cleans up all executable files
      when parent Makefile calls "make clean".
2019-12-31 13:55:14 +00:00
mef
74f0fa4ec6 doc: Updated sysutils/hivex to 1.3.18 2019-12-31 13:33:37 +00:00
mef
ada07b1128 (sysutils/hivex) Updated 1.13.15 to 1.13.18
2019-01-24  Richard W.M. Jones  <rjones@redhat.com>

	Update gnulib to latest.
	Includes various fixes to --as-needed support.  See:
	https://lists.gnu.org/archive/html/bug-gnulib/2019-01/threads.html#00123

2019-01-22  Richard W.M. Jones  <rjones@redhat.com>

	Version 1.3.17.

2019-01-22  Michael Meyer  <mmeyer@datto.com>

	lib: Reset errno to zero to avoid erroneously returning E2BIG
	This line was accidentally removed in 77fe74fc, causing
	bug #1145056 (Bugzilla) to resurface.

2019-01-17  Richard W.M. Jones  <rjones@redhat.com>

	Version 1.3.16.

	Update gnulib to latest.

2019-01-17  Pino Toscano  <ptoscano@redhat.com>

	ruby: improve test functions
	Use better functions to check for proper values instead of assert:
	- refute_nil for non-null functions
	- assert_equal for checking equality

	Also, make sure that the parameters for assert_equal are correct:
	expected value, then got value.

2019-01-16  Pino Toscano  <ptoscano@redhat.com>

	perl: fix format of croak for RLenValue
	When calling croak on failure in the Perl code for RLenValue, add the
	%s placeholder for the strerror result.  This makes the croak call just
	like all the others.

	Fixes commit 87e1be8ff3431ac81d721d5f647fc85d02e045dc.

2018-02-26  Richard W.M. Jones  <rjones@redhat.com>

	ocaml: Link the C bindings with LDFLAGS (RHBZ#1548536).
	Use the ocamlmklib -ldopt flag to pass the general $(LDFLAGS) when
	calling gcc to link dllmlhivex.so.  We were already passing $(CFLAGS)
	when building the object file.

	When building using Fedora's standard hardening flags this gives:

	ocamlmklib -o mlhivex hivex_c.o hivex.cmo \
	    -verbose -ldopt '-Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld' \
	    -L../lib/.libs -lhivex
	+ gcc -shared  -o ./dllmlhivex.so hivex_c.o  -Wl,-z,relro -specs=/usr/lib/rpm/redhat/redhat-hardened-ld  -L../lib/.libs -lhivex
	+ ar rc ./libmlhivex.a  hivex_c.o; ranlib ./libmlhivex.a
	+ /usr/bin/ocamlc -a    -o mlhivex.cma  hivex.cmo -dllib -lmlhivex -cclib -lmlhivex   -cclib -L../lib/.libs -cclib -lhivex

	This also works if $(LDFLAGS) is empty, because ocamlmklib ignores
	-ldopt ''.
2019-12-31 13:33:26 +00:00
nros
7a904903c1 Fix boost-libs PLIST on devuan linux distro 2019-12-31 13:30:27 +00:00
mef
7c54401335 doc: Updated sysutils/file to 5.38 2019-12-31 13:24:17 +00:00
mef
8f690da250 (sysutils/file) Updated to 5.38
2019-12-16  21:11  Christos Zoulas <christos@zoulas.com>

	* release 5.38

2019-12-15  22:13  Christos Zoulas <christos@zoulas.com>
    Document changes since the previous release:
	- Always accept -S (no sandbox) even if we don't support sandboxing
	- More syscalls elided for sandboxiing
	- For ELF dynamic means having an interpreter not just PT_DYNAMIC
	- Check for large ELF session header offset
	- When saving and restoring a locale, keep the locale name in our
	  own storage.
	- Add a flag to disable CSV file detection.
	- Don't pass NULL/0 to memset to appease sanitizers.
	- Avoid spurious prints when looks for extensions or apple strings
	  in fsmagic.
	- Add builtin decompressors for xz and and bzip.
	- Add a limit for the number of CDF elements.
	- More checks for overflow in CDF.
2019-12-31 13:24:05 +00:00
wiz
851f61c85f doc: Updated emulators/unicorn to 1.0.1nb2 2019-12-31 13:15:00 +00:00
wiz
956d7e89b7 unicorn: update to 1.0.1nb2.
Use LDFLAGS -- fixes RELRO build.
2019-12-31 13:14:51 +00:00
mef
3d58869404 doc: Updated sysutils/amtterm to 1.6 2019-12-31 13:10:11 +00:00
mef
5bcf65f335 (sysutils/amtterm) Updated 1.4 to 1.6, ChangeLog unknown. Src Date is 2017-02-27 2019-12-31 13:10:00 +00:00
triaxx
802915f84d py-digitalocean: fix invalid byte
Bump revision
2019-12-31 13:05:10 +00:00
mef
efdf316684 doc: Updated sysutils/ioping to 1.1 2019-12-31 12:54:41 +00:00
mef
a27fc68387 (sysutils/ioping) Updated to 1.1
v1.1 / 2018-09-11
==================

  * ioping: release 1.1
  * ioping.1: raw statisitics in nanoseconds
  * Merge pull request #37 from standby24x7/fix-man
  * Fix a typo in ioping.1
  * Merge pull request #36 from lewellyn/solaris
  * Correct Solaris predefined macro
  * ioping.1: add more references
  * Merge pull request #32 from kolyshkin/makefile
  * Makefile: only use vN tags for EXTRA_VERSION
  * ioping.c: set VERSION to 1.0
  * Makefile: make sure git tag == src ver
  * Makefile: make all phony targets as such
  * Makefile: move -D to CPPFLAGS
  * ioping(1): fix aio description
2019-12-31 12:54:29 +00:00
pho
129d7244fc doc: Updated devel/hs-hashable to 1.3.0.0 2019-12-31 12:47:56 +00:00
pho
d4aae85bf4 Update to hashable-1.3.0.0
Version 1.3.0.0
* Semantic change of Hashable Arg instance to not hash the second
  argument of Arg in order to be consistent with Eq Arg (#171)
* Semantic change of Hashable Float and Hashable Double instances to
  hash -0.0 and 0.0 to the same value (#173)
* Add Hashable instance for Fingerprint (#156)
* Add new Data.Hashable.Generic module providing the default
  implementations genericHashWithSalt and genericLiftHashWithSalt
  together with other Generics support helpers (#148, #178)
* Bump minimum version requirement of base to base-4.5 (i.e. GHC >=
  7.4)

Version 1.2.7.0
* Add Hashable and Hashable1 instances for Complex
* Fix undefined behavior in hashable_fn_hash() implementation due to
  signed integer overflow (#152)
* Mark Data.Hashable.Lifted as Trustworthy (re SafeHaskell)
* Support GHC 8.4

Version 1.2.6.1
* Use typeRepFingerprint from Type.Reflection.Unsafe
* Bump minimum version of base to 4.4.

Version 1.2.6.0
* Add support for type-indexed Typeable.
* Rework the Generic hashable for sums.

Version 1.2.5.0
* Add Hashable1 and Hashable2
* Add instances for: Eq1, Ord1, Show1, Ptr, FunPtr, IntPtr, WordPtr
* Add Hashed type for caching the hash function result.

Version 1.2.4.0
* Add instances for: Unique, Version, Fixed, NonEmpty, Min, Max, Arg,
  First, Last, WrappedMonoid, Option
* Support GHC 8.0
2019-12-31 12:47:44 +00:00
wiz
4479eb02b6 doc: Updated devel/libev to 4.31 2019-12-31 12:28:32 +00:00
wiz
f58ebfed90 libev: update to 4.31.
4.31 Fri Dec 20 21:58:29 CET 2019
	- handle backends with minimum wait time a bit better by not
          waiting in the presence of already-expired timers
          (behaviour reported by Felipe Gasper).
        - new feature: use timerfd to detect timejumps quickly,
          can be disabled with the new EVFLAG_NOTIMERFD loop flag.
        - document EV_USE_SIGNALFD feature macro.

4.30 (EV only)
	- change non-autoconf test for __kernel_rwf_t by testing
          LINUX_VERSION_CODE, the most direct test I could find.
        - fix a bug in the io_uring backend that polled the wrong
          backend fd, causing it to not work in many cases.

4.29 (EV only)
	- add io uring autoconf and non-autoconf detection.
        - disable io_uring when some header files are too old.

4.28 (EV only)
	- linuxaio backend resulted in random memory corruption
          when loop is forked.
        - linuxaio backend might have tried to cancel an iocb
          multiple times (was unable to trigger this).
        - linuxaio backend now employs a generation counter to
          avoid handling spurious events from cancelled requests.
	- io_cancel can return EINTR, deal with it. also, assume
          io_submit also returns EINTR.
        - fix some other minor bugs in linuxaio backend.
        - ev_tstamp type can now be overriden by defining EV_TSTAMP_T.
        - cleanup: replace expect_true/false and noinline by their
          libecb counterparts.
        - move syscall infrastructure from ev_linuxaio.c to ev.c.
        - prepare io_uring integration.
        - tweak ev_floor.
        - epoll, poll, win32 Sleep and other places that use millisecond
          reslution now all try to round up times.
        - solaris port backend didn't compile.
        - abstract time constants into their macros, for more flexibility.
2019-12-31 12:28:23 +00:00
wiz
002888f237 doc: Updated security/libssh to 0.93 2019-12-31 12:27:12 +00:00
wiz
19838d46ba libssh: update to 0.93.
version 0.9.3 (released 2019-12-10)
  * Fixed CVE-2019-14889 - SCP: Unsanitized location leads to command execution
  * SSH-01-003 Client: Missing NULL check leads to crash in erroneous state
  * SSH-01-006 General: Various unchecked Null-derefs cause DOS
  * SSH-01-007 PKI Gcrypt: Potential UAF/double free with RSA pubkeys
  * SSH-01-010 SSH: Deprecated hash function in fingerprinting
  * SSH-01-013 Conf-Parsing: Recursive wildcards in hostnames lead to DOS
  * SSH-01-014 Conf-Parsing: Integer underflow leads to OOB array access
  * SSH-01-001 State Machine: Initial machine states should be set explicitly
  * SSH-01-002 Kex: Differently bound macros used to iterate same array
  * SSH-01-005 Code-Quality: Integer sign confusion during assignments
  * SSH-01-008 SCP: Protocol Injection via unescaped File Names
  * SSH-01-009 SSH: Update documentation which RFCs are implemented
  * SSH-01-012 PKI: Information leak via uninitialized stack buffer
2019-12-31 12:27:03 +00:00
wiz
38fc364700 doc: Updated audio/musicpd to 0.21.18 2019-12-31 12:25:04 +00:00
wiz
b8cbc43371 musicpd: update to 0.21.18.
ver 0.21.18 (2019/12/24)
* protocol
  - work around Mac OS X bug in the ISO 8601 parser
* output
  - alsa: fix hang bug with ALSA "null" outputs
* storage
  - curl: fix crash bug
* drop support for CURL versions older than 7.32.0
* reduce unnecessary CPU wakeups

ver 0.21.17 (2019/12/16)
* protocol
  - relax the ISO 8601 parser: allow omitting field separators, the
    time of day and the "Z" suffix
* archive
  - zzip: improve error reporting
* outputs
  - jack: mark ports as terminal
  - shout: declare metadata as UTF-8
* fix build failure with -Ddatabase=false
2019-12-31 12:24:54 +00:00
wiz
cb4def7bc0 doc: Updated x11/gtk3 to 3.24.13 2019-12-31 12:21:10 +00:00
wiz
969f25ebb3 gtk3+: update to 3.24.13.
Overview of Changes in GTK+ 3.24.13
===================================

* listbox: Fix header row reuse

* wayland: Fix handling of tablets

* theme:
 - Adwaita: Fix menu rounding
 - Adwaita: Various improvements for the Emoji chooser
 - Adwaita: Refresh check and radio buttons
 - HighContrast: Fix entry colors

* input:
 - Properly handle bubbling of scroll events
 - Handle modifier key events properly
 - Run key controllers in the bubble phase
 - Do not use VIQR for Vietnamese by default

* statusicons: Render sharply on hi-dpi

* wayland: Fix handling of selection ownership

* win32:
 - Set WS_BORDER for fullscreen GL windows if requested
 - Fix clipboard handling

* quartz:
 - Handle titlebar events properly
 - Handle page up/down key events properly

* broadway: Fix (lack of) clipboard handling

* Translation updates:
 Catalan
 Chinese (Taiwan)
 Croatian
 Danish
 French
 German
 Hungarian
 Indonesian
 Russian
 Swedish
2019-12-31 12:21:00 +00:00
schmonz
672027c9c9 doc: Updated audio/rioutil to 1.5.4 2019-12-31 12:10:40 +00:00
schmonz
f767668087 Update to 1.5.4. No changelog available. 2019-12-31 12:10:20 +00:00
mef
0d9ac38c17 doc: Updated sysutils/R-later to 1.0.0 2019-12-31 12:08:27 +00:00
mef
f55484ead5 (sysutils/R-later) Updated to 1.0.0
## later 1.0.0

* Added private event loops: these are event loops that can be run
  independently from the global event loop. These are useful when you
  have code that schedules callbacks with `later()`, and you want to
  call `run_now()` block and wait for those callbacks to execute
  before continuing. Without private event loops, if you call
  `run_now()` to wait until a particular callback has finished, you
  might inadvertantly run other callbacks that were scheduled by other
  code. With private event loops, you can create a private loop,
  schedule a callback on it, then call `run_now()` on that loop until
  it executes, all without interfering with the global
  loop. ([#84](https://github.com/r-lib/later/pull/84))
2019-12-31 12:08:15 +00:00
wiz
1c5e5824a7 doc: Updated sysutils/dbus-python-common to 1.2.14 2019-12-31 11:54:07 +00:00
wiz
928e80f469 doc: Updated sysutils/py-dbus to 1.2.14 2019-12-31 11:53:51 +00:00
wiz
e05341f031 py-dbus, dbus-python-common: Update to 1.2.14
dbus Python Bindings 1.2.14 (2019-11-25)
========================================

The “don't stand in the fire” release.

Fixes:

• Ensure that the numeric types from dbus.types get the same str()
  under Python 3.8 that they did under previous versions. Previously,
  Python 3.8 used their repr() for the str(), which was not intended.
  (dbus-python#31; matclab, Simon McVittie)

• Disable -Winline (Simon McVittie)

• Add Python 3.8 to CI (Simon McVittie)
2019-12-31 11:53:39 +00:00
mef
0bee0b5ade doc: Updated sysutils/R-sys to 3.3 2019-12-31 11:41:32 +00:00