Search Criteria
Package Details: fscrypt-git 0.2.7.0.g2b160ae-1
Git Clone URL: | https://aur.archlinux.org/fscrypt-git.git (read-only, click to copy) |
---|---|
Package Base: | fscrypt-git |
Description: | A tool for managing Linux filesystem encryption |
Upstream URL: | https://github.com/google/fscrypt |
Licenses: | |
Conflicts: | |
Provides: | |
Submitter: | Synchronicity |
Maintainer: | Synchronicity |
Last Packager: | Synchronicity |
Votes: | 6 |
Popularity: | 0.043011 |
First Submitted: | 2017-08-02 04:00 |
Last Updated: | 2020-03-24 23:33 |
Dependencies (3)
- pam (pam-minimal-git, pam-selinux)
- git (git-git) (make)
- go-pie (go) (make)
Required by (2)
- sirikali (requires fscrypt) (optional)
- sirikali-git (requires fscrypt) (optional)
Latest Comments
1 2 Next › Last »
egrupled commented on 2020-02-01 12:35
@anatolik why in repo package you install stuff manually instead of
Also why you didn't set GOPATH? https://wiki.archlinux.org/index.php/Go#$GOPATH
Could you make a proper package please?
anatolik commented on 2020-01-31 20:00
Thank you for your work folks.
FYI: I added 'fscrypt' package to [community].
Synchronicity commented on 2019-10-29 15:54
Done now.
egrupled commented on 2019-10-29 12:53
@Synchronicity could you switch to https for source like below:
Synchronicity commented on 2018-08-24 00:55
The bug mentioned by @cpuheater is fixed in fscrypt v0.2.4.
cpuheater commented on 2018-06-16 16:08
There is an upstream issue where PAM integration of fscrypt messes with a user's groups: https://github.com/google/fscrypt/issues/77
A possible workaround is mentioned here: https://github.com/google/fscrypt/issues/77#issuecomment-385167931. Commenting out those three lines fixed the issue for me.
So if you don't want to wait for a fix on upstream, you can use this patch temporarily: https://gist.github.com/8814934fec98a0f845ad9095b6559c7b
Synchronicity commented on 2018-02-13 02:48
Thanks again egrupled, I've updated the package.
egrupled commented on 2018-02-12 10:53
There is new release which changes build process. Argon2 isn't needed anymore in dependencies: https://github.com/google/fscrypt/releases/tag/v0.2.3
Synchronicity commented on 2017-08-26 03:37
Thanks egrupled, I've updated both packages.
egrupled commented on 2017-08-24 14:44
I also prepared PKGBUILD for https://github.com/google/fscryptctl
It would be nice if you can add it to your packages
# Maintainer: Eric Biggers <ebiggers3 at gmail dot com>
pkgname=fscryptctl-git
pkgver=0.0.r8.1842856
pkgrel=1
pkgdesc=' Small C tool for Linux filesystem encryption'
arch=('x86_64' 'i686')
url='https://github.com/google/fscryptctl'
license=('Apache')
makedepends=('git')
depends=('glibc')
provides=('fscryptctl')
source=('git://github.com/google/fscryptctl.git')
sha256sums=('SKIP')
pkgver() {
cd "${srcdir}/fscryptctl"
printf "0.0.r%d.%s\n" $(git rev-list HEAD --count) $(git rev-parse --short HEAD)
}
build() {
cd "${srcdir}/fscryptctl"
make
}
package() {
cd "${srcdir}/fscryptctl"
install -Dm755 fscryptctl "${pkgdir}/usr/bin/fscryptctl"
}