Gentoo Archives: gentoo-commits

From: Andrey Grozin <grozin@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/dropbox-cli/
Date: Thu, 23 Apr 2020 05:51:41
Message-Id: 1587621068.4eac08a10006d6718953a3be8abd12ddd93e1e05.grozin@gentoo
1 commit: 4eac08a10006d6718953a3be8abd12ddd93e1e05
2 Author: Andrey Grozin <grozin <AT> gentoo <DOT> org>
3 AuthorDate: Thu Apr 23 05:51:08 2020 +0000
4 Commit: Andrey Grozin <grozin <AT> gentoo <DOT> org>
5 CommitDate: Thu Apr 23 05:51:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4eac08a1
7
8 net-misc/dropbox-cli: bump to 2020.03.04
9
10 Closes: https://bugs.gentoo.org/show_bug.cgi?id=718440
11 Package-Manager: Portage-2.3.99, Repoman-2.3.22
12 Signed-off-by: Andrey Grozin <grozin <AT> gentoo.org>
13
14 net-misc/dropbox-cli/Manifest | 1 +
15 net-misc/dropbox-cli/dropbox-cli-2020.03.04.ebuild | 31 ++++++++++++++++++++++
16 2 files changed, 32 insertions(+)
17
18 diff --git a/net-misc/dropbox-cli/Manifest b/net-misc/dropbox-cli/Manifest
19 index 5693d547f8a..68fd320ef49 100644
20 --- a/net-misc/dropbox-cli/Manifest
21 +++ b/net-misc/dropbox-cli/Manifest
22 @@ -1 +1,2 @@
23 DIST dropbox-cli-19.py.xz 13960 BLAKE2B 16d33155cbe5449434ff9fc5a9fddca9a7cd20bd3ff8fc46f4badcc30d71f6b0b6adde6f6d0ad73702e4dd2957cc00f88f49b2580c289525784f97d4502e008d SHA512 b5ea1632c135232f4705a0e95419d176638e6a830a2a7d32f955c615328097b987887513cf06103b452a7efe2690ffe351a275267451db9d2998d19ac6f8f85f
24 +DIST dropbox-cli-2020.03.04.py.xz 14304 BLAKE2B 600378cbacd6e96c16e1c8464261b260f2d8919ef5f361c4f337386d3849294cf8557d44f1c5d4f5682eadb2f15885a16b0a8fa162929665e518801d23ec35cc SHA512 c6c8f2f3fb08818388f5ac812821a1530214ad18d58191b08092852aa953e2947871145b46a4df4debeb629a870e1182a47fd5a8bdf8b22144e686e19ede689a
25
26 diff --git a/net-misc/dropbox-cli/dropbox-cli-2020.03.04.ebuild b/net-misc/dropbox-cli/dropbox-cli-2020.03.04.ebuild
27 new file mode 100644
28 index 00000000000..e9487c00034
29 --- /dev/null
30 +++ b/net-misc/dropbox-cli/dropbox-cli-2020.03.04.ebuild
31 @@ -0,0 +1,31 @@
32 +# Copyright 1999-2020 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +PYTHON_COMPAT=( python3_{6,7,8} )
38 +
39 +inherit python-r1 bash-completion-r1
40 +
41 +DESCRIPTION="Cli interface for dropbox (python), part of nautilus-dropbox"
42 +HOMEPAGE="https://www.dropbox.com/"
43 +SRC_URI="https://dev.gentoo.org/~grozin/${P}.py.xz"
44 +
45 +LICENSE="GPL-3"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE=""
49 +REQUIRED_USE="${PYTHON_REQUIRED_USE}"
50 +
51 +RDEPEND="net-misc/dropbox
52 + ${PYTHON_DEPS}
53 + dev-python/pygpgme[${PYTHON_USEDEP}]
54 + dev-python/pygobject:3[${PYTHON_USEDEP}]"
55 +
56 +S=${WORKDIR}
57 +
58 +src_install() {
59 + newbin ${P}.py ${PN}
60 + python_replicate_script "${D}"/usr/bin/${PN}
61 + newbashcomp "${FILESDIR}"/${P}-completion ${PN}
62 +}