Bruno Bigras
|
80b7298420
|
ldb: 1.1.27 → 1.1.31
fix #39572
|
2018-04-29 19:23:01 +03:00 |
|
Léo Gaspard
|
905b03bce2
|
chromium: fix build on aarch64
chromium build on aarch64 failed with:
```
FAILED: obj/skia/skia/convolver_neon.o
g++ -MMD -MF obj/skia/skia/convolver_neon.o.d -DV8_DEPRECATION_WARNINGS -DUSE_UDEV -DUSE_AURA=1 -DUSE_GLIB=1 -DUSE_NSS_CERTS=1 -DUSE_X11=1 -DNO_TCMALLOC -DFULL_SAFE_BROWSING -DSAFE_BROWSING_CSD -DSAFE_BROWSING_DB_LOCAL -DCHROMIUM_BUILD -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_LIBCPP_DISABLE_VISIBILITY_ANNOTATIONS -D_LIBCXXABI_DISABLE_VISIBILITY_ANNOTATIONS -DNDEBUG -DNVALGRIND -DDYNAMIC_ANNOTATIONS_ENABLED=0 -DSK_IGNORE_LINEONLY_AA_CONVEX_PATH_OPTS -DSK_HAS_PNG_LIBRARY -DSK_HAS_WEBP_LIBRARY -DSK_HAS_JPEG_LIBRARY -DSK_SUPPORT_GPU=1 -DSK_FREETYPE_MINIMUM_RUNTIME_VERSION=\(\(\(FREETYPE_MAJOR\)\ \*\ 0x01000000\)\ \|\ \(\(FREETYPE_MINOR\)\ \*\ 0x00010000\)\ \|\ \(\(FREETYPE_PATCH\)\ \*\ 0x00000100\)\) -DSK_GAMMA_EXPONENT=1.2 -DSK_GAMMA_CONTRAST=0.2 -DSK_DEFAULT_FONT_CACHE_LIMIT=20971520 -DGLIB_VERSION_MAX_ALLOWED=GLIB_VERSION_2_32 -DGLIB_VERSION_MIN_REQUIRED=GLIB_VERSION_2_26 -DFT_CONFIG_CONFIG_H=\"freetype-custom-config/ftconfig.h\" -DFT_CONFIG_MODULES_H=\"freetype-custom-config/ftmodule.h\" -DFT_CONFIG_OPTIONS_H=\"freetype-custom-config/ftoption.h\" -DPDFIUM_REQUIRED_MODULES -DCHROMIUM_RESTRICT_VISIBILITY -DUSE_LIBJPEG_TURBO=1 -DU_USING_ICU_NAMESPACE=0 -DU_ENABLE_DYLOAD=0 -DU_STATIC_IMPLEMENTATION -DICU_UTIL_DATA_IMPL=ICU_UTIL_DATA_FILE -DUCHAR_TYPE=uint16_t -DUSE_SYSTEM_ZLIB=1 -I../.. -Igen -I../../skia/config -I../../skia/ext -I../../third_party/skia/include/c -I../../third_party/skia/include/config -I../../third_party/skia/include/core -I../../third_party/skia/include/effects -I../../third_party/skia/include/encode -I../../third_party/skia/include/gpu -I../../third_party/skia/include/images -I../../third_party/skia/include/lazy -I../../third_party/skia/include/pathops -I../../third_party/skia/include/pdf -I../../third_party/skia/include/pipe -I../../third_party/skia/include/ports -I../../third_party/skia/include/utils -I../../third_party/skia/src/gpu -I../../third_party/skia/src/sksl -I../../third_party/skia/include/codec -I../../third_party/skia/include/private -I../../third_party/skia/include/client/android -I../../third_party/skia/src/codec -I../../third_party/skia/src/core -I../../third_party/skia/src/image -I../../third_party/skia/src/images -I../../third_party/skia/src/opts -I../../third_party/skia/src/pdf -I../../third_party/skia/src/ports -I../../third_party/skia/src/shaders -I../../third_party/skia/src/shaders/gradients -I../../third_party/skia/src/sfnt -I../../third_party/skia/src/utils -I../../third_party/skia/src/lazy -I../../third_party/skia/third_party/gif -I../../third_party/skia/src/effects/gradients -Igen/shim_headers/libpng_shim -Igen/shim_headers/zlib_shim -I../../third_party/freetype/include -I../../third_party/freetype/src/include -I../../third_party/harfbuzz-ng/src -I../../third_party/libjpeg_turbo -I../../third_party/fontconfig/src -I../../third_party/icu/source/common -I../../third_party/icu/source/i18n -I../../third_party/sfntly/src/cpp/src -fno-strict-aliasing --param=ssp-buffer-size=4 -fstack-protector -Wno-builtin-macro-redefined -D__DATE__= -D__TIME__= -D__TIMESTAMP__= -funwind-tables -fPIC -pipe -pthread -fno-omit-frame-pointer -g0 -fno-builtin-abs -fvisibility=hidden -Wno-unused-local-typedefs -Wno-maybe-uninitialized -Wno-deprecated-declarations -fno-delete-null-pointer-checks -Wno-missing-field-initializers -Wno-unused-parameter -O2 -fno-ident -fdata-sections -ffunction-sections -isystem/nix/store/smmxgfkqaqqh43d5gmv5p3abcq19hkzy-glib-2.56.0-dev/include/glib-2.0 -isystem/nix/store/yn3bbw1sxg19h07wzn16k0ja58wr9yiz-glib-2.56.0/lib/glib-2.0/include -isystem/nix/store/f82jgynysk9mvhyfavfzims41zkskb3c-libpng-apng-1.6.34-dev/include/libpng16 -isystem/nix/store/56i89kfi2nmjrv8hifsz6zikr6pq1avw-zlib-1.2.11-dev/include -std=gnu++14 -fno-exceptions -fno-rtti -nostdinc++ -isystem../../buildtools/third_party/libc++/trunk/include -isystem../../buildtools/third_party/libc++abi/trunk/include -fvisibility-inlines-hidden -Wno-narrowing -c ../../skia/ext/convolver_neon.cc -o obj/skia/skia/convolver_neon.o
../../skia/ext/convolver_neon.cc: In function 'int32x4_t skia::AccumRemainder(const unsigned char*, const Fixed*, int)':
../../skia/ext/convolver_neon.cc:26:65: error: cannot convert '<brace-enclosed initializer list>' to 'int32x4_t {aka __vector(4) int}' in return
return {remainder[0], remainder[1], remainder[2], remainder[3]};
^
```
The following patch appears to fix this build issue.
Source: b84682f31d %5E%21/#F0
Suggested-by: @dezgeg
|
2018-04-29 18:38:38 +03:00 |
|
Léo Gaspard
|
a07881c8b8
|
chromium: skia patch appears to be still needed with 66 on aarch64
Cc @chaoflow @bendlas
Replaces #39628
|
2018-04-29 18:38:38 +03:00 |
|
Pascal Wittmann
|
8d6d1363de
|
Merge pull request #39677 from dywedir/tiled
tiled: 1.1.4 -> 1.1.5
|
2018-04-29 16:56:55 +02:00 |
|
Pascal Wittmann
|
067ed1c5eb
|
instead: 3.2.0 -> 3.2.1
|
2018-04-29 16:47:59 +02:00 |
|
viric
|
613e1485ad
|
Merge pull request #39672 from pstn/gnunet-git
gnunet: Add gnunet_git.
|
2018-04-29 16:41:41 +02:00 |
|
Vladyslav Mykhailichenko
|
e55677bffa
|
tiled: 1.1.4 -> 1.1.5
|
2018-04-29 17:09:11 +03:00 |
|
Jan Tojnar
|
0e1147d137
|
Merge pull request #37915 from jtojnar/gimp-2.10
GIMP 2.10
|
2018-04-29 15:12:27 +02:00 |
|
Peter Hoeg
|
a3b69a52c5
|
uchiwa: 1.1.2 -> 1.2.0
|
2018-04-29 20:34:52 +08:00 |
|
Jan Tojnar
|
5c4b687a88
|
gimp-with-plugins: filter out broken plugins from default selection
|
2018-04-29 14:29:36 +02:00 |
|
Jan Tojnar
|
4779556ed1
|
gimpPlugins.texturize: mark as broken
|
2018-04-29 14:23:46 +02:00 |
|
Jan Tojnar
|
518fb36dcb
|
gimpPlugins.focusblur: mark as broken
|
2018-04-29 14:23:36 +02:00 |
|
Philipp Steinpaß
|
49003e880c
|
gnunet: Add gnunet_git.
|
2018-04-29 13:26:40 +02:00 |
|
Joachim Fasting
|
9df35787f1
|
tor-browser-bundle-bin: allow unset XAUTHORITY
Apparently this can happen on e.g., fedora.
Closes https://github.com/NixOS/nixpkgs/issues/38671
|
2018-04-29 12:17:30 +02:00 |
|
Joachim Fasting
|
33615ccfa5
|
linux_hardened: enforce usercopy whitelisting
The default is to warn only
|
2018-04-29 12:17:24 +02:00 |
|
Jan Tojnar
|
4f420c6802
|
gmic: 2.2.1 → 2.2.2 + build gimpPlugin
|
2018-04-29 09:14:19 +02:00 |
|
Jan Tojnar
|
63a234c4a7
|
ufraw: build gimp plugin
|
2018-04-29 08:39:06 +02:00 |
|
Jan Tojnar
|
882682827a
|
gimpPlugins.lqrPlugin: use liblqr1 from pkgs
|
2018-04-29 08:39:06 +02:00 |
|
Jan Tojnar
|
b0d3ed3484
|
gimp: 2.8.22 → 2.10.0
|
2018-04-29 08:39:05 +02:00 |
|
Robert Schütz
|
cbc3afc655
|
Merge pull request #39662 from ilya-kolpakov/pymc3
pythonPackages.pymc3: init at 3.2
|
2018-04-29 08:12:10 +02:00 |
|
Peter Hoeg
|
7b6433b0eb
|
gcalcli: pin older versions of needed python packages
|
2018-04-29 13:00:46 +08:00 |
|
Tim Steinbach
|
1b1be29bf8
|
openjdk: 8u172-b02 -> 8u172-b11
|
2018-04-28 20:09:17 -04:00 |
|
Peter Hoeg
|
29d4913ccb
|
Merge pull request #39657 from dotlambda/home-assistant-0.68.0
home-assistant: 0.67.1 -> 0.68.0
|
2018-04-28 22:52:38 +00:00 |
|
Ilya Kolpakov
|
f2adf2059a
|
pythonPackages.pymc3: init at 3.2
|
2018-04-28 22:57:57 +02:00 |
|
Ilya Kolpakov
|
4797fe8da4
|
pythonPackages.patsy: 0.3.0 -> 0.5.0
|
2018-04-28 22:57:56 +02:00 |
|
Michael Raskin
|
f5268994be
|
weechat-matrix-bridge: 2018-01-10 -> 2017-03-29
|
2018-04-28 22:42:39 +02:00 |
|
Michael Raskin
|
7cd7e4ce26
|
weechat: 2.0 -> 2.1
|
2018-04-28 22:42:38 +02:00 |
|
Tim Steinbach
|
1cf5aad65b
|
linux-copperhead: Fix all-packages reference
|
2018-04-28 16:32:15 -04:00 |
|
Tim Steinbach
|
5c8c4710ba
|
openjdk: 10.0.0 -> 10.0.1
|
2018-04-28 20:20:47 +00:00 |
|
Jan Tojnar
|
f92d9364e1
|
Merge pull request #35410 from jtojnar/syncthing-gtk-0.9.3
syncthing-gtk: 0.9.2.7 → 0.9.3
|
2018-04-28 22:02:00 +02:00 |
|
Jan Tojnar
|
094683ac36
|
syncthing-gtk: 0.9.2.7 → 0.9.3.1
|
2018-04-28 22:00:32 +02:00 |
|
Tim Steinbach
|
844c08ec0a
|
linux-copperhead: Add 4.16.5.a
Separate LTS and stable kernel releases
|
2018-04-28 19:46:25 +00:00 |
|
Tim Steinbach
|
2eb42290e7
|
linux-copperhead: 4.14.36.a -> 4.14.37.a
|
2018-04-28 19:05:46 +00:00 |
|
Tim Steinbach
|
e8012dd2dd
|
scala: 2.12.5 -> 2.12.6
|
2018-04-28 19:01:55 +00:00 |
|
Jörg Thalheim
|
3ccb77b8a2
|
Merge pull request #39511 from steveeJ/sj-add-kyocera-drivers
cups-kyodialog3: init at 8.1601
|
2018-04-28 19:54:06 +01:00 |
|
georgewhewell
|
e22ba26c7b
|
binutils: apply patch on aarch64 to fix https://sourceware.org/bugzilla/show_bug.cgi?id=22764
(cherry picked from commit 5ce2d3355d )
|
2018-04-28 19:46:05 +01:00 |
|
Robert Schütz
|
d71df79998
|
home-assistant: 0.67.1 -> 0.68.0
|
2018-04-28 19:58:03 +02:00 |
|
Aristid Breitkreuz
|
c7713e9775
|
mono: change default version to "latest" (5.8), because 4.0 does not evaluate due to security
|
2018-04-28 19:39:15 +02:00 |
|
Linus Heckemann
|
75cfbdf33b
|
buildFHSUserEnv: change to root directory after chroot
Fixes #38525
|
2018-04-28 14:51:07 +01:00 |
|
obadz
|
65adfc73ad
|
zerotierone: 1.2.4 -> 1.2.8
|
2018-04-28 14:47:13 +01:00 |
|
Peter Simons
|
9f144e8578
|
haskell-hspec-smallcheck: use latest version for ghc-8.4.x to fix the build
|
2018-04-28 15:38:00 +02:00 |
|
Peter Simons
|
8564e93d2d
|
haskell-c2hs: drop hacky override and try the current version again
|
2018-04-28 15:38:00 +02:00 |
|
Peter Simons
|
f0549be090
|
haskell-stack: update overrides for the new 1.7.1 version
|
2018-04-28 15:37:59 +02:00 |
|
Peter Simons
|
c60c6a2443
|
git-annex: update sha256 hash for new 6.2018042 version
|
2018-04-28 15:37:59 +02:00 |
|
Peter Simons
|
99dc2d6f0f
|
haskell-hpack: use latest version for ghc-8.4.x to fix the build
|
2018-04-28 15:37:59 +02:00 |
|
Peter Simons
|
e39a75cd35
|
haskell-pandoc: update override for ghc-8.4.x
|
2018-04-28 15:37:59 +02:00 |
|
Peter Simons
|
f8d0c9e3c3
|
hackage-packages.nix: automatic Haskell package set update
This update was generated by hackage2nix v2.9.2-9-g07ca643 from Hackage revision
bb8ed19628 .
|
2018-04-28 15:37:55 +02:00 |
|
obadz
|
1f34893553
|
hyena: fix hyena & pdfmod builds on higher versions of mono
Helps with #36711
|
2018-04-28 13:14:43 +01:00 |
|
Jörg Thalheim
|
ea5787ad52
|
cups-kyodialog3: use autoPatchelfHook, add missing qt4
|
2018-04-28 13:02:20 +01:00 |
|
Jörg Thalheim
|
4071b64ae4
|
Merge pull request #38883 from romildo/new.onestepback
onestepback: init at 0.98
|
2018-04-28 13:01:25 +01:00 |
|