Fix build of nomad and update to the last available release
The build was broken, because the vendor is probably using go 1.10
PR: 232203
Approved by: jhixson (maintainer)
Sponsored by: trivago N.V.
- Rename the files installed to /usr/local/etc/newsyslog.conf.d/ to end
with a '.conf' suffix.
- Add pkg-install script to automatically move any copies of the old
newsyslog file to the new location if the new file is unmodified from the default,
or print a warning if it the new file has been modified.
- Add a note to UPDATING and pkg-message to warn users of this, in case
they are using provisioning/configuration management tools which need
to be modified. Note the UPDATING entry was committed in r485721.
Recent changes to /etc/newsyslog.conf (r340318) will only include files
from the /usr/local/etc/newsyslog.conf.d/ directory which end with
'.conf' and do not beginning with a '.' character.
Reviewed by: mat
Approved by: mandree (maintainer)
Differential Revision: https://reviews.freebsd.org/D17088
- Add port for Qt 5 fork of qwt5. Though it claims the same version as
x11-toolkits/qwt5, the sources are modified for compatibility with Qt 5.
- Don't install man pages to avoid conflict with original port.
- Take maintainership
Update to benh's qemu power9 branch which adds support for features like radix
mmu and phb.
Take maintainership of this port with Mark's permission from IRC conversation.
Approved by: krion (mentor)
Sponsored by: BBOX.io
Differential Revision: https://reviews.freebsd.org/D17862
- Change LIB_DEPENDS from qwt5 to qwt6
- Reorder CMAKE_ARGS
- Adapt QWT_INCLUDE_DIR and QWT_LIBRARY after PyQt changes
- Update GRASS7 dependency from 7.2.2 to 7.4.0
- Update several Python dependencies
- Remove INSTALLS_ICONS, not needed here
PR: 233504
Submitted by: rhurlin@gwdg.de(maintainer)
Submitter's patch has been merged into upstream with minor changes.
Also while here, cleanup some leftovers. This port generates private key
and server certificate in post-install script. Poudriere complains that
these files are left over after deinstall. Now these auto-generated files
will be removed when deinstall. If certificate and private key are replaced
with user's own files, they should be kept.
PR: 233558
Submitted by: takefu@airport.fm (original version)
Approved by: mentors (implicit)
Obtained from: https://github.com/neutrinolabs/xrdp/pull/1257
Sponsored by: HAW International, Inc.
ports r482774 removed USE_PYTHON=cython, likely due to it (cython) not
being explicitly declared as a dependency in setup.py:*_requires.
However, setup.py conditionally builds with cython if it is installed, but
the 1.0.6 source distribution (sdist) does not contain a .pyx file to build
with.
This leads to a configure/build error when cython is installed:
ValueError: 'rencode/rencode.pyx' doesn't match any files
Upstream commit 5c928f14567fabc9efb8bbb8ac5e0eef03c61541 [1] via issue
#25 [2] adds the required .pyx file to the sdist, which technically
addresses the "build with cython from the sdist" issue, but does not
fundamentally resolve the higher-level question: why build with cython when
a C source pre-processed by cython has already been produced for, and is
contained in, the source distribution.
A cython build (and the dependency on cython) does not appear to be
necessary, nor intended [3][4], nor recommended [5], even after #25 is
released, for sdist consumers.
The conditional code to build with cython should not be included in
setup.py, at least not as a default case, or without an explicit request
by the user to use cython, as an optional build method, for sdist consumers
(most downstream packagers and setuptools/pip users [6]).
This change removes the conditional check for Cython, leaving the standard
setuptools build_ext (with the packaged .c) file, as the build method.
While I'm here:
- Canonicalise COMMENT (match seutp.py:description)
- Add test target with post-patch target to make the tests dir a module
usable by a setup.py test (via test_suite directive) target.
- Honour CFLAGS: Remove forced (appended) -O3 arg from setup.py
[1] 5c928f1456
[2] https://github.com/aresch/rencode/pull/25
[3] setup.py: "Error: sdist requires cython module to generate `.c` file."
[4] dev-requirements.txt:Cython
[5] https://cython.readthedocs.io/en/latest/src/userguide/source_files_and_compilation.html#distributing-cython-modules
[6] https://github.com/aresch/rencode/issues/11
PR: 233561
Reported by: John Hein <z7dr6ut7gs snkmail com>
Approved by: koobs (python)