aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAgeFilesLines
* net/py-whois: update to 0.9.27George Mitchell2023-05-212-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Selected upstream changes: Features: * Verbose output on stderr during debugging to see how the internal functions are doing their work * raise a exception on Quota ecceeded type responses * raise a exception on PrivateRegistry tld's where we know the tld and know we don't know anything * allow for optional cleaning the whois response before extracting information * optionally allow IDN's to be translated to Punycode 2022-09-27: maarten_boot * add test2.py to replace test.py * ./test2.py -h will show the possible usage * all tests from the original program are now files in the ./tests directory * test can be done on all supported tld's with -a or --all and limitest by regex with -r <pattern> or --reg=<pattern> 2022-11-04: maarten_boot * add support for Iana example.com, example.net 2022-11-07: maarten_boot * add testing against static known data in dir: ./testdata/<domain>/output * test.sh will test all domains in testdata without actually calling whois, the input data is instead read from testdata/<domain>/input 2022-11-11: maarten_boot * add support for returning the raw data from the whois command: flag include_raw_whois_text * add support for handling unsupported domains via whois raw text only: flag return_raw_text_for_unsupported_tld PR: 271380 Approved by: 0xdutra@gmail.com (maintainer)
* net/rospo: update to 0.11.3Robert Clausecker2023-05-212-6/+6
| | | | | Changelog: https://github.com/ferama/rospo/releases/tag/v0.11.2 Changelog: https://github.com/ferama/rospo/releases/tag/v0.11.3
* net/pacemaker1, net/pacemaker2: drop maintainershipVinícius Zavam2023-05-211-1/+1
|
* net/corosync2, net/corosync3: drop maintainershipVinícius Zavam2023-05-211-1/+1
|
* net/nqptp: Update to 1.2Emanuel Haupt2023-05-212-5/+4
|
* net/libfabric: fix build with clang 16Dimitry Andric2023-05-207-0/+104
| | | | | | | | | | | | | | | | | | | | | | | | | Clang 16 has a new error about incompatible function types, which shows up when building net/libfabric (on i386): prov/hook/src/hook_domain.c:124:12: error: incompatible function pointer types passing 'ssize_t (struct fid_ep *, size_t)' (aka 'int (struct fid_ep *, unsigned int)') to parameter of type 'ssize_t (*)(struct fid_ep *, uint64_t)' (aka 'int (*)(struct fid_ep *, unsigned long long)') [-Wincompatible-function-pointer-types] hook_credit_handler); ^~~~~~~~~~~~~~~~~~~ prov/hook/src/hook_domain.c:150:17: error: incompatible function pointer types initializing 'void (*)(struct fid_ep *, uint64_t)' (aka 'void (*)(struct fid_ep *, unsigned long long)') with an expression of type 'void (struct fid_ep *, size_t)' (aka 'void (struct fid_ep *, unsigned int)') [-Wincompatible-function-pointer-types] .add_credits = hook_add_credits, ^~~~~~~~~~~~~~~~ prov/hook/src/hook_domain.c:152:22: error: incompatible function pointer types initializing 'void (*)(struct fid_domain *, ssize_t (*)(struct fid_ep *, uint64_t))' (aka 'void (*)(struct fid_domain *, int (*)(struct fid_ep *, unsigned long long))') with an expression of type 'void (struct fid_domain *, ssize_t (*)(struct fid_ep *, size_t))' (aka 'void (struct fid_domain *, int (*)(struct fid_ep *, unsigned int))') [-Wincompatible-function-pointer-types] .set_send_handler = hook_set_send_handler, ^~~~~~~~~~~~~~~~~~~~~ The problem is that the 'credits' parameter used in these functions is size_t in some cases, but uint64_t in other cases. On LP64 architectures this does not result in any errors, but on e.g. i386 you get the above. Make the 'credits' parameter uint64_t everywhere to fix this issue. PR: 271537 Approved by: yuri (maintainer) MFH: 2023Q2
* net/mpd5: new small feature and bugfixEugene Grosbein2023-05-203-15/+114
| | | | | | | | | - Import r2539 from upstream: introduce new interface description conversion specification %s for last description change time, in unixtime (seconds). - Unbreak SIGUSR1/SIGUSR2 mechanics to open/close first link broken in mpd5-5.9_10 (*) PR: 271508 (*)
* net/libwebsockets: Fix build with LibreSSLFelix Palmen2023-05-192-7/+20
| | | | | | | | | | | | | | | The build system uses both cmake and pkg-config to find OpenSSL and just combines the results. Our base OpenSSL didn't provide a pkg-config file until recently, but the LibreSSL port does. From the cmake detection, we get absolute library paths, from pkg-config just library names (-lssl). The latter are found in base during linking. The result is linking both OpenSSL and LibreSSL. Therefore add a patch that just skips pkg-config for OpenSSL and remove the broken workaround from the port Makefile. PR: 271495 Approved by: tcberner (mentor, implicit)
* net/nats-server: update to version 2.9.17Jimmy Olgeni2023-05-192-7/+7
|
* net/py-shodan: Update to 1.29.1Emanuel Haupt2023-05-182-4/+4
|
* net/libmdf: update to 1.0.27Henrik Holst2023-05-183-5/+7
| | | | | | | | | | | | | | | | | | Changes in release 1.0.27: * Support strings compressed with zstd * changed how the size of the read buffer is increased in response to the widening of the tcp/ip window. * small optimization in mdf_get_next_message2() * New functions: - mdf_extract() : extracts the current message from the mdf handle. - mdf_inject() : injects a previously extracted message to the mdf handle. * New properties: - MDF_OPT_RBUF_SIZE : returns the number of bytes waiting to be processed in the internaly read buffer after a call to mdf_consume(). - MDF_OPT_RBUF_MAXSIZE : returns or sets the current size of the internal read buffer. PR: 271464
* net/megacmd: update to 1.6.3kikadf2023-05-182-66/+10
| | | | | | | | Update megasdk to 4.17.1d. Simplify SHEBANG_FILES. Run mega-* wrapper commands with sh(1) instead of bash(1). PR: 271430
* net/haproxy-devel: update to version 2.8-dev12Dmitry Sivachenko2023-05-182-4/+4
|
* net/py-urllib3: Remove devel/py-pytest-freezegun dependency because it it ↵Yuri Victorovich2023-05-181-1/+0
| | | | unmaintained and broken
* www/gitlab-ce: added new ports required for gitlab-ce 16.0.0Matthias Fechner2023-05-184-0/+22
|
* */*: llvm15 build fixesMuhammad Moinur Rahman2023-05-1712-12/+12
| | | | | | | llvm15 was also merged into 13.2-STABLE effective from OSVERSION 1302505. Fix the ports that failed to build with llvm15. Approved by: portmgr (blanket)
* KDE: Update KDE Frameworks to 5.106Tobias C. Berner2023-05-176-18/+18
| | | | | | | | | | | | | | | | | | | Saturday, 13 May 2023 KDE today announces the release of KDE Frameworks 5.106.0. KDE Frameworks are 83 addon libraries to Qt which provide a wide variety of commonly needed functionality in mature, peer reviewed and well tested libraries with friendly licensing terms. For an introduction see the KDE Frameworks release announcement. This release is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner. Announcement: https://kde.org/announcements/frameworks/5/5.106.0/ Exp-run by: antoine PR: 271426
* net/google-cloud-sdk: Update version 430.0.0=>431.0.0Muhammad Moinur Rahman2023-05-172-4/+4
|
* net/rp-pppoe: limit PORTSCOUT to checking 3.x versionsMatthias Andree2023-05-161-0/+1
|
* net/norm: fix build with clang 16Dimitry Andric2023-05-161-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | Since clang 16 (and gcc 11) the default C++ standard is now gnu++17. Because net/norm's build system does not explicitly set the C++ standard, this leads to several errors: ../src/common/normEncoderRS8.cpp:264:5: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister] USE_GF_MULC ; ^ ../src/common/normEncoderRS8.cpp:136:21: note: expanded from macro 'USE_GF_MULC' #define USE_GF_MULC register gf * __gf_mulc_ ^ ../src/common/normEncoderRS8.cpp:265:5: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister] register gf* dst = dst1; ^~~~~~~~~ ../src/common/normEncoderRS8.cpp:266:5: error: ISO C++17 does not allow 'register' storage class specifier [-Wregister] register gf* src = src1 ; ^~~~~~~~~ Add USE_CXXSTD=gnu++98 to compile for C++98 with GNU extensions instead, as net/norm does not seem to use any C++11 or later constructs. PR: 271415 Approved by: portmgr (build fix blanket) MFH: 2023Q2
* net/rubygem-octokit4: make version 4.25.1 availableMatthias Fechner2023-05-164-0/+27
|
* net/py-shodan: Update to 1.29.0Emanuel Haupt2023-05-162-4/+4
|
* Cleanup: drop redundant DESTDIR propagation via MAKE_{ARGS,ENV}Alexey Dokuchaev2023-05-161-2/+1
| | | | | | | Our framework usually DTRT; sometimes it's necessary to pass it explicitly, e.g. for ports with USES+=qmake or which use exotic build systems, but these are mostly staging dawn and apparently debug leftovers, so remove them to not confuse the reader.
* net/downzemall: update the port to version 3.0.5Alexey Dokuchaev2023-05-162-4/+4
| | | | Reported by: portscout
* net/jwhois: import Fedora patches & pass to maintainerKoichiro Iwao2023-05-154-1014/+27
| | | | | | | | While here, use subst rather than using hardcoded path for lynx, tiny cleanups. PR: 271401 Reviewed by: meta (myself, revised submitter's patch)
* net/asio: Bump PORTREVISION. net/asio was updated to 1.28.0Jose Alonso Cardenas Marquez2023-05-152-1/+2
|
* net/asio: Update to 1.28.0Oleh Hushchenkov2023-05-153-8/+22
| | | | PR: 271157
* net/honeyd: Unbreak on HEADMuhammad Moinur Rahman2023-05-151-0/+4
| | | | Approved by: portmgr (blanket)
* net/trippy: Update to 0.8.0Emanuel Haupt2023-05-153-167/+268
|
* net/go-tcping: Update to 1.22.1Emanuel Haupt2023-05-152-8/+8
|
* net/libproxy-perl: Unbreak on HEADMuhammad Moinur Rahman2023-05-141-0/+6
| | | | Approved by: portmgr (blanket)
* www/gitlab-ce: major update to 15.11.3Matthias Fechner2023-05-142-6/+6
| | | | | Changelog: https://about.gitlab.com/releases/2023/04/22/gitlab-15-11-released/
* net/rubygem-spamcheck: update to 1.3.0.Matthias Fechner2023-05-142-5/+4
| | | | Required for gitlab-ce 15.11
* net/rubygem-openid_connect: update to 1.3.1Matthias Fechner2023-05-142-5/+6
| | | | | | Required for gitlab-ce 15.11 Changelog: https://github.com/nov/openid_connect/releases/tag/v1.3.1
* net/rubygem-omniauth-auth0: update to 3.1.0Matthias Fechner2023-05-142-4/+4
| | | | | | Required for gitlab-ce 15.11 Changelog: https://github.com/auth0/omniauth-auth0/blob/master/CHANGELOG.md#v310-2022-11-04
* net/rubygem-octokit: update to 5.6.1Matthias Fechner2023-05-142-5/+5
| | | | | | Required for gitlab-ce 15.11 Changelog: https://github.com/octokit/octokit.rb/releases/tag/v5.6.1
* KDE: add missing plist updates to 23.04.1Tobias C. Berner2023-05-141-0/+1
| | | | Follow-up to: 812d7c232f86087ee5853e97eb643fd5a561bba8
* KDE: Update KDE Gear to 23.04.1Tobias C. Berner2023-05-1434-99/+100
| | | | | | | | | | | | | | | | | | | KDE Gear 23.04.1 Thursday, 11 May 2023 Over 120 individual programs plus dozens of programmer libraries and feature plugins are released simultaneogqusly as part of KDE Gear. Today they all get new bugfix source releases with updated translations, including: * kdenlive: Fix corrupted project files on opening * skanpage: Scan Export window's OCR language list is now scrollable * spectacle: Quitting Spectacle with Escape no longer affects windows below it Announcement: https://kde.org/announcements/gear/23.04.1/ Changelog: https://kde.org/announcements/changelogs/gear/23.04.1/
* graphics/poppler: bump dependenciesTobias C. Berner2023-05-141-1/+1
|
* net/ocserv: Update to 1.1.7Juraj Lutter2023-05-134-33/+26
| | | | | - Update to 1.1.7 - Regen patches
* net/libtnl: Unbreak on HEADMuhammad Moinur Rahman2023-05-133-53/+71
| | | | | | - Refresh patches - Pet portclippy - Adopt port
* net/google-cloud-sdk: Update version 429.0.0=>430.0.0Muhammad Moinur Rahman2023-05-122-4/+4
|
* net/wifi-firmware-*: use metaport for "base" and switch to Makefile.incBjoern A. Zeeb2023-05-1210-12/+30
| | | | | | | | | | | | | | | | | | | Rename the wifi-firmware-base to wifi-firmware-kmod (similar to gpu-firmware-mod). The former was never build so technically it is no move. Make the new subdir a metaport including all wireless firmware. Move the old Makefile to Makefile.inc and adjust the child ports accordingly. This solves two problems: (1) the base port is now buildable and (2) there is a single port to depend on to add all the needed firmware files to, e.g., put on a release media. Suggested by: amdmi3 PR: 270742 Reviewed by: ehaupt, jrm Approved by: ehaupt, jrm Differential Revision: https://reviews.freebsd.org/D40014
* net/py-GeoIP2: Update to 4.7.0Olivier Cochard2023-05-112-4/+4
|
* net/py-maxminddb: Update to 2.3.0Olivier Cochard2023-05-112-5/+4
|
* net/krfb: make pipewire optionalVladimir Druzenko2023-05-112-9/+13
| | | | | | | | Keep it on by default. PR: 268761 Approved by: arrowd (mentor, kde@) Differential Revision: https://reviews.freebsd.org/D39976
* net/haproxy-devel: update to version 2.7-dev11Dmitry Sivachenko2023-05-111-0/+1
|
* net/haproxy-devel: update to version 2.8-dev11Dmitry Sivachenko2023-05-112-4/+4
|
* net/xrdp: Update to 0.9.22Koichiro Iwao2023-05-112-5/+4
| | | | Changes: https://github.com/neutrinolabs/xrdp/releases/tag/v0.9.22
* net/remmina: update to 1.4.30Fernando Apesteguía2023-05-104-18/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | Remove unneeded local patch. ChangeLog: * Update snap build to use freerdp 2.9.0 * Add text mime type formats to RDP clibpoard * Ensure timer is null after destruction * Ability to view passwords in the clear using a toggle in the password field * Made icons viewable in lower resulution. * Improve mime file * Appearance preferences now refresh in the main window when the user... * This should be a message instead of a info print. So that the user can see it by default. * remmina_rdp_monitor_get(): fix maxw, maxh and monitorids calculation * Rem 2864 * Fix undefined symbol error when importing gi in a python extension * make it build on macOS * Rem 2864 * Fix autostart file flatpak exec command * [REM-1987] allow for dynamic resolution updates for vnc connections * Fix overlapping text in preferences menu, terminal tab * Allow could not authenticate banner to go away after successful reauthentication * Add environments for easy manual testing