pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/security/lastpass-cli lastpass-cli: Updat...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e9f8372311ac
branches:  trunk
changeset: 308191:e9f8372311ac
user:      jperkin <jperkin%pkgsrc.org@localhost>
date:      Thu May 17 14:06:58 2018 +0000

description:
lastpass-cli: Update to 1.3.1.

# Version 1.3.1
 * Revert "pins: remove GlobalSign R1/R3 pins" from Robert Copeland
 * Readme update from Wesley Schwengle
 * Add Dockerfile to create a clean build environment from Wesley Schwengle
 * Missing dependencies in readme
 * Added CLion project files to ignore list

# Version 1.3.0
 * `lpass show` now supports `--json` format
 * `lpass show` now supports `--quiet` flag to suppress prompts,
   from Pau Sanchez
 * `lpass import` has `--keep-dupes` flag which will preserve duplicate
   accounts on import
 * `LPASS_PINENTRY` environment variable may now be used to set custom
   path to pinentry, from Martynas Mickevi?ius
 * Build fix for aarch64 and others from Natanael Copa
 * New fish completions from Israel Chauca Fuentes
 * Zsh completions from Richard Hillmann
 * Brew build instructions updates from Roger D. Winans
 * bugfix: site notes now show up in notes textarea instead of fields
 * spelling fixes from Josh Soref

# Version 1.2.2
 * `lpass ls --format` now supports "%al" to show URL, from Yikai Zhao
 * $VISUAL can be used in preference to $EDITOR, from Wesley Schwengle
 * `lpass edit` can now directly edit multiline ssh keys
 * fields are now preserved when edited with `lpass edit`
 * Bugfix: use-after-free in http.c fixed, from Bj?rn Ketelaars
 * Bugfix: command-line completion now works for names with spaces
 * Bugfix: loading attachments from shared folders now works, from Spencer
   Whyte
 * Debian packing updates from Hannes H?rl
 * Documentation updates from Darragh Grealish and Steven Liekens

diffstat:

 security/lastpass-cli/Makefile                 |   5 ++---
 security/lastpass-cli/distinfo                 |  12 ++++++------
 security/lastpass-cli/patches/patch-password.c |  10 +++++-----
 3 files changed, 13 insertions(+), 14 deletions(-)

diffs (67 lines):

diff -r 6e3a25556fe0 -r e9f8372311ac security/lastpass-cli/Makefile
--- a/security/lastpass-cli/Makefile    Thu May 17 13:55:32 2018 +0000
+++ b/security/lastpass-cli/Makefile    Thu May 17 14:06:58 2018 +0000
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.4 2018/04/29 21:32:02 adam Exp $
+# $NetBSD: Makefile,v 1.5 2018/05/17 14:06:58 jperkin Exp $
 
-DISTNAME=      lastpass-cli-1.2.1
-PKGREVISION=   3
+DISTNAME=      lastpass-cli-1.3.1
 CATEGORIES=    security
 MASTER_SITES=  ${MASTER_SITE_GITHUB:=lastpass/}
 GITHUB_TAG=    v${PKGVERSION_NOREV}
diff -r 6e3a25556fe0 -r e9f8372311ac security/lastpass-cli/distinfo
--- a/security/lastpass-cli/distinfo    Thu May 17 13:55:32 2018 +0000
+++ b/security/lastpass-cli/distinfo    Thu May 17 14:06:58 2018 +0000
@@ -1,14 +1,14 @@
-$NetBSD: distinfo,v 1.1 2017/08/16 15:18:24 jperkin Exp $
+$NetBSD: distinfo,v 1.2 2018/05/17 14:06:58 jperkin Exp $
 
-SHA1 (lastpass-cli-1.2.1.tar.gz) = 78f05426ac14417004735d85554f5641c567234e
-RMD160 (lastpass-cli-1.2.1.tar.gz) = 86752841a6df70856411bbb3b516669583500838
-SHA512 (lastpass-cli-1.2.1.tar.gz) = c7c9f20dbc083873b815834320828a30a1c488571efbfc5aea47c3bd2073819d713810c785855d4c0c208e1b95aa0e5fc550a0b6b5c0f787eca1f54589e18e62
-Size (lastpass-cli-1.2.1.tar.gz) = 108780 bytes
+SHA1 (lastpass-cli-1.3.1.tar.gz) = 0dfbecd1ac2a36af7cc24d714a0f3deb23a6e20f
+RMD160 (lastpass-cli-1.3.1.tar.gz) = aa83812bb92e4ad4497eb93b3ecc829e8b0c7f77
+SHA512 (lastpass-cli-1.3.1.tar.gz) = 092d28dc459719e662fbb2c5e92e8cc75be108aa9d7b62569ee44cb34dd9588e78151fdc5ad114c30e8de21c0b8803edc41db9295548c7cbfe6e537c9a52aad2
+Size (lastpass-cli-1.3.1.tar.gz) = 114843 bytes
 SHA1 (patch-CMakeLists.txt) = d5498e06f9fed58186caf3b2ed60c2d30ec43caa
 SHA1 (patch-agent.c) = 2e04b136da6116f80d1a1bfa9b831ccba3e3f215
 SHA1 (patch-clipboard.c) = 1c0d7c7cf2f80f21e900257e82736f57b1a8fc0e
 SHA1 (patch-cmake__extras_install__doc.cmake) = a0d80f60501ac283d66402ef036d6934ea644f17
 SHA1 (patch-http.c) = 6027b06014d5f3c290f55a8086a493d30bdf9023
-SHA1 (patch-password.c) = 9d7daba95ebf62b243ccf8696add8afc24c8bb3e
+SHA1 (patch-password.c) = 6b73b4bdb1a3c54950e17fb2db2ebca10d6a44b0
 SHA1 (patch-process.c) = 565a9d8ea4d08194c15e0e7898b1dd273b1b6f2f
 SHA1 (patch-upload-queue.c) = 45279b48d53f6f9683d3e14c58c4f5ec4c5e89ba
diff -r 6e3a25556fe0 -r e9f8372311ac security/lastpass-cli/patches/patch-password.c
--- a/security/lastpass-cli/patches/patch-password.c    Thu May 17 13:55:32 2018 +0000
+++ b/security/lastpass-cli/patches/patch-password.c    Thu May 17 14:06:58 2018 +0000
@@ -1,8 +1,8 @@
-$NetBSD: patch-password.c,v 1.1 2017/08/16 15:18:24 jperkin Exp $
+$NetBSD: patch-password.c,v 1.2 2018/05/17 14:06:58 jperkin Exp $
 
 Avoid "Missing sentinel in function call" warnings.
 
---- password.c.orig    2017-06-28 12:50:49.000000000 +0000
+--- password.c.orig    2018-05-17 09:42:27.000000000 +0000
 +++ password.c
 @@ -73,7 +73,7 @@ static char *password_prompt_askpass(con
                close(read_fds[1]);
@@ -13,12 +13,12 @@
                _exit(76);
        }
        close(read_fds[1]);
-@@ -266,7 +266,7 @@ char *password_prompt(const char *prompt
+@@ -273,7 +273,7 @@ char *password_prompt(const char *prompt
                close(read_fds[1]);
                close(write_fds[0]);
                close(write_fds[1]);
--              execlp("pinentry", "pinentry", NULL);
-+              execlp("pinentry", "pinentry", (char *)0);
+-              execlp(pinentry, pinentry, NULL);
++              execlp(pinentry, pinentry, (char *)0);
                _exit(76);
        }
        close(read_fds[1]);



Home | Main Index | Thread Index | Old Index