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
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
Peter Hoeg
3f454bc90f
toxic: 0.7.2 -> 0.8.2
2018-04-29 07:52:54 +08:00
Peter Hoeg
88454d73b0
qtox: 1.13.1 -> 1.15.0
2018-04-29 07:52:54 +08:00
Peter Hoeg
058df14f81
ratox: 0.4 -> 0.4.20180303
2018-04-29 07:52:54 +08: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
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
Andreas Rammhold
bf325f1bd7
quassel: 0.12.4 -> 0.12.5 (fixes RCE & remote crash)
...
It was found that Quassel could be remotely crashed and had an
unauthenticated RCE vulnerability. The public annoucement can be found
on the oss-sec archive [1]. The bump to 0.12.5 is supposed fixe both issues.
[1] http://seclists.org/oss-sec/2018/q2/77
2018-04-28 11:08:42 +02:00
Matthew Justin Bauer
455e4c8d5b
Merge pull request #38906 from xvapx/upd/tribler
...
tribler: 7.0.1 -> 7.0.2
2018-04-27 15:03:53 -05:00
Jens Binkert
53722f25ad
terraform-provider-ibm: init at 0.8.0
2018-04-27 20:20:21 +02:00
zimbatm
ad7bc980d2
terraform: update all plugins
2018-04-27 12:54:40 +01:00
Jörg Thalheim
fd29514404
Merge pull request #39579 from xeji/teamviewer
...
teamviewer: 12.0.90041 -> 13.1.3026
2018-04-27 08:21:54 +01:00
xeji
9badee01c1
teamviewer 12.0.90041 -> 13.1.3026
...
bump, move to qt5, drop i686 support
2018-04-27 00:45:32 +02:00
Sarah Brofeldt
2248f98dea
Merge pull request #39570 from srhb/chromium-24h-timeout
...
chromium: See if Hydra obeys a 24h meta.timeout
2018-04-26 22:12:16 +02:00
Sarah Brofeldt
537d14f4e2
chromium: See if Hydra obeys a 24h meta.timeout
2018-04-26 21:59:33 +02:00
John Ericson
ba52ae5048
treewide: isArm -> isAarch32
...
Following legacy packing conventions, `isArm` was defined just for
32-bit ARM instruction set. This is confusing to non packagers though,
because Aarch64 is an ARM instruction set.
The official ARM overview for ARMv8[1] is surprisingly not confusing,
given the overall state of affairs for ARM naming conventions, and
offers us a solution. It divides the nomenclature into three levels:
```
ISA: ARMv8 {-A, -R, -M}
/ \
Mode: Aarch32 Aarch64
| / \
Encoding: A64 A32 T32
```
At the top is the overall v8 instruction set archicture. Second are the
two modes, defined by bitwidth but differing in other semantics too, and
buttom are the encodings, (hopefully?) isomorphic if they encode the
same mode.
The 32 bit encodings are mostly backwards compatible with previous
non-Thumb and Thumb encodings, and if so we can pun the mode names to
instead mean "sets of compatable or isomorphic encodings", and then
voilà we have nice names for 32-bit and 64-bit arm instruction sets
which do not use the word ARM so as to not confused either laymen or
experienced ARM packages.
[1]: https://developer.arm.com/products/architecture/a-profile
2018-04-25 15:28:55 -04:00
Michael Raskin
cdca27101d
Merge pull request #39450 from r-ryantm/auto-update/baresip
...
baresip: 0.5.8 -> 0.5.9
2018-04-24 23:10:30 +00:00
Jörg Thalheim
cf68bb33cb
dino: fix checksum
2018-04-24 23:44:32 +01:00
Jörg Thalheim
296bc1e569
dino: 2018-03-10 -> 2018-04-19
2018-04-24 23:41:21 +01:00
R. RyanTM
85161629c5
baresip: 0.5.8 -> 0.5.9
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/baresip/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.5.9 with grep in /nix/store/qh69vw5jdwnw82vb6gkwz4f0k8gpjjry-baresip-0.5.9
- directory tree listing: https://gist.github.com/f67689bcf18570ad0408e54fa06db37c
2018-04-24 15:33:02 -07:00
Kamil Chmielewski
3cdb8f581d
spark: provided-hadoop -> nixpkgs hadoop
...
spark should use nixpkgs provided hadoop to make it consistent
for bigger Nix hadoop + spark setup
2018-04-23 20:48:33 +02:00
xeji
a586011b58
firefox-wrapper: fix icon linking ( #39315 )
...
don't try to link non-existing icons
2018-04-23 08:33:09 +01:00
Corbin Simpson
69f23d9e73
enhanced-ctorrent: fix CVE-2009-1759 ( #39311 )
...
Patches from Debian.
2018-04-22 22:42:20 +01:00
Marti Serra
e9baa47a3b
tribler: 7.0.1 -> 7.0.2
2018-04-22 10:42:10 +02:00
Matthew Justin Bauer
c8e58113b2
Merge pull request #38801 from worldofpeace/wire-desktop
...
wire-desktop: init at 3.0.2816
2018-04-21 20:47:56 -05:00
Herwig Hochleitner
2b29e40153
chromium: 65.0.3325.181 -> 66.0.3359.117
...
Critical CVE-2018-6085: Use after free in Disk Cache. Reported by Ned Williamson on 2018-03-28
Critical CVE-2018-6086: Use after free in Disk Cache. Reported by Ned Williamson on 2018-03-30
High CVE-2018-6087: Use after free in WebAssembly. Reported by Anonymous on 2018-02-20
High CVE-2018-6088: Use after free in PDFium. Reported by Anonymous on 2018-03-15
High CVE-2018-6089: Same origin policy bypass in Service Worker. Reported by Rob Wu on 2018-02-04
High CVE-2018-6090: Heap buffer overflow in Skia. Reported by ZhanJia Song on 2018-03-12
High CVE-2018-6091: Incorrect handling of plug-ins by Service Worker. Reported by Jun Kokatsu (@shhnjk) on 2017-10-05
High CVE-2018-6092: Integer overflow in WebAssembly. Reported by Natalie Silvanovich of Google Project Zero on 2018-03-08
Medium CVE-2018-6093: Same origin bypass in Service Worker. Reported by Jun Kokatsu (@shhnjk) on 2017-11-01
Medium CVE-2018-6094: Exploit hardening regression in Oilpan. Reported by Chris Rohlf on 2016-08-01
Medium CVE-2018-6095: Lack of meaningful user interaction requirement before file upload. Reported by Abdulrahman Alqabandi (@qab) on 2016-08-11
Medium CVE-2018-6096: Fullscreen UI spoof. Reported by WenXu Wu of Tencent's Xuanwu Lab on 2017-10-19
Medium CVE-2018-6097: Fullscreen UI spoof. Reported by xisigr of Tencent's Xuanwu Lab on 2018-01-26
Medium CVE-2018-6098: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-01-03
Medium CVE-2018-6099: CORS bypass in ServiceWorker. Reported by Jun Kokatsu (@shhnjk) on 2018-02-03
Medium CVE-2018-6100: URL spoof in Omnibox. Reported by Lnyas Zhang on 2018-02-11
Medium CVE-2018-6101: Insufficient protection of remote debugging prototol in DevTools . Reported by Rob Wu on 2018-02-19
Medium CVE-2018-6102: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-02-20
Medium CVE-2018-6103: UI spoof in Permissions. Reported by Khalil Zhani on 2018-02-24
Medium CVE-2018-6104: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-03-08
Medium CVE-2018-6105: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-01-18
Medium CVE-2018-6106: Incorrect handling of promises in V8. Reported by lokihardt of Google Project Zero on 2018-01-25
Medium CVE-2018-6107: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-02-02
Medium CVE-2018-6108: URL spoof in Omnibox. Reported by Khalil Zhani on 2018-02-27
Low CVE-2018-6109: Incorrect handling of files by FileAPI. Reported by Dominik Weber (@DoWeb_) on 2017-04-10
Low CVE-2018-6110: Incorrect handling of plaintext files via file:// . Reported by Wenxiang Qian (aka blastxiang) on 2017-10-24
Low CVE-2018-6111: Heap-use-after-free in DevTools. Reported by Khalil Zhani on 2017-11-02
Low CVE-2018-6112: Incorrect URL handling in DevTools. Reported by Rob Wu on 2017-12-29
Low CVE-2018-6113: URL spoof in Navigation. Reported by Khalil Zhani on 2018-01-25
Low CVE-2018-6114: CSP bypass. Reported by Lnyas Zhang on 2018-02-13
Low CVE-2018-6115: SmartScreen bypass in downloads. Reported by James Feher on 2018-03-07
Low CVE-2018-6116: Incorrect low memory handling in WebAssembly. Reported by Jin from Chengdu Security Response Center of Qihoo 360 Technology Co. Ltd. on 2018-03-15
Low CVE-2018-6117: Confusing autofill settings. Reported by Spencer Dailey on 2018-03-15
Low CVE-2018-6084: Incorrect use of Distributed Objects in Google Software Updater on MacOS. Reported by Ian Beer of Google Project Zero on 2018-03-15
2018-04-21 14:57:45 +02:00
R. RyanTM
951d6a9f93
inboxer: 1.0.4 -> 1.1.2 ( #39233 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/inboxer/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.1.2 with grep in /nix/store/dbk6jvgi9kc56yh5grh1d3yndcwd0965-inboxer-1.1.2
- directory tree listing: https://gist.github.com/fd594eb2f8f8083359d8736e32edee72
2018-04-20 16:03:24 +02:00
Michael Weiss
5131977f1b
gns3Packages.{server,gui}{Stable,Preview}: 2.1.4 -> 2.1.5
2018-04-19 22:34:32 +02:00
worldofpeace
754b30ef00
wire-desktop: init at 3.0.2816
2018-04-19 13:50:35 -04:00
Matthew Justin Bauer
78cfa7bbd0
Merge pull request #38976 from volth/patch-124
...
tixati: 2.55 -> 2.57
2018-04-19 11:59:15 -05:00
Peter Hoeg
da4695009c
freerdp: 2.0.0-rc1 -> 2.0.0-rc2
2018-04-19 10:31:19 +08:00
Jörg Thalheim
d308ac9233
Merge pull request #39064 from r-ryantm/auto-update/frostwire
...
frostwire-bin: 6.6.3 -> 6.6.5
2018-04-17 20:26:28 +01:00
Matthew Bauer
52893d5276
treewide: move "extensions" drvs to dir
...
This cleans up the tree for pkgs/applications somewhat. Should not
change any hashes.
2018-04-17 13:50:49 -05:00
Michael Weiss
9cb0b49673
signal-desktop-beta: Mark as broken (really outdated)
2018-04-17 18:26:53 +02:00
Michael Weiss
b500edc44c
quiterss: 0.18.9 -> 0.18.10
2018-04-17 18:16:23 +02:00
Matthew Justin Bauer
2f0f9b4d0f
Merge pull request #37512 from MHOOO/patch-1
...
Fix spark scripts that use dirname
2018-04-17 10:41:12 -05:00
Matthew Justin Bauer
0418f5ee65
Merge pull request #38321 from jensbin/openshift_mount_fix
...
openshift: Fix binary paths for oc cluster up to work
2018-04-17 10:11:07 -05:00
Matthew Justin Bauer
80facf99da
Merge pull request #38189 from r-ryantm/auto-update/palemoon
...
palemoon: 27.8.0 -> 27.8.3
2018-04-17 09:57:06 -05:00
Matthew Justin Bauer
3207b7e71d
Merge pull request #38311 from qfjp/submit/finch-fix
...
Use lib/purple-2 directory instead of lib/pidgin
2018-04-17 09:55:00 -05:00
Peter Hoeg
5b3c2b189b
Merge pull request #38828 from luke-clifton/ipfs-update
...
ipfs: 0.4.13 -> 0.4.14
2018-04-17 14:23:01 +00:00
R. RyanTM
d4cc20c0cc
frostwire-bin: 6.6.3 -> 6.6.5
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/frostwire/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 6.6.5 with grep in /nix/store/6cgry9k7i6ni9a7axglsm5akmibryimi-frostwire-6.6.5
- directory tree listing: https://gist.github.com/e29014b6db646e0dd934f79b2e387703
2018-04-17 05:07:21 -07:00
adisbladis
195d5679e8
Merge pull request #38986 from scode/scode/signal-171-update
...
signal-desktop: 0.7.0 -> 0.7.1
2018-04-16 20:12:43 +08:00
Jörg Thalheim
5ad99e6b05
firefox-bin: add hint on how to update
2018-04-16 11:38:04 +01:00
Peter Schuller
70588bc82e
signal-desktop: 0.7.0 -> 0.7.1
2018-04-15 21:19:20 -07:00
volth
fa9359110b
tixati: 2.55 -> 2.57
2018-04-15 21:38:32 +00:00
Jörg Thalheim
fb9d7e0aa0
Merge pull request #38902 from Ekleog/nheko-0.3.1
...
nheko: 0.3.0 -> 0.3.1
2018-04-15 19:54:55 +01:00
S. Nordin Abouzahra
92f0d31b94
purple-discord: init at 2018-04-10
2018-04-15 11:20:23 +02:00
Matthias Beyer
792c99df34
mutt: 1.9.4 -> 1.9.5
2018-04-15 08:27:58 +02:00
Elis Hirwing
8b19b14bda
testssl: 2.9.5-4 -> 2.9.5-5 ( #38936 )
...
Changelog:
https://github.com/drwetter/testssl.sh/releases/tag/v2.9.5-5
Also improved expression.
2018-04-14 21:17:44 +02:00
Alexandre Peyroux
256b0b5a2d
c14: 2017-05-15 -> 0.3 ( #38905 )
2018-04-14 08:29:30 +01:00
Léo Gaspard
59bf698238
nheko: 0.3.0 -> 0.3.1
2018-04-13 15:57:41 +02:00
Tim Steinbach
32d620d739
hipchat: 4.30.3.1670 -> 4.30.4.1672
2018-04-13 09:39:06 -04:00
Maximilian Güntner
119570cd83
backintime-qt4: package is broken
...
the install phase writes into /nix :
```
<snip>
install -d
/nix/store/1kc8xcni0wp4y35vafh03rdxvqkrsxvl-backintime-qt4-1.1.24/../etc/dbus-1/system.d
install --mode=644 net.launchpad.backintime.serviceHelper.conf
/nix/store/1kc8xcni0wp4y35vafh03rdxvqkrsxvl-backintime-qt4-1.1.24/../etc/dbus-1/system.d
<snap>
```
2018-04-13 14:13:22 +02:00
Yegor Timoshenko
ae1318043b
Merge pull request #38890 from r-ryantm/auto-update/signal-desktop
...
signal-desktop: 1.6.1 -> 1.7.0
2018-04-13 09:57:26 +00:00
lewo
4043fff3bc
Merge pull request #38423 from mbode/heptio-ark_0_7_1
...
heptio-ark: init at 0.7.1
2018-04-13 08:50:40 +02:00
R. RyanTM
50c6900fd4
signal-desktop: 1.6.1 -> 1.7.0
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/signal-desktop/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.7.0 with grep in /nix/store/xkslw2sdzbpbzy0ddd0f5qxk1wkfahs6-signal-desktop-1.7.0
- directory tree listing: https://gist.github.com/05c86387ecf6ea0334f3d0c18b44542e
2018-04-12 23:03:32 -07:00
Yegor Timoshenko
6207cb9302
Merge pull request #38827 from r-ryantm/auto-update/riot-web
...
riot-web: 0.13.5 -> 0.14.0
2018-04-12 22:26:11 +00:00
Maximilian Bode
2e1c5c00c7
heptio-ark: init at 0.7.1
2018-04-12 20:59:10 +02:00
Benjamin Saunders
cd24ae7a1b
purple-hangouts: 2017-10-08 -> 2018-03-28 ( #38819 )
2018-04-12 13:24:21 +02:00
R. RyanTM
ba337a2d5c
riot-web: 0.13.5 -> 0.14.0
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/riot-web/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.14.0 with grep in /nix/store/rrr1riavdg8sysb7ksvfqwr9az3jvlbm-riot-web-0.14.0
- directory tree listing: https://gist.github.com/586766758d4a74da4f7c241391412e10
2018-04-12 00:58:26 -07:00
Luke Clifton
7c3475563b
ipfs 0.4.13 -> 0.4.14
2018-04-12 15:55:46 +08:00
R. RyanTM
35121b1973
syncplay: 1.5.2 -> 1.5.3 ( #38693 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/syncplay/versions .
These checks were done:
- built on NixOS
- ran ‘/nix/store/dfjzzxr9ih0cpmz3ls5xcmfaf2qrhmhh-syncplay-1.5.3/bin/.syncplay-server-wrapped -h’ got 0 exit code
- ran ‘/nix/store/dfjzzxr9ih0cpmz3ls5xcmfaf2qrhmhh-syncplay-1.5.3/bin/.syncplay-server-wrapped --help’ got 0 exit code
- ran ‘/nix/store/dfjzzxr9ih0cpmz3ls5xcmfaf2qrhmhh-syncplay-1.5.3/bin/syncplay-server -h’ got 0 exit code
- ran ‘/nix/store/dfjzzxr9ih0cpmz3ls5xcmfaf2qrhmhh-syncplay-1.5.3/bin/syncplay-server --help’ got 0 exit code
- found 1.5.3 with grep in /nix/store/dfjzzxr9ih0cpmz3ls5xcmfaf2qrhmhh-syncplay-1.5.3
- directory tree listing: https://gist.github.com/52097c8cbb187c4fb391af784f94d056
2018-04-11 17:25:10 +02:00
Pascal Wittmann
7427b58266
Switch suckless.org URLs to https
...
(cherry picked from commit 22f212537f475565f67a07b869f9cceea2022191)
2018-04-11 15:11:55 +02:00
Frederik Rietdijk
ee6894ca12
Merge staging into master
2018-04-11 14:55:52 +02:00
Michael Raskin
896cc0847a
Merge pull request #38765 from taku0/flashplayer-29.0.0.140
...
flashplayer: 29.0.0.113 -> 29.0.0.140 [Critical security fixes]
2018-04-11 11:59:11 +00:00
Tim Steinbach
cb7f774265
minikube: 0.25.2 -> 0.26.0
2018-04-10 18:45:13 -04:00
Frederik Rietdijk
6023849ba1
Merge master into staging
2018-04-10 19:23:42 +02:00
taku0
f92dc58c71
flashplayer: 29.0.0.113 -> 29.0.0.140
2018-04-10 21:14:20 +09:00
Jean-Baptiste Giraudeau
d6e8371071
terraform_0_11: 0.11.5 -> 0.11.6
2018-04-10 10:39:53 +02:00
Robert Schütz
80fc5f2a24
Merge branch 'master' into staging
2018-04-10 09:13:36 +02:00
Matthew Justin Bauer
4531f181d9
Merge pull request #35121 from xeji/firehol-35114
...
firehol: 3.1.5: fix errors when running firehol command
2018-04-09 14:22:32 -05:00
Jörg Thalheim
43a3cfe0c2
Merge pull request #38654 from etu/testssl-update
...
testssl: 2.9.5-3 -> 2.9.5-4
2018-04-09 19:16:26 +01:00
Elis Hirwing
7b4ed22b54
testssl: 2.9.5-3 -> 2.9.5-4
...
Changelog:
https://github.com/drwetter/testssl.sh/releases/tag/v2.9.5-4
Also improved the expression to be more readable.
2018-04-09 18:49:50 +02:00
Frederik Rietdijk
0aa59a08d6
Merge master into staging
2018-04-09 15:12:32 +02:00
Matthew Justin Bauer
39132f6d5d
Merge pull request #37312 from lprndn/luakit
...
luakit: init at 2018.08.10
2018-04-08 23:07:57 -05:00
Matthew Justin Bauer
c472940c8b
Merge pull request #37383 from hedning/notmuch-fix-/bin/sh
...
notmuch: fix /bin/sh impurity in ./configure
2018-04-08 23:07:35 -05:00
Matthew Justin Bauer
67bde55c42
Merge pull request #38055 from ryantm/auto-update/sylpheed
...
sylpheed: 3.6.0 -> 3.7.0
2018-04-08 21:52:34 -05:00
Matthew Justin Bauer
842278d675
Merge pull request #38546 from romildo/new.balsa
...
balsa: init at 2.5.5
2018-04-08 21:49:32 -05:00
Matthew Justin Bauer
15ab41c026
Merge pull request #38498 from r-ryantm/auto-update/wireshark-gtk
...
wireshark-gtk: 2.4.5 -> 2.4.6
2018-04-08 21:40:07 -05:00
Matthew Justin Bauer
1d951cfa4b
Merge pull request #38225 from mbode/click_0_3_1
...
click: init at 0.3.1
2018-04-08 21:29:47 -05:00
Michael Weiss
0288f77c30
tdesktop: 1.2.15 -> 1.2.17
...
tdesktopPackages.preview: 1.2.15 -> 1.2.17
2018-04-09 00:36:15 +02:00
R. RyanTM
fea4270c11
inboxer: 1.0.3 -> 1.0.4 ( #38226 )
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/inboxer/versions .
These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 1.0.4 with grep in /nix/store/p1nbzvgxwp6fczn96a1wdblpvm5h42m8-inboxer-1.0.4
- directory tree listing: https://gist.github.com/e6ce6651760c07005f1d533c2cafc824
2018-04-08 15:53:35 +02:00
Jörg Thalheim
39eaf98ad3
Merge pull request #38515 from taku0/fix-firefox-wrapper-ln-icon
...
firefox: fix wrapper to make proper symlink to icon
2018-04-08 14:06:26 +01:00
Frederik Rietdijk
595a72589f
Merge master into staging
2018-04-08 10:54:17 +02:00
Ryan Mulligan
6593ce7ef9
otter-browser: 0.9.94 -> 0.9.96 ( #37239 )
...
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:
- built on NixOS
- Warning: no binary found that responded to help or version flags. (This warning appears even if the package isn't expected to have binaries.)
- found 0.9.96 with grep in /nix/store/hy3dyckwbq8x0ylgydqf3hsd0yyj38mf-otter-browser-0.9.96
- directory tree listing: https://gist.github.com/3ba5ac755cab96acd876703e94dff4b4
2018-04-08 10:00:05 +02:00
José Romildo Malaquias
20212c7296
balsa: init at 2.5.5
2018-04-07 08:27:52 -03:00
Jörg Thalheim
d017bc3965
Merge pull request #38537 from Ekleog/nheko-init
...
nheko: init at 0.3.0
2018-04-07 08:09:48 +01:00
Léo Gaspard
5a75e845ad
nheko: init at 0.3.0
2018-04-07 04:05:11 +02:00
Daiderd Jordan
92a36cf63b
Merge pull request #38468 from veprbl/mesos_darwin
...
mesos: fix on darwin by disabling java interface
2018-04-06 20:19:16 +02:00
R. RyanTM
ae8e564ba8
notmuch: 0.26 -> 0.26.1
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/notmuch/versions .
These checks were done:
- built on NixOS
- ran ‘/nix/store/05v4k89ni4phwyxvqskr0hji49b5fmck-notmuch-0.26.1/bin/notmuch --help’ got 0 exit code
- ran ‘/nix/store/05v4k89ni4phwyxvqskr0hji49b5fmck-notmuch-0.26.1/bin/notmuch help’ got 0 exit code
- ran ‘/nix/store/05v4k89ni4phwyxvqskr0hji49b5fmck-notmuch-0.26.1/bin/notmuch --version’ and found version 0.26.1
- found 0.26.1 with grep in /nix/store/05v4k89ni4phwyxvqskr0hji49b5fmck-notmuch-0.26.1
- directory tree listing: https://gist.github.com/adeae189f9ac416571a7c0e3beca712f
2018-04-06 20:07:43 +02:00
Michael Weiss
80faa73fc0
neomutt: Fix the path to the auxiliary tools
...
This path changed from $out/lib/neomutt to $out/libexec/neomutt.
2018-04-06 19:37:46 +02:00
taku0
9fca924468
firefox: fix wrapper to make proper symlink to icon
2018-04-07 01:00:42 +09:00
Jörg Thalheim
e76825a9cf
Merge pull request #36569 from grahamc/terraform-provider-nixos
...
terraform-provider-nixos: init at 0.0.1
2018-04-06 10:55:32 +01:00
R. RyanTM
b97550f400
wireshark-gtk: 2.4.5 -> 2.4.6
...
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.
This update was made based on information from https://repology.org/metapackage/wireshark-gtk/versions .
These checks were done:
- built on NixOS
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/wireshark-gtk -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/wireshark-gtk --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/tshark -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/tshark --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/tfshark -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/tfshark --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/tfshark help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/rawshark -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/rawshark --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/randpkt -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/randpkt --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/randpkt help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/text2pcap -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/text2pcap --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/mergecap -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/mergecap --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/reordercap -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/reordercap --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/capinfos -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/capinfos --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/capinfos help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/captype -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/captype --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/captype help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/editcap -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/editcap --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/editcap help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/dumpcap -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/dumpcap --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.wireshark-gtk-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.wireshark-gtk-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.tshark-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.tshark-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.tfshark-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.tfshark-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.tfshark-wrapped help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.rawshark-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.rawshark-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.randpkt-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.randpkt-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.randpkt-wrapped help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.text2pcap-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.text2pcap-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.mergecap-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.mergecap-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.reordercap-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.reordercap-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.capinfos-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.capinfos-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.capinfos-wrapped help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.captype-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.captype-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.captype-wrapped help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.editcap-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.editcap-wrapped --help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.editcap-wrapped help’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.dumpcap-wrapped -h’ got 0 exit code
- ran ‘/nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6/bin/.dumpcap-wrapped --help’ got 0 exit code
- found 2.4.6 with grep in /nix/store/4ir513hd62f2xyqdgapzzl7ksf4k6znq-wireshark-gtk-2.4.6
- directory tree listing: https://gist.github.com/ca5179603a5aebfd1a1ba1b1e3945de9
2018-04-05 19:17:27 -07:00
Daiderd Jordan
b0894c42ea
offrss: mark linux only
2018-04-05 20:05:56 +02:00
Frederik Rietdijk
a9f37d1c25
Merge master into staging
2018-04-05 19:25:05 +02:00