Search Criteria
Package Details: f2fs-tools-git 1.12.0-2
Git Clone URL: | https://aur.archlinux.org/f2fs-tools-git.git (read-only, click to copy) |
---|---|
Package Base: | f2fs-tools-git |
Description: | Tools for Flash-Friendly File System (F2FS) |
Upstream URL: | https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/about/ |
Licenses: | |
Submitter: | None |
Maintainer: | arsfeld |
Last Packager: | arsfeld |
Votes: | 6 |
Popularity: | 0.000000 |
First Submitted: | 2012-12-22 01:49 |
Last Updated: | 2020-06-01 16:16 |
Latest Comments
1 2 Next › Last »
cypa commented on 2020-06-03 14:52
why?
arsfeld commented on 2020-06-01 16:18
I've updated to the latest git revision, which adds compression support. Also, I fixed the pkgver, let me know if there's still issues.
denisfa commented on 2019-01-21 22:05
@Boohbah, could you update this package with the fixes suggested?
Change the URL like @greyltc is asking and use
pkgver() {
cd $_gitname
git describe --long | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
for your pkgver function?
greyltc commented on 2018-12-21 21:14
also the source repo is wrong. it should be: git+https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git
greyltc commented on 2018-12-21 21:12
==> ERROR: pkgver is not allowed to contain colons, forward slashes, hyphens or whitespace. ==> ERROR: pkgver() generated an invalid version: heads/master
please fix the pkgver function
Anonymous comment on 2016-08-12 03:53
Thanks vinibali. Added libselinux dependency.
vinibali commented on 2016-08-07 22:14
libselinux is a dependency since version 1.7.0.
Anonymous comment on 2016-03-03 22:00
Thanks figue. Fixed pkgver() function.
figue commented on 2015-11-12 23:18
Hi Boohbah,
I have to change your prepare function to get latest v1.5.0. If I install it directly, the version installed was v1.3.0 (according with final package name).
So, here is my function. I don't know if it's ok or not, but it works as a workaround for me:
pkgver() {
cd $_gitname
git describe --all | cut -d'/' -f2- | tr -d 'v'
}
And, FYI with new v1.5.0 I could finally fix my beloved home partition, which was corrupted and can't be repared with f2fs-tools in [extra].
Anonymous comment on 2013-08-01 02:09
Updated, thanks WonderWoofy!