public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Göktürk Yüksek" <gokturk@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-cli/
Date: Thu,  6 Jul 2017 00:13:04 +0000 (UTC)	[thread overview]
Message-ID: <1499299964.2e0854c2ca9d79e4368c252760170649115880a5.gokturk@gentoo> (raw)

commit:     2e0854c2ca9d79e4368c252760170649115880a5
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Thu Jul  6 00:12:25 2017 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Thu Jul  6 00:12:44 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0854c2

app-admin/lastpass-cli: bump to 1.2.1

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-admin/lastpass-cli/Manifest                  |  1 +
 app-admin/lastpass-cli/lastpass-cli-1.2.1.ebuild | 57 ++++++++++++++++++++++++
 2 files changed, 58 insertions(+)

diff --git a/app-admin/lastpass-cli/Manifest b/app-admin/lastpass-cli/Manifest
index 17a37c73eb8..a472cefc4c6 100644
--- a/app-admin/lastpass-cli/Manifest
+++ b/app-admin/lastpass-cli/Manifest
@@ -1,2 +1,3 @@
 DIST lastpass-cli-1.0.0.tar.gz 92311 SHA256 42096c0bd3972b0e9cc9cef32fbf141e47b04b9e2387fb3abe8b105e135fb41e SHA512 4709b3e4d6064c8c5cb593344e6417355d7df570240dce8eb77a19f3377ea38585280a9602cf8ab926c55c6afd84b297f261b0c8a40d355734d5cc542d46f610 WHIRLPOOL 394bfb597f5262dd1e47c7a3c48ef093b398f90c6dcacac6b172bb008891c76faf448ecf6be0ebfa277d18d335b166b7efadc063acc57ce88274004d1734bf21
 DIST lastpass-cli-1.1.2.tar.gz 102796 SHA256 bc737d8e6d713c8aecdfb7f34b29aa9a8ae9b1e9ba80b31059686b18591a8c39 SHA512 8115cb07cfca15ef402bdbd8ce943352e1534ddb781274e21cb0fafa4bcd9ab7abe4ddba57c4ebbce326f09cc9249f244607d16cac5597e61cf21c73417e7d9c WHIRLPOOL c7e6a4d5ac9b8c52f53e081b367289b390704fa4dfbf13a9ea0086e4ca0d49f9ef5a39f9ea854387ffb66fbd18f9b5263d17ae6573c4286fb7a36ebdce724d7f
+DIST lastpass-cli-1.2.1.tar.gz 108780 SHA256 1a49a37a67a973296e218306e6d36c9383347b1833e5a878ebc08355b1c77456 SHA512 c7c9f20dbc083873b815834320828a30a1c488571efbfc5aea47c3bd2073819d713810c785855d4c0c208e1b95aa0e5fc550a0b6b5c0f787eca1f54589e18e62 WHIRLPOOL c74988f37c96d065c0fea58c946c3aa3f4925d889247247b89ffe25012077d8eb3c694a3d539a40cf3f2be1fdd195b6ef6c1ef2d429587cc18fb8a8db8fb8a93

diff --git a/app-admin/lastpass-cli/lastpass-cli-1.2.1.ebuild b/app-admin/lastpass-cli/lastpass-cli-1.2.1.ebuild
new file mode 100644
index 00000000000..4a4ee2d8677
--- /dev/null
+++ b/app-admin/lastpass-cli/lastpass-cli-1.2.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils bash-completion-r1
+
+DESCRIPTION="Interfaces with LastPass.com from the command line."
+HOMEPAGE="https://github.com/lastpass/lastpass-cli"
+SRC_URI="https://github.com/lastpass/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+IUSE="libressl X +pinentry test"
+
+RDEPEND="
+	X? ( || ( x11-misc/xclip x11-misc/xsel ) )
+	!libressl? ( dev-libs/openssl:0= )
+	libressl? ( dev-libs/libressl:0= )
+	net-misc/curl
+	dev-libs/libxml2
+	pinentry? ( app-crypt/pinentry )
+"
+DEPEND="${RDEPEND}
+	app-text/asciidoc
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local mycmakeargs=(
+		-DBASH_COMPLETION_COMPLETIONSDIR="$(get_bashcompdir)"
+	)
+
+	cmake-utils_src_configure
+}
+
+src_compile() {
+	cmake-utils_src_compile all doc-man $(usex test lpass-test '')
+}
+
+src_install() {
+	cmake-utils_src_install install install-doc
+}
+
+src_test() {
+	local myctestargs=(
+		-j1 # Parallel tests fail
+	)
+
+	# The path to lpass-test is hardcoded to "${S}"/build/lpass-test
+	# which is incorrect for our out-of-source build
+	sed -e "s|TEST_LPASS=.*|TEST_LPASS=\"${BUILD_DIR}/lpass-test\"|" \
+		-i "${S}"/test/include.sh
+
+	cmake-utils_src_test
+}


             reply	other threads:[~2017-07-06  0:13 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-07-06  0:13 Göktürk Yüksek [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-04-30 19:12 [gentoo-commits] repo/gentoo:master commit in: app-admin/lastpass-cli/ Mikle Kolyada
2021-01-08  4:04 Adam Feldman
2021-01-07  1:08 Sam James
2021-01-07  0:58 Sam James
2019-05-03 22:16 Göktürk Yüksek
2019-03-27  1:08 Göktürk Yüksek
2018-07-17 21:58 Göktürk Yüksek
2018-07-17 21:58 Göktürk Yüksek
2018-07-17 14:01 Mikle Kolyada
2018-05-21 22:35 Göktürk Yüksek
2018-05-18 23:19 Göktürk Yüksek
2018-03-16  0:31 Göktürk Yüksek
2017-10-25 21:46 Göktürk Yüksek
2017-05-22 21:06 Göktürk Yüksek
2016-10-11  1:36 Göktürk Yüksek
2016-10-11  1:36 Göktürk Yüksek
2016-10-11  1:36 Göktürk Yüksek
2016-09-01 19:44 Göktürk Yüksek
2016-05-22 17:09 Göktürk Yüksek
2016-04-23 18:13 Patrice Clement
2016-04-23  7:59 Patrice Clement
2016-04-04  9:00 Ian Delaney
2016-03-21 21:25 Anthony G. Basile
2016-03-15 16:27 Patrice Clement
2016-03-15 12:24 Agostino Sarubbo
2016-03-15 12:24 Agostino Sarubbo
2016-03-04  9:12 Ian Delaney
2016-03-04  9:12 Ian Delaney
2016-03-04  9:12 Ian Delaney
2016-03-04  9:12 Ian Delaney
2016-02-01  0:49 Ian Delaney
2016-02-01  0:49 Ian Delaney
2016-02-01  0:49 Ian Delaney
2016-01-15 12:32 Justin Lecher
2016-01-13  8:44 Patrice Clement
2016-01-13  8:44 Patrice Clement
2016-01-13  8:44 Patrice Clement
2015-12-26 11:00 Anthony G. Basile
2015-12-26  9:14 Patrice Clement
2015-12-26  1:03 Anthony G. Basile
2015-11-14 16:10 Patrice Clement
2015-11-14 16:10 Patrice Clement

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1499299964.2e0854c2ca9d79e4368c252760170649115880a5.gokturk@gentoo \
    --to=gokturk@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox