wok rev 25111
updated pass (1.7.3 -> 1.7.4)
author | Hans-G?nter Theisgen |
---|---|
date | Sat Jun 25 15:00:34 2022 +0100 (2022-06-25) |
parents | 86d301c916cf |
children | 71cb04ed3d1b |
files | pass/description.txt pass/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/pass/description.txt Sat Jun 25 15:00:34 2022 +0100 1.3 @@ -0,0 +1,24 @@ 1.4 +Password management should be simple and follow Unix philosophy. 1.5 +With pass, each password lives inside of a gpg encrypted file 1.6 +whose filename is the title of the website or resource that 1.7 +requires the password. 1.8 +These encrypted files may be organized into meaningful folder 1.9 +hierarchies, copied from computer to computer, and, in general, 1.10 +manipulated using standard command line file management utilities. 1.11 + 1.12 +Pass makes managing these individual password files extremely easy. 1.13 +All passwords live in ~/.password-store, and pass provides some 1.14 +nice commands for adding, editing, generating, and retrieving 1.15 +passwords. 1.16 +It is a very short and simple shell script. 1.17 +It's capable of temporarily putting passwords on your clipboard 1.18 +and tracking password changes using git. 1.19 + 1.20 +You can edit the password store using ordinary unix shell commands 1.21 +alongside the pass command. 1.22 +There are no funky file formats or new paradigms to learn. 1.23 +There is bash completion so that you can simply hit tab to fill in 1.24 +names and commands, as well as completion for zsh and fish available 1.25 +in the completion folder. 1.26 +The very active community has produced many impressive clients and 1.27 +GUIs for other platforms as well as extensions for pass itself.
2.1 --- a/pass/receipt Sat Jun 25 10:07:42 2022 +0000 2.2 +++ b/pass/receipt Sat Jun 25 15:00:34 2022 +0100 2.3 @@ -1,18 +1,19 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="pass" 2.7 -VERSION="1.7.3" 2.8 +VERSION="1.7.4" 2.9 CATEGORY="security" 2.10 SHORT_DESC="The standard unix password manager." 2.11 MAINTAINER="pascal.bellard@slitaz.org" 2.12 LICENSE="GPL2" 2.13 WEB_SITE="https://www.passwordstore.org/" 2.14 +REPOLOGY="password-store" 2.15 2.16 SOURCE="password-store" 2.17 TARBALL="$SOURCE-$VERSION.tar.xz" 2.18 WGET_URL="https://git.zx2c4.com/$SOURCE/snapshot/$TARBALL" 2.19 2.20 -SUGGESTED="git gnupg" 2.21 +SUGGESTED="git gnupg tree" 2.22 DEPENDS="bash" 2.23 2.24 # What is the latest version available today? 2.25 @@ -31,6 +32,5 @@ 2.26 # Rules to gen a SliTaz package suitable for Tazpkg. 2.27 genpkg_rules() 2.28 { 2.29 - mkdir -p $fs/usr 2.30 - cp -a $install/usr/bin $fs/usr 2.31 + cook_copy_folders bin 2.32 }