Commit Graph

549136 Commits

Author SHA1 Message Date
Piotr Kubaj
7402df08e6 emulators/dynamips-community: enable on powerpc
Builds fine.
2021-06-19 01:31:40 +00:00
Piotr Kubaj
a059e52e56 sysutils/lnav: mark BROKEN on powerpc
Same issue as on i386.
2021-06-19 01:31:39 +00:00
Jan Beich
7e413d93a6 graphics/mesa-devel: update to 21.1.b.3189
Changes:	eb272f6571...82de184c3a
2021-06-19 00:23:12 +00:00
Jan Beich
65a8ba5bda emulators/yuzu: update to s20210617
Changes:	973bf306e...3870ba670
2021-06-19 00:23:12 +00:00
Jan Beich
2b45f81322 emulators/rpcs3: update to 0.0.16.12404
Changes:	9fadd48ea...72680c770
2021-06-19 00:23:12 +00:00
Cy Schubert
168c57ba5c ftpd/freebsd-ftpd: Correct pkg-descr 2021-06-18 16:02:46 -07:00
Cy Schubert
24cd2ad24f ftp/freebsd-ftpd: Add ftp/freebsd-ftpd
This new port contains the legacy FreeBSD ftpd which will be removed
from FreeBSD-14.
2021-06-18 15:59:01 -07:00
Dries Michiels
15908d8556 multimedia/emby-server: Update to 4.6.3.0
PR:		256695
Approved by:	maintainer
2021-06-18 15:40:33 -07:00
Matthias Andree
24b0c58ea4 security/openvpn: update to v2.5.3
Changelog: https://github.com/OpenVPN/openvpn/blob/release/2.5/Changes.rst

FreeBSD relevant changes:
Bugfixes
*   disable connect-retry backoff for p2p (--secret) instances (Trac #1010, #1384)
*   fix build with mbedtls w/o SSL renegotiation support
*   fix small memory leak in free_key_ctx for auth_token
*   Fix SIGSEGV (NULL deref) receiving push "echo" (Trac #1409) -
    -> in FreeBSD ports, already fixed in 2.5.2_2 (PORTREVISION 2).

User-visible Changes
*   update copyright messages in files and --version output

New features
*   add --auth-token-user option (for --auth-token deployments without --auth-user-pass in client config)
2021-06-18 23:58:29 +02:00
Jason W. Bacon
6df92a09ad biology/biostar-tools: Meta-port for Biostar Handbook tools
Biostar-Tools is a metaport for installing all the tools necessary to work
through the Biostar Handbook, except for bedGrapToBigWig, which has license
restrictions.  If you need bedGraphToBigWig, run

    cd /usr/ports/biology/ucsc-userapps && make install clean
2021-06-18 16:56:23 -05:00
Jason W. Bacon
98807e08be science/csvtk: Cross-platform and ultrafast toolkit for CSV/TSV processing
CSV/TSV formats are basic and ubiquitous file formats in both Bioinformatics
and data science.

People usually use spreadsheet software like MS Excel to process table data.
However this is all by clicking and typing, which is not automated and is
time-consuming to repeat, especially when you want to apply similar operations
with different datasets or purposes.

csvtk is convenient for rapid data investigation and also easy to integrate
into analysis pipelines. It could save you lots of time in (not) writing
Python/R scripts.
2021-06-18 16:28:21 -05:00
Gerald Pfeifer
8f52533f63 lang/gcc11: New port cloned from gcc11-devel
Welcome GCC 11.1, the first release of the GCC 11 series!

https://gcc.gnu.org/gcc-11/changes.html has a comprehensive overview
of many improvements and changes and
https://gcc.gnu.org/gcc-11/porting_to.html highlights issues you may
encounter porting to this version. This release series should not
prove too disruptive, mainly C++ defaulting to GNU++17 and some more
libstdc++ headers will need to be included explicitly.

To give a brief overview of some of the more noticable changes:

Some short options of the gcov tool have been renamed: -i to -j and
-j to -H.

Debugging information defaults to DWARF 5.

Vectorizer improvements, a new IPA-modref pass to track side effects
of function calls and improve precision of points-to-analysis, better
interprocedural constant propagation (IP-CP), smaller link-time
optimization (LTO) object files.

OpenMP 4.5 is now fully supported and OpenMP 5.0 support has been
extended.

A set of new warnings including -Wmismatched-dealloc, -Wsizeof-array-div,
-Wstringop-overread, and enhancements to existing warnings.

Several new features from the upcoming C2X revision of the ISO C
standard are supported with -std=c2x and -std=gnu2x.

Several C++20 features have been implemented and even some of the
upcoming C++23 draft features with the -std=c++23 and the like.

libstdc++ features improved C++17 support.

And, last but not least, loads of improvements for all of FreeBSD's
architectures.
2021-06-18 20:08:57 +00:00
Evgeniy Khramtsov
d571716015 graphics/cairo: unbreak without X11 after dbca720cde
gl-device-release.c:33:8: error: unknown type name 'Window'
static Window
       ^
gl-device-release.c:34:21: error: unknown type name 'Display'
create_test_window (Display *display,
                    ^
gl-device-release.c:35:7: error: unknown type name 'GLXContext'; did you mean 'EGLContext'?
                    GLXContext glx_context,
                    ^~~~~~~~~~
                    EGLContext
/usr/local/include/EGL/egl.h:64:15: note: 'EGLContext' declared here
typedef void *EGLContext;
              ^
gl-device-release.c:36:7: error: unknown type name 'XVisualInfo'
                    XVisualInfo *visual_info)
                    ^
gl-oversized-surface.c:38:2: error: use of undeclared identifier 'GLX_RGBA'
        GLX_RGBA,
        ^
gl-oversized-surface.c:39:2: error: use of undeclared identifier 'GLX_RED_SIZE'
        GLX_RED_SIZE, 1,
        ^
gl-oversized-surface.c:40:2: error: use of undeclared identifier 'GLX_GREEN_SIZE'
        GLX_GREEN_SIZE, 1,
        ^
gl-oversized-surface.c:41:2: error: use of undeclared identifier 'GLX_BLUE_SIZE'
        GLX_BLUE_SIZE, 1,
        ^
gl-oversized-surface.c:42:2: error: use of undeclared identifier 'GLX_ALPHA_SIZE'
        GLX_ALPHA_SIZE, 1,
        ^
gl-surface-source.c:33:5: error: unknown type name 'Display'
    Display *dpy;
    ^
gl-surface-source.c:34:5: error: unknown type name 'GLXContext'; did you mean 'EGLContext'?
    GLXContext ctx;
    ^~~~~~~~~~
    EGLContext
/usr/local/include/EGL/egl.h:64:15: note: 'EGLContext' declared here
typedef void *EGLContext;
              ^
gl-surface-source.c:42:5: error: implicit declaration of function 'glXDestroyContext' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    glXDestroyContext (arg->dpy, arg->ctx);
    ^
gl-surface-source.c:42:5: note: did you mean 'eglDestroyContext'?
/usr/local/include/EGL/egl.h:156:31: note: 'eglDestroyContext' declared here
EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx);
                              ^
gl-surface-source.c:43:5: error: implicit declaration of function 'XCloseDisplay' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    XCloseDisplay (arg->dpy);
    ^
gl-device-release.c:38:5: error: use of undeclared identifier 'Colormap'
    Colormap colormap;
    ^
gl-device-release.c:39:5: error: use of undeclared identifier 'XSetWindowAttributes'
    XSetWindowAttributes window_attributes;
    ^
gl-device-release.c:40:5: error: use of undeclared identifier 'Window'
    Window window = None;
    ^
gl-device-release.c:42:5: error: use of undeclared identifier 'colormap'
    colormap = XCreateColormap (display,
    ^
gl-device-release.c:42:16: error: implicit declaration of function 'XCreateColormap' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    colormap = XCreateColormap (display,
               ^
gl-device-release.c:43:8: error: implicit declaration of function 'RootWindow' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
                            RootWindow (display, visual_info->screen),
                            ^
gl-device-release.c:45:8: error: use of undeclared identifier 'AllocNone'
                            AllocNone);
                            ^
gl-oversized-surface.c:43:2: error: use of undeclared identifier 'GLX_DOUBLEBUFFER'
        GLX_DOUBLEBUFFER,
        ^
gl-oversized-surface.c:44:2: error: use of undeclared identifier 'None'
        None
        ^
gl-oversized-surface.c:47:5: error: use of undeclared identifier 'Display'
    Display *display;
    ^
gl-oversized-surface.c:47:14: error: use of undeclared identifier 'display'
    Display *display;
             ^
gl-oversized-surface.c:48:5: error: use of undeclared identifier 'XVisualInfo'
    XVisualInfo *visual_info;
    ^
gl-oversized-surface.c:48:18: error: use of undeclared identifier 'visual_info'
    XVisualInfo *visual_info;
                 ^
gl-oversized-surface.c:49:5: error: unknown type name 'GLXContext'; did you mean 'EGLContext'?
    GLXContext glx_context;
    ^~~~~~~~~~
    EGLContext
/usr/local/include/EGL/egl.h:64:15: note: 'EGLContext' declared here
typedef void *EGLContext;
              ^
gl-oversized-surface.c:54:5: error: use of undeclared identifier 'display'
    display = XOpenDisplay (NULL);
    ^
gl-surface-source.c:52:2: error: use of undeclared identifier 'GLX_RGBA'
        GLX_RGBA,
        ^
gl-surface-source.c:53:2: error: use of undeclared identifier 'GLX_RED_SIZE'
        GLX_RED_SIZE, 1,
        ^
gl-surface-source.c:54:2: error: use of undeclared identifier 'GLX_GREEN_SIZE'
        GLX_GREEN_SIZE, 1,
        ^
gl-surface-source.c:55:2: error: use of undeclared identifier 'GLX_BLUE_SIZE'
        GLX_BLUE_SIZE, 1,
        ^
gl-surface-source.c:56:2: error: use of undeclared identifier 'GLX_ALPHA_SIZE'
        GLX_ALPHA_SIZE, 1,
        ^
gl-surface-source.c:57:2: error: use of undeclared identifier 'GLX_DOUBLEBUFFER'
        GLX_DOUBLEBUFFER,
        ^
gl-surface-source.c:58:2: error: use of undeclared identifier 'None'
        None
        ^
gl-surface-source.c:60:5: error: use of undeclared identifier 'XVisualInfo'
    XVisualInfo *visinfo;
    ^
gl-surface-source.c:60:18: error: use of undeclared identifier 'visinfo'
    XVisualInfo *visinfo;
                 ^
gl-device-release.c:46:5: error: use of undeclared identifier 'window_attributes'
    window_attributes.colormap = colormap;
    ^
gl-device-release.c:46:34: error: use of undeclared identifier 'colormap'
    window_attributes.colormap = colormap;
                                 ^
gl-device-release.c:47:5: error: use of undeclared identifier 'window_attributes'
    window_attributes.border_pixel = 0;
    ^
gl-device-release.c:48:5: error: use of undeclared identifier 'window'
    window = XCreateWindow (display, RootWindow (display, visual_info->screen),
    ^
gl-device-release.c:48:14: error: implicit declaration of function 'XCreateWindow' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    window = XCreateWindow (display, RootWindow (display, visual_info->screen),
             ^
gl-oversized-surface.c:54:15: error: implicit declaration of function 'XOpenDisplay' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    display = XOpenDisplay (NULL);
              ^
gl-oversized-surface.c:55:9: error: use of undeclared identifier 'display'
    if (display == NULL)
        ^
gl-oversized-surface.c:58:5: error: use of undeclared identifier 'visual_info'
    visual_info = glXChooseVisual (display, DefaultScreen (display), rgba_attribs);
    ^
gl-oversized-surface.c:58:19: error: implicit declaration of function 'glXChooseVisual' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    visual_info = glXChooseVisual (display, DefaultScreen (display), rgba_attribs);
                  ^
gl-oversized-surface.c:58:45: error: implicit declaration of function 'DefaultScreen' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    visual_info = glXChooseVisual (display, DefaultScreen (display), rgba_attribs);
gl-surface-source.c:61:5: error: unknown type name 'GLXContext'; did you mean 'EGLContext'?
    GLXContext ctx;
    ^~~~~~~~~~
    EGLContext
/usr/local/include/EGL/egl.h:64:15: note: 'EGLContext' declared here
typedef void *EGLContext;
              ^
gl-surface-source.c:65:5: error: use of undeclared identifier 'Display'
    Display *dpy;
    ^
gl-surface-source.c:65:14: error: use of undeclared identifier 'dpy'
    Display *dpy;
             ^
gl-surface-source.c:67:5: error: use of undeclared identifier 'dpy'
    dpy = XOpenDisplay (NULL);
    ^
gl-surface-source.c:67:11: error: implicit declaration of function 'XOpenDisplay' is invalid in C99 [-Werror,-Wimplicit-function-declaration]
    dpy = XOpenDisplay (NULL);
          ^
gl-surface-source.c:68:9: error: use of undeclared identifier 'dpy'
    if (dpy == NULL)
        ^
gl-oversized-surface.c:58:60: error: use of undeclared identifier 'display'
    visual_info = glXChooseVisual (display, DefaultScreen (display), rgba_attribs);
                                                           ^

PR:		256180
Reported by:	shrdlu19@gmail.com
Approved by:	maintainer timeout (3 weeks)
2021-06-18 19:27:50 +00:00
Dan Langille
f5536c9ffd security/acme.sh: ensure sed -i works in examples/acme.sh/dnsapi/dns_nsd.sh
PR:		256664
Reported by:	Freddy DISSAUX <dsx@bsdsx.fr>
2021-06-18 18:32:22 +00:00
Li-Wen Hsu
d3e6f5b9d4
devel/riscv64-xtoolchain-gcc: Retire and prefer devel/freebsd-gcc9@riscv64
Follow 39c7b0126e for removing old GCC
external toolchain ports.
2021-06-19 02:21:17 +08:00
Palle Girgensohn
ed14e3e68e net-mgmt/telegraf: upgrade to 1.19.0
Release notes:	https://github.com/influxdata/telegraf/releases/tag/v1.19.0
2021-06-18 19:30:50 +02:00
Yuri Victorovich
a4860af884 science/py-nilearn: Update 0.7.1 -> 0.8.0
Reported by:	portscout
2021-06-18 10:16:59 -07:00
Yuri Victorovich
6b804e553b devel/py-python-gist: Update 0.10.4 -> 0.10.5
Reported by:	portscout
2021-06-18 10:16:59 -07:00
Yuri Victorovich
bee20f2920 devel/py-dill: Update 0.3.3 -> 0.3.4
Reported by:	portscout
2021-06-18 10:16:58 -07:00
Yuri Victorovich
3835fe1f17 cad/netgen-lvs: Update 1.5.185 -> 1.5.188
Reported by:	portscout
2021-06-18 10:16:58 -07:00
Yuri Victorovich
a6079c8520 cad/verilator: Update 4.202 -> 4.204 2021-06-18 10:16:57 -07:00
Yuri Victorovich
1300ef7fc4 audio/yoshimi: Update 2.0.1 -> 2.0.2
Reported by:	portscout
2021-06-18 10:16:57 -07:00
Yuri Victorovich
3b9003e06b audio/boops-lv2: Update 1.6.0 -> 1.6.2
Reported by:	portscout
2021-06-18 10:16:56 -07:00
Yuri Victorovich
8cd95163f2 audio/gsequencer: 3.8.11 -> 3.8.13
Reported by:	portscout
2021-06-18 10:16:56 -07:00
Yuri Victorovich
b370def5e8 misc/lf: Update 22 -> 23
Reported by:	portscout
2021-06-18 10:16:55 -07:00
Yuri Victorovich
b1b96d4935 math/py-ducc0: Update 0.13.0 -> 0.14.0
Reported by:	portscout
2021-06-18 10:16:55 -07:00
Thierry Thomas
19eb5c1440 math/mathmod: upgrade to 11.1
Release notes at <https://github.com/parisolab/mathmod/releases/tag/11.1>.
2021-06-18 17:57:43 +02:00
Thierry Thomas
ff36c7fcf8 science/code_saturne: upgrade to 7.0
Changelog at <https://github.com/code-saturne/code_saturne/blob/v7.0/NEWS.md>.
2021-06-18 17:56:36 +02:00
Jan Beich
177f9bdf3e devel/cargo-c: update to 0.8.2
Changes:	https://github.com/lu-zero/cargo-c/releases/tag/v0.8.2
Reported by:	GitHub (watch releases)
2021-06-18 15:41:53 +00:00
Thierry Thomas
beb4adb313 graphics/ImageMagick[6-7]: optionize the dependency on ffmpeg
- Make an option for FFMPEG, and do not enable it by default.

- Do not bump PORTREVISION: pkg will take care of it, and ports users
  may rebuild it if needed.

- Note: there is no simple way to deactivate this option when ffmpeg is
  already installed.

PR:		256215
Reported by:	Toshimichi Masubuchi (ImageMagick7) and gessel (6)
Approved by:	maintainer’s time-out
2021-06-18 17:39:42 +02:00
Rainer Hurling
aeb2d6000a x11/kitty: Update to 0.21.1
Fix a regression in the previous release that could cause
a crash when changing layouts and mousing.

Changelog: https://sw.kovidgoyal.net/kitty/changelog.html#id1

PR:		256678
Reported by:	Alexis Praga <alexis.praga@free.fr> (maintainer)
2021-06-18 17:33:34 +02:00
John Baldwin
39c7b0126e devel/*{-xtoolchain,}-gcc: Retire the old GCC external toolchain ports.
These have been supplanted by the devel/freebsd-gcc6 port which uses
separate flavors for each target architecture and bundles the
CROSS_TOOLCHAIN makefile.

Feedback from:	jrm
Reviewed by:	lwhsu, bapt
Differential Revision:	https://reviews.freebsd.org/D30765
2021-06-18 08:29:35 -07:00
Guido Falsi
c7ba3d9534 net-mgmt/icingaweb2: Fix at runtime with php 8
PR:		256656
Approved by:	lme (maintainer)
Obtained from:	4bc5350eba
		dc7a8c8d8b
2021-06-18 16:45:53 +02:00
Christoph Moench-Tegeder
51048d8388 graphics/shotwell: update to 0.30.2
Release Notes:
  https://download.gnome.org/sources/shotwell/0.30/shotwell-0.30.12.news
2021-06-18 16:27:06 +02:00
Rene Ladan
d11be88745 www/chromium: update to 91.0.4472.114
MFH:		2021Q2
Security:	https://vuxml.freebsd.org/freebsd/afdc7579-d023-11eb-bcad-3065ec8fd3ec.html
2021-06-18 15:29:33 +02:00
Tobias C. Berner
a6989eedfe devel/qbs: update to 1.19.1 2021-06-18 15:21:06 +02:00
Alexey Dokuchaev
458c0053ef misc/clifm: new port had been added (+)
Unlike most of the terminal file managers, CliFM replaces the
traditional curses interface by a simple command-line interface.
It is a file manager, but also a shell extension.

WWW: https://github.com/leo-arch/clifm
2021-06-18 13:02:32 +00:00
Tobias C. Berner
f54936a1ad devel/libphonenumber: update to 8.12.25 2021-06-18 14:27:00 +02:00
Dmitry Sivachenko
e1447306b7 net/haproxy: fix build with Prometheus exporter enabled.
Reported by: Johan Hendriks <joh.hendriks@gmail.com>
2021-06-18 11:28:38 +00:00
Rene Ladan
fd3ddcabac security/vuxml: Add www/chromium < 91.0.4472.114
Obtained from:	https://chromereleases.googleblog.com/2021/06/stable-channel-update-for-desktop_17.html
2021-06-18 13:01:23 +02:00
Pietro Cerutti
a274d33557 x11-toolkits/tk87: update to 8.7a5 RC3 2021-06-18 10:21:46 +00:00
Pietro Cerutti
8c1bedf167 lang/tcl87: update to 8.7a5 RC3 2021-06-18 10:21:46 +00:00
TAKATSU Tomonari
7c0b09a685 textproc/R-cran-rbibutils: Update to 2.2.1 2021-06-18 18:53:30 +09:00
TAKATSU Tomonari
815dfa993d graphics/R-cran-s2: Update to 1.0.6 2021-06-18 18:50:12 +09:00
Guido Falsi
cc80ca9ffd net/ntopng: Update to latest upstream snaapshot 2021-06-18 11:42:05 +02:00
Emanuel Haupt
1ebf3e6b99 finance/electrum: Update to 4.1.4 2021-06-18 09:20:10 +02:00
Emanuel Haupt
5fd60d8795 devel/py-aiorpcX-legacy: new port for electrum
Add legacy version of devel/py-aiorpcX in order to satisfy version
constraints of finance/electrum. Also install register conflicts.
2021-06-18 09:19:50 +02:00
Jose Alonso Cardenas Marquez
dc5371babb security/gvm: Update to 21.4.0
The following ports part of security gvm were updated

security/gvmd: Update to 21.4.0
security/gvm-libs: Update to 21.4.0
security/openvas: Update to 21.4.0
security/py-ospd-openvas: Update to 21.4.0
security/py-ospd: Update to 21.4.0
security/greenbone-security-assistant: Update to 21.4.0
security/py-python-gvm: Update to 21.5.2
security/py-gvm-tools: Update to 21.6.0

Notable Changes in this Release

- All components and the feed support CVSSv3/CVSSv3.1
- GSA contains a new calculator for these CVSS versions
- Rework of the login page in GSA to have a better entry point into our software
- Dropped support for Internet Explorer
- Dropped support for Microsoft Edge <= 18
- Removed auto false positive feature
- Removed GMP scanner support
- Dropped dynamic severity classes
- Removed support for Python 3.5 and lower

PR:		254630 254632
Reported by:	Eirik Oeverby <ltning-freebsd at anduin.net>
2021-06-18 02:11:58 -05:00
Loïc Bartoletti
e9ba8d53a4 www/py-pelican: Update to 4.6.0
Changes:
  - https://docs.getpelican.com/en/4.6.0/changelog.html

PR:		248886
Reported by:	Andreas Bilke
2021-06-18 07:51:44 +02:00
Neel Chauhan
8e3779b011 mail/evolution-ews: Update to 3.40.2 2021-06-17 22:13:45 -07:00