Commit Graph

21757 Commits

Author SHA1 Message Date
Frederik Rietdijk
fe9a3e3e63 Merge staging-next into staging 2019-08-17 09:39:23 +02:00
Frederik Rietdijk
c68f58d95c Merge master into staging-next 2019-08-17 09:30:16 +02:00
Aaron Andersen
63ce6bf9f3
Merge pull request #66661 from ealasu/feature/apfs-fuse
apfs-fuse: init at 20190723
2019-08-16 18:21:29 -04:00
ealasu
3b23c5fdf1 apfs-fuse: init at 2019-07-23 2019-08-16 12:04:26 -07:00
Marek Mahut
6672041d72
Merge pull request #66639 from jonringer/bump-pazi
pazi: 0.2.0 -> 0.3.0
2019-08-16 13:27:02 +02:00
Peter Hoeg
14f5528b74
Merge pull request #66680 from peterhoeg/u/noti
noti: 3.1.0 -> 3.2.0
2019-08-16 10:06:59 +08:00
Peter Hoeg
8a694c6b4c noti: 3.1.0 -> 3.2.0 2019-08-16 09:43:17 +08:00
John Wiegley
2edd7103da
mtr: Only include libcap on Darwin
Fixes #66688
2019-08-15 11:29:13 -07:00
Aaron Andersen
8bf23fbe44
Merge pull request #66557 from mmahut/s3ql
s3ql: 2.26 -> 3.2
2019-08-15 12:42:04 -04:00
Marek Mahut
9ff4220a52 pazi: adding darwin.apple_sdk.frameworks.Security 2019-08-15 15:40:21 +02:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
Michael Weiss
6347116187
inxi: 3.0.35-1 -> 3.0.36-1 2019-08-15 11:11:00 +02:00
aszlig
dc525e8b12
Merge pull request #66648 (improve xkbvalidate)
This allows xkbvalidate to be compiled via Clang and also has a few
other portability improvements, eg. it now can even be compiled on OS X,
even though it's probably not needed there.

In addition, I changed the binary name so that it matches the package
name.

I'm merging this in right now, because there is only the xserver NixOS
module where this is used, so the risk of a catastrophic breakage is
very low.

Checks and build done by ofborg also ran successfully and I also did a
few local tests (eg. running via valgrind to avoid leaks) to make sure
it's still working properly.
2019-08-15 01:32:09 +02:00
aszlig
16ecd0d5ca
xkbvalidate: Rename output binary to xkbvalidate
So far, the output binary has been just "validate", which is quite a
very generic name and doesn't match the package name.

Even though I highly doubt that this program will ever be used outside
of NixOS modules, it's nevertheless less confusing to have a consistent
naming.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 01:11:32 +02:00
aszlig
1964b0c1b1
xkbvalidate: Don't rely on GNU extensions
The only reason why I was using _GNU_SOURCE was because of vasprintf(),
so getting rid of that extension should make the source way more
portable.

When using vsnprintf() with a null pointer for the output buffer and a
size of 0, I wasn't quite sure whether this would be undefined
behaviour, so I looked it up in the C11 standard.

In section 7.21.6.5, it explicitly mentions this case, so we're lucky:

  If n is zero, nothing is written, and s may be a null pointer.

Additionally, section 7.21.6.12 writes the following about vsnprintf():

  The vsnprintf function does not invoke the va_end macro.

So to be sure to avoid undefined behaviour I subsequently added the
corresponding va_end() calls.

With this, the platforms attribute is now "unix", because the program
should now even run on OS X, even though it usually wouldn't be needed.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-15 00:59:58 +02:00
aszlig
77e8a12755
xkbvalidate: Use $CC instead of hardcoded gcc
I initially didn't use $CC because I thought this would be GCC specific,
but it turns out that Clang actually accepts -std=gnu11.

So using $CC here might not work on compilers other than Clang or GCC,
but at the moment those are the compilers we typically use in nixpkgs,
so even if we'd use some other compiler it *might* even work there.

I've tested this by compiling against clangStdenv with both $CC and
clang hardcoded and it works.

This was reported by @dkudriavtsev on IRC.

Signed-off-by: aszlig <aszlig@nix.build>
2019-08-14 23:57:20 +02:00
Jonathan Ringer
9a52a52e99 pazi: 0.2.0 -> 0.3.0 2019-08-14 13:08:49 -07:00
Niklas Hambüchen
19b043fe84 coreutils: Patch benign test case failing with musl.
See https://github.com/NixOS/nixpkgs/pull/61250#issuecomment-491642024

Using upstream patch.
2019-08-14 19:16:43 +02:00
Niklas Hambüchen
5524dac2fe coreutils: Refactor test patching.
So that more patches can easily be added and commented.
2019-08-14 19:16:43 +02:00
worldofpeace
dd49cf711e
Merge pull request #66338 from worldofpeace/installer/no-root
installer: Don't run as root
2019-08-14 11:20:54 -04:00
Frederik Rietdijk
cff9e6429a Merge staging-next into staging 2019-08-14 13:46:33 +02:00
Frederik Rietdijk
8d56f2472e Merge master into staging-next 2019-08-14 13:45:54 +02:00
Marek Mahut
930659b10b
Merge pull request #66608 from saschagrunert/cri-tools
cri-tools: 1.14.0 -> 1.15.0
2019-08-14 12:50:01 +02:00
Marek Mahut
dd87e37a8e
Merge pull request #66590 from jonringer/bump-bdsync
bdsync: 0.10.1 -> 0.11.1
2019-08-14 12:28:36 +02:00
Sascha Grunert
3efc04c41d
cri-tools: 1.14.0 -> 1.15.0
- Fix go build process to include critest as well.
- Fix GitHub repo location to be `kubernetes-sigs`
- Add me as maintainer

Signed-off-by: Sascha Grunert <sgrunert@suse.com>
2019-08-14 09:16:31 +02:00
Marek Mahut
90f6578ef2
Merge pull request #66602 from jonringer/bump-axel
axel: 2.17.3 -> 2.17.5
2019-08-14 08:52:42 +02:00
Jörg Thalheim
453d108417
youtube-dl: 2019.08.02 -> 2019.08.13 (#66603)
youtube-dl: 2019.08.02 -> 2019.08.13
2019-08-14 07:22:29 +01:00
Jörg Thalheim
cf5f02b4bb
zsh/pth/zsync: cross fixes (#65780)
zsh/pth/zsync: cross fixes
2019-08-14 07:15:01 +01:00
xrelkd
0ab733a9e1 youtube-dl: 2019.08.02 -> 2019.08.13 2019-08-14 11:37:33 +08:00
Jonathan Ringer
cbed276a69 axel: 2.17.3 -> 2.17.5 2019-08-13 19:55:13 -07:00
Matthew Bauer
326f40e97c
Merge pull request #66386 from typetetris/bacula-crosscompile-fix
bacula: fix cross compiling for armv7l
2019-08-13 21:51:15 -04:00
Jonathan Ringer
65b64ae301 bdsync: 0.10.1 -> 0.11.1 2019-08-13 15:00:05 -07:00
Marek Mahut
61ea45d6be
Merge pull request #65403 from dtzWill/update/dhcpcd-8.0.1
dhcpcd: 7.2.3 -> 8.0.2
2019-08-13 21:59:37 +02:00
worldofpeace
a5b77b8cae
Merge pull request #65724 from doronbehar/improve-sequoia
Improve sequoia package expression
2019-08-13 14:44:35 -04:00
Doron Behar
701c788c3f sequoia: improve expression, rename from sequoia-tool
- Add the package to the pythonPackages' attribute set.

- Make the python support overrideable
  We use the pythonSupport argument.

- Rename sequoia-tool -> sequoia
  We provide the whole ecosystem which includes:
    * ffi bindings to Python and C
    * zsh and bash completion for `sq` and `sqv` executables.

- Meta:
  * Use a string as the homepage URL (plain URLs are deprecated).
  * Change description of package to fit upstream and the files we
    actually install.
  * Add @doronbehar as maintainer.
2019-08-13 14:42:27 -04:00
Jan Tojnar
bb4a33ec91
ofono: init at 1.30 (#66565)
ofono: init at 1.30
2019-08-13 15:56:52 +02:00
Jan Tojnar
590310b23f
ofono: init at 1.30 2019-08-13 15:37:16 +02:00
Marek Mahut
8b2d5f9088 s3ql: 2.26 -> 3.2 2019-08-13 11:58:39 +02:00
Marek Mahut
2871348a6f
Merge pull request #66548 from delroth/efivar-r13y
efivar: patch build system for reproducibility
2019-08-13 10:37:29 +02:00
Mario Rodas
59d07914da bonfire: fix build with pytest 4 2019-08-13 09:18:25 +02:00
Pierre Bourdon
f289585d54
efivar: patch build system for reproducibility 2019-08-13 05:21:54 +02:00
Niklas Hambüchen
0f206b3e73 idevicerestore: init at 2019-02-14 2019-08-13 02:13:15 +02:00
Eric Wolf
aa696e8a63 bacula: fix cross compiling for armv7l
got this error while cross compiling:

checking whether setpgrp takes no argument... configure: error: cannot
check setpgrp when cross compiling

autoconf manual says:

— Macro: AC_FUNC_SETPGRP

    If setpgrp takes no argument (the Posix version), define SETPGRP_VOID. Otherwise, it is the BSD version, which takes two process IDs as arguments. This macro does not check whether setpgrp exists at all; if you need to work in that situation, first call AC_CHECK_FUNC for setpgrp.

    The result of this macro is cached in the ac_cv_func_setpgrp_void variable.

    This macro is obsolescent, as current systems have a setpgrp whose signature conforms to Posix. New programs need not use this macro.

So override it with caching variable.
2019-08-12 22:35:45 +02:00
worldofpeace
15f5535430 gparted: add adwaita-icon-theme
This adds the icon theme to XDG_DATA_DIRS.
It doesn't appear Plasma5 is properly configured for gtk
apps so this works around there being no icon theme installed
for it.
2019-08-12 14:45:27 -04:00
worldofpeace
7b3006478d gparted: correct polkit support
Use wrapGAppsHook as well
2019-08-12 14:45:27 -04:00
Marek Mahut
8c1d78aa4a
Merge pull request #62182 from dtzWill/update/moosefs-3.0.105
moosefs: 3.0.104 -> 3.0.105
2019-08-12 19:52:08 +02:00
Marek Mahut
86ac9f55b9
Merge pull request #63600 from steadmon/fail2ban-dovecot-service
fail2ban: fix dovecot filter's journalmatch
2019-08-12 18:51:32 +02:00
Marek Mahut
99d66e14b9
Merge pull request #65170 from erikarvstedt/tmpwatch-fuser
tmpwatch: add fuser support
2019-08-12 18:46:02 +02:00
Graham Christensen
5d807f80c7
Merge pull request #63864 from cransom/datadog-agent-integrations-fix
datadog-agent: fix extraIntegrations
2019-08-12 12:15:48 -04:00
Marek Mahut
11bbc69354
Merge pull request #66372 from kirelagin/fsfe-reuse-0.4.1
reuse: 0.3.4 -> 0.4.1
2019-08-12 13:24:34 +02:00