Commit graph

311060 commits

Author SHA1 Message Date
jaapb
c2b944379f Updated databases/ocaml-sqlite3 to version 5.0.1.
This includes one breaking change: Data.to_string is now
Data.to_string_coerce.

There are also some updates to the build system, and general improvements
and bugfixes.
2020-01-31 11:57:04 +00:00
wiz
b1c8a7f93d tor-browser: mark BROKEN, needs rust fixes or update. 2020-01-31 11:45:03 +00:00
jaapb
329b523385 doc: Updated devel/ocaml-biniou to 1.2.1 2020-01-31 11:32:44 +00:00
jaapb
0bfa25b317 Updated devel/ocaml-biniou to version 1.2.1.
This mostly updates build infrastructure to dune.
2020-01-31 11:32:30 +00:00
fox
2328a15759 doc: Updated audio/fasttracker2 to 1.07 2020-01-31 11:17:41 +00:00
fox
84323c9232 audio/fasttracker2: Update to v1.07
Changes since v1.06:

v1.07 - 30.01.2020
- Bugfix: After deleting the very last vol/pan envelope point, the currently
  selected point wouldn't be properly set. This is actually a behavior/bug
  from real FT2, but I wanted to fix it anyway.
- Bugfix: Attempting to add a vol/pan envelope point to a completely empty
  envelope would mess things up. Empty envelopes in an allocated instrument
  shouldn't happen, but it happens when loading certain non-FT2 XMs.
- Bugfix: The envelope plotter could display garbage on envelopes with tick
  offsets above 324. Now it just cuts off at the end instead. Also yes, such
  envelopes can be made! OpenMPT, f.ex., has no 0..324 limit for envelope ticks
  in XM mode.
- Bugfix: A couple of system request dialogs had the wrong button captions.
  (Yes/No instead of OK/Cancel).
- When pressing Esc. and the song is unmodified/saved, you'll now get the
  classic joke quit dialogs from FT2 asking if you really want to quit.
- Some minor optimizations and minor fixups. Nothing to write home about...
- Windows 32-bit: This version now requires your CPU to have the SSE2
  instruction set. Intel CPUs from around 2000 (AMD around 2003) and later
  have it. In other words, it's not worth my time trying to make the clone
  run on such old machines!
2020-01-31 11:14:25 +00:00
minskim
4b8ffa0cf7 doc: Updated math/py-sympy to 1.5.1 2020-01-31 04:51:43 +00:00
minskim
1a760da5b0 math/py-sympy: Update to 1.5.1
Changes:
- Fix a regression in 1.5 that allowed expressions to compare equal to
  strings, and caused == to call str() on the other object.
- Avoid using scipy versions of numpy functions, which are deprecated,
  in lambdify.

Take MAINTAINERship.
2020-01-31 04:51:40 +00:00
khorben
7da58b8b8a doc: Updated meta-pkgs/deforaos-desktop to 2020.1.0 2020-01-31 02:14:02 +00:00
khorben
c1f08d5467 deforaos-desktop: update to 2020.1.0
This is a version bump for the past updates to the DeforaOS desktop,
bringing it to its current state when building for Gtk+ 3.
2020-01-31 02:13:52 +00:00
khorben
365cd3ad47 doc: Updated x11/deforaos-integration to 0.1.0 2020-01-31 02:05:57 +00:00
khorben
02299347ea deforaos-integration: update to 0.1.0
Changes since 0.0.2:
- Defaults to Gtk+ 3 (like libDesktop)
2020-01-31 02:05:45 +00:00
khorben
a639c71e34 doc: Updated sysutils/deforaos-terminal to 0.2.0 2020-01-31 01:27:17 +00:00
khorben
6580217a9f deforaos-terminal: update to 0.2.0
Changes since 0.1.0:
- Defaults to Gtk+ 3 (like libDesktop)
2020-01-31 01:27:07 +00:00
minskim
0fc9c9afcb doc: Updated math/py-numpy to 1.16.6 2020-01-30 23:34:32 +00:00
minskim
84d359622a math/py-numpy: Update to 1.16.6
Changes:

- The np.testing.utils functions have been updated from
  1.19.0-dev0. This improves the function documentation and error
  messages as well extending the assert_array_compare function to
  additional types.
- Allow matmul (@) to work with object arrays.
- Fix regression in matmul (@) for boolean types.
- Array comparison assertions include maximum differences.
2020-01-30 23:34:28 +00:00
wiz
553eb1dec1 doc: Updated devel/py-stem to 1.8.0 2020-01-30 23:32:31 +00:00
wiz
eff8944749 py-stem: update to 1.8.0.
Stem 1.8 is the final release in Stem’s 1.x series and with it
Python 2.x support. Over a year in the making, this introduces
CollecTor, bandwidth metric, and HSv3 descriptor support.

        Controller

            Added get_start_time() method to the Controller
            Added get_uptime() method to the Controller
            Controller events could fail to be delivered in a timely fashion (ticket 27173)
            Adjusted get_microdescriptors() fallback to also use '.new' cache files (ticket 28508)
            ExitPolicies could raise TypeError when read concurrently (ticket 29899)
            Moved the arrived_at attribute from Event to ControlMessage
            STALE_DESC Flag (spec)
            DORMANT and ACTIVE Signal (spec)
            QUERY_RATE_LIMITED HSDescReason (spec)
            EXTOR and HTTPTUNNEL Listener

        Descriptors

            Added the stem.descriptor.collector module (ticket 17979)
            Added v3 hidden service descriptor support (ticket 31369)
            Bandwidth file support (ticket 29056)
            stem.descriptor.remote methods now raise stem.DownloadFailed
            Check Ed25519 validity though the cryptography module rather than PyNaCl (ticket 22022)
            Download compressed descriptors by default (ticket 29186)
            Added Compression class
            Added stem.descriptor.remote.get_microdescriptors()
            Added stem.descriptor.remote.get_bandwidth_file() (ticket 26902)
            Added DetachedSignature parsing (ticket 28495)
            Added from_str() method (ticket 28450)
            Added type_annotation() method (ticket 28397)
            Added digest() method (ticket 28398)
            Added the hash_type and encoding arguments to ServerDescriptor and ExtraInfo's digest methods (ticket 28398)
            Added the network status vote's new bandwidth_file_digest attribute (spec)
            Added is_valid() and is_fresh() methods (ticket 28448)
            Replaced RouterStatusEntryMicroV3() hex encoded digest attribute with a base64 encoded microdescriptor_digest
            Replaced the digest attribute of Microdescriptor with a method by the same name (ticket 28398)
            Default the version_flavor attribute of NetworkStatusDocumentV3 to 'ns' (spec)
            DescriptorDownloader crashed if use_mirrors is set (ticket 28393)
            Renamed stem.descriptor.hidden_service_descriptor to stem.descriptor.hidden_service
            Don't download from Serge, a bridge authority that frequently timeout
            Updated dizum authority's address (ticket 31406)

        Client

            Sockets with ORPorts errored if responses exceeded a hardcoded buffer size (ticket 28961)

        Utilities

            is_valid_hidden_service_address() now provides true if a v3 hidden servie address
            Fixed 'invalid escape sequence' python 3.6 warnings (ticket 27270)

        Website

            Migrated to GitHub's issue tracker
            Added NetBSD to our download page
            Describe advanced listener usage
            Exemplify manual SAFECOOKIE authentication
            Update PyPI links (ticket 30137)

        Interpreter

            tor-prompt is now ~34% faster when used to non-interactively invoke commands
2020-01-30 23:32:23 +00:00
khorben
d578fd3a23 doc: Updated time/deforaos-todo to 0.3.0 2020-01-30 23:32:08 +00:00
khorben
f9c8c8b0f4 deforaos-todo: update to 0.3.0
Changes since 0.2.1:
- Defaults to Gtk+ 3 (like libDesktop)
2020-01-30 23:31:58 +00:00
wiz
476bff9460 doc/TODO: add some
+ MesaLib-19.3.2, gnome-3.34.3, py-pandas-1.0.0, spamassassin-3.4.4,
  sudo-1.8.31, wine-5.0.
2020-01-30 23:08:47 +00:00
khorben
ec5ac2c232 doc: Updated x11/deforaos-notes to 0.2.0 2020-01-30 23:05:48 +00:00
khorben
862d6169be deforaos-notes: update to 0.2.0
Changes since 0.1.0:
- Defaults to Gtk+ 3 (like libDesktop)
2020-01-30 23:05:36 +00:00
leot
5405dbf3db tor: Readd accidentally removed .crate in distinfo
XXX: It would be nice that `makesum' target do that independently of `rust'
XXX: option.
2020-01-30 21:15:41 +00:00
triaxx
0e4df1dec7 sudo: update master site
TW Aren FTP server seems down and the fetching step hangs for hours.
2020-01-30 21:07:59 +00:00
leot
feffcdc787 doc: Updated net/tor to 0.4.2.6 2020-01-30 21:03:12 +00:00
leot
c4e9976509 tor: Update to 0.4.2.6
Changes:
0.4.2.6
-------
  This is the second stable release in the 0.4.2.x series. It backports
  several bugfixes from 0.4.3.1-alpha, including some that had affected
  the Linux seccomp2 sandbox or Windows services. If you're running with
  one of those configurations, you'll probably want to upgrade;
  otherwise, you should be fine with 0.4.2.5.

  o Major bugfixes (linux seccomp sandbox, backport from 0.4.3.1-alpha):
    - Correct how we use libseccomp. Particularly, stop assuming that
      rules are applied in a particular order or that more rules are
      processed after the first match. Neither is the case! In
      libseccomp <2.4.0 this lead to some rules having no effect.
      libseccomp 2.4.0 changed how rules are generated, leading to a
      different ordering, which in turn led to a fatal crash during
      startup. Fixes bug 29819; bugfix on 0.2.5.1-alpha. Patch by
      Peter Gerber.
    - Fix crash when reloading logging configuration while the
      experimental sandbox is enabled. Fixes bug 32841; bugfix on
      0.4.1.7. Patch by Peter Gerber.

  o Minor bugfixes (correctness checks, backport from 0.4.3.1-alpha):
    - Use GCC/Clang's printf-checking feature to make sure that
      tor_assertf() arguments are correctly typed. Fixes bug 32765;
      bugfix on 0.4.1.1-alpha.

  o Minor bugfixes (logging, crash, backport from 0.4.3.1-alpha):
    - Avoid a possible crash when trying to log a (fatal) assertion
      failure about mismatched magic numbers in configuration objects.
      Fixes bug 32771; bugfix on 0.4.2.1-alpha.

  o Minor bugfixes (testing, backport from 0.4.3.1-alpha):
    - When TOR_DISABLE_PRACTRACKER is set, do not apply it to the
      test_practracker.sh script. Doing so caused a test failure. Fixes
      bug 32705; bugfix on 0.4.2.1-alpha.
    - When TOR_DISABLE_PRACTRACKER is set, log a notice to stderr when
      skipping practracker checks. Fixes bug 32705; bugfix
      on 0.4.2.1-alpha.

  o Minor bugfixes (windows service, backport from 0.4.3.1-alpha):
    - Initialize the publish/subscribe system when running as a windows
      service. Fixes bug 32778; bugfix on 0.4.1.1-alpha.

  o Testing (backport from 0.4.3.1-alpha):
    - Turn off Tor's Sandbox in Chutney jobs, and run those jobs on
      Ubuntu Bionic. Turning off the Sandbox is a work-around, until we
      fix the sandbox errors in 32722. Closes ticket 32240.
    - Re-enable the Travis CI macOS Chutney build, but don't let it
      prevent the Travis job from finishing. (The Travis macOS jobs are
      slow, so we don't want to have it delay the whole CI process.)
      Closes ticket 32629.

  o Testing (continuous integration, backport from 0.4.3.1-alpha):
    - Use zstd in our Travis Linux builds. Closes ticket 32242.
2020-01-30 21:02:49 +00:00
mef
2a5aa91c83 regen PLIST 2020-01-30 20:44:27 +00:00
minskim
e1360951ae doc: Updated math/py-pandas-datareader to 0.8.1nb1 2020-01-30 20:25:21 +00:00
minskim
9b1dab854c math/py-pandas-datareader: Fix dependencies 2020-01-30 20:25:18 +00:00
adam
84a8a47cf4 Updated textproc/py-lxml, devel/py-test5 2020-01-30 19:44:29 +00:00
adam
db86716a63 py-test5: updated to 5.3.5
pytest 5.3.5:

Bug Fixes
- Fix regression in pytest 5.3.4 causing an INTERNALERROR due to a wrong assertion.
2020-01-30 19:44:13 +00:00
adam
a88125088e py-lxml: updated to 4.5.0
4.5.0:
Features added
* A new function ``indent()`` was added to insert tail whitespace for pretty-printing
  an XML tree.

Bugs fixed
* Tail text of nodes that get removed from a document using item
  deletion disappeared silently instead of sticking with the node that was removed.

Other changes
* MacOS builds are 64-bit-only by default.
  Set CFLAGS and LDFLAGS explicitly to override it.
* Linux/MacOS Binary wheels now use libxml2 2.9.10 and libxslt 1.1.34.
* The package version number is now available as ``lxml.__version__``.
2020-01-30 19:42:47 +00:00
markd
5d2a57185e kiconthemes: update of frameworks to 5.66 (commit missed previously) 2020-01-30 19:21:52 +00:00
minskim
41caccddc3 math/py-pandas-datareader: Update HOMEPAGE 2020-01-30 18:45:28 +00:00
schmonz
73f57f4a8f doc: Updated mail/feed2exec to 0.15.0 2020-01-30 18:02:46 +00:00
schmonz
8bbafd6c43 Update to 0.15.0 (by diffing git tags, no new distfile available). From
the changelog:

- Play catchup with newer html2text version again
- Workaround timezone parsing bug in dateparser
- Switch to dateparser for PyPI and tests as well
- Register properly the special mark we are using
- Reduce noise level of 'missing time' problems
2020-01-30 18:02:41 +00:00
scole
ffab3be022 Remove old comments that look left over for running the linux binary ski emulator on NetBSD 2020-01-30 16:29:31 +00:00
scole
100af68e98 Revert HOMEPAGE back to http instead of https. The https page doesn't seem to work. 2020-01-30 16:26:43 +00:00
pho
0bc7e53bce Fix an error on 64-bits platforms. 2020-01-30 13:56:12 +00:00
wiz
9530133a39 py-qt5: fix ALTERNATIVES syntax 2020-01-30 13:14:53 +00:00
triaxx
213824d248 doc: Updated security/openpam to 20190224nb1 2020-01-30 11:17:30 +00:00
triaxx
bc20954e21 openpam: fix PR pkg/54907
pkgsrc changes:
---------------
  - Add -lcript to pam_unix.so
  - Bump revision
2020-01-30 11:17:05 +00:00
leot
2eb273d21a opensmtpd: Drop maintainership (PR pkg/54911) 2020-01-30 10:37:14 +00:00
wiz
71e6cea43a sysutils/Makefile: + arm-trusted-firmware-rk3399, u-boot-pinebook-pro 2020-01-30 10:21:24 +00:00
wiz
9f43ea055e prosody: remove patch that is not in distinfo 2020-01-30 10:08:14 +00:00
wiz
c315f971c5 warzone2100: remove patch that is not in distinfo 2020-01-30 10:08:00 +00:00
he
4bf9b04620 Note update of devel/go-protobuf to 1.3.3. 2020-01-30 09:58:25 +00:00
he
30aeefa54a Update go-protobuf to version 1.3.3.
Upstream changes:
 * #1025 grpc: accept interface in NewClient functions
2020-01-30 09:57:53 +00:00
fcambus
684b4b8020 doc: Updated converters/p5-Sereal to 4.008 2020-01-30 09:48:44 +00:00