When the SYMLINK option was introduce, a new SUB_LIST was too, but it
was never used.
While there, fix the symlink to be relative, like it should.
PR: 212107
Submitted by: mat
Approved by: maintainer timeout
Sponsored by: Absolight
Changes: http://www.renpy.org/doc/html/changelog.html#ren-py-6-99-11
Temporarily mark games/katawa-shoujo as BROKEN. Other games may work fine.
$ katawa-shoujo
ValueError('list.remove(x): x not in list',)
Full traceback:
File "game/ui_settings.rpy", line 2, in script
File "/usr/local/share/renpy/renpy/ast.py", line 805, in execute
renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, store=self.store)
File "/usr/local/share/renpy/renpy/python.py", line 1641, in py_exec_bytecode
exec bytecode in globals, locals
File "game/ui_settings.rpy", line 21, in <module>
File "/usr/local/share/renpy/renpy/defaultstore.py", line 91, in __setattr__
renpy.store._set_script_version(value) # E1101 @UndefinedVariable
File "renpy/common/00compat.rpy", line 134, in _set_script_version
config.window_auto_hide.remove("call screen")
File "/usr/local/share/renpy/renpy/python.py", line 568, in do_mutation
return method(self, *args, **kwargs)
ValueError: list.remove(x): x not in list
While running game code:
File "game/ui_settings.rpy", line 2, in script
File "game/ui_settings.rpy", line 21, in <module>
File "renpy/common/00compat.rpy", line 134, in _set_script_version
config.window_auto_hide.remove("call screen")
ValueError: list.remove(x): x not in list
- Follow upstream move from SF to GitHub, and new website hosting
- Add USES=autoreconf libtool as GH tarball only comes with configure.ac
- Add OPTIONS to select GTK3 or GTK2 (GTK3 by default as per upstream)
- Add USE_GNOME=cairo und GTK2_LIB_DEPENDS undeclared dependencies
Changes this release:
https://github.com/galculator/galculator/blob/v2.1.4/ChangeLog
Reviewed by: adamw (mentor)
Approved by: naddy (maintainer), mat (mentor)
Differential Revision: https://reviews.freebsd.org/D7789
Extend the check in KDECompilerSettings.cmake to only pass -std=c++0x to the
compiler if it's recent enough, otherwise we risk passing that to base GCC and
breaking the build of any extra-cmake-modules-dependent port using
KDECompilerSettings.cmake on FreeBSD 9 (such as multimedia/qt5-phonon4).
PR: 212427
Submitted by: rakuco
Approved by: yuri@rawbw.com (maintainer)
Kore is an easy to use web application framework for writing scalable
web APIs in C. Its main goals are security, scalability and allowing
rapid development and deployment of such APIs.
Because of this Kore is an ideal candidate for building robust,
scalable and secure web things.
WWW: http://www.kore.io/
PR: 211603
Submitted by: Tobias Kortkamp <t@tobik.me>
ChangeLog:
- Incremental improvements to cpyext (passing 99% of numpy's test suite)
- Update cffi to 1.8, supporting "limited API" mode for c-extensions on
CPython >= 3.2
- Improved tooling for PyPy's JIT.
- Various new features, bug fixes and performance improvements, see:
http://pypy.readthedocs.io/en/latest/release-pypy2.7-v5.4.0.html
This release changes the watchdog time limits from a fixed value to
one that is affected by the average load. Using fixed values didn't
work well on extremely (and intentionally) loaded servers, e.g. an
overage load of 200 on an server with ncpu of 32.
The base times which were long to account for loading have been reduced,
and a multiplier of average-5 load / ncpu rounded to the nearest tenth
has been implemented (with 1.0 as the floor value). For example, a 4-core
machine with an average 5-minute load of 6.0 will multiply the base
timeout by 1.5. This approach worked well in an extreme test against the
entire ports tree.
- add a SNDIO option that enables building of the audio/sndio output
module
- replace CPPFLAGS/LDFLAGS with USES=localbase
- use INSTALL_TARGET=install-strip to strip libraries
- bump PORTREVISION due to packaging change
PR: 212406
Submitted by: Tobias Kortkamp
With verbose build all utilities are called with --help and
--version arguments just to show their output. This, however,
may fail:
PATH=/wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools:$PATH /wrkdirs/usr/ports/net/pacemaker/work/pacemaker-Pacemaker-1.1.14/tools/crm_standby --help
Error signing on to the CIB service: Socket is not connected
Error signing on to the CIB service: Socket is not connected
So just remove these calls, they have no use anyway.
PR: 212075
Approved by: portmgr blanket