dev-python/pushbullet-py: new package, v. 0.10.0, optional dep of urlwatch.
authorLouis Sautier <sautier.louis@gmail.com>
Wed, 11 Jan 2017 21:41:10 +0000 (22:41 +0100)
committerPatrice Clement <monsieurp@gentoo.org>
Thu, 12 Jan 2017 14:05:49 +0000 (15:05 +0100)
Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/3437

dev-python/pushbullet-py/Manifest [new file with mode: 0644]
dev-python/pushbullet-py/files/pushbullet-py-0.10.0-fix-filetypes-python3.patch [new file with mode: 0644]
dev-python/pushbullet-py/metadata.xml [new file with mode: 0644]
dev-python/pushbullet-py/pushbullet-py-0.10.0.ebuild [new file with mode: 0644]

diff --git a/dev-python/pushbullet-py/Manifest b/dev-python/pushbullet-py/Manifest
new file mode 100644 (file)
index 0000000..6397445
--- /dev/null
@@ -0,0 +1 @@
+DIST pushbullet-py-0.10.0.tar.gz 18929 SHA256 318c05f743c94803fc2e2cd786fe258e968d1bef26d05039f005763b0f23e703 SHA512 2e259b76413c5e644350a891678eb98f761e56b18f5a06a9d7cc34353c7c7ee67fa875aed575b1b005782b21f4440d682db5c09be7033d52b7b9cf41e9120123 WHIRLPOOL fd0f98887e73dd04c9510550dd97d711319844f82b7e7d34c35e0db886f08df0d4b800a3f95f2e61de4b909079f2eda4813950743f935c08f875f0cc6e2d227f
diff --git a/dev-python/pushbullet-py/files/pushbullet-py-0.10.0-fix-filetypes-python3.patch b/dev-python/pushbullet-py/files/pushbullet-py-0.10.0-fix-filetypes-python3.patch
new file mode 100644 (file)
index 0000000..09ded35
--- /dev/null
@@ -0,0 +1,28 @@
+diff --git a/pushbullet/filetype.py b/pushbullet/filetype.py
+index a2f2be0..22ffedf 100644
+--- a/pushbullet/filetype.py
++++ b/pushbullet/filetype.py
+@@ -1,13 +1,22 @@
+ def _magic_get_file_type(f, _):
+     file_type = magic.from_buffer(f.read(1024), mime=True)
+     f.seek(0)
+-    return file_type.decode('utf-8')
++    return maybe_decode(file_type)
+ def _guess_file_type(_, filename):
+     return mimetypes.guess_type(filename)[0]
++# return str on python3.  Don't want to unconditionally
++# decode because that results in unicode on python2
++def maybe_decode(s):
++    if str == bytes:
++        return s.decode('utf-8')
++    else:
++        return s
++
++
+ try:
+     import magic
+ except ImportError:
diff --git a/dev-python/pushbullet-py/metadata.xml b/dev-python/pushbullet-py/metadata.xml
new file mode 100644 (file)
index 0000000..9baed78
--- /dev/null
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+       <maintainer type="person">
+               <email>sautier.louis@gmail.com</email>
+               <name>Louis Sautier</name>
+       </maintainer>
+       <maintainer type="project">
+               <email>proxy-maint@gentoo.org</email>
+               <name>Proxy Maintainers</name>
+       </maintainer>
+       <upstream>
+               <remote-id type="pypi">pushbullet.py</remote-id>
+               <remote-id type="github">randomchars/pushbullet.py</remote-id>
+               <bugs-to>https://github.com/randomchars/pushbullet.py/issues</bugs-to>
+       </upstream>
+</pkgmetadata>
diff --git a/dev-python/pushbullet-py/pushbullet-py-0.10.0.ebuild b/dev-python/pushbullet-py/pushbullet-py-0.10.0.ebuild
new file mode 100644 (file)
index 0000000..7f7505c
--- /dev/null
@@ -0,0 +1,54 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+DESCRIPTION="A simple python client for pushbullet.com"
+HOMEPAGE="https://github.com/randomchars/pushbullet.py"
+# tests and examples are missing from PyPI tarballs
+# https://github.com/randomchars/pushbullet.py/pull/104
+SRC_URI="https://github.com/randomchars/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples test"
+
+RDEPEND="
+       dev-python/python-magic[${PYTHON_USEDEP}]
+       dev-python/requests[${PYTHON_USEDEP}]
+       dev-python/websocket-client[${PYTHON_USEDEP}]
+"
+DEPEND="
+       dev-python/setuptools[${PYTHON_USEDEP}]
+       test? (
+               ${RDEPEND}
+               dev-python/pytest[${PYTHON_USEDEP}]
+               dev-python/pytest-runner[${PYTHON_USEDEP}]
+       )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+# Backport from upstream git
+PATCHES=( "${FILESDIR}/${P}-fix-filetypes-python3.patch" )
+
+python_test() {
+       # skip tests which require network access
+       PUSHBULLET_API_KEY= py.test \
+               -k "not test_auth" || die "Tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+       if use examples; then
+               docompress -x "/usr/share/doc/${PF}/examples"
+               docinto examples
+               dodoc -r example/.
+       fi
+       distutils-r1_python_install_all
+}