Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pushbullet-py/
Date: Sun, 30 Jul 2017 09:42:05
Message-Id: 1501407706.2eeaa849dd6ea5462587ebdaf514e9116ad5a420.soap@gentoo
1 commit: 2eeaa849dd6ea5462587ebdaf514e9116ad5a420
2 Author: Louis Sautier <sautier.louis <AT> gmail <DOT> com>
3 AuthorDate: Mon Jul 24 12:47:00 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 30 09:41:46 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eeaa849
7
8 dev-python/pushbullet-py: bump to 0.11.0, add py3.6
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.3
11 Closes: https://github.com/gentoo/gentoo/pull/5200
12
13 dev-python/pushbullet-py/Manifest | 1 +
14 .../pushbullet-py/pushbullet-py-0.11.0.ebuild | 49 ++++++++++++++++++++++
15 2 files changed, 50 insertions(+)
16
17 diff --git a/dev-python/pushbullet-py/Manifest b/dev-python/pushbullet-py/Manifest
18 index 63974450783..ebc886dc7d3 100644
19 --- a/dev-python/pushbullet-py/Manifest
20 +++ b/dev-python/pushbullet-py/Manifest
21 @@ -1 +1,2 @@
22 DIST pushbullet-py-0.10.0.tar.gz 18929 SHA256 318c05f743c94803fc2e2cd786fe258e968d1bef26d05039f005763b0f23e703 SHA512 2e259b76413c5e644350a891678eb98f761e56b18f5a06a9d7cc34353c7c7ee67fa875aed575b1b005782b21f4440d682db5c09be7033d52b7b9cf41e9120123 WHIRLPOOL fd0f98887e73dd04c9510550dd97d711319844f82b7e7d34c35e0db886f08df0d4b800a3f95f2e61de4b909079f2eda4813950743f935c08f875f0cc6e2d227f
23 +DIST pushbullet.py-0.11.0.tar.gz 21653 SHA256 aa9dc7bb46e083e3497d46241154f12944a8f540e29d150330ca94db0b453b8d SHA512 b236f30b99e5bb79eff183529716c1c8f83cfd2526fdf50d86041eb6d3fcd6670d0c4dce407ae6e50aea0fa96d6a5527af980148f0c71ef758c480f972ad9659 WHIRLPOOL 425ac3d558b67e7ea621adb84a6d40876f159e70d22082c3985e0a59d7d8c25d7128f74c404716cdc2b53df3907bf365cb9582e3488efb098ec8e08ccf5789e1
24
25 diff --git a/dev-python/pushbullet-py/pushbullet-py-0.11.0.ebuild b/dev-python/pushbullet-py/pushbullet-py-0.11.0.ebuild
26 new file mode 100644
27 index 00000000000..4a035f01867
28 --- /dev/null
29 +++ b/dev-python/pushbullet-py/pushbullet-py-0.11.0.ebuild
30 @@ -0,0 +1,49 @@
31 +# Copyright 1999-2017 Gentoo Foundation
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
36 +
37 +inherit distutils-r1
38 +
39 +MY_PN=${PN/-/.}
40 +DESCRIPTION="A simple python client for pushbullet.com"
41 +HOMEPAGE="https://github.com/randomchars/pushbullet.py"
42 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz"
43 +
44 +LICENSE="MIT"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +IUSE="examples test"
48 +
49 +RDEPEND="
50 + dev-python/cryptography[${PYTHON_USEDEP}]
51 + dev-python/python-magic[${PYTHON_USEDEP}]
52 + dev-python/requests[${PYTHON_USEDEP}]
53 + dev-python/websocket-client[${PYTHON_USEDEP}]
54 +"
55 +DEPEND="
56 + dev-python/setuptools[${PYTHON_USEDEP}]
57 + test? (
58 + ${RDEPEND}
59 + dev-python/pytest[${PYTHON_USEDEP}]
60 + )
61 +"
62 +
63 +S="${WORKDIR}/${MY_PN}-${PV}"
64 +
65 +python_test() {
66 + # skip tests which require network access
67 + PUSHBULLET_API_KEY= py.test \
68 + -k "not (test_auth or test_decryption)" \
69 + || die "Tests failed with ${EPYTHON}"
70 +}
71 +
72 +python_install_all() {
73 + if use examples; then
74 + docompress -x "/usr/share/doc/${PF}/examples"
75 + docinto examples
76 + dodoc -r example/.
77 + fi
78 + distutils-r1_python_install_all
79 +}