From f3b2a0428d613a6897f240425c9bc5c63eeefad7 Mon Sep 17 00:00:00 2001 From: Louis Sautier Date: Wed, 11 Jan 2017 22:41:10 +0100 Subject: dev-python/pushbullet-py: new package, v. 0.10.0, optional dep of urlwatch. Package-Manager: portage-2.3.2 Closes: https://github.com/gentoo/gentoo/pull/3437 --- dev-python/pushbullet-py/Manifest | 1 + ...ushbullet-py-0.10.0-fix-filetypes-python3.patch | 28 +++++++++++ dev-python/pushbullet-py/metadata.xml | 17 +++++++ .../pushbullet-py/pushbullet-py-0.10.0.ebuild | 54 ++++++++++++++++++++++ 4 files changed, 100 insertions(+) create mode 100644 dev-python/pushbullet-py/Manifest create mode 100644 dev-python/pushbullet-py/files/pushbullet-py-0.10.0-fix-filetypes-python3.patch create mode 100644 dev-python/pushbullet-py/metadata.xml create mode 100644 dev-python/pushbullet-py/pushbullet-py-0.10.0.ebuild (limited to 'dev-python/pushbullet-py') diff --git a/dev-python/pushbullet-py/Manifest b/dev-python/pushbullet-py/Manifest new file mode 100644 index 000000000000..639744507834 --- /dev/null +++ b/dev-python/pushbullet-py/Manifest @@ -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 index 000000000000..09ded3540487 --- /dev/null +++ b/dev-python/pushbullet-py/files/pushbullet-py-0.10.0-fix-filetypes-python3.patch @@ -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 index 000000000000..9baed788c083 --- /dev/null +++ b/dev-python/pushbullet-py/metadata.xml @@ -0,0 +1,17 @@ + + + + + sautier.louis@gmail.com + Louis Sautier + + + proxy-maint@gentoo.org + Proxy Maintainers + + + pushbullet.py + randomchars/pushbullet.py + https://github.com/randomchars/pushbullet.py/issues + + 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 index 000000000000..7f7505c20b99 --- /dev/null +++ b/dev-python/pushbullet-py/pushbullet-py-0.10.0.ebuild @@ -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 +} -- cgit v1.2.3-18-g5258