GO_PKGNAME defaults to ${PORTNAME}. As a result it is often too
general and can produce bad results with make makeplist. For
example, in mail/aerc it produces bogus entries like
man/man5/%%GO_PKGNAME%%-sendmail.5.gz
since GO_PKGNAME=aerc there.
Having it in PLIST_SUB was only useful for Go libraries which we
no longer support. Only 2 ports use it currently but do not really
need to and are easily fixed.
Approved by: dg@syrec.org (maintainer)
Differential Revision: https://reviews.freebsd.org/D21114
Release 0.79.0:
core:
* Fix regression on TextSelectionPainter
* Fix parsing of DefaultAppearance
* Fix memory leak in PostScriptFunction
* Fix crashes in fuzzed files
qt5:
* Implemented support for setIcon by changing appearance
* Added option to set the form available to print
* QString::null is deprecated, use QString()
* Replace deprecated qStableSort with std::stable_sort
build system:
* Turn README into README.md and expand it
PR: 239277
Exp-run by: antoine
Approved by: gnome (kwm, implicit)
* Rebase the patch for CMakeLists.txt that has changed its identation level
Changelog:
* Don't clear connection information if connection fails
* Fix icon
* Disable GUI console
PR: 239450
Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer)
MFH: 2019Q3
Base GCC doesn't have __builtin_bswap16:
./.libs/libtdssrv.a(lt1-login.o):(.text+0x166c): undefined reference to `__builtin_bswap16'
Approved by: mentors (implicit approval)
* Pet portlint by fixing whitespace issues in pkg-plist while I'm here.
Changelog:
* Add support for PostgreSQL 12
PR: 239452
Submitted by: lbartoletti <lbartoletti@tuxfamily.org> (maintainer)
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.
This includes ports
- with USE_GCC=yes or USE_GCC=any,
- with USES=fortran,
- using Mk/bsd.octave.mk which in turn features USES=fortran, and
- with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang,
c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.
PR: 238330
- Remove unneeded targets
- Drop nop BUILD_AS_NON_ROOT while here
- Fix build with go1.13beta1
===> Building for pgmetrics-1.7.0
$GOPATH/go.mod exists but should not
*** Error code 1
PR: 238930
Submitted by: Dmitri Goutnik <dg@syrec.org>
Approved by: girgen (maintainer timeout, 24 days)
as a stand-in for "are we running on gcc".
In some cases we only need to specifically test for "are we on the ancient
base gcc", e.g, the usage of 'pragma'.
While here, in some cases turn off SSE functions more specifically based
on ARCH, and turn off -mtune=generic everywhere. These are part of a
larger work in progress; these commits are for ports that would have
been touched by the the powerpc-on-clang test regardless.
Approved by: portmgr (tier-2 blanket)
This port requires numpy<=1.16 for python 3.4 and below. Since we have py-numpy 1.16.4, drop python 2.7 support.
from setup.py:
numpy_required_version = 'numpy<=1.16' if sys.hexversion <0x3050000 else 'numpy>=1.7'