# HG changeset patch # User Hans-G?nter Theisgen # Date 1656165634 -3600 # Node ID 36b72d9c181b256af315fb89ab26550945f7bc32 # Parent 86d301c916cf08deab850922e1eebd8822f6a21f updated pass (1.7.3 -> 1.7.4) diff -r 86d301c916cf -r 36b72d9c181b pass/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pass/description.txt Sat Jun 25 15:00:34 2022 +0100 @@ -0,0 +1,24 @@ +Password management should be simple and follow Unix philosophy. +With pass, each password lives inside of a gpg encrypted file +whose filename is the title of the website or resource that +requires the password. +These encrypted files may be organized into meaningful folder +hierarchies, copied from computer to computer, and, in general, +manipulated using standard command line file management utilities. + +Pass makes managing these individual password files extremely easy. +All passwords live in ~/.password-store, and pass provides some +nice commands for adding, editing, generating, and retrieving +passwords. +It is a very short and simple shell script. +It's capable of temporarily putting passwords on your clipboard +and tracking password changes using git. + +You can edit the password store using ordinary unix shell commands +alongside the pass command. +There are no funky file formats or new paradigms to learn. +There is bash completion so that you can simply hit tab to fill in +names and commands, as well as completion for zsh and fish available +in the completion folder. +The very active community has produced many impressive clients and +GUIs for other platforms as well as extensions for pass itself. diff -r 86d301c916cf -r 36b72d9c181b pass/receipt --- a/pass/receipt Sat Jun 25 10:07:42 2022 +0000 +++ b/pass/receipt Sat Jun 25 15:00:34 2022 +0100 @@ -1,18 +1,19 @@ # SliTaz package receipt. PACKAGE="pass" -VERSION="1.7.3" +VERSION="1.7.4" CATEGORY="security" SHORT_DESC="The standard unix password manager." MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" WEB_SITE="https://www.passwordstore.org/" +REPOLOGY="password-store" SOURCE="password-store" TARBALL="$SOURCE-$VERSION.tar.xz" WGET_URL="https://git.zx2c4.com/$SOURCE/snapshot/$TARBALL" -SUGGESTED="git gnupg" +SUGGESTED="git gnupg tree" DEPENDS="bash" # What is the latest version available today? @@ -31,6 +32,5 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr - cp -a $install/usr/bin $fs/usr + cook_copy_folders bin }