Maximilian Bosch
fba4c99f4f
davfs2: 1.5.6 -> 1.6.0
2020-11-11 12:03:03 +01:00
R. RyanTM
d3fc9d7499
duperemove: 0.11.1 -> 0.11.2
2020-11-11 03:59:28 +00:00
Michael Weiss
bd25321863
sshfs: 3.7.0 -> 3.7.1
2020-11-09 18:23:38 +01:00
R. RyanTM
bd5c059f86
mtools: 4.0.24 -> 4.0.25
2020-11-03 22:02:37 -08:00
Sarah Brofeldt
9d9235e146
Merge pull request #101551 from moben/ceph.glibc2.32
...
ceph: Fix build with glibc 2.32
2020-11-03 08:26:53 +01:00
Mario Rodas
32ef108987
Merge pull request #101285 from r-ryantm/auto-update/bindfs
...
bindfs: 1.14.7 -> 1.14.8
2020-11-02 18:16:56 -05:00
Ryan Mulligan
fff2fd9de3
Merge pull request #102415 from r-ryantm/auto-update/f3
...
f3: 7.2 -> 8.0
2020-11-02 12:25:35 -08:00
R. RyanTM
f848ac2010
f3: 7.2 -> 8.0
2020-11-02 01:51:54 +00:00
Mario Rodas
ffdc23b347
Merge pull request #102339 from r-ryantm/auto-update/gcsfuse
...
gcsfuse: 0.30.0 -> 0.32.0
2020-11-01 07:04:09 -05:00
R. RyanTM
6719d4b5c8
gcsfuse: 0.30.0 -> 0.32.0
2020-11-01 10:24:59 +00:00
Benjamin Hipple
42303209bd
Merge pull request #99306 from puckipedia/patch-fatresize
...
fatresize: 1.0.2 -> 1.1.0
2020-10-29 22:28:19 -04:00
Mario Rodas
5594fe0c39
Merge pull request #101685 from woffs/btrfsprogs59
...
btrfs-progs: 5.7 -> 5.9
2020-10-27 20:03:53 -05:00
Mario Rodas
f9a8f295b0
Merge pull request #101701 from r-ryantm/auto-update/moosefs
...
moosefs: 3.0.114 -> 3.0.115
2020-10-27 19:48:26 -05:00
Ben Siraphob
db74029e3e
treewide: remove package names from prefix of descriptions
2020-10-27 09:15:07 -07:00
R. RyanTM
5e42102f13
moosefs: 3.0.114 -> 3.0.115
2020-10-25 22:17:56 +00:00
Frank Doepper
5ac9edb121
btrfs-progs: 5.7 -> 5.9
2020-10-25 21:38:14 +01:00
Benedikt Morbach
26b7e79246
ceph: Fix build with glibc 2.32
...
This adds a patch from upstream ceph to avoid using the deprecated
sys_siglist if sigdescr_np is available.
2020-10-24 15:29:36 +02:00
Jörg Thalheim
630f19b3ef
Merge pull request #99576 from makefu/pkgs/mergerfs/update
...
mergerfs: 2.28.3 -> 2.31.0
2020-10-23 09:05:41 +02:00
R. RyanTM
bdfe55d718
bindfs: 1.14.7 -> 1.14.8
2020-10-21 20:47:23 +00:00
Ben Siraphob
683a87dbeb
treewide: remove periods from end of package descriptions
2020-10-17 08:22:31 -07:00
Vladimír Čunát
338b25697c
Merge branch 'master' into staging-next
...
Quite many rebuilds from master:
> Estimating rebuild amount by counting changed Hydra jobs.
> 3926 x86_64-darwin
> 4645 x86_64-linux
2020-10-10 11:32:10 +02:00
Daniel Gorin
5d7bcd5b13
apfs-fuse: Let mount find apfs-fuse ( #84997 )
...
We add a symlink `mount.fuse.apfs-fuse ~~> apfs-fuse`, so that we can specify
`fuse.apfs-fuse` as `fsType` in `nixos` and have the device mounted. The
current alternative is to specify: `fuse./run/current-system/sw/bin/apfs-fuse`
as `fsType`.
On other distros, using `fuse.apfs-fuse` should work since `mount.fuse`
will just runs `apfs-fuse`, but on nixos the `PATH` of `mount.fuse` is
restricted. The symlink makes it work directly, without having
`mount.fuse` doing the dispatch.
2020-10-09 09:55:56 -04:00
zowoq
4da09d369b
fuse-overlayfs: 1.1.2 -> 1.2.0
...
https://github.com/containers/fuse-overlayfs/releases/tag/v1.2.0
2020-10-09 18:41:41 +10:00
Frederik Rietdijk
692d219a93
Merge staging-next into staging
2020-10-06 10:25:58 +02:00
makefu
8a5a214c2d
mergerfs: 2.28.3 -> 2.31.0
2020-10-04 18:56:10 +02:00
Jeremy Schlatter
87278e9f87
sandboxfs: init at 0.2.0
2020-10-03 08:23:02 +02:00
Patrick Hilhorst
f7e390e6d4
treewide: fix redirected urls (run 3)
...
Related:
- 9fc5e7e473874762fdb1b49d17dcf703d48352c3
- 593e11fd944ce961ecf5425c3540df09e4f52265
- 508ae42a0f64c350036d722b84c2e2905bbc5418
Since the last time I ran this script, the Repology API changed, so I had to
adapt the script used in the previous PR. The new API should be more robust, so
overall this is a positive (no more grepping the error messages for our relevant
data but just a nice json structure).
Here's the new script I used:
```sh
curl https://repology.org/api/v1/repository/nix_unstable/problems \
| jq -r '.[] | select(.type == "homepage_permanent_https_redirect") | .data | "s@\(.url)@\(.target)@"' \
| sort | uniq | tee script.sed
find -name '*.nix' | xargs -P4 -- sed -f script.sed -i
```
I will also add this script to `maintainers/scripts`.
2020-10-02 09:01:35 -07:00
Puck Meerburg
3733a496bd
fatresize: 1.0.2 -> 1.1.0
2020-10-02 13:16:41 +00:00
Jan Tojnar
32b4375f10
Merge branch 'staging-next' into staging
2020-09-29 00:12:29 +02:00
zimbatm
3cf7f6d357
Merge pull request #98671 from r-ryantm/auto-update/bashmount
...
bashmount: 4.3.1 -> 4.3.2
2020-09-24 22:05:42 +00:00
Sarah Brofeldt
c099d421db
ceph: 15.2.4 -> 15.2.5 ( #98664 )
2020-09-24 21:44:54 +00:00
Jan Tojnar
d471c5d1f3
Merge branch 'staging-next' into staging
2020-09-24 23:09:00 +02:00
R. RyanTM
4d89887f5b
bashmount: 4.3.1 -> 4.3.2
2020-09-24 18:38:27 +00:00
Jonathan Ringer
aa25c65766
orangefs: 2.9.7 -> 2.9.8, fix build
2020-09-23 09:16:52 -07:00
Stig Palmquist
5f31ac17c5
ubidump: init at unstable-2019-09-11
2020-09-22 18:38:04 +02:00
Frederik Rietdijk
7bff759fac
Merge staging-next into staging
2020-09-22 18:31:56 +02:00
Peter Hoeg
5f19b74d13
f3: clean-ups and compile on darwin ( #98365 )
...
* f3: clean-ups and compile on darwin
* fixed from feedback
2020-09-21 20:47:12 +08:00
Ryan Burns
f5a61c2604
lizardfs: fix build
...
Build failure was due to upstream issue, now fixed in the v3.13 RC.
https://github.com/lizardfs/lizardfs/issues/655
https://github.com/lizardfs/lizardfs/pull/677
2020-09-21 01:45:10 -07:00
WORLDofPEACE
34aaac6d7c
Merge branch 'staging-next' into staging
2020-09-20 18:41:15 -04:00
Vladimír Čunát
638c8cb2d5
Merge #97599 : bcachefs*: update
2020-09-17 23:20:33 +02:00
Ahmad Jagot
b467630062
f2fs-tools: 1.13.0 -> 1.14.0
...
Allow use of 'compression' option on volume creation, supported at
mount-time in kernels 5.6+
2020-09-15 23:51:11 +02:00
Pavol Rusnak
2b27d94f01
gocryptfs: switch buildGoPackage to buildGoModule
2020-09-13 14:08:54 +02:00
Maximilian Bosch
f883a5deec
hfsprogs: fix build w/glibc-2.32
2020-09-12 23:04:48 +02:00
Maximilian Bosch
e0030dff15
glusterfs: fix build w/glibc-2.32
2020-09-12 23:04:48 +02:00
Atemu
920441f96e
bcachefs-tools: 2020-04-04 -> 2020-08-25
2020-09-10 18:57:52 +02:00
Atemu
90f01b1c55
bcachefs-tools: disable tests
...
Tests were failing because they require the bcachefs module to be loaded on the builder
Many tests were skipped anyways and Bcachefs is still tested via its nixos test
2020-09-10 18:54:52 +02:00
Elis Hirwing
1befbc6518
Merge pull request #96079 from kraem/kraem/pkgs/rar2fs-1.29.1
...
rar2fs: 1.29.0 -> 1.29.1
2020-09-07 20:15:43 +02:00
R. RyanTM
b479027c6b
idsk: 0.19 -> 0.20
2020-09-05 01:57:50 +00:00
Mario Rodas
14b70e8fc8
Merge pull request #97024 from sephii/securefs_0_11_1
...
securefs: 0.8.3 -> 0.11.1
2020-09-03 23:17:39 -05:00
Jörg Thalheim
328e886df0
Merge pull request #96567 from kampka/gocryptfs
...
gocryptfs: 1.7.1 -> 1.8.0
2020-09-03 21:03:15 +01:00