Commit graph

5213 commits

Author SHA1 Message Date
Yuri Victorovich
4e1de70893 comms/hackrf: Fix build by adding math/fftw3-float dependency
Reported by:	fallout
2022-10-04 11:19:22 -07:00
Tomek CEDRO
b3d5add222 comms/hackrf: update 2017.02.1 -> 2021.03.1
See
  https://github.com/greatscottgadgets/hackrf/releases/tag/v2021.03.1
  https://github.com/greatscottgadgets/hackrf/releases/tag/v2018.01.1

for changes since 2017.02.1.

The latest release 2022.09.1 needs some libusb fixes before
it can be build, this is ongoing work.
2022-10-02 22:57:40 +02:00
Jose Alonso Cardenas Marquez
df8005b90f editors/lazarus: Bump PORTREVISION of dependant ports
- editors/lazarus was updated to 2.2.4 and all ports depends of it must be
  rebuilt
2022-10-02 00:48:21 -05:00
Tobias C. Berner
b1db946f50 Qt: Update Qt6 to 6.4.0
Relase Notes: https://www.qt.io/blog/qt-6.4-released
2022-10-01 15:55:15 +02:00
Rene Ladan
2360d181c9 comms/tkhylafax: deprecate because of comms/hylafax 2022-09-30 22:33:33 +02:00
Muhammad Moinur Rahman
e77794c03a comms/libmodbus: Optionize MANPAGES
PR:		251422
Reported by:	chris@chrullrich.net
2022-09-27 08:27:01 -05:00
Diane Bruce
b1d3a8a165 comms/nanovna-saver: Update to 0.5.3
Changelog
=========

0.5.3
-----

 - Int casts due to python 3.10 extension interface changes
 - Pycodestyle changes

0.5.2
-----

 - Using more integer divisions to get right type for QPainter
   points

0.5.1
-----

 - fixed crashing polar charts on python3.10  #528 (#539)
2022-09-18 14:01:16 -04:00
Diane Bruce
9f27aa2cc4 comms/nanovna-saver: Updated to 0.5.0
Changelog
=========

0.5.0
-----

 - Fix crash on open in use serial device
 - Use a Defaults module for all settings -
   ignores old .ini settings
 - Refactoring and unifying Chart classes
 - No more automatic update checks (more privacy)
 - Corrected error handling in NanaVNA\_V2 code
2022-09-17 08:01:53 -04:00
Gleb Popov
c75be9a1fe comms/cyclonedds: Update to 0.10.2
Test Plan:
* portlint: complains about WWW, otherwise OK
* portclippy: complains about WWW, otherwise OK
* testport: 13.1-RELEASE amd64  OK

Reviewed by: arrowd

Differential Revision: https://reviews.freebsd.org/D36517
2022-09-13 21:31:45 +03:00
Rozhuk Ivan
7f1b354e3c comms/py-elelabs-zigbee-ezsp-utility: new port
PR:	266380
2022-09-12 09:44:02 -07:00
Daniel Engberg
896c05e76b comms/tio: Update to 2.0
Switch to upstream release archive
Use (lib)inih from ports

PR:		266370
Reviewed by:	dmgk (maintainer)
2022-09-11 21:24:01 +02:00
Yuri Victorovich
c806f713b9 comms/nec2c: Update .9 -> 1.3; Add LICENSE; Fix WWW 2022-09-11 09:35:54 -07:00
Yuri Victorovich
9fb6444a20 comms/xdx: Update 2.4 -> 2.91 2022-09-11 09:17:28 -07:00
Felix Palmen
ddae4e92d8 Mk/Uses: always use colon for build/run suffix
Most USES use a colon for build/run(/test) suffixes. Change kde.mk,
qt.mk and pyqt.mk to do the same, and update all ports using that.

Document in CHANGES.

PR:			266034
Exp-run by:		antoine
Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36349
2022-09-11 12:20:14 +02:00
Tobias Kortkamp
e79fe1aabc Fix WWW in parent/child ports
Many of the WWW are overwritten later which means the wrong value
is used. This did not happen before where the children were either
 a) just using the pkg-descr from the parents
 b) or had their own separate pkg-descr with custom WWW

Use WWW?= in parents when the child's WWW is different.

Children that use the same WWW as the parent can just inherit it,
i.e., the child WWW can be removed.

Approved by:	portmgr (implicit)
2022-09-10 19:41:16 +02:00
Tomasz "CeDeROM" CEDRO
a69f092f0d comms/limesuite: update 20.10.0 -> 22.09.0
- REMOTE option has been removed, because upstream dropped the feature
  (https://github.com/myriadrf/LimeSuite/issues/366)

PR:		266307
Changes:	https://github.com/myriadrf/LimeSuite/blob/master/Changelog.txt
2022-09-10 09:28:25 +02:00
Tobias C. Berner
35adab4dcc QT: Update Qt 6 to 6.3.2 2022-09-09 18:39:24 +02:00
Stefan Eßer
fb16dfecae Remove WWW entries moved into port Makefiles
Commit b7f05445c0 has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.

This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.

Approved by:		portmgr (tcberner)
2022-09-07 23:58:51 +02:00
Stefan Eßer
b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00
Tobias C. Berner
b86221feea cleanup: remove trailing whitepaces 2022-09-07 12:26:41 +02:00
Michael Büker
6cb6b0f927 comms/py-fritzconnection: Update to 1.10.2
ChangeLog:	https://github.com/kbr/fritzconnection/compare/1.10.1...1.10.2
PR:		266249
2022-09-06 11:28:54 +01:00
Dmitry Marakasov
216dc9a064 comms/telldus-core: mark BROKEN
In file included from /work/usr/ports/comms/telldus-core/work/telldus-core-2.1.2/common/Event.cpp:7:
/work/usr/ports/comms/telldus-core/work/telldus-core-2.1.2/common/Event.h:12:11: fatal error: 'tr1/memory' file not found
        #include <tr1/memory>
                 ^~~~~~~~~~~~

Reported by:	pkg-fallout
2022-09-06 00:08:57 +03:00
Michael Büker
31b1cf64e5 comms/py-fritzconnection: Update to 1.10.1
ChangeLog:	https://github.com/kbr/fritzconnection/compare/1.9.1...1.10.1
PR:		266160
2022-09-01 20:43:27 +01:00
Li-Wen Hsu
cba36a98d4
comms/qt6-sensors: Add WWW: entry 2022-08-26 13:33:14 +08:00
Tobias C. Berner
9d2fa421ba www/qt6-sensors: new port
This adds the missing Qt 6 sensors module to the tree.

As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
2022-08-22 16:52:49 +02:00
Tobias C. Berner
2637124dba www/qt6-serialbus: new port
This adds the missing Qt 6 serialbus module to the tree.

As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
2022-08-22 16:44:50 +02:00
Tobias C. Berner
447fcc79d4 www/qt6-serialport: new port
This adds the missing Qt 6 serialport module to the tree.

As with the rest of the Qt 6 ports, we first need to figure
out what is actually required by other ports before we can
finalize them.
2022-08-22 16:44:50 +02:00
Fukang Chen
065d22bd97 comms/py-esptool: Update to 4.2.1
Changelog:

    https://github.com/espressif/esptool/releases/tag/v4.2.1
2022-08-12 23:45:12 +00:00
Dima Panov
4cf39decb3 */*: bump all consumers after recent boost upgrade 2022-08-12 17:46:53 +03:00
Daniel Engberg
72841f7448 comms/hylafax: Prepare for tiff 4.4.0
Update configure script to detect new version

Reported by:	antoine
2022-08-10 00:51:28 +02:00
Felix Palmen
42f8c0bf85 comms/opencbm: Fix PORTSCOUT limit
Only allowing dist versions starting with v and a digit should filter
out any git tags that are not release versions.

Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36059
2022-08-07 11:13:15 +02:00
Diane Bruce
05c7e390f4 comms/fldigi: update to 4.1.23
2022-06-23  dave-w1hkj  <w1hkj@bellsouth.net>

	19c12f097: Version 4.1.23
	ce88da596: Deprecated code
	5dd676f6b: Correct errors caused by commit 9c035e809b
	4213bfaec: xmlrpc notch
	bd2b4e0e1: audio alerts / monitor
	e6da5c5ef: cw browser
	c9a74fb13: nanoIO ptt
	bf321f312: Signal browser
	cea496b7a: cw via flrig
	2e4a8517d: scripts
	65a6da643: FSK via flrig / nanoIO
	20a799a5a: INSTALL update
2022-08-05 18:35:19 -04:00
Bernard Spil
57a153b696 archivers/libzip: Bump PORTREVISION on dependent ports 2022-08-05 17:58:34 +00:00
Matthias Andree
4637facd25 comms/hylafax: fix binary stripping, deprecate
The existing port/install.sh[.in] script attempts to strip
scripts, which does not work well on all FreeBSD's versions of strip(1).

Patch it out and manually strip the binaries instead.

These 25 warnings seem relevant and warrant investigation (not done):
     1  Class2Params.c++:790:22: warning: operator '?:' has lower precedence than '&'; '&' will be evaluated first [-Wbitwise-conditional-parentheses]
     2  .././util/faxstate.c:142:52: warning: field precision should have type 'int', but argument has type 'unsigned long' [-Wformat]
     3  Class1.c++:394:25: warning: array subscript is of type 'char' [-Wchar-subscripts]
     4  Class1.c++:403:22: warning: array subscript is of type 'char' [-Wchar-subscripts]
     5  Class1.c++:418:28: warning: array subscript is of type 'char' [-Wchar-subscripts]
     6  Class1Send.c++:565:5: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
     7  Class1Send.c++:1428:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
     8  Class1Send.c++:1428:28: warning: result of comparison of constant 35 with expression of type 'bool' is always false [-Wtautological-constant-out-of-range-compare]
     9  Class1Send.c++:1949:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    10  Class1Send.c++:1956:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    11  MemoryDecoder.c++:499:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    12  MemoryDecoder.c++:523:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    13  ModemConfig.c++:479:17: warning: implicit conversion from 'int' to 'char' changes value from 144 to -112 [-Wconstant-conversion]
    14  PCFFont.c++:187:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    15  PCFFont.c++:192:6: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    16  PCFFont.c++:217:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    17  PCFFont.c++:237:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    18  PCFFont.c++:241:2: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    19  faxQueueApp.c++:3128:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
    20  faxQueueApp.c++:3251:9: warning: logical not is only applied to the left hand side of this comparison [-Wlogical-not-parentheses]
    21  faxQCleanApp.c++:310:27: warning: format specifies type 'unsigned int' but the argument has type 'nlink_t' (aka 'unsigned long') [-Wformat]
    22  tagtest.c++:556:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    23  cqtest.c++:582:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    24  choptest.c++:146:3: warning: 'delete' applied to a pointer that was allocated with 'new[]'; did you mean 'delete[]'? [-Wmismatched-new-delete]
    25  PAM.c++:79:21: warning: variable 'pamret' is used uninitialized whenever 'for' loop exits because its condition is false [-Wsometimes-uninitialized]

Now over to diizzy@ for the tiff update patching.

While here, deprecate this since it appears dead and there is a
maintained fork on sourceforge.net called HylaFAX+. There have been
prior submissions of updates in Bugzilla, but the submitter no longer
pursued the update since he no longer uses HylaFAX+.
2022-08-05 12:17:09 +02:00
Diane Bruce
1731b077ff comms/freedv: Update to v1.7.0
Unbreaks port

upstream notes:
Bugfixes:

    Resolves issue with waterfall appearing garbled on some systems. (PR #205)
    Resolves issue with Restore Defaults restoring previous settings on exit. (PR #207)
    Resolves issue with some sound valid sound devices causing PortAudio errors during startup checks. (PR #192)

Enhancements:

    Removes requirement to restart FreeDV after using Restore Defaults. (PR #207)
    Hides frequency display on main window unless PSK Reporter reporting is turned on. (PR #207)
    Scales per-mode squelch settings when in multi-RX mode to reduce unwanted noise. (PR #186)
    Single-thread mode is now the default when multi-RX is turned on. (PR #175)
    Makes multi-RX mode the default. (PR #175)
    Mic In/Speaker Out volume controls added to Filter window. (PR #208)
    Cleans up UI for filters and makes the dialog non-modal. (PR #208)
    Adds optional support for PulseAudio on Linux systems. (PR #194)

Documentation:

    Resolves issue with PDF image placement. (PR #203)

Build System:

    Uses more portable way of referring to Bash in build scripts. (PR #200)
    User manual now installed along with executable. (PR #187)
    macOS app bundle generated by CMake instead of manually. (PR #184)
    Fail as soon as a step in the build script fails. (PR #183)

PR:		ports/264769
Reported by:	castilloeduardo@outlook.com.ar
Tested by:	castilloeduardo@outlook.com.ar
2022-08-04 17:46:32 -04:00
John Baldwin
de3758e2e3 comms/uarduno: Remove devclass from DRIVER_MODULE on recent main.
PR:		265458
Reviewed by:	Bob Frazier <bobf@mrp3.com> (maintainer)
Differential Revision:	https://reviews.freebsd.org/D35947
2022-08-03 15:45:23 -07:00
Felix Palmen
0a90d3d9f9 comms/opencbm: Update to 0.4.99.104
* Remove MAJE_JOBS_UNSAFE, fixed upstream with additional make
  dependencies.
* Remove local copy of opencbm(4), manpage was adopted upstream.
* Also affects opencbm-kmod and opencbm-plugin-xa1541.

Changelog: https://opencbm.trikaliotis.net/opencbm-6.html

Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36031
2022-08-03 21:19:34 +02:00
Felix Palmen
0ac86ecea3 maintainer: Update to FreeBSD address
Change all MAINTAINER entries with <felix@palmen-it.de> to
<zirias@FreeBSD.org>.

Approved by:		tcberner (mentor)
Differential Revision:	https://reviews.freebsd.org/D36029
2022-08-03 11:01:26 +02:00
Florian Limberger
99055a8c8f comms/iceoryx: Disable on non-64-bit platforms.
Summary: Upstream supports only 64-bit hardware.

Test Plan:
* portlint: OK
* portclippy: OK

Reviewed by: arrowd

Differential Revision: https://reviews.freebsd.org/D36008
2022-08-01 20:41:44 +03:00
Florian Limberger
f71e44bc77 comms/cyclonedds: + Eclipse Cyclone DDS middleware
Test Plan:
* portlint: OK
* portclippy: OK
* testport: amd64, 13.1-RELEASE tested

Reviewed by: arrowd

Differential Revision: https://reviews.freebsd.org/D35997
2022-08-01 20:36:14 +03:00
Michael Reifenberger
7d50e80cc3 comms/nanovna-saver: Update
Update to 0.4.0

PR:		265534
2022-07-31 19:15:10 +02:00
Florian Limberger
36b05703cb comms/iceoryx: True zero-copy inter-process communication
Add comms/iceoryx port, which is a dependency for https://cyclonedds.io/

Test Plan:
* portlint: OK
* testport: amd64, 13.1-RELEASE tested

Reviewed by: arrowd

Differential Revision: https://reviews.freebsd.org/D35421
2022-07-29 10:25:00 +03:00
Fukang Chen
d73cc67a9b comms/py-esptool: Update to 4.1
Changelog:

    https://github.com/espressif/esptool/releases/tag/v4.1

MFH:	No (feature release)
2022-07-28 14:03:49 +00:00
Guido Falsi
3ee016f831 comms/gnokii: Remove unneeded shebangfix file.
Correct small mistake that slipped in in previous commit.

Fixes:		3109e75af7
2022-07-27 22:34:36 +02:00
Guido Falsi
3109e75af7 comms/smstools3: Clean up and modernize port
- Remove unneeded pkg-install/pkg-deinstall scripts, and properly
  use pkg-message to display uninstall message [1]
- Reorder some statements to silence some portlint warnings
- Properly use shebangfix on more files, replacing some REINPLACE_CMDs
- Remove unneeded REINPLACE_CMDs
- Use RLN in place of LN, to correctly create relative symlinks

Reported by:	bapt [1]
2022-07-27 22:30:53 +02:00
Guido Falsi
ca17004b6d comms/gnokii: Cleanup and modernize port
- Remove pkg-install, all it was doing is now done from pkg-plist [1]
- Fix sendsms script to work with sh
- Use shebangfix in place of REINPLACE_CMD
- Remove unneeded REINPLACE_CMDs
- Remove bogus SMSDDB option, and use OPTIONS_GROUP in place of OPTIONS_MULTI
- Remove duplicate "gnome" from X11_USES (already in global USES)
- Add missing dependency on harfbuzz when X11 is enabled
- Remove unneeded "-p" from ${MKDIR}
- Delete an old, unused, patch file

Reported by:	bapt [1]
2022-07-27 22:30:53 +02:00
Baptiste Daroussin
a732af5ee1 comms/aprsd: use pkg-message to show message on remove 2022-07-27 16:27:11 +02:00
Dmitri Goutnik
bd2f12f385 comms/tio: Update to 1.47
Changes:	https://github.com/tio/tio/releases/tag/v1.47
2022-07-26 13:58:47 -05:00
Tobias C. Berner
48318794ca cleanup: remove 'Created by' lines
A big Thank You to the original contributors of these ports:

 *  Alex Trull <freebsd.alex@trull.org>
 *  Alonso Cardenas <acm@FreeBSD.org>
 *  Boris Samorodov <bsam@FreeBSD.org>
 *  David Shane Holden <dpejesh@yahoo.com>
 *  Felix Palmen <felix@palmen-it.de>
 *  Hirohisa Yamaguchi <umq@ueo.co.jp>
 *  Kevin Bowling <kbowling@FreeBSD.org>
 *  Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
 *  Markus Mann, CTS - FreeBSD Team <de-freebsd@ctseuro.com>
 *  Matthias Andree
 *  Matthias Fechner <mfechner@FreeBSD.org>
 *  Oleg Sidorkin <osidorkin@gmail.com>
 *  Oliver Lehmann
 *  Radim Kolar <hsn@sendmail.cz>
 *  Timothy Beyer <beyert@cs.ucr.edu>
 *  hq@FreeBSD.org
 *  johalun0@gmail.com
 *  lev@FreeBSD.org
 *  rooneg@electricjellyfish.net

With hat:	portmgr
2022-07-20 16:55:49 +02:00
Tobias C. Berner
258a98847e comms: remove 'Created by' lines
A big Thank You to the original contributors of these ports:

  *  'Big Bad Bob' Frazier <bobf@mrp3.com>
  *  <mr@freebsd.org>
  *  Alex Samorukov <samm@freebsd.org>
  *  Alexander Logvinov <ports@logvinov.com>
  *  Alexey Dokuchaev <danfe@FreeBSD.org>
  *  Anders Nordby <anders@FreeBSD.org>
  *  Andreas Klemm <andreas@klemm.gtn.com>
  *  Andrew Dolgov <fox@furry.spb.ru>
  *  Andrey Lykhin <lan31@inbox.ru>
  *  Anton Voronin <anton@urc.ac.ru>
  *  Brandon S. Allbery KF8NH <allbery@ece.cmu.edu>
  *  Brian Dean <bsd@FreeBSD.org>
  *  Bruce Cran <bruce@cran.org.uk>
  *  Carl Makin <carl@stagecraft.cx>
  *  Darren <igla@batterybackups.net>
  *  David
  *  David O'Brien <obrien@cs.ucdavis.edu>
  *  David Thiel <lx@redundancy.redundancy.org>
  *  Denis Shaposhnikov <dsh@vlink.ru>
  *  Devon H. O'Dell <devon.odell@coyotepoint.com>
  *  Diane Bruce <db@db.net>
  *  Douglas K. Rand <rand@meridian-enviro.com>
  *  Edward Tomasz Napierala <trasz@FreeBSD.org>
  *  Emanuel Haupt <ehaupt@FreeBSD.org>
  *  Felix Palmen <felix@palmen-it.de>
  *  Frank Steinborn <steinex@nognu.de>
  *  Ganael Laplanche <ganael.laplanche@martymac.org>
  *  George Reid <greid@ukug.uk.freebsd.org>
  *  Hye-Shik Chang <perky@fallin.lv>
  *  Janos.Mohacsi@bsd.hu
  *  Jean-Baptiste Quenot <jb.quenot@caraldi.com>
  *  Jeffrey Baitis <jeff@baitis.net>
  *  Johan Strom <johan@stromnet.se>
  *  Johan Strom <johna@stromnet.se>
  *  Jui-Nan Lin <jnlin@freebsd.cs.nctu.edu.tw>
  *  Julian Stacey <jhs@FreeBSD.org>
  *  Kirill Bezzubets <kirill@solaris.ru>
  *  MITA Yoshio <mita@FreeBSD.org>
  *  Markus Brueffer <markus@FreeBSD.org>
  *  Martin Matuska <mm@FreeBSD.org>
  *  Martin Wilke <miwi@FreeBSD.org>
  *  Masafumi NAKANE <max@FreeBSD.org>
  *  Matt Dawson <matt@mattsnetwork.co.uk>
  *  Maxim Sobolev <sobomax@FreeBSD.org>
  *  Michael Reifenberger (mike@Reifenberger.com)
  *  Mike Heffner <mikeh@FreeBSD.org>
  *  Nick Sayer <nsayer@FreeBSD.org>
  *  Nicole Reid <root@cooltrainer.org>
  *  Olivier Cochard-Labbe <olivier@FreeBSD.org>
  *  Patrick Gardella <patrick@FreeBSD.org>
  *  Paul Traina <pst@FreeBSD.org>
  *  Pav Lucistnik <pav@FreeBSD.org>
  *  Rick Elrod <codeblock@eighthbit.net>
  *  Rodrigo Osorio <rodrigo@FreeBSD.org>
  *  Sebastian Yepes <esn@x123.info>
  *  Staffan Ulfberg <staffanu@multivac.fatburen.org>
  *  Stephen Hurd <shurd@FreeBSD.org>
  *  Steve Woodford <scw@netbsd.hut.fi>
  *  Steven Kreuzer <skreuzer@FreeBSD.org>
  *  Sunry Chen <sunrychen@gmail.com>
  *  Søren Straarup <xride@x12.dk>
  *  Tony Shadwick <tshadwick@oss-solutions.com>
  *  Tsung-Han Yeh <snowfly@yuntech.edu.tw>
  *  Vladimir Grebenschikov
  *  Vladimir Kondratyev <wulf@FreeBSD.org>
  *  db
  *  dirkx@webweaving.org
  *  dom@happygiraffe.net
  *  elbarto@ArcadeBSD.org
  *  hm
  *  jmz
  *  joes@seaport.net
  *  lambert@lambertfam.org
  *  nox@FreeBSD.org
  *  obrien@cs.ucdavis.edu
  *  rkw
  *  shurd
  *  shurd@FreeBSD.org
  *  wlloyd@slap.net
  * //www.tomek.cedro.info)

With hat:	portmgr
2022-07-20 16:21:01 +02:00