| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
Changes: https://chromium.googlesource.com/webm/libvpx/+log/v1.6.1..v1.7.0
ABI: https://abi-laboratory.pro/tracker/timeline/libvpx/
|
|
|
|
|
|
|
|
|
| |
with the Dungeon Keeper series and Evil Genius. Players build an underground
dungeon which is inhabited by creatures. Players fight each other for control
of the underground by indirectly commanding their creatures, directly casting
spells in combat, and luring enemies into sinister traps.
WWW: https://opendungeons.github.io/
|
| |
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/5dd6f84...347fd9b
|
|
|
|
| |
This fixes "wtf is" invocation to translate "IS" acronym.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
src/bomns.cpp:565:22: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
src/bomns.cpp:565:22: note: insert an explicit cast to silence this issue
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
static_cast<Sint16>( )
src/bomns.cpp:565:26: error: non-constant-expression cannot be narrowed from type 'int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
src/bomns.cpp:565:26: note: insert an explicit cast to silence this issue
SDL_Rect rcDest = {nX, nY, 15, 20};
^~
static_cast<Sint16>( )
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
display/display.cpp:371:17: error: non-constant-expression cannot be narrowed from type 'Uint16' (aka 'unsigned short') to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
SDL_Rect r = { x, y, w, h };
^
display/display.cpp:371:17: note: insert an explicit cast to silence this issue
SDL_Rect r = { x, y, w, h };
^
static_cast<Sint16>( )
display/display.cpp:391:48: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
TTF_Font * fontTitle = TTF_OpenFont(DATADIR"/"FONT_FILE, (height / fSize));
^
display/display.cpp:560:5: error: non-constant-expression cannot be narrowed from type 'unsigned int' to 'Sint16' (aka 'short') in initializer list [-Wc++11-narrowing]
( ( dh.w - sSize ) / dp.w ) + ( i * dh.x ),
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
display/display.cpp:583:6: error: non-constant-expression cannot be narrowed from type 'int' to 'Uint16' (aka 'unsigned short') in initializer list [-Wc++11-narrowing]
wText,
^~~~~
[...]
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In file included from engine/net/scanner.cpp:1:
In file included from engine/src/config.h:33:
In file included from ./mrt/xml.h:23:
/usr/include/c++/v1/map:629:15: error: object of type 'std::__1::pair<const mrt::Socket::addr, Scanner::Host>' cannot be assigned because its copy assignment operator is implicitly deleted
{__nc = __v.__cc; return *this;}
^
/usr/include/c++/v1/__tree:1645:35: note: in instantiation of member function 'std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>::operator=' requested here
__cache->__value_ = *__first;
^
/usr/include/c++/v1/__tree:1575:9: note: in instantiation of function template specialization 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::__assign_multi<std::__1::__tree_const_iterator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__tree_node<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, void *> *, long> >' requested here
__assign_multi(__t.begin(), __t.end());
^
/usr/include/c++/v1/map:912:21: note: in instantiation of member function 'std::__1::__tree<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::__map_value_compare<const mrt::Socket::addr, std::__1::__value_type<const mrt::Socket::addr, Scanner::Host>, std::__1::less<const mrt::Socket::addr>, true>, std::__1::allocator<std::__1::__value_type<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here
__tree_ = __m.__tree_;
^
engine/net/scanner.cpp:256:8: note: in instantiation of member function 'std::__1::map<const mrt::Socket::addr, Scanner::Host, std::__1::less<const mrt::Socket::addr>, std::__1::allocator<std::__1::pair<const mrt::Socket::addr, Scanner::Host> > >::operator=' requested here
hosts = _hosts;
^
/usr/include/c++/v1/utility:325:5: note: copy assignment operator is implicitly deleted because 'pair<const mrt::Socket::addr, Scanner::Host>' has a user-declared move constructor
pair(pair&&) = default;
^
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
| |
Ui.cpp:174:18: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'int' in initializer list [-Wc++11-narrowing]
return (Dot){maxlen+1,splits.size()};
^~~~~~~~
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
| |
creature/Uniquem.cpp:628:11: error: cannot initialize return object of type 'int' with an rvalue of
type 'nullptr_t'
return NULL;
^~~~
/usr/include/sys/_null.h:37:14: note: expanded from macro 'NULL'
#define NULL nullptr
^~~~~~~
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
| |
fileman.cpp:296:33: error: non-constant-expression cannot be narrowed from type 'unsigned long' to 'uint8_t' (aka 'unsigned char') in initializer list [-Wc++11-narrowing]
uint8_t sizes[3]={ CLIENT_NFS,strlen(filename)+1,strlen(mode)+1};
^~~~~~~~~~~~~~~~~~
hmi.cpp:302:97: error: non-constant-expression cannot be narrowed from type 'int' to 'uint8_t'
(aka 'unsigned char') in initializer list [-Wc++11-narrowing]
...0x54, 0x68, 0x64, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, (num_tracks + 1), 0x00, 0xC0 };
^~~~~~~~~~~~~~~~
Reported by: pkg-fallout
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
In file included from Seat.cpp:37:
./Bitmaps.h:47:46: error: constant expression evaluates to 128 which cannot be narrowed to type 'char' [-Wc++11-narrowing]
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
^~~~
./Bitmaps.h:47:46: note: insert an explicit cast to silence this issue
0x07,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x80,
^~~~
static_cast<char>( )
Seat.cpp:256:18: error: no matching function for call to 'XCreateBitmapFromData'
s_map[i] = XCreateBitmapFromData(_dpy,
^~~~~~~~~~~~~~~~~~~~~
/usr/local/include/X11/Xlib.h:1604:15: note: candidate function not viable: no known conversion from
'const unsigned char [2018]' to 'const char *' for 3rd argument
extern Pixmap XCreateBitmapFromData(
^
Reported by: pkg-fallout
|
| |
|
|
|
|
| |
Suggested by: mat
|
|
|
|
|
| |
and GLsizeiptrARB: they are already (correctly) defined in <GL/gl.h>. While
here, set USE_GL to `gl' instead of old-school, umbrella `yes'.
|
| |
|
|
|
|
|
| |
8.5 years ago for version 4.2.7; current version (4.9.1) installs fine
- Correctly set FOO_RUN_DEPENDS knobs and add some readability linefeeds
|
|
|
|
|
|
| |
- Fix build with clang 6
- Convert to PLIST_FILES
- Regenerate patches
|
| |
|
|
|
|
|
|
|
| |
This port builds fine in poudriere.
This port depends on py-twisted and py-twistedCore has been removed from ports tree.
MFH: 2018Q1
|
|
|
|
|
|
|
| |
Changes: http://www.boost.org/users/history/version_1_66_0.html
PR: 223922
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D13279
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Don't use %%FOO%% in PLIST_FILES to avoid unnecessary substitution
PR: 225187
Submitted by: lightside@gmx.com (maintainer)
|
|
|
|
|
|
| |
- While here, adjust COMMENT: Hexen support is limited
PR: 224989
|
|
|
|
|
|
|
| |
- Merge all Clang-related fixes into existing patch and
regenerate it to get sane timestamps while I'm here
PR: 224989
|
|
|
|
|
|
|
| |
PR: 217455
Submitted by: amdmi3
Approved by: jessefrgsmith@yahoo.ca (maintainer)
Relnotes: http://atanks.sourceforge.net/
|
| |
|
|
|
|
| |
With hat: portmgr-secretary
|
| |
|
| |
|
|
|
|
| |
other miscellaneous files that are not actually manual pages (part 2).
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/830e0a9...5dd6f84
|
|
|
|
| |
other miscellaneous files which are not actually manual pages.
|
| |
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
variables deprecation revision
WITHOUT_NLS 2013-12-13 r336337
WITH_/WITHOUT_ 2014-02-24 r345870
NOPORT(DOC|EXAMPLE)S 2014-04-19 r351587
WITH_BDB_VER 2016-05-02 r414444
OVERRIDE_LINUX_BASE_PORT 2016-09-05 r421387
WITH_OPENSSL_(BASE|PORT) 2016-06-16 r416965
While there, add an ERROR variable that works like DEV_ERROR, but for
user facing errors, and move NOPORTDOCS,
NOPORTEXAMPLES and WITHOUT_NLS to it.
Cleanup bsd.sanity.mk a bit.
Fix fallout.
PR: 224613
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D13490
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
code/splines/util_str.cpp:477:11: error: reinterpret_cast from 'nullptr_t' to
'const char *' is not allowed
idStr e( reinterpret_cast<const char *>( NULL ) );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
code/splines/util_str.cpp:491:10: error: reinterpret_cast from 'nullptr_t' to
'const char *' is not allowed
a = c + reinterpret_cast<const char *>( NULL );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
code/splines/util_str.cpp:494:6: error: reinterpret_cast from 'nullptr_t' to
'const char *' is not allowed
a = reinterpret_cast<const char *>( NULL ) + d;
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
code/splines/util_str.cpp:498:7: error: reinterpret_cast from 'nullptr_t' to
'const char *' is not allowed
a += reinterpret_cast<const char *>( NULL );
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
PR: 224988
Reported by: jbeich
|
|
|
|
|
|
|
|
|
|
| |
highlights:
* New species: Gnolls
* New god: Wu Jian Council
* New spell: Borgnjor's Vile Clutch
release announcement:
https://crawl.develz.org/wordpress/crawl-0-21-gnoll-country-for-old-jian
|
|
|
|
| |
Approved by: portmgr (antoine)
|
|
|
|
|
|
|
|
| |
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
| |
Reported by: jbeich
|
|
|
|
|
|
|
|
| |
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
|
|
|
|
| |
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
|
|
|
|
| |
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
|
|
|
|
| |
if /usr/bin/ld is lld, until the issue can be addressed.
PR: 214864
Approved by: portmgr (LLD_UNSAFE blanket)
Sponsored by: The FreeBSD Foundation
|
|
|
|
| |
PR: 224945
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Linking with LLD currently fails due to preemption of symbols with
protected visibility in a shared object:
/usr/bin/ld: error: cannot preempt symbol: alGetSourcei
>>> defined in /usr/local/lib/libopenal.so
>>> referenced by BBGE/FmodOpenALBridge.cpp
>>> CMakeFiles/aquaria.dir/BBGE/FmodOpenALBridge.cpp.o:(OggDecoder::decode_loop(OggDecoder*))
/usr/bin/ld: error: cannot preempt symbol: alSourceUnqueueBuffers
>>> defined in /usr/local/lib/libopenal.so
>>> referenced by BBGE/FmodOpenALBridge.cpp
>>> CMakeFiles/aquaria.dir/BBGE/FmodOpenALBridge.cpp.o:(OggDecoder::decode_loop(OggDecoder*))
[...]
For now set LLD_UNSAFE=yes so that the port will continue to link with
ld.bfd if /usr/bin/ld is lld, until the issue can be addressed (with a
change in openal-soft or in lld).
Reported by: antoine (via bug 214864)
|
|
|
|
|
|
|
|
| |
Aquaria/ScriptInterface.cpp:10412:59: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal]
#define MK_ALIAS(prefix, suffix, alias) {MK_STR(prefix)"_"MK_STR(alias), l_##prefix##_##suffix},
^
Reported by: antoine (via bug 224669)
|
|
|
|
|
|
|
|
| |
/usr/local/lib/qt5/bin/qmake -install qinstall /wrkdirs/usr/ports/games/tanglet/work/tanglet-1.4.0/translations/*.qm /wrkdirs/usr/ports/games/tanglet/work/stage/usr/local/share/tanglet/translations/*.qm
Error: usage: [-exe] source target
*** Error code 3 (ignored)
PR: 224849
|
|
|
|
|
|
|
|
| |
/usr/local/lib/qt5/bin/qmake -install qinstall /wrkdirs/usr/ports/games/gottet/work/gottet-1.1.3/translations/*.qm /wrkdirs/usr/ports/games/gottet/work/stage/usr/local/share/gottet/translations/*.qm
Error: usage: [-exe] source target
*** Error code 3 (ignored)
PR: 224849
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Here's how the error message actually looked like:
cc -O2 -pipe -fno-strict-aliasing -Wall -o xqf -Wl,-rpath,/usr/local/lib/xqf -Wl,--export-dynamic -Wl,--version-script=../src/xqf.map addmaster.o addserver.o config.o country-filter.o debug.o dialogs.o dns.o filter.o flt-player.o game.o history.o host.o launch.o menus.o pixmaps.o pref.o psearch.o rc.o rcon.o server.o skin.o skin_pcx.o sort.o source.o srv-info.o srv-list.o srv-prop.o stat.o statistics.o trayicon.o utils.o xqf.o xqf-ui.o xutils.o zipped.o redial.o q3maps.o utmaps.o loadpixmap.o splash.o scripts.o -lintl ../src/zip/libunzip.a ../src/tga/libtga.a -lGeoIP -L/usr/local/lib -lgtk-x11-2.0 -lgdk-x11-2.0 -lpangocairo-1.0 -latk-1.0 -lcairo -lpthread -lgio-2.0 -lpangoft2-1.0 -lpango-1.0 -lfontconfig -lfreetype -lgdk_pixbuf_xlib-2.0 -lgmodule-2.0 -pthread -lgdk_pixbuf-2.0 -lgobject-2.0 -lglib-2.0 -lintl -lz -L/usr/local/lib -lX11
/usr/bin/ld: xqf: local symbol `__progname' in /usr/lib/crt1.o is referenced by DSO
/usr/bin/ld: final link failed: Bad value
cc: error: linker command failed with exit code 1 (use -v to see invocation)
Reported by: http://thunderx1.nyi.freebsd.org/data/110arm64-default/426002/logs/errors/xqf-1.0.5_9.log
Pointy hat to: linimon (generic excerpt)
Tested on: 11.1 (clang 4.0) and 12.0 (clang 6.0)
|
|
|
|
| |
- Update WWW
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove the use of comp_DETECT.
- Remove all comp_DETECT variables.
- Remove a use of comp_DETECT outside of gnome.mk
- Remove py3gobject3.
- Have ports depending directly on devel/py-gobject3 use gnome to do it.
PR: 224618
Submitted by: mat
Exp-run by: antoine
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D13550
|
|
|
|
|
|
| |
- Move another icon under !dedicated-server clause
TIMESTAMP (openttd-1.7.2-source.tar.xz) = 1514117460
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Usage:
USES=eigen:<version>[,<type>]
version: 2 or 3 (required)
type: build (default), run
For example:
USES=eigen:2,build,run
will add a BUILD- and RUN_DEPENDS on math/eigen2, and
USES=eigen:3
will add a BUILD_DEPENDS on math/eigen3.
* Convert the existing ports to use it
- biology/iqtree: remove run time dependency (seemed not to be needed)
- graphics/movit: remove run time dependency (seemed not to be needed)
- science/avogadro: add run time dependeny (installed cmake file requires it to be present)
Reviewed by: rakuco, mat
Differential Revision: https://reviews.freebsd.org/D13702
|
|
|
|
| |
- Update to 1.6.0
|
| |
|
|
|
|
|
|
|
|
|
| |
It is gone.
While here, chase other mastersites, pet portlint, and set DEPRECATED
for ports that do not fetch from alternative sites.
Note: most of these ports are ancient and unmaintained.
|
|
|
|
|
|
|
| |
While here, mark as architecture neutral.
PR: 224792
Submitted by: Jonathan Price <freebsd@jonathanprice.org> (maintainer)
|
|
|
|
|
|
|
| |
- Convert to CMAKE_{ON,OFF} helpers
- Convert to _CMAKE_BOOL option helpers
- android-file-transfer: Share _CMAKE_BOOL via _IMPLIES
- Annotate types
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/9b1c39b...830e0a9
|
|
|
|
|
|
|
|
| |
This is a NOP with the current boost version.
PR: 224123
Submitted by: jbeich@
Obtained from: https://github.com/pokerth/pokerth/issues/338
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/dd8fde3...9b1c39b
|
|
|
|
| |
- Update WWW
|
|
|
|
| |
- Update WWW
|
|
|
|
| |
- Update WWW
|
|
|
|
| |
- Update WWW
|
|
|
|
|
|
|
| |
- Removed unneeded bsd.port.pre/post separation
PR: 223389
Submitted by: lightside@gmx.com
|
|
|
|
| |
Approved by: portmgr (blanket)
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/21f884c...dd8fde3
|
| |
|
|
|
|
|
| |
- Add missing dependencies reported by stage-qa
- Sort plist
|
| |
|
| |
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/55b816d...21f884c
|
| |
|
|
|
|
|
| |
Approved by: portmgr (tier-2 blanket)
Obtained from: lonesome.com -exp run
|
|
|
|
|
|
|
| |
- Style fixes
- Switch to options helpers
Approved by: portmgr blanket
|
|
|
|
| |
Changes: https://github.com/adventuregamestudio/ags/releases/tag/v.3.4.1.11
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
- Regenerate patches
- Update WWW
Approved by: portmgr blanket
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
bunnies and hop on each other's heads.
At the beginning you are in the menu, where you have to let each
active player jump over the tree trunk to enter the play area, and
then walk to the right. You will then enter the arena. The aim is
to jump on the other bunnies' heads...
Jump 'n Bump was originally a DOS game by Brainchild Design, which
was open sourced under the GPL license and ported to SDL, and then
SDL2.
WWW: https://gitlab.com/LibreGames/jumpnbump
|
|
|
|
|
| |
- Move information about requiring originaal game data files to
pkg-message where it belongs.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- in general, if we think that the code is not architecture-specific,
and instead just enables x86 assembler by default, those should
use BROKEN rather than IGNORE. This will allow them to be attempted
with TRYBROKEN.
- spell i386 as x86.
- spell asm as assembler.
- pet portlint.
These changes should have no effect on tier-1 builds.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
| |
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
| |
Submitted by: adridg
Differential Revision: D13553
|
|
|
|
|
|
| |
Fix some regexes to compensate.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
| |
Update to 2.0.0
|
| |
|
|
|
|
|
|
| |
- Bump PORTREVISION of dependent ports for shlib change
Changes: https://github.com/leethomason/tinyxml2/commits/master
|
| |
|
| |
|
|
|
|
|
|
| |
While here, pet portlint and reformat some other BROKEN statements.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
|
| |
While here, pet portlint and reformat some other BROKEN statements.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
| |
Approved by: portmgr blanket
|
| |
|
| |
|
|
|
|
|
| |
- Switch to options helpers
- Don't install LICENSE with docs
|
|
|
|
|
|
| |
'level.depth' has unknown return type 'i'.
Approved by: portmgr blanket
|
|
|
|
|
|
| |
src/third_party/websocketpp/websocketpp/transport/asio/connection.hpp:422:45: error: use of class template 'boost::asio::strand' requires template arguments
Approved by: portmgr blanket
|
|
|
|
|
| |
- Switch to USES=localbase
- Switch to USE_CXXSTD
|
| |
|
| |
|
|
|
|
|
|
| |
- Verbosify build
Approved by: portmgr blanket
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
Fails to compile after the update of devel/protobuf to 3.5.0.
I am working on a fix but will take some time.
|
|
|
|
|
|
|
| |
- Drop unneeded flags
- Switch to options helpers
- Regenerate patches
- Fix binary permissings for highscores to properly work
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Update libva-intel-driver to 2.0.0
- Update libva-utils to 2.0.0
- Bump dependent ports due to shlib bump
- Import upstream patch to fix multimedia/mpv [1]
- Import upstream patch to fix multimedia/gstreamer1-vaapi [2]
Approved by: cpm [1], multimedia (timeout) [2]
Obtained from: https://github.com/mpv-player/mpv/commit/2ecf240b1cd20875991a5b18efafbe799864ff7f [1]
https://cgit.freedesktop.org/gstreamer/gstreamer-vaapi/commit/gst-libs/gst/vaapi/gstvaapiutils.c?id=777bba473e3ed1c7b8b7f7f0322892851c70dfd9 [2]
Differential Revision: https://reviews.freebsd.org/D12761
|
|
|
|
| |
- Add some explicit FLAVOR to dependencies where needed
|
| |
|
|
|
|
| |
- Add some explicit FLAVOR to dependencies where needed
|
| |
|
|
|
|
|
|
| |
- Bump PORTREVISION for shlib change
Changes: https://github.com/google/protobuf/releases
|
| |
|
|
|
|
| |
- Add some explicit FLAVOR to dependencies where needed
|
|
|
|
|
| |
PR: 222403
Submitted by: rleigh@codelibre.net
|
| |
|
|
|
|
| |
- Add some explicit FLAVOR to dependencies where needed
|
| |
|
|
|
|
| |
- Re-enable SERVER and VIDEOREC options which work fine now
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x)
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x)
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x)
|
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x
- Remove dependency on python2 metaport
|
| |
|
|
|
|
| |
Approved by: portmgr (tier-2 blanket)
|
|
|
|
| |
Approved by: portmgr (tier-2 blanket)
|
| |
|
|
|
|
|
|
|
| |
- Verbosify fuild
- Switch to options helpers
Approved by: portmgr blanket
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
|
|
|
| |
tested with trybroken on armv7.)
The 'runaway process' ones are most likely just statistical.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
| |
- Add missing Qt dependency
- Cosmetic fixes
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
have gone extinct, including humans. An alien robot series, called
Minilens, is cleaning up the Earth and collecting the surviving
flora for research purposes.
The robots' duty is to destroy all radioactive barrels and to collect
all flora.
Aliens forgot that Earth has gravity, therefore Minilens can't jump.
WWW: http://kobuge-games.github.io/minilens/
|
| |
|
|
|
|
|
| |
PR: 216888
Submitted by: BM-2cUeCzVy7CNYW6BX4WEnC4s9X9unYMUcre@bitmessage.ch
|
|
|
|
|
|
|
| |
- In addition to r455114 [1], the GitHub account changed because the main dev
moved the repo to his personal account. Verifed via IRC
Notified by: danfe [1]
|
|
|
|
|
|
|
|
|
| |
Add LIB_DEPENDS on x11-fonts/alfont
PR: 223746
Submitted by: timon at timon.net.nz
Approved by: maintainer timeout (nemysis, 15 days)
MFH: 2017Q4
|
| |
|
|
|
|
|
|
| |
- Move highscore file to /var/games
- Improve highscore handling using @sample
- Switch to options helpers
|
|
|
|
|
|
|
| |
- Pet portlint
- Switch to options helpers
Approved by: portmgr blanket
|
| |
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x)
|
|
|
|
| |
DEFAULT_VERSIONS=python=3.x)
|
|
|
|
|
|
|
| |
We were not setting the flag to select the GNUstep ABI, so were defaulting to
using the GCC-compatible version, which was likely to trigger a lot of subtle
bugs. This was noticed when C++ exceptions thrown through Objective-C stack
frames caused segfaults.
|
|
|
|
|
|
| |
- Remove FLAVOR from py-docutils dependency in comms/uhd, in this case
it needs the rst2html command, not the docutils module
- Mark some ports as not compatible with python3
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
New stuff
- Ability to send out squads to raid sites, rescuing prisoners
and recovering artifacts
- Display cases and pedestals, museum zones, both in forts and other sites
- Can view the world map w/ rumors from fort mode
- Artifacts created during worldgen: dwarf moods, named heroic objects,
holy relics, heirlooms
- New artifact events in play and worldgen: questers seek artifacts and ask
for or steal them, invaders demand artifacts
- New historical events associated to the creation of
artifacts (used in fort and worldgen)
- Agents used by civilizations to gather information,
can assume cover identities
- Improved kobold site maps
- Goblin site denizens demand an identity instead of immediately
attacking every stranger
- More modding control over pets and other animals
- Adventurer can assume a cover identity at will
- Adventurer can name their possessions
- New adventurer reputations related to artifacts
- New religious activity: monks, pilgrims and prophets
- Museums and other room types can be added to fort locations
like taverns and libraries
- Various additional data in the XML export
Major bug fixes
- Fixed weapon trap crash vs. item breakage
- Fixed bug preventing monster slayers from visiting those
forts with monsters to slay
- Made animated skulls, hair and other bits easier to pulp
- Made idle and vermin-hunting dwarves come down from trees more successfully
- Made thirst/hunger and being pushed out of the way less
likely to terminate dances
Other bug fixes/tweaks
- Alphabetized broad stock screen categories
- Fixed problem with historical bodies not respecting wounds/processing
- Fixed bug causing religions to worship too many gods, with duplicates
- Made simple burrow beasts start in caves as possible
- Fixed broken historical collection linkage with beast attacks during festivals
- Fixed one instance of broken animal person greetings
- Stopped natural animals from w.g. rampaging through sites owned
by entities at peace with wildlife
- Took age into account for w.g. fights vs. body size (e.g. proper dragon size)
- Stopped people from being enough to satisfy a need to see great beasts
- Made visitors less nervous about going to neutral locations
|
| |
|
|
|
|
|
|
| |
where you have to manage a steam supply network.
WWW: http://www.jwhitham.org/20kly/
|
|
|
|
|
|
|
|
|
|
|
| |
A turn-based strategy game where up to 8 players strive for control
of as many cities as possible. Produce new armies in cities to
conquer nearby cities. Using the income from those cities, make
more armies to take more cities. Send a hero to a temple to get a
quest, or maybe search a nearby ruin instead. Play with others or
against the computer.
WWW: http://www.nongnu.org/lordsawar/
|
|
|
|
|
|
|
| |
2017-11-30 www/p5-Yahoo-Lifestyle: This service has been shut down
2017-11-30 games/linux-rtcw: Use the native and open source games/iortcw instead
2017-11-30 java/bootstrap-openjdk: superseded by java/bootstrap-openjdk[68]
2017-11-30 lang/gcc46: Unsupported by upstream. Use GCC 6 or newer instead.
|
|
|
|
|
|
| |
- Switch to USES=localbase
- Don't install license with docs
- Cosmetic fixes
|
| |
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Ports using USE_PYTHON=distutils are now flavored. They will
automatically get flavors (py27, py34, py35, py36) depending on what
versions they support.
There is also a USE_PYTHON=flavors for ports that do not use distutils
but need FLAVORS to be set. A USE_PYTHON=noflavors can be set if
using distutils but flavors are not wanted.
A new USE_PYTHON=optsuffix that will add PYTHON_PKGNAMESUFFIX has been
added to cope with Python ports that did not have the Python
PKGNAMEPREFIX but are flavored.
USES=python now also exports a PY_FLAVOR variable that contains the
current python flavor. It can be used in dependency lines when the
port itself is not python flavored. For example, deskutils/calibre.
By default, all the flavors are generated. To only generate flavors
for the versions in PYTHON2_DEFAULT and PYTHON3_DEFAULT, define
BUILD_DEFAULT_PYTHON_FLAVORS in your make.conf.
In all the ports with Python dependencies, the *_DEPENDS entries MUST
end with the flavor so that the framework knows which to build/use.
This is done by appending '@${PY_FLAVOR}' after the origin (or
@${FLAVOR} if in a Python module with Python flavors, as the content
will be the same). For example:
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>0:devel/py-six@${PY_FLAVOR}
PR: 223071
Reviewed by: portmgr, python
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D12464
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The port is cleaned up to remove a lot of heavy dependencies.
New features
SDL2 resolution-independent window scaling, environmental audio, IRIX compatibility
regeneration during sleep, time dilation
iwd2 ability stacking, iwd ZZ* weapon bonuses
portrait.2da handling, avatar shadows, dialogF.tlk handling
Improved features
infravision
better compatibility with bgt, 10pp, ia, kelsey, dr
sdl2 input, mouse scrolling, opengl driver
iwd2 cg&lu, item (un)usability, avatar sizes, permanent clabs
ambients, verbal constants, random walk, walk sounds
bugfixes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
players over a network.
The objective is to conquer the universe, defeating all enemies.
At starting point you have only one ship and one planet, but you
have gold to buy more ships to conquer more planets.
All ships can be controlled by the computer (automatic mode) or by
the player (manual mode). You can easily change among your ships,
controlling all of them independently.
WWW: http://spacezero.sourceforge.net/
|
|
|
|
|
|
|
|
|
|
| |
armv7, mark them so.
This is part two of a multipart commit to bring armv7 ports to parity
with armv6.
Approved by: portmgr (tier-2 blanket)
Obtained from: lonesome.com -exp run
|
|
|
|
|
|
|
|
|
| |
on armv7.
This is part one of a multipart commit to bring armv7 ports to parity
with armv6.
Approved by: portmgr (tier-2 blanket)
|
|
|
|
|
| |
PR: 222408
Reported by: gerrit@weinberg2.de
|
| |
|
|
|
|
| |
Changes: https://github.com/OpenMW/openmw/releases/tag/openmw-0.43.0
|
|
|
|
|
|
|
|
|
|
| |
series, written in C using SDL/OpenGL.
Basically, it is a shoot'em up game with lots of bullets (the genre
is literally called bullet hell). The game is mostly done and very
playable, so feel free to give it a try!
WWW: https://taisei-project.org/
|
|
|
|
|
|
|
|
| |
- Book support removed; it was removed from latest stockfish version
- PROFILE option support is no longer functional and was removed
PR: 206096
Submitted by: Gautam Mani <execve@gmail.com> (maintainer)
|
|
|
|
| |
https://github.com/Cockatrice/Cockatrice/releases/tag/2017-11-19-Release-2.4.0
|
|
|
|
|
|
|
| |
PR: 223139
Submitted by: Greg V <greg@unrelenting.technology>
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D13164
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
The X-Plane Scenery Tools (XPTools) code base is the source code tree for all
of the Laminar Research scenery creation/editing tools. This code does not
include X-Plane and the "X-Apps" (PlaneMaker, WorldMaker, AirfoilMaker, and
Briefer). It does include source to the ac3d x-plane plugin, WED, the various
tools, and our global scenery generator.
WWW: https://developer.x-plane.com/code/
PR: 223649
Submitted by: Michael Danilov <mike.d.ft402@gmail.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2017-11-20 news/brag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 textproc/srilm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 x11-toolkits/tk84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 devel/tkinspect: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/bogged: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/ttraffic: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/ifm: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 games/tksol: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 lang/tcl84: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 mail/tkrat2: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 multimedia/dtv: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
2017-11-20 net-mgmt/netwag: Tcl/Tk 8.4 is no longer maintained, please use 8.5+
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
| |
PR: Thibault Payet <monwarez@mailoo.org> (maintainer)
|
| |
|
|
|
|
|
|
|
| |
PR: 223370
Submitted by: zeising
exp-run by: antoine
Approved by: antoine
|
|
|
|
| |
Submitted by: antoine
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
CMakeFiles/opensurge.dir/src/entities/particle.c.o: In function `particle_update_all':
particle.c:(.text+0x113): undefined reference to `image_height'
particle.c:(.text+0x126): undefined reference to `image_width'
particle.c:(.text+0x1f0): undefined reference to `image_width'
particle.c:(.text+0x20f): undefined reference to `image_height'
particle.c:(.text+0x296): undefined reference to `image_width'
particle.c:(.text+0x2b2): undefined reference to `image_height'
collect2: error: ld returned 1 exit status
and other files
|
|
|
|
| |
Sponsored by: Absolight
|
|
|
|
|
| |
Approved by: tcberner (mentor)
Differential Revision: https://reviews.freebsd.org/D12944
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
2017-11-04 lang/ats: Unmaintained, outdated, needs lots of refreshment
2017-11-09 games/lordsawar: Broken for more than 6 months
2017-11-09 databases/elixir-ecto_migrate: Broken for more than 6 months
2017-11-09 audio/gspeakers: Broken for more than 6 months
2017-11-09 net/p5-Filesys-SmbClient: Broken for more than 6 months
2017-11-09 audio/tclmidi: Broken for more than 6 months
2017-11-09 security/py-xmlsec: Broken for more than 6 months
2017-11-09 security/samba-virusfilter: Broken for more than 6 months
2017-11-09 textproc/ocaml-pxp: Broken for more than 6 months
2017-11-09 audio/sooperlooper: Broken for more than 6 months
2017-11-09 devel/dwarves: Broken for more than 6 months
2017-11-09 devel/cl-cffi-sbcl: Broken for more than 6 months
2017-11-09 devel/pinba_engine: Broken for more than 6 months
2017-11-09 devel/py-event: Broken for more than 6 months
|
|
|
|
|
|
|
| |
Switch to updated version from: https://trackballs.github.io/
(see also: http://trackballs.sourceforge.net)
Reported by: Manuel Stoeckl <mstoeckl@u.rochester.edu>
|
|
|
|
|
| |
PR: 223545
With hat: portmgr
|
|
|
|
|
|
|
| |
Changes: http://site.icu-project.org/download/60
ABI: https://abi-laboratory.pro/tracker/timeline/icu4c/
PR: 223373
Exp-run by: antoine
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
data and client binaries due to them being moved again.
Since the available version of the Bink Player has changed and no
archives of the old copy exist, the ability to play movies in the game
is now experimental if and only if a newer version of the nwmovies.so
hook is compiled on Linux i386 and used. The binary for the hook is not
currently provided, hence, it is experimental. I am currently working
with the maintainer of that hook to make a release to add to the port to
bring back movie support.
Regenerate distinfo files to add TIMESTAMP.
Reviewed by: lifanov, mat
Approved by: lifanov
Differential Revision: https://reviews.freebsd.org/D12960
|
| |
|
| |
|
|
|
|
| |
Sponsored by: Absolight
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
Details:
- If print/texinfo is installed, the build process detects and uses it to
rebuild the info pages. This fails because of some syntax errors,
previously only flagged as warnings.
- There is currently no configure switch to change this behaviour, hence
the texi files are patched to pass the texinfo run.
MFH: 2017Q4 (ports-secteam build fix blanket)
|
|
|
|
| |
Changes: https://github.com/irtimmer/moonlight-embedded/releases/tag/v2.4.4
|
| |
|
|
|
|
|
|
|
| |
- Fix LICENSE
- Switch to USES=localbase
- Switch to upstream build
- Update WWW
|
|
|
|
|
|
| |
Ncurses-based klondike solitaire game
WWW: https://github.com/mpereira/tty-solitaire
|
|
|
|
| |
This round is @FreeBSD.org residents except teams.
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
PR: 223329
Submitted by: John Hein <z7dr6ut7gs@snkmail.com>
|
| |
|
| |
|
| |
|
|
|
|
|
|
| |
- Fix LICENSE
- Add LICENSE_FILE
- Switch to options helpers
|
|
|
|
|
| |
PR: 223305
Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
|
|
|
|
|
|
| |
- Fix LICENSE
- Switch to USES=localbase
- Switch to options helpers
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/4539...55b816d
|
|
|
|
| |
Changes: http://robo-code.blogspot.com.br/2017/10/robocode-1930.html
|
|
|
|
|
|
| |
It doesn't work correctly [1] and we have a native version in games/iortcw.
[1] https://forums.freebsd.org/threads/61621/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Notable changes:
- i386/amd64 now depend on NASM per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/4f9297ac3b39
- NETCDF is now MYSOFA but the dependency doesn't exist in ports yet
- SCHROEDINGER is gone per https://git.ffmpeg.org/gitweb/ffmpeg.git/commitdiff/220b24c7c9
- DRM, LIBRSVG2, LIBXML2 are new options
- ABI isn't completely compatible: some structs have changed
Minor cleanup:
- Don't pass --disable-{in,out}dev when it's already blocked by disabled dependency
- Drop redundant "Enable" from option descriptions
- Switch CDIO_DESC to use Mk/bsd.options.desc.mk
Changes: https://git.ffmpeg.org/gitweb/ffmpeg.git/blob/n3.4:/Changelog
ABI: https://abi-laboratory.pro/tracker/timeline/ffmpeg/
PR: 223057
Exp-run by: antoine
|
|
|
|
| |
Track down a few more ports that depend on those two, and deprecate them too.
|
|
|
|
|
|
| |
- Add LICENSE
- Switch to options helpers
- Regenerate patches
|
|
|
|
|
|
|
| |
released by the initial authors (Crowther & Woods). Also known as the
430-point adventure.
Approved by: antoine (mentor)
|
|
|
|
|
| |
PR: 223089
Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
|
|
|
|
|
|
|
| |
it now requires gtkmm30 and C++14 compliant compiler
- While here, make network support optional (but enabled by default)
TIMESTAMP (FreeDoko_0.7.16.src.zip) = 1484159638
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
|
|
|
|
| |
2017-10-15 devel/vtcl: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
2017-10-15 editors/tpad: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
2017-10-15 games/polypuzzle: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
2017-10-15 multimedia/nxtvepg: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
2017-10-15 net/xpvm: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
2017-10-15 x11/tkXwin: This port depends on Tcl/Tk 8.4 , which is no longer maintained. Please port it to 8.5+
|
|
|
|
|
|
|
|
|
| |
- Drop DOCS as Lua API docs aren't available anymore
- Drop ZENITY as it's only used to show FAQ link on crashes
- Move game data to DATADIR, better mimicking hier(7)
Changes: https://github.com/OpenRA/OpenRA/wiki/Changelog#release-20171014
MFH: 2017Q4 (for multiplayer)
|
|
|
|
|
| |
the supposedly broken version) and 11.1 without this change. This
removes the last use of clang34 in the ports tree.
|
|
|
|
| |
- Convert to test framework
|
|
|
|
|
|
|
| |
on armv7. This has not been tested with an -exp run but should
"do no harm".
PR: 221894 (partial)
|
|
|
|
| |
Approved by: portmgr blanket
|
|
|
|
| |
fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1564896, actual 1583522
|
| |
|
|
|
|
|
| |
Changes: https://github.com/DCurrent/openbor/compare/12fc70c...4539
MFH: 2017Q4
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- Remove already applied patch for assimp-4.0.0
- Move USES before USE_* per Porter's Handbook style (found by portlint)
- Add SERVERAGENT port's option
- Apply upstream patch to "Fix SAR selection of ship sizes for missions"
Note, saved games from previous version are not compatible.
Changes: https://github.com/pioneerspacesim/pioneer/blob/20171001/Changelog.txt
https://github.com/pioneerspacesim/pioneer/compare/20170304...20171001
PR: 222823
Submitted by: lightside@gmx.com (maintainer)
MFH: 2017Q4
|
| |
|
|
|
|
|
| |
PR: 222706
Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
|
|
|
|
| |
fetch: https://geolite.maxmind.com/download/geoip/database/GeoLite2-Country.mmdb.gz: size mismatch: expected 1454069, actual 1564896
|
|
|
|
| |
Reported by: cy
|
| |
|
| |
|
|
|
|
|
|
|
| |
Changes: https://manaplus.org/changelog#new_release_17916
PR: 222544
Submitted by: Thibault Payet <monwarez@mailoo.org> (maintainer)
MFH: 2017Q3
|
|
|
|
|
|
|
|
| |
libzip was updated to 1.3.0 in r450774, and its SOVERSION went from .4 to .5
after the removal of zip_archive_set_tempdir(). All dependent ports continue to
build fine without that symbol.
PR: 222638
|
|
|
|
|
|
|
|
|
|
| |
In file included from sources/game.cpp:28:
In file included from sources/target.h:21:
In file included from /usr/local/include/ClanLib-2.3/ClanLib/display.h:112:
In file included from /usr/local/include/ClanLib-2.3/ClanLib/Display/TargetProviders/display_window_provider.h:44:
/usr/local/include/ClanLib-2.3/ClanLib/Display/TargetProviders/../Window/display_window.h:48:10: fatal error: 'X11/Xlib.h' file not found
#include <X11/Xlib.h>
^
|
| |
|
| |
|
|
|
|
|
|
|
|
|
| |
Changes: http://www.boost.org/users/history/version_1_65_1.html
PR: 218835
Approved by: maintainer timeout (1.65.1: 2 weeks; 1.65.0: 1 month)
Tested by: jhibbits (on powerpc64, earlier version)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D11582
|
|
|
|
| |
PR: 222189
|
|
|
|
|
|
|
|
| |
PR: 218835
Obtained from: https://github.com/DragonFlyBSD/DeltaPorts/pull/690
Approved by: maintainer timeout (2 months)
Exp-run by: antoine
Differential Revision: https://reviews.freebsd.org/D11582
|
|
|
|
|
|
|
|
|
| |
- Temporarily keep C++98 working in consumers for Clang's default -std=
Changes: http://site.icu-project.org/download/59
PR: 218788
Submitted by: takefu@airport.fm, dcarmich@dcarmichael.net (early version)
Exp-run by: antoine
|
|
|
|
| |
With hat: portmgr
|
|
|
|
|
| |
The immediate BROKEN reason can be fixed, but other problems arise afterwards
which I'm not willing to fix without seeing upstream development continuing.
|
|
|
|
|
|
|
| |
PR: 220271
Submitted by: mat (review), Yasuhiro KIMURA (PR)
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11488
|