gemdiff is a command-line tool to find source code for ruby gems. You can
compare source code differences between the current version of a gem in your
bundle and the version of the gem that would be installed with bundle update
<gem> (or any two versions of a gem). gemdiff connects gem version management
(rubygems + bundler) with source code (GitHub).
WWW: https://github.com/teeparham/gemdiff
The Hiawatha Monitor is a monitoring tool for the Hiawatha web
server. It can be used to keep track of the performance and security
of all your Hiawatha web servers via one single interface. It is
not a replacement for analytics software or the local logfiles, but
it gives you a quick and easy overview of how your web servers are
performing and which ones require some attention.
The Hiawatha Monitor is a PHP web application with a MySQL database
backend. It requires the cron daemon for periodic downloading of
statistical information from the web servers it monitors.
WWW: https://www.hiawatha-webserver.org/monitor
previous patch added the configure argument to find archivers/libmspack
installed, but neglected to set USES+= pkgconfig to actually have the binary
use that version. With it now properly finding libmspack.so, revert to
not trying to install libclammspack* if the MSPACK option is set.
PR: 233658
- Sort options helpers and add pkg-help to describe options better
- Add CGIWRAPPER option which when turned off will turn off packaging
of the setuid cgi-wrapper(1) binary
- Cleanup post-patch; use LOCALBASE where appropriate
- Drop incidental variables
- Do not install useless documentation; README.md is a copy of
pkg-descr; ChangeLog does not contain any juicy information either
- Trim pkg-message further
${LOCALBASE}/include is implicitly added to the search path when
Hiawatha is built with XSLT=on. Without it the system mbed TLS
headers cannot be found anymore. Add USES=localbase:ldflags to the
MBDEDTLS option to work around this.
src/filehashes.c:27:10: fatal error: 'mbedtls/sha256.h' file not found
#include "mbedtls/sha256.h"
^~~~~~~~~~~~~~~~~~
- While here reset maintainer and take maintainership after the
third consecutive timeout
PR: 224156
Reported by: Ross McKelvie <ross@exitzero.uk>
Approved by: portmaster@BSDforge.com (maintainer timeout, 2 weeks)
It adds a few more fixes and improvements.
- Solves the bug, by adding a MSPACK option (enabled by default) and a build dependency on pkg-config.
- Makes massive use of options helpers and similar tools to improve Makefile's readability. In the rewriting I have not maintained the dependency of option LDAP on option MILTER and the two options are now indipendent: if this is bad, it as to be fixed on my patch. I avoided to do it directly because I am unsure it is needed.
- Uses now libpcre2 consistently (before the port could link to libpcre2 by mistake).
- Removes useless arguments about zlib in CONFIGURE_ARGS.
- Reorders variables consistently with the standard order.
- Cleans header.
- Updates pkg-plist and sort if alphabetically.
- Bump PORTREVISION, needed because of some fixes.
PR: 228468
Submitted by: phascolarctos@protonmail.ch
Reported by: gondim@bsdinfo.com.br
packet.c: In function 'pkt_process':
packet.c:405:3: warning: implicit declaration of function 'LIST_FOREACH_SAFE'; did you mean 'RB_FOREACH_SAFE'? [-Wimplicit-function-declaration]
LIST_FOREACH_SAFE(rr, &pkt->arlist, pentry, rraux) {
^~~~~~~~~~~~~~~~~
RB_FOREACH_SAFE
packet.c:405:39: error: 'pentry' undeclared (first use in this function); did you mean 'rtentry'?
LIST_FOREACH_SAFE(rr, &pkt->arlist, pentry, rraux) {
^~~~~~
rtentry
packet.c:405:39: note: each undeclared identifier is reported only once for each function it appears in
packet.c:405:53: error: expected ';' before '{' token
LIST_FOREACH_SAFE(rr, &pkt->arlist, pentry, rraux) {
^~
;
Reported by: DPorts (via muscles)