Commit Graph

1470 Commits

Author SHA1 Message Date
Frederik Rietdijk
6d059becd3 Merge gcc-9 into staging (#68029) 2019-12-30 16:38:38 +01:00
Robin Gloster
2157dcd141
treewide: installFlags is a list 2019-12-30 13:22:43 +01:00
Merijn Broeren
133103d709
treewide: replace make/build/configure/patchFlags with nix lists 2019-12-30 12:58:11 +01:00
Robin Gloster
ac8eaa8507
treewide: fix *Flags 2019-12-30 04:50:37 +01:00
Robin Gloster
8cebd2f6b7
bees: 0.6.1 -> 0.6.2
fixes build with gcc9
2019-12-27 21:54:57 +01:00
Michael Raskin
d37b082db7
Merge pull request #76261 from r-ryantm/auto-update/glusterfs
glusterfs: 7.0 -> 7.1
2019-12-23 19:54:34 +00:00
R. RyanTM
d1d2c4dce0 glusterfs: 7.0 -> 7.1 2019-12-23 05:40:24 -08:00
R. RyanTM
5ae32c796f bindfs: 1.14.1 -> 1.14.2 2019-12-22 19:47:39 -08:00
Frederik Rietdijk
dfdf1597a7 Merge master into staging-next 2019-12-13 11:43:39 +01:00
Jaka Hudoklin
b090446824
Merge pull request #75556 from peterhoeg/u/overlayfs_0_7_2
fuse-overlayfs: 0.7 -> 0.7.2
2019-12-12 21:12:40 +00:00
Domen Kožar
c49ca3e505
nixpart: ignore useNixUdev as it's now required by hetzner 2019-12-12 15:04:31 +01:00
Peter Hoeg
af1b93f571 fuse-overlayfs: 0.7 -> 0.7.2 2019-12-12 19:41:03 +08:00
Frederik Rietdijk
f3618342ec Merge staging-next into staging 2019-12-10 19:01:27 +01:00
R. RyanTM
66f5b1f750 btrfs-progs: 5.3.1 -> 5.4 2019-12-07 16:44:46 -08:00
Niklas Hambüchen
3ccbce4b12
Merge pull request #74485 from malbarbo/e2fsprogs-shared
e2fsprogs: allow static build
2019-12-06 19:07:01 +01:00
Marco A L Barbosa
f6ea33023e e2fsprogs: allow static build 2019-12-05 11:55:24 -03:00
R. RyanTM
1f5f6b796b grive2: 0.5.0 -> 0.5.1 2019-12-01 18:51:51 +01:00
R. RyanTM
5837214501 moosefs: 3.0.105 -> 3.0.107 (#74481) 2019-11-30 17:03:52 +01:00
Renaud
f0b9bd93ec
cryfs: 0.9.10 -> 0.10.2
(#74296)
2019-11-29 22:58:38 +01:00
Dima
0541d071af samba3, fusesmb: removing
Samba 3 has been discontinued since Q1/2015. So I think it's time
to just wipe it from the pkgs. FuseSMB is pretty much abandoned,
upstream does not exist and it's also not as useful as it used to
be anyways.
2019-11-26 19:56:16 +01:00
Ryan Mulligan
a024b44965
Merge pull request #74234 from r-ryantm/auto-update/fuse-overlayfs
fuse-overlayfs: 0.6.2 -> 0.7
2019-11-26 07:39:55 -08:00
R. RyanTM
e17a0f3c5f gitfs: 0.5.1 -> 0.5.2 2019-11-26 00:42:45 -08:00
R. RyanTM
5d230d8c58 fuse-overlayfs: 0.6.2 -> 0.7 2019-11-25 17:35:30 -08:00
Renaud
35d99698ae
dislocker: replace polarssl with mbedtls
polarssl is an old alias to mbedtls
2019-11-24 23:16:01 +01:00
c0bw3b
0afae5c14b Treewide: fix more URL permanent redirects
Related issue: #60004
Previous PR: #73478
2019-11-21 15:37:34 -08:00
Domen Kožar
c64e17b68d
nixpart0: mark as unbroken
It builds.
2019-11-21 17:39:28 +01:00
Rob Vermaas
302396fc42 nixpart0: remove broken, fix build for (local) pykickstart dep 2019-11-19 11:09:24 +01:00
Alyssa Ross
6955816811 squashfs-tools-ng: init at 0.7 2019-11-17 23:46:16 +01:00
Linus Heckemann
75667c2916 pythonPackages.nixpart: unmark broken 2019-11-15 18:00:36 +01:00
Michael Raskin
e3b76760e3
Merge pull request #73168 from judaew/btrfs-progs-update
btrfs-progs: 5.2.2 -> 5.3.1
2019-11-11 23:10:49 +00:00
Florian Klink
05590b3efd ceph: fix build and cleanup expression
correct platforms. ceph currently doesn't build on aarch64-linux. So
let's not lie in meta.platforms.

ceph: fix multiple output
We currently just move $out/share/ceph/mgr to
$lib/lib/ceph, and then remove all references to $out with a find
command.

I checked $out, the only reference to $out is in
$lib/lib/ceph/libceph-common.so.0, coming from src/common/options.cc:
https://github.com/ceph/ceph/blob/master/src/common/options.cc#L5050:

>  Option("mgr_module_path", Option::TYPE_STR, Option::LEVEL_ADVANCED)
>  .set_default(CEPH_DATADIR "/mgr")
>  .add_service("mgr")
>  .set_description("Filesystem path to manager modules."),

Just removing the reference might break some behaviour - it should point
to $lib/ceph/mgr instead.

We can fix this in a much more elegant fashion by just passing a custom
CMAKE_INSTALL_DATADIR to the build system.

ceph: fix outdated Boost::python substitutions

Instead of substituting in CMakeLists.txt files, one now needs to set
MGR_PYTHON_VERSION.

ceph: clean up PYTHONPATH wrapping

Set `pythonPath` instead of exporting PYTHONPATH.

Use `toPythonPath` to construct the PYTHONPATH where we need manual
wrapping. There's no ceph-volume, only ceph-mgr.

ceph: set doCheck = false explicitly

and describe why.

ceph: patch more shebangs

ceph: use system-provided gtest and rocksdb
2019-11-11 21:47:02 +01:00
Vadim-Valdis Yudaev
9bf9370d95
btrfs-progs: 5.2.2 -> 5.3.1 2019-11-10 19:11:42 +02:00
R. RyanTM
42235323e5 mergerfs: 2.28.2 -> 2.28.3
(#72572)
2019-11-09 16:21:53 +01:00
Franz Pletz
c424a9dec5
sshfs: fix fetchpatch hash 2019-11-03 14:58:56 +01:00
Michael Weiss
3f0d188f65
sshfs: 3.5.2 -> 3.6.0
The patch prevents the following error:
[2/7] Generating manpages with a custom command.
../sshfs.rst:210: (ERROR/3) Unexpected indentation.
../sshfs.rst:211: (WARNING/2) Block quote ends without a blank line; unexpected unindent.
2019-11-03 14:21:43 +01:00
Florian Klink
ef2af94928
Merge pull request #72485 from charles-dyfis-net/gocryptfs-1.7.1
gocryptfs: 1.7 -> 1.7.1
2019-11-02 14:37:10 +01:00
Charles Duffy
8f285340f3
gocryptfs: 1.7 -> 1.7.1 2019-11-01 16:12:22 -05:00
Marek Mahut
fd6aba3080
Merge pull request #71588 from r-ryantm/auto-update/gitfs
gitfs: 0.4.5.1 -> 0.5.1
2019-11-01 09:22:35 +01:00
Jörg Thalheim
c91a1be877
nixos/orangefs: init at 2.9.7, add modules and test (#67591)
nixos/orangefs: init at 2.9.7, add modules and test
2019-10-31 09:27:14 +00:00
Marek Mahut
4a7bb2872b
Merge pull request #71883 from r-ryantm/auto-update/s3backer
s3backer: 1.5.2 -> 1.5.4
2019-10-27 13:18:21 +01:00
Renaud
b74a6b11a6
lizardfs: use spdlog from nixpkgs (#71938) 2019-10-25 07:54:24 +02:00
Frederik Rietdijk
32389de159 Merge master into staging-next 2019-10-24 08:27:04 +02:00
R. RyanTM
3f8450e0df s3backer: 1.5.2 -> 1.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/s3backer/versions
2019-10-23 18:13:53 -07:00
Michael Raskin
7e7ef31f9e
Merge pull request #71609 from r-ryantm/auto-update/glusterfs
glusterfs: 6.5 -> 7.0
2019-10-23 18:09:33 +00:00
R. RyanTM
eff7a160c2 e2fsprogs: 1.45.3 -> 1.45.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/e2fsprogs/versions
2019-10-22 09:54:48 +02:00
R. RyanTM
d0899bd7ac glusterfs: 6.5 -> 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/glusterfs/versions
2019-10-21 20:02:20 -07:00
R. RyanTM
dd798feaa5 gitfs: 0.4.5.1 -> 0.5.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/gitfs/versions
2019-10-21 14:28:43 -07:00
Frederik Rietdijk
12441bdf9f Merge staging-next into staging 2019-10-16 11:17:12 +02:00
Robin Gloster
5a1232908c
Merge pull request #70528 from eadwu/bcachefs/update-9
bcachefs/update-9
2019-10-16 00:28:17 +02:00
Will Dietz
62e4a35fa7 mtdutils: 1.5.2 -> 2.1.1 (#62805)
* mtdutils: 1.5.2 -> 2.1.0

http://lists.infradead.org/pipermail/linux-mtd/2019-March/088267.html

And the previous releases, hardcoded version in URL I think caused
this to be missed by auto-updaters for a while now.

1.5.2, FWIW in 2015:

http://lists.infradead.org/pipermail/linux-mtd/2015-August/060723.html

* mtd-utils: 2.1.0 -> 2.1.1

+ cleanup
+ enable tests and parallel building
+ add zstd support
2019-10-15 19:35:14 +02:00