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: Mon, 21 May 2018 22:35:15 +0000 (UTC)	[thread overview]
Message-ID: <1526942094.6a926c13031e1bbfa2d3bf44fe199aa9e1b37062.gokturk@gentoo> (raw)

commit:     6a926c13031e1bbfa2d3bf44fe199aa9e1b37062
Author:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
AuthorDate: Mon May 21 22:32:12 2018 +0000
Commit:     Göktürk Yüksek <gokturk <AT> gentoo <DOT> org>
CommitDate: Mon May 21 22:34:54 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a926c13

app-admin/lastpass-cli: serve man from devspace #654846

This removes the build time dependency on app-test/asciidoc, and
consequently on python:2.7.

Closes: https://bugs.gentoo.org/654846
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 app-admin/lastpass-cli/Manifest                                |  1 +
 ...{lastpass-cli-1.3.1.ebuild => lastpass-cli-1.3.1-r1.ebuild} | 10 ++++++----
 2 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-admin/lastpass-cli/Manifest b/app-admin/lastpass-cli/Manifest
index 6d302d86073..11d53913d86 100644
--- a/app-admin/lastpass-cli/Manifest
+++ b/app-admin/lastpass-cli/Manifest
@@ -4,3 +4,4 @@ DIST lastpass-cli-1.2.1.tar.gz 108780 BLAKE2B 82ebae9a6a707bb75025cf98b53bccd240
 DIST lastpass-cli-1.2.2.tar.gz 110045 BLAKE2B 96fcfd8f6e974edb5bd8701e18e73b46c0bcbcc14c38debd50be922a25ece9397bb6b641d4f2ce3057e57af0114a263eaab03e86b74e61d89a745411051bb172 SHA512 7d211c7669fe2de3e3f34cf00025376fd39a7f96c8573a0eaff64f322daab03de21e25d5875d3286a794580ac75d330c7bfe1005b377afc2b13e4ded9d78012c
 DIST lastpass-cli-1.3.0.tar.gz 113969 BLAKE2B 5570567b17f043200f6b4eca72735d26d153a91cb4f0551a856532101ac610d2505bc90677735a8bbafe68f1a1b7ac0a026ac642a9f3786cceb7638ea29394fb SHA512 7a147e08ac4b8e4e895744f80c484db9da895f4439bccbc141fe17e480285c76479753c2b879c60258d740af39775a3fae225ad193b5e6379a1cae8862c2a3ae
 DIST lastpass-cli-1.3.1.tar.gz 114843 BLAKE2B 7983d4090092ef3443d8c502d157934fa2384426f0be22c796795cdf664be3ba396f64daa81cdf896cb6901d4063f93e54b62cda4349b14fa4d312a21c5bb76d SHA512 092d28dc459719e662fbb2c5e92e8cc75be108aa9d7b62569ee44cb34dd9588e78151fdc5ad114c30e8de21c0b8803edc41db9295548c7cbfe6e537c9a52aad2
+DIST lastpass-cli-man-1.3.1.tar.xz 5700 BLAKE2B 736ab71ad55cfcb657c727f3dc9dc15775dab1a0232d1ffc51b8794e49911531c96a841b4a5ac0b31f0516cd7aa54027ac7d0eb096816730cdfd192c04d99449 SHA512 e60807683ecd681b3937ef447d3e6a487d25418fe99f51ba99e54bf643c5254dd18427a03e7f035198ef34ff578bbb6116baf04eb554f54d85e7d059b6bfed7e

diff --git a/app-admin/lastpass-cli/lastpass-cli-1.3.1.ebuild b/app-admin/lastpass-cli/lastpass-cli-1.3.1-r1.ebuild
similarity index 83%
rename from app-admin/lastpass-cli/lastpass-cli-1.3.1.ebuild
rename to app-admin/lastpass-cli/lastpass-cli-1.3.1-r1.ebuild
index 2c34bdeb329..57454b36ac9 100644
--- a/app-admin/lastpass-cli/lastpass-cli-1.3.1.ebuild
+++ b/app-admin/lastpass-cli/lastpass-cli-1.3.1-r1.ebuild
@@ -7,7 +7,8 @@ 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"
+SRC_URI="https://github.com/lastpass/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+	https://dev.gentoo.org/~gokturk/distfiles/app-admin/lastpass-cli/${PN}-man-${PV}.tar.xz"
 
 SLOT="0"
 LICENSE="GPL-2+ GPL-2+-with-openssl-exception"
@@ -23,7 +24,6 @@ RDEPEND="
 	pinentry? ( app-crypt/pinentry )
 "
 DEPEND="${RDEPEND}
-	app-text/asciidoc
 	virtual/pkgconfig
 "
 
@@ -36,11 +36,13 @@ src_configure() {
 }
 
 src_compile() {
-	cmake-utils_src_compile all doc-man $(usex test lpass-test '')
+	cmake-utils_src_compile all $(usex test lpass-test '')
 }
 
 src_install() {
-	cmake-utils_src_install install install-doc
+	cmake-utils_src_install install
+
+	doman "${WORKDIR}"/man/lpass.1
 }
 
 src_test() {


             reply	other threads:[~2018-05-21 22:35 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-21 22:35 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-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-07-06  0:13 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=1526942094.6a926c13031e1bbfa2d3bf44fe199aa9e1b37062.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