Commit graph

575832 commits

Author SHA1 Message Date
Dries Michiels
e5fd15ff3f multimedia/emby-server-devel: Update to 4.7.0.28
Changes:	https://github.com/MediaBrowser/Emby.Releases/releases/tag/4.7.0.27
Changes:	https://github.com/MediaBrowser/Emby.Releases/releases/tag/4.7.0.28
2022-03-01 19:19:52 +01:00
Danilo G. Baio
be42bcc41f devel/py-pyshp: Update to 2.2.0
Release notes:	https://github.com/GeospatialPython/pyshp/releases/tag/2.2.0
2022-03-01 14:28:04 -03:00
Danilo G. Baio
d8fafb4958 mail/pecl-mailparse: Update to 3.1.3
Changelog:	https://pecl.php.net/package-changelog.php?package=mailparse&release=3.1.3
2022-03-01 14:28:03 -03:00
Danilo G. Baio
f7ab0d0043 textproc/py-docrepr: Update to 0.2.0
Release notes:	https://github.com/spyder-ide/docrepr/releases/tag/v0.2.0
2022-03-01 14:28:03 -03:00
Ashish SHUKLA
6c289660a3
www/element-web: Update to 1.10.6
Approved by:	maintainer (implicit, version bump, as per PR 258262)
2022-03-01 17:26:25 +00:00
Neel Chauhan
e5e3b94bf8 graphics/py-glfw: Update to 2.5.1 2022-03-01 09:24:29 -08:00
Dmitry Marakasov
f0afbd9fbe devel/py-types-urllib3: update 1.26.9 → 1.26.10 2022-03-01 19:19:25 +03:00
Sergey A. Osokin
db955437da security/boringssl: update to the recent commit 2022-03-01 10:41:13 -05:00
Kenji Takefu
3341ddfca4 audio/darkice: Delete libaacplus
* libaacplus has been abandoned
 * Add missing libogg dependency
 * Reporter becomes MAINTAINER

PR:	262185
Reported by:	takefu@airport.fm
Reviewed by:	decke@ koobs@
2022-03-01 16:32:02 +01:00
Christoph Moench-Tegeder
91d676d1c5 www/firefox-esr: update to 91.7.0 (rc2)
Release Notes (soon):
  https://www.mozilla.org/en-US/firefox/91.7.0/releasenotes/
2022-03-01 16:18:37 +01:00
Pietro Cerutti
fbc7d9e005 lang/seed7: update to 05_20220130
20220130:
- An arc() function (to draw an arc) with a width (thickness)
  parameter has been added to the draw.s7i library. Many thanks to
  Zachary Menzies for pointing out that it was missing.
- The new library tiff.s7i has been added. This library supports the
  TIFF image file format.
- The new library ccittfax.s7i has been added. This library supports
  CCITT fax decoding as it is used in TIFF files.
- The library zip.s7i has been improved to support reading zip64
  archives.
- A chapter about the type 'process' has been added to the manual.
  The chapter about case statements and other chapters of the manual
  have been improved as well.
- Bit streams have been introduced and the huffman decoding has been
  improved. The run-time to extract a gzipped Seed7 archive with tar7
  has been reduced to 46% (measured with gcc and valgrind). Other
  usages of the inflate algorithm (PNG, ZIP, etc.) also benefit from
  the improvements.
- The compiler has been improved to:
  - Optimize overflow checks away for shift operations.
  - Optimize index checks for string operations.
  - Write an error message if an unsupported option is used.
  - Inline the string tail function.
  - Use parentheses to reduce C compiler warnings.
  - Improve optimizations of the bytes2Int() function.
  - Improve checking of division by zero.
- The statistics of the Seed7 compiler (s7c.sd7) has been improved
  to count inlined functions, optimized index checks and optimized
  overflow checks.
- In bitdata.s7i, the types bitStream, lsbBitStream and msbBitStream
  have been introduced. These types support the functions getBit(),
  getBits(), peekBits(), skipBits() and gets().
- In bitdata.s7i, the functions openLsbBitStream() and
  openMsbBitStream() have been introduced to create lsbBitStream
  and msbBitStream values. With these functions, bit streams can be
  created with a file or a string as data source.
- In bitdata.s7i the functions getBitLsb(), getBitsLsb(),
  peekBitsLsb(), skipBitsLsb(), getBitMsb(), getBitsMsb(),
  peekBitsMsb() and skipBitsMsb() with string als parameters are
  deprecated now. The functions with the types lsbBitStream and
  msbBitStream should be used instead.
- In huffman.s7i the functions getHuffmanSymbolMsb(string, ...) and
  getHuffmanSymbolLsb(string, ...) are deprecated. The functions
  getHuffmanSymbol(msbBitStream, ...) and
  getHuffmanSymbol(lsbBitStream, ...) should be used instead.
- Tests for getBit(), getBits(), peekBits(), skipBits() and gets()
  have been added to chkbitdata.sd7. This refers to tests with
  lsbBitStream and msbBitStream.
- The program chk_all.sd7 has been adjusted to the changes in
  chkbitdata.sd7.
- The functions in inflate.s7i have been improved to use lsbBitStream
  as parameter instead of the previous combination of string, bytePos
  and bitPos.
- The library inflatefile.s7i has been removed. The functions from
  inflate.s7i can be used instead.
- The library cpio.s7i has been improved to check if a CPIO header
  is the correct size.
- The library bytedata.s7i has been improved to raise RANGE_ERROR
  if an empty byte string is converted to integer or bigInteger.
- The library gzip.s7i has been improved to use lsbBitStream and the
  new functions from inflate.s7i.
- The library imagefile.s7i has been improved to support TIFF images.
- The library jpeg.s7i has been improved to use
  getHuffmanSymbol(msbBitStream) instead of
  getHuffmanSymbolMsb(stri, bytePos, bitPos, ...).
- The library lzw.s7i has been improved to support the functions
  lzwDecompress(lsbBitStream, ...), lzwDecompress(msbBitStream, ...),
  lzwDecompressEarlyChange(msbBitStream, codeSize),
  lzwDecompressEarlyChange(msbBitStream, codeSize, requestedLength)
  and lzwDecompressMsbEarlyChange(string, codeSize, requestedLength).
- The files bitdata.s7i, gzip.s7i, inflate.s7i, jpeg.s7i, zstd.s7i
  and chkbitdata.sd7 have been refactored to avoid 'bitStream' as
  variable name. The name 'bitStream' is now used as interface type
  in bitdata.s7i.
- The Seed7 compiler has been improved in comp/arr_act.s7i,
  comp/bin_act.s7i, comp/bst_act.s7i, comp/const.s7i,
  comp/flt_act.s7i, comp/int_act.s7i, comp/intrange.s7i,
  comp/literal.s7i, comp/prc_act.s7i, comp/rfl_act.s7i,
  comp/set_act.s7i, comp/stat.s7i, comp/str_act.s7i and s7c.sd7.
- Checks for bytes(), bytes2Int(), the right shift operator and
  division by zero have been added to chkint.sd7.
- Checks for bin64 shift operations have been added to chkbin.sd7.
- Checks for index access to an empty array have been added to
  chkarr.sd7.
- Checks for bytes2BigInt() have been added to chkbig.sd7.
- In array.s7i the declaration of the times operator has been
  simplified.
- The program pv7.sd7 has been improved to support TIFF files.
- Casts have been added to dll_win.c and libpath.c to reduce C
  compiler warnings.
- In error.c the error message for a failed declaration has been
  improved.
- In str_rtl.c the performance of strHeadSlice() has been improved.
- Unused variables have been removed in several files of the
  compiler.
- In int_rtl.c the functions intBytesBe2Int(), intBytesBe2UInt(),
  intBytesLe2Int() and intBytesLe2UInt() have been changed to raise
  RANGE_ERROR if the string is empty.
- In big_rtl.c and big_gmp.c the functions bigFromByteBufferBe()
  and bigFromByteBufferLe() have been changed to raise RANGE_ERROR
  if the size is zero (the buffer is empty).
- The files drw_win.c, drw_x11.c, drw_drv.h, drwlib.c, drwlib.h and
  primitiv.c have been changed to support the action DRW_PFARC.
- Definitions for the function XSetLineAttributes() have been added
  to fwd_x11.c and x11_x.h.
- In the program chkccomp.c the detection of the division by zero
  behavior and the remainder by zero behavior has been improved.
- Documentation comments have been improved in bstring.s7i,
  bytedata.s7i, bitdata.s7i, null_file.s7i, process.s7i, strifile.s7i
  and biglib.c.
2022-03-01 15:10:59 +00:00
Steve Wills
b4d94c7c3d net/relayd: fix build
While here, pet linters.

PR:	262004
Reported by:	swills@FreeBSD.org
Approved by:	koue@chaosophia.net (maintainer)
MFH:	2022Q1	build fix
2022-03-01 15:13:02 +01:00
Alexey Dokuchaev
d76542d712 www/persepolis: new port had been added (+)
Persepolis is a download manager and GUI for Aria2 which is written
in Python using Qt and other components.  Some functionality had been
reimplemented to avoid pulling needless or heavy dependencies.

WWW: https://persepolisdm.github.io/
2022-03-01 11:13:46 +00:00
Pietro Cerutti
fe9e936974 devel/catch: update to 2.13.8
Release notes: https://github.com/catchorg/Catch2/releases/tag/v2.13.8
2022-03-01 11:11:21 +00:00
Adriaan de Groot
e0e4186db9 editors/diamond: update to 1.3.7, latest upstream
This version is just a copyright-year update. I'm taking advantage
to follow Daniel Engberg's advice to use the upstream tarballs
rather than GitHub tarballs, even though the upstream tarballs
are, IMO, terrible.

While here, pull in a patch I wrote to avoid crashes on startup.
2022-03-01 11:42:47 +01:00
Fernando Apesteguía
759b69bb6b multimedia/libaacs: update to 0.11.1
From ChangeLog:
https://code.videolan.org/videolan/libaacs/-/blob/master/ChangeLog

 * Faster start with MacOS when disc does not use bus encryption.
 * Improve error logging.
 * Improve error resilience.

Reported by:	portscout
2022-03-01 11:05:08 +01:00
Yasuhiro Kimura
d012613d9f databases/redis-devel: Update to latest snapshot
* Pet portlint and portclippy
* Tidy up Makefile with portfmt

Changes:	6ca97da...4a45386
2022-03-01 17:53:09 +09:00
Yasuhiro Kimura
7ffb89f54b devel/forge-devel: Update to latest snapshot
Changes:	43055ac...0f43617
2022-03-01 17:53:03 +09:00
Yasuhiro Kimura
2702baeaf5 devel/magit-devel: Update to latest snapshot
Changes:	846d153a...0f96d398
2022-03-01 17:52:59 +09:00
Yasuhiro Kimura
4900acefd0 www/tdiary: Update to 5.2.1
ReleaseNotes:	https://tdiary.org/20220228.html
2022-03-01 17:52:44 +09:00
Bernard Spil
9b6e30c731 www/nextcloud-notes: Update to 4.3.1 2022-03-01 08:02:25 +00:00
Bernard Spil
e65cdf85b6 databases/mariadb106-server: Fix build with SPIDER disabled
PR:		262178
Reported by:	<ari ish com au>
2022-03-01 07:43:38 +00:00
Adam Weinberger
5e5bcdc46a editors/vim: Update to 8.2.4485 2022-03-01 00:39:33 -07:00
Muhammad Moinur Rahman
29d76ee75d dns/py-dnspython2: Mark DEPRECATED
- After upgrading py-dnspython to 2.2.0 mark this DEPRECATED
- Set EXPIRATION_DATE to 2022-03-30
2022-02-28 20:15:06 -06:00
Muhammad Moinur Rahman
75c97e7a74 Update dependency to py-dnspython
After adding py-dnspython1 and updating py-dnspython to 2.2.0 update
some dependency of ports.
2022-02-28 20:10:52 -06:00
Muhammad Moinur Rahman
5d855cc1c5 dns/py-dnspython: Update version 1.16.0=>2.2.0
- Take MAINTAINERSHIP

Relnotes: https://www.dnspython.org/news/2.2.0/
2022-02-28 19:57:18 -06:00
Muhammad Moinur Rahman
9f292517d7 mail/mailman: Update dependency
dns/pydnspython1 has been created to isolate python 2.7 only version for
the ports that require python 2.7. Update the dependency accordingly.
2022-02-28 19:47:57 -06:00
Muhammad Moinur Rahman
6832a88f6d dns/py-dnspython1: New port
This port is copied from dns/py-dnspython. Assign to original author.
This port is created to streamline the updated version of 2.x release
for using with other ports.

dnspython is a DNS toolkit for Python. It supports almost all record
types. It can be used for queries, zone transfers, and dynamic
updates. It supports TSIG authenticated messages and EDNS0.

dnspython provides both high and low level access to DNS. The high
level classes perform queries for data of a given name, type, and
class, and return an answer set. The low level classes allow direct
manipulation of DNS zones, messages, names, and records.

This is 1.x version of the port which supports python 2.7

WWW: http://www.dnspython.org/
2022-02-28 19:45:18 -06:00
Jan Beich
42822fed93 graphics/mesa-devel: update to 21.4.b.876
Changes:	e5c39bc427...ed9a0d48a9
2022-03-01 00:49:43 +00:00
Jan Beich
f80d299e3d graphics/mesa-devel: expose panfrost after 4ddf9ef51b 2022-03-01 00:49:42 +00:00
Jan Beich
8c889c8cce emulators/rpcs3: update to 0.0.21
Changes:	7d26e61d82...a8e62e1bc1
2022-03-01 00:49:42 +00:00
Jan Beich
785f1ae958 www/flexget: update to 3.3.2
Changes:	https://github.com/Flexget/Flexget/compare/v3.3.1...v3.3.2
Reported by:	Repology
2022-03-01 00:33:53 +00:00
Po-Chuan Hsieh
5cf04ab6cb
www/p5-HTTP-Daemon: Update to 6.13
Changes:	https://metacpan.org/dist/HTTP-Daemon/changes
2022-03-01 07:47:14 +08:00
Po-Chuan Hsieh
1e502ab27f
www/p5-CGI: Update to 4.54
Changes:	https://metacpan.org/dist/CGI/changes
2022-03-01 07:47:14 +08:00
Po-Chuan Hsieh
01f2829d97
textproc/p5-Text-Table-TinyBorderStyle: Update to 0.005
Changes:	https://metacpan.org/dist/Text-Table-TinyBorderStyle/changes
2022-03-01 07:47:14 +08:00
Po-Chuan Hsieh
b94695f8cd
textproc/p5-Text-Table-Org: Update to 0.031
Changes:	https://metacpan.org/dist/Text-Table-Org/changes
2022-03-01 07:47:13 +08:00
Po-Chuan Hsieh
b8e13aa1da
textproc/p5-Text-Table-More: Update to 0.023
Changes:	https://metacpan.org/dist/Text-Table-More/changes
2022-03-01 07:47:13 +08:00
Po-Chuan Hsieh
2fd18f1297
textproc/p5-Text-Table-HTML-DataTables: Update to 0.010
Changes:	https://metacpan.org/dist/Text-Table-HTML-DataTables/changes
2022-03-01 07:47:13 +08:00
Po-Chuan Hsieh
1e09544d1e
textproc/p5-Text-Table-HTML: Update to 0.007
Changes:	https://metacpan.org/dist/Text-Table-HTML/changes
2022-03-01 07:47:13 +08:00
Po-Chuan Hsieh
e2e988c555
textproc/p5-Text-Table-Any: Update to 0.111
Changes:	https://metacpan.org/dist/Text-Table-Any/changes
2022-03-01 07:47:12 +08:00
Po-Chuan Hsieh
89ac15c476
textproc/p5-Text-ANSITable: Update to 0.608
Changes:	https://metacpan.org/dist/Text-ANSITable/changes
2022-03-01 07:47:12 +08:00
Po-Chuan Hsieh
c15a3e100d
security/p5-Crypt-OpenSSL-Guess: Update to 0.15
Changes:	https://metacpan.org/dist/Crypt-OpenSSL-Guess/changes
2022-03-01 07:47:12 +08:00
Po-Chuan Hsieh
8a5c1fb64c
math/p5-Math-GMPz: Update to 0.53
Changes:	https://metacpan.org/dist/Math-GMPz/changes
2022-03-01 07:47:12 +08:00
Po-Chuan Hsieh
dd925d3a16
math/p5-Math-GMPq: Update to 0.49
Changes:	https://metacpan.org/dist/Math-GMPq/changes
2022-03-01 07:47:11 +08:00
Po-Chuan Hsieh
0222c1e0a0
math/p5-Math-GMPf: Update to 0.46
Changes:	https://metacpan.org/dist/Math-GMPf/changes
2022-03-01 07:47:11 +08:00
Po-Chuan Hsieh
b73cd9920d
mail/p5-Mail-Message: Update to 3.012
Changes:	https://metacpan.org/dist/Mail-Message/changes
2022-03-01 07:47:11 +08:00
Po-Chuan Hsieh
c4d0c73804
lang/p5-Scalar-List-Utils: Update to 1.61
Changes:	https://metacpan.org/dist/Scalar-List-Utils/changes
2022-03-01 07:47:11 +08:00
Po-Chuan Hsieh
c43b7e9f7e
devel/p5-experimental: Update to 0.027
Changes:	https://metacpan.org/dist/experimental/changes
2022-03-01 07:47:10 +08:00
Po-Chuan Hsieh
b60c63cd3f
devel/p5-XS-Parse-Keyword: Update to 0.22
Changes:	https://metacpan.org/dist/XS-Parse-Keyword/changes
2022-03-01 07:47:10 +08:00
Po-Chuan Hsieh
4a32f964ba
devel/p5-Test2-Harness-UI: Update to 0.000108
Changes:	https://metacpan.org/dist/Test2-Harness-UI/changes
2022-03-01 07:47:10 +08:00