- Use usbhid-dump and usbids from ports
- Use USES=shebangfix
- Convert to new options target helper
- Cosmetic change
- Sort PLIST
- Update WWW
- Take maintainership
Changes: https://github.com/gregkh/usbutils/blob/master/NEWS
An issue was discovered where users of mysql did not have a my.cnf and
the recent update was causing mysqld to find a sample my.cnf and load
its parameters. This was causing errors on startup for users of innodb
as the parameters used to init the database did not match the ones in
the sample config file it was now reading.
/usr/sbin/dtrace -G -o memcached_dtrace.o -s ./memcached_dtrace.d ...
dt_modtext:/usr/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c(841): DOODAD
dt_modtext:/usr/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c(841): DOODAD
[...]
ld: memcached_dtrace.o.iRgx2j: Relocations in generic ELF (EM: 0)
memcached_dtrace.o.iRgx2j: error adding symbols: File in wrong format
dtrace: failed to link script ./memcached_dtrace.d: failed to link memcached_dtrace.o: ld exited with status 1
PR: 214556
- Distribution file are now served off GitHub
- Chase shlib version bump in `sysutils/cpu-x'
Because GitHub releases (tarballs) are not fetched with correct modification
time, set TIMESTAMP to 1478998492 which corresponds to commit fa87a5e tagged
as this release.
ld: Zend/zend_dtrace.d.o.h0Xec8: Relocations in generic ELF (EM: 0)
Zend/zend_dtrace.d.o.h0Xec8: error adding symbols: File in wrong format
dtrace: failed to link script /wrkdirs/usr/ports/lang/php70/work/php-7.0.14/Zend/zend_dtrace.d: failed to link Zend/zend_dtrace.d.o: ld exited with status 1
dt_modtext:/usr/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c(841): DOODAD
dt_modtext:/usr/src/cddl/lib/libdtrace/../../../cddl/contrib/opensolaris/lib/libdtrace/common/dt_link.c(841): DOODAD
[...]
PR: 214556
Reported by: pkg-fallout
./Source/JavaScriptCore/assembler/ARM64Assembler.h:2760:2: error: "The cacheFlush support is missing on this platform."
#error "The cacheFlush support is missing on this platform."
^
./Source/JavaScriptCore/assembler/MacroAssemblerARM64.h:133:17: error: class member cannot be redeclared
static bool shouldBlindForSpecificArch(uintptr_t value) { return value >= 0x00ffffff; }
^
./Source/JavaScriptCore/assembler/MacroAssemblerARM64.h:132:17: note: previous declaration is here
static bool shouldBlindForSpecificArch(uint64_t value) { return value >= 0x00ffffff; }
^
Reported by: pkg-fallout
lowdown is just another Markdown translator. It can output traditional HTML or
a document for your troff type-setter of choice, such as groff(1), Heirloom
troff, or even mandoc(1). lowdown doesn't require XSLT, Python, or even Perl -
it's just clean, secure, open source C code with no dependencies. Its
canonical documentation is the lowdown(1) manpage.
WWW: http://kristaps.bsd.lv/lowdown/
Clang 4.0 trips on the bogus pointer comparison.
As the produced code may change, bump PORTREVISION.
PR: 216218
Reported by: jbeich
Approved by: rakuco (mentor)
PyList_SET_ITEM() is supposed to be void, but as a macro it's an
expression and has a pointer value. Clang 4.0 trips on the bogus
pointer comparison; given the comparison, it should be PyList_SetItem()
which returns -1 on failure.
As the produced code may be changed by this, bump PORTREVISION.
PR: 216253
Submitted by: Adriaan de Groot <groot@kde.org>
Reported by: jbeich
Reviewed by: rakuco, tcberner
Approved by: rakuco (mentor)
Differential Revision: https://reviews.freebsd.org/D9253