Gerasim Troeglazov
11f3476840
Qt5: fix build for secondary arch
2019-12-29 18:54:54 +10:00
Crestwave
89dad038ba
ripgrep: bump to 11.0.2 ( #4502 )
2019-12-29 11:37:20 +03:00
Schrijvers Luc
a76947a823
revbump after merge from gengetopt ( #4503 )
2019-12-29 09:02:37 +01:00
alwayslivid
d52ade6397
Added gengetopt recipe ( #4493 )
...
* gengetopt: added recipe
2019-12-29 08:56:01 +01:00
alwayslivid
6064d34805
libu2f_host: added recipe ( #4497 )
2019-12-29 08:33:03 +01:00
Niels Sascha Reedijk
76d6654067
Rust: add recipe for 1.40.0 ( #4491 )
2019-12-27 18:00:46 -05:00
Raheem Idowu
4a9415d265
Added recipe for Powermanga ( #4481 )
...
* Added recipe for Powermanga
2019-12-26 17:49:57 +01:00
Gerasim Troeglazov
cfbebdcca8
QtHaikuPlugins: bump version
2019-12-26 23:36:17 +10:00
miqlas
4d8baa65fa
Ruby: add 2.7 recipe ( #4488 )
2019-12-25 20:22:12 +01:00
miqlas
ddd0e8b981
Ghostscript: forced rebuild ( #4487 )
2019-12-25 19:18:45 +01:00
miqlas
68f3ea3bf2
DevilutionX: bump, remove old ( #4430 )
...
* DevilutionX: bump, remove old
* Fix MIDDLE
2019-12-25 19:14:37 +01:00
miqlas
fea3d0ec24
Ruby: version bump ( #4427 )
2019-12-25 18:56:44 +01:00
miqlas
ec966bdf17
GS: bump ( #4438 )
2019-12-25 18:56:10 +01:00
miqlas
83863ae265
JBIGDEC: dev package fixes ( #4486 )
...
* JBIGDEC: dev package fixes
* fixpkgconfig reorder, thx begasus
2019-12-25 18:55:28 +01:00
miqlas
fdf3508738
Recursive: new recipe ( #4449 )
2019-12-25 18:37:53 +01:00
Vrondir
ba5e3f0459
recipe for pathological ( #4419 )
2019-12-24 15:01:05 +01:00
Schrijvers Luc
e54088cb99
mxml: fix debug reference package ( #4483 )
2019-12-24 12:53:28 +01:00
Schrijvers Luc
e0a60f1314
solarus, bump version, create Deskbarsymlink ( #4482 )
2019-12-24 12:27:47 +01:00
Gerasim Troeglazov
19e0e3da07
QtHaikuPlugins: bump version
2019-12-23 21:59:31 +10:00
Sergei Reznikov
9ee156a708
Retroshare: really bump for rebuild
2019-12-23 14:44:45 +03:00
Sergei Reznikov
89f8549f7b
Retroshare: bump for rebuild
2019-12-23 14:33:40 +03:00
Sergei Reznikov
37538e8d8f
DreamChess: cosmetic fixes
2019-12-23 13:44:40 +03:00
Sergei Reznikov
eb8399de3e
mxml: enable recipe
2019-12-23 13:40:39 +03:00
Sergei Reznikov
797c8a98b8
DreamChess: bump for rebuild
2019-12-23 13:19:32 +03:00
Sergei Reznikov
375c90a083
mpd: bump version
2019-12-23 13:15:46 +03:00
Schrijvers Luc
c745c53848
icecast, revbump for rebuild ( #4480 )
2019-12-23 11:15:13 +01:00
Sergei Reznikov
2e89ff3799
vlc: drop libthreadutil
2019-12-23 13:11:33 +03:00
Schrijvers Luc
57b0a0188f
icecast, fix running as root, move PATCH and libnetwork check to configure.in, remove secondary architecture ( #4479 )
2019-12-23 11:06:12 +01:00
Sergei Reznikov
11342c5b91
libupnp: bump version.
2019-12-23 12:55:07 +03:00
Sergei Reznikov
032c9b9759
mediatomb: enable recipe
2019-12-23 11:11:11 +03:00
Kyle Ambroff-Kao
0186c63a17
tmux: Fix crash loading config ( #4477 )
...
The tmux code depends on some BSD functionality, namely fparseln,
when parsing configs. This is called in load_cfg during startup after
finding the appropriate config file to load.
On platforms where fparseln isn't available, tmux uses a polyfill
library called compat that it ships with, which includes a fork of the
FreeBSD fparseln function.
The autoconf script for tmux searches the libutil header for fparseln
in order to determine whether to use this compat library or the
fparseln from the the system.
Before this patch, on my x86_64 system at least, tmux would crash on
startup trying to load $HOME/.tmux.conf. It turns out that this is
because on Haiku, the FreeBSD compatibility in libutil code is
disabled in /system/develop/headers/bsd/features.h unless either
_BSD_SOURCE is defined.
#if defined(_BSD_SOURCE) \
|| (!defined(__STRICT_ANSI__) && !defined(_POSIX_C_SOURCE))
#define _DEFAULT_SOURCE
#endif
Since _BSD_SOURCE is not defined, and _POSIX_C_SOURCE *is* defined
(because the compiler is given -std=gnu99), then _DEFAULT_SOURCE is
never defined.
The end result is that fparseln is visible to autoconf, but is not
visible to the compiler when compiling cfg.c.
This leads fparseln to be implicitly defined, which changes the return
type from char* to int, and that conversion can cause a SEGFAULT.
The effect of this patch is to just define _BSD_SOURCE so that the
FreeBSD compat code is visible to the compiler, which produces a tmux
binary that works as expected.
2019-12-23 07:36:06 +01:00
Jérôme Duval
1c8a4212df
musescore: add version requirement on cmd:lrelease
2019-12-22 11:05:52 +01:00
Gerasim Troeglazov
9f354ffc64
QtHaikuPlugins: bump version
...
Fix: don't translate unhandled scancodes
Fix: rework application quit handler for Qt 5.14
2019-12-22 12:10:22 +10:00
X547
18d0b1d8a0
Blender: fix regression by using python 3.6, small fixes ( #4465 )
...
* fix regression by using python 3.6, small fixes
* remove git
2019-12-21 14:00:00 -05:00
Gerasim Troeglazov
580f20de6b
QtHaikuPlugins: bump version
2019-12-21 20:50:33 +10:00
alwayslivid
0ce0bc3219
Added recipe and patch for nesalizer ( #4461 )
2019-12-19 18:08:11 +03:00
Schrijvers Luc
1eda2f7b1e
fuel, add missing cmd lrelease ( #4463 )
2019-12-19 14:25:57 +01:00
Alexander G. M. Smith
8b99f78f14
fossil: update to version 2.10, circa October 2019. ( #4462 )
2019-12-19 14:02:59 +01:00
Gerasim Troeglazov
e899f62745
QtHaikuPlugins: bump version
2019-12-19 20:45:05 +10:00
alwayslivid
323a662d32
Added dbuspython recipe. ( #4442 )
...
* dbuspython: add recipe
2019-12-18 21:25:12 +01:00
Jerome Duval
a6b84ecb3a
testdisk: bump version.
2019-12-18 19:02:09 +01:00
Jerome Duval
4e6578a044
git: bump version.
2019-12-18 18:46:28 +01:00
Adam Fowler
fcbd8c6978
Paladin: bump version ( #4454 )
2019-12-17 11:11:09 +03:00
Sergei Reznikov
f8509f4872
kde-frameworks: bump for rebuild
2019-12-16 16:20:02 +03:00
Sergei Reznikov
319ab0742c
extra_cmake_modules: disable debug build profile by default
2019-12-16 16:14:02 +03:00
Sergei Reznikov
b74421abf9
QtHaikuPlugins: bump for rebuild
2019-12-16 12:53:10 +03:00
Adam Fowler
dc02a84771
Paladin: bump version ( #4452 )
2019-12-16 12:24:19 +03:00
Jerome Duval
3bd689b105
freeciv: use settings directory.
2019-12-15 22:11:37 +01:00
Bach Nguyen
abb57971f2
freeciv: add a recipe for version 2.6.0
2019-12-15 22:11:11 +01:00
Gerasim Troeglazov
5702a23741
QtWebKit: bump git revision
2019-12-15 23:46:27 +10:00