Gentoo Archives: gentoo-commits

From: Louis Sautier <sbraz@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/MechanicalSoup/
Date: Sat, 07 Mar 2020 14:11:09
Message-Id: 1583590255.0b2eb2818105e6258f7212ce6f2c473734af2809.sbraz@gentoo
1 commit: 0b2eb2818105e6258f7212ce6f2c473734af2809
2 Author: Louis Sautier <sbraz <AT> gentoo <DOT> org>
3 AuthorDate: Sat Mar 7 14:08:14 2020 +0000
4 Commit: Louis Sautier <sbraz <AT> gentoo <DOT> org>
5 CommitDate: Sat Mar 7 14:10:55 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2eb281
7
8 dev-python/MechanicalSoup: bump to 0.12.0, add Py3.7, Py3.8, PyPy3
9
10 Package-Manager: Portage-2.3.92, Repoman-2.3.20
11 Signed-off-by: Louis Sautier <sbraz <AT> gentoo.org>
12
13 dev-python/MechanicalSoup/Manifest | 1 +
14 .../MechanicalSoup/MechanicalSoup-0.12.0.ebuild | 56 ++++++++++++++++++++++
15 2 files changed, 57 insertions(+)
16
17 diff --git a/dev-python/MechanicalSoup/Manifest b/dev-python/MechanicalSoup/Manifest
18 index ebaa6abdf56..f8fb93842e7 100644
19 --- a/dev-python/MechanicalSoup/Manifest
20 +++ b/dev-python/MechanicalSoup/Manifest
21 @@ -1,2 +1,3 @@
22 DIST MechanicalSoup-0.10.0.tar.gz 40111 BLAKE2B cbb09253666850d3ce433f60ed6405585588e6dc7198c58de1cab8ecfad1e1c814433787aefe33dbb490edab5367ffca285d14cf8fbcb2c16e309b957a3a311b SHA512 5fa493abac39c5084dacb67b9dfaa2f8f5af773d3e3aaff48e6240596e863ada30a2fd1e345188c3249fd6e570977aa45b9fd553fe5a549f8430f170613bb866
23 +DIST MechanicalSoup-0.12.0.tar.gz 44505 BLAKE2B 7c303f7ae4dea12157d5c845a4dcdc6923e76d3565debd88d2f43e2cfc29a503feb6accb969839a39b1c4071b029f53908a12902a5c4f175f0383da227224c55 SHA512 6cce80ea5a90e7f19f2b13749f6ee48222d973af66cb350ac867a554580b0d619defe5a93741e6ec8aa808c585a8c01703158c7484521ac069977388de8bb7e3
24 DIST MechanicalSoup-0.6.0.zip 5286 BLAKE2B 93a1d124cd45820e425fcb50b2aec04026f7a6f42c7c3f5c93103fbd216c98e36f366a1f7f343dd5561688ac4adb6feacab08ae444f91156348c07a80710a306 SHA512 cc413723514f3beee1267c57c16f6de2c19eb1f64535a60b546d289c7c18d8c4ba752ea61ab0b4a2aead2b56b12639cd226cb32662622515cb40262b7e619c24
25
26 diff --git a/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild b/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild
27 new file mode 100644
28 index 00000000000..14b661fd659
29 --- /dev/null
30 +++ b/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild
31 @@ -0,0 +1,56 @@
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=( pypy3 python3_{6,7,8} )
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A python library for automating interaction with websites"
42 +HOMEPAGE="https://pypi.org/project/MechanicalSoup/"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
44 +
45 +LICENSE="MIT"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~x86"
48 +IUSE="examples test"
49 +RESTRICT="!test? ( test )"
50 +
51 +RDEPEND="
52 + >=dev-python/beautifulsoup-4.0[${PYTHON_USEDEP}]
53 + >=dev-python/requests-2.0[${PYTHON_USEDEP}]
54 + >=dev-python/six-1.4[${PYTHON_USEDEP}]
55 + dev-python/lxml[${PYTHON_USEDEP}]
56 +"
57 +BDEPEND="
58 + test? (
59 + ${RDEPEND}
60 + >=dev-python/requests-mock-1.3.0[${PYTHON_USEDEP}]
61 + dev-python/pytest[${PYTHON_USEDEP}]
62 + dev-python/pytest-httpbin[${PYTHON_USEDEP}]
63 + dev-python/pytest-mock[${PYTHON_USEDEP}]
64 + )
65 +"
66 +
67 +distutils_enable_sphinx docs
68 +
69 +python_prepare_all() {
70 + # We don't need pytest-runner to run tests via pytest
71 + sed -i "s/'pytest-runner'//" setup.py || die
72 + distutils-r1_python_prepare_all
73 +}
74 +
75 +python_test() {
76 + # Override pytest options to skip coverage and flake8
77 + pytest -vv --override-ini="addopts=" \
78 + || die "tests failed with ${EPYTHON}"
79 +}
80 +
81 +python_install_all() {
82 + if use examples; then
83 + docompress -x "/usr/share/doc/${PF}/examples"
84 + dodoc -r examples
85 + fi
86 + distutils-r1_python_install_all
87 +}