* Fixed build on clang 4.0
* Sorted Makefile, ONLY_FOR_ARCHS comes before *_DEPENDS and after LICENSE section (13.1.5)[1],
Uses should start the USES section followed by USE_x(13.1.7)[1]
- fully support spotty plugin for Spotify support
[1] https://www.freebsd.org/doc/en/books/porters-handbook/porting-samplem.html#porting-samplem-order
PR: 220781
Submitted by: Mark Dixon <mark@tranquillussoftware.co.uk> (maintainer)
Reviewed by: matthew (mentor)
Approved by: matthew (mentor)
Differential Revision: https://reviews.freebsd.org/D11612
The port prefers system minizip if available but the build fails due
to an inconsitency between find_package() and pkg_check_modules()
about whether _LIBRARIES should contain absolute paths.
/usr/bin/ld: cannot find -lminizip
c++: error: linker command failed with exit code 1 (use -v to see invocation)
https://gitlab.kitware.com/cmake/cmake/issues/15804
PR: 220889
Reported by: vvd@unislabs.com
Submitted by: yuri@rawbw.com (maintainer, based on)
Stunt Rally is a racing game with rally style of driving, mostly
on gravel.
It features a rich variety of 172 tracks in 34 sceneries also on
other planets.
Track difficulty ranges from short and easy to very difficult stunt
tracks including jumps, skewed loops, pipes winding in 3D, obstacles
or all at once.
There are 20 cars to choose, 1 motorbike, 3 hovering spaceships and
1 bouncing sphere.
The latter provide a fast and easier gameplay on flat tracks.
Game modes include:
Single Race, Tutorials, Championships, Challenges, Multiplayer and
Split Screen. Also Replays and Ghost drive are present.
The Track Editor allows creating and modifying tracks. It uses a
3D spline generated road.
WWW: http://stuntrally.tuxfamily.org/
- Dependancy on swig30 has been changed for swig13.
swig13 install itself as 'swig' and it seems that some generated
file in u-boot is calling directly this binary.
- Remove shebangfix for binman.py
shebangfix cannot work with binman.py as the shebang is
'#!/usr/bin/env python2' and the regex in Mk/Uses/shebangfix.mk
can't handle this
- Move to the FreeBSD u-boot repo
- Insist on dtc >= 1.4 (also works with the BSDL version in the tree,
if it is new enough), but drop the requirement that it's a port.
U-Boot wise:
- Too many changes, a lot of fixes, a lot of new boards etc ...
Tested-On: OrangePi-One, BananaPiM2, A13-Olinuxino, BeagleBone Black
Submitted by: Emmanuel Vadot
PyXB is a pure Python package that generates Python code for classes that
correspond to data structures defined by XMLSchema. In concept it is similar
to JAXB for Java and CodeSynthesis XSD for C++.
WWW: http://pyxb.sourceforge.net
PR: 219908
Submitted by: Jov <amutu amutu com>
* Added slugify method to Mojo::ByteStream. (Grinnz)
* Added slugify function to Mojo::Util. (Grinnz)
* Fixed bugs in Mojo::IOLoop and Mojo::Reactor::Poll that would prevent a
reset from clearing events.