aboutsummaryrefslogtreecommitdiff
path: root/net
Commit message (Collapse)AuthorAgeFilesLines
* net/rubygem-omniauth-oauth2-gitlab: update to 1.9.0Matthias Fechner2 hours3-22/+6
| | | | Changes: https://github.com/omniauth/omniauth-oauth2/releases
* net/rubygem-oauth2-gitlab: update to 2.0.18Matthias Fechner2 hours2-5/+5
| | | | Changes: https://github.com/oauth-xx/oauth2/blob/main/CHANGELOG.md
* KDE: Update KDE Gear to 25.12.0Max Brazhnikov18 hours36-103/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Announcement: https://kde.org/announcements/gear/25.12.0/ Ports changes: deskutils/itinerary: - Require QCoro6 deskutils/kdeconnect-kde: - Regenerate patches devel/kpublictransport: - Require QtLocation editors/kate: - Fix shebang math/rocs: - Switch to Qt6/KF6 multimedia/kamoso: - Require KF6KirigamiAddons multimedia/kdenlive: - Require KDDockWidgets science/step: - Remove stale patch
* net/samba422: Set TEST_ENV with = instead of +=Mateusz Piotrowski19 hours1-1/+1
| | | | | "+=" may suggest that we are appending to the default value of TEST_ENV. This is not true. Use "=" to be explicit about the intent.
* net/samba422: Remove redundant LDAP_CONFIGURE_* variablesMateusz Piotrowski19 hours1-2/+0
|
* net/bird3: Update to 3.1.5Olivier Cochard21 hours2-4/+4
| | | | | | Changelog: https://gitlab.nic.cz/labs/bird/-/blob/release-v3.1.5/NEWS Sponsored by: Netflix
* net/bird2: Update to 2.17.3Olivier Cochard21 hours2-5/+4
| | | | | | Changelog: "fixed a bug in RAdv prefix deprecation and a crash in BMP" Sponsored by: Netflix
* net/samba422: CLUSTER: Add missing dependency net/libpcapMateusz Piotrowski23 hours1-0/+1
| | | | | | | | Error: /usr/local/bin/ctdb is linked to /usr/local/lib/libpcap.so.1 from net/libpcap but it is not declared as a dependency Warning: you need LIB_DEPENDS+=libpcap.so:net/libpcap PR: 291104 Reported by: vvd
* net/samba422: Add 95.database.script to post-install-CLUSTER-onMateusz Piotrowski23 hours1-0/+1
| | | | | | | | ====> Running Q/A tests (stage-qa) Warning: Bad symlink '/usr/local/etc/ctdb/events/legacy/95.database.script' pointing to an absolute pathname '/usr/local/share/ctdb/events/legacy/95.database.script' PR: 291104 Reported by: vvd
* net/google-cloud-sdk: Update version 548.0.0=>549.0.0Muhammad Moinur Rahman23 hours2-4/+4
|
* net/wifi-firmware-iwlwifi-kmod: update firmware to 20251021Bjoern A. Zeeb34 hours4-144/+402
| | | | | | | | | | | | | | | | | | | | | | | | | | | Intel firmware for BE200 ("bz" chipsets) requires more modern firmware than we provide. [1] The firmware file for iwlwifi-so-a0-gf4-a0 was missing in a recent version; we only had the pnvm file. [2] Update the Intel iwlwifi firmware to the latest tree which brings a few changes: (1) on linux-firmware.git the firmware got moved into a subdirectory so we need to strip that path before installing as the driver still expects the firmware in the top-level directory. (2) the "bz" firmware gets bumped to 101, we keep the old version for 14.3-R around as well. (3) while the other files keep their revisions, Intel may have updated them with rebuilds. This is hard to discover given not only the hashes but also the paths have changed in distinfo. (4) we now generate the firmware list from the WHENCE file in linux-firmware.git given the driver firmware name creation is too dynamic. This adds some extra firmware files we did not have before. See files/extract-fw-list.sh. PR: 290808 Reported by: dch [1], Fotis Zabaras (fotis zabaras.eu) (and others) [2] Reviewed by: jrm Differential Revision: https://reviews.freebsd.org/D53681
* net/wifi-firmware-kmod: generalize iwlwifi specific tunable writingBjoern A. Zeeb34 hours2-8/+11
| | | | | | | | | | | | | | | | | Currently iwlwifi(4) is the only LinuxKPI based wireless driver able to enable 11n/11ac. bz has added tunables to rtw88 and rtw89 in order to allow them to gradually enable more modern standards as well. Generalize the ports framework to not be iwlwifi-specifc anymore in order to prepare for Realtek and others to gain 11n and 11ac support. At some point in time, along with a kernel change, we will then flip the defaults and make this a "disable" rather than an enable option. Sponsored by: The FreeBSD Foundation Reviewers: jrm Differential Revision: https://reviews.freebsd.org/D53789
* net/wifi-firmware-kmod: add STRIP_FWSUBDIR logicBjoern A. Zeeb34 hours1-3/+3
| | | | | | | | | | | | iwlwififw(4) got moved into a subdirectory in the linux-firmware.git but the driver still expects the firmware at the toplevel. The longer-term solution would be to create symlinks as the WHENCE file indicates but for the moment use the less intrusive version simply stripping the subdir during 'extract'. Sponsored by: The FreeBSD Foundation Reported by: jrm Differential Revision: https://reviews.freebsd.org/D53680
* net/wifi-firmware-kmod: allow ONLY_FOR_ARCHS to be set by child portsBjoern A. Zeeb34 hours2-1/+5
| | | | | | | | | | | | | | | | mtw(4) is built along USB for all architectures so we need firmware on all architectures -- unlike the LinuxKPI based wireless drivers which are restricted by default. Allow ONLY_FOR_ARCHS to be set in a child port; maintaing a full list of supported ARCHes seems unreasonable though so allow NOT_FOR_ARCHS to disable the ONLY_FOR_ARCHS logic in Makefile.inc. That way wifi-firmware-mt7601u-kmod can define an empty NOT_FOR_ARCHS and it should build on all ARCHes. Sponsored by: The FreeBSD Foundation Reviewed by: jrm Differential Revision: https://reviews.freebsd.org/D53788
* net/wifi-firmware-kmod: remove obsolete kernel module build codeBjoern A. Zeeb34 hours1-43/+13
| | | | | | | | | | | | | | All supported FreeBSD versions either shipped firmware along with source and do not need this, or they support plain firmware file loading. Remove the now obsolete kernel module build code to simplify the logic in the file. Further cleanup will be done once 13.5-R is out of support in a few months. Sponsored by: The FreeBSD Foundation Reviewed by: jrm Differential Revision: https://reviews.freebsd.org/D53679
* net/deltachat-rpc-server: Update to 2.33.0Mark Felder34 hours3-124/+121
|
* net/samba422: Fix pkg-plist.clusterMateusz Piotrowski39 hours1-8/+15
| | | | | PR: 291104 Reported by: vvd
* net/samba422: Fix pkg-plist when TDB is bundledechoxxzz40 hours1-4/+4
| | | | PR: 291104
* net/dpinger: Update to 3.4Denny Page45 hours2-5/+5
| | | | | | and take maintainership PR: 291558
* net/spread-j: only compiles on jdk8 and jdk11Ronald Klop46 hours1-0/+1
| | | | | | | | | Error on later JDKs: [javac] /wrkdirs/usr/ports/net/spread-j/work/spread-src-3.17.3/java/spread/SpreadConnection.java:1800: error: invalid use of a restricted identifier 'yield' [javac] yield(); PR: 272855 Approved-by: no maintainer
* www/gitlab: security and patch update to 18.6.2Matthias Fechner2 days1-5/+5
| | | | | Changes: https://about.gitlab.com/releases/2025/12/10/patch-release-gitlab-18-6-2-released/ Security: c6c9306e-d645-11f0-8ce2-2cf05da270f3
* net/waypipe: update to 0.10.6Jan Beich2 days3-11/+10
| | | | | Changes: https://gitlab.freedesktop.org/mstoeckl/waypipe/-/releases/v0.10.6 Reported by: GitLab (notify releases)
* net/samba422: Use SAMBA4_SUB for bundled dependencies as wellMateusz Piotrowski2 days1-33/+24
|
* net/samba422: Add a missing dependency: ncursesMateusz Piotrowski2 days1-4/+4
| | | | | | | | | | | | | This should address the following errors: Error: /usr/local/bin/samba-regedit is linked to /usr/local/lib/libform.so.6 from devel/ncurses but it is not declared as a dependency Warning: you need USES+=ncurses Error: /usr/local/bin/samba-regedit is linked to /usr/local/lib/libncurses.so.6 from devel/ncurses but it is not declared as a dependency Warning: you need USES+=ncurses Error: /usr/local/bin/samba-regedit is linked to /usr/local/lib/libtinfo.so.6 from devel/ncurses but it is not declared as a dependency Warning: you need USES+=ncurses Error: /usr/local/bin/samba-regedit is linked to /usr/local/lib/libpanel.so.6 from devel/ncurses but it is not declared as a dependency Warning: you need USES+=ncurses
* net/samba422: Sort and clean up targetsMateusz Piotrowski2 days1-63/+56
|
* net/samba422: Address the last portclippy warningMateusz Piotrowski2 days1-2/+2
|
* net/samba422: Introduce a TEST optionMateusz Piotrowski2 days1-16/+14
| | | | This way we can handle test-specific build and run dependencies.
* net/samba422: Introduce option DEVELOPMENTMateusz Piotrowski2 days1-27/+27
| | | | | | | DEVELOPMENT is a group option for all the testing, debugging, and development options offered by Samba. While here, sort related variables.
* net/samba422: Move most *_DEPENDS where they belongMateusz Piotrowski2 days1-37/+35
| | | | No functional changes intended.
* net/samba422: Sort some more variablesMateusz Piotrowski2 days1-86/+76
| | | | No functional changes intended.
* net/samba422: Refactor handling of FRUIT and GLUSTERFS manualsMateusz Piotrowski2 days1-10/+2
|
* net/samba422: Clean up handling of Python bindingsMateusz Piotrowski2 days1-31/+14
| | | | No functional changes intended.
* net/samba422: Use GSSAPI_MIT_PLIST_FILES instead of if statementsMateusz Piotrowski2 days1-9/+3
|
* net/samba422: Remove remaining bits of GSSAPI_HEIMDAL supportMateusz Piotrowski2 days1-6/+0
| | | | The option is not even present currently, so remove unused code.
* net/samba422: Set ADS' SAMBA4_MODULES via ADS_VARSMateusz Piotrowski2 days1-6/+3
|
* net/samba422: Standardize check if AD_DC is disabled when ADS is disabledMateusz Piotrowski2 days1-5/+1
| | | | | | | | Use AD_DC_IMPLIES=ADS instead of: .if !${PORT_OPTIONS:MADS} && ${PORT_OPTIONS:MAD_DC} IGNORE=To disable ADS option you also need to disable AD_DC option .endif
* net/samba422: Finish removal of the LIBZFS optionMateusz Piotrowski2 days1-4/+0
| | | | | The option is no longer present in the port, so remove any lingering variables we no longer need.
* net/samba422: Fix plist entries for AD_DC=offMateusz Piotrowski2 days3-11/+11
| | | | | | | Some of the .so files that we assumed are AD_DC-specific are installed also when AD_DC is off. Fix that. PR: 291541
* net/samba422: Do not check for Python in pre-configureMateusz Piotrowski2 days1-9/+0
| | | | | The port is already using AD_DC_IMPLIES=PYTHON3 to require Python when the AD_DC option is on.
* net/samba422: Remove the NO_PYTHON knobMateusz Piotrowski2 days1-2/+2
| | | | Users should use the PYTHON3 option to disable Python.
* net/samba422: Fix location of ldb filesMateusz Piotrowski2 days3-62/+63
| | | | | | | | | | | - Use SAMBA_LDB_MODULESDIR consistently - Move all AD_DC-related plist entries to pkg-plist.ad_dc This patch fixes a simple "make package" build with default options. PR: 291541 Reported by: O. Hartmann <ohartmann@walstatt.org> Sponsored by: Klara, Inc.
* net/samba422: Add missing bison dependency to GSSAPI_MITMateusz Piotrowski2 days1-1/+1
|
* net/samba422: Sort options variablesMateusz Piotrowski2 days1-39/+33
| | | | No functional changes.
* net/samba422: Do not set WRKSRC needlessly and explain PLIST assignmentMateusz Piotrowski2 days1-3/+4
| | | | | | | | We need to set PLIST explicitly here because we use <OPTION>_VARS=PLIST+=pkg-plist.<option> to append more files to PLIST. Everything works as expected.
* net/py-mpi4py: Fix building with FlangGleb Popov3 days1-2/+7
|
* net/linux-rl9-avahi-libs: update 0.8-22.el9_6.1 => 0.8-23.el9Dima Panov3 days2-17/+17
|
* net/ovhcloud-cli: update to 0.9.0Baptiste Daroussin3 days2-10/+9
|
* net/py-python-socks: Update to 2.8.0Emanuel Haupt3 days2-4/+4
|
* net/py-aiohttp-socks: Update to 0.11.0Emanuel Haupt3 days2-4/+4
|
* net/sctplib: Update 1.0.32 => 1.0.33Thomas Dreibholz3 days2-4/+4
| | | | | | | | | | Changelog: https://github.com/dreibh/sctplib/blob/sctplib-1.0.33/ChangeLog Commit log: https://github.com/dreibh/sctplib/compare/sctplib-1.0.32...sctplib-1.0.33 PR: 291522