Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyquery/
Date: Thu, 31 Dec 2020 08:54:14
Message-Id: 1609404848.70e1385cdeb6665e2557eea7ec1a47a1affa53e8.mgorny@gentoo
1 commit: 70e1385cdeb6665e2557eea7ec1a47a1affa53e8
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Dec 31 08:53:19 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Dec 31 08:54:08 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70e1385c
7
8 dev-python/pyquery: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pyquery/Manifest | 1 -
13 dev-python/pyquery/pyquery-1.4.1-r1.ebuild | 45 ------------------------------
14 2 files changed, 46 deletions(-)
15
16 diff --git a/dev-python/pyquery/Manifest b/dev-python/pyquery/Manifest
17 index 4f3ec79b219..0eef5930be6 100644
18 --- a/dev-python/pyquery/Manifest
19 +++ b/dev-python/pyquery/Manifest
20 @@ -1,2 +1 @@
21 -DIST pyquery-1.4.1.tar.gz 47983 BLAKE2B eb8d0ca59122734a4c715c33f40fd0b5fcc8edcabe9e41649ddf332feb1df603f8527a668aa7b9d78974b3d049e774355296644abd9b4d426d96e6e3c7a74065 SHA512 e2bfbbf51f99a408e9696a2b9c15f8875813847a10b5bd93c4c7a6886ac1b3ae6c7883ec4fb64e9bccab2127617843961e181044fe927f3c80c8ac363ed86141
22 DIST pyquery-1.4.3.tar.gz 47448 BLAKE2B 32451dfc8f8160207b4be12006ceba3098b8cb344bfa3e80ccf75f8cfca9542614ae78b9bfec773139cbbf12434201f92f8b4738e7d9e6241b3addfeb1bc8dda SHA512 cb61326e38f78763ca15de09e3a56dad776b3d4831b54eabf295db0f9af8bf04599642c73f5db3e3172b86d7b66ba2ef626c8cba2dfb458af6ac432d15ea7cba
23
24 diff --git a/dev-python/pyquery/pyquery-1.4.1-r1.ebuild b/dev-python/pyquery/pyquery-1.4.1-r1.ebuild
25 deleted file mode 100644
26 index 613b1dc5b19..00000000000
27 --- a/dev-python/pyquery/pyquery-1.4.1-r1.ebuild
28 +++ /dev/null
29 @@ -1,45 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=7
34 -
35 -PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
36 -
37 -inherit distutils-r1 optfeature
38 -
39 -DESCRIPTION="A jQuery-like library for python"
40 -HOMEPAGE="https://github.com/gawel/pyquery"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD"
44 -SLOT="0"
45 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86"
46 -IUSE="test"
47 -
48 -RDEPEND="
49 - >=dev-python/lxml-2.1[${PYTHON_USEDEP}]
50 - >dev-python/cssselect-0.7.9[${PYTHON_USEDEP}]
51 - >=dev-python/webob-1.1.9[${PYTHON_USEDEP}]"
52 -DEPEND="
53 - test? ( ${RDEPEND}
54 - dev-python/beautifulsoup[${PYTHON_USEDEP}]
55 - dev-python/requests[${PYTHON_USEDEP}]
56 - dev-python/nose[${PYTHON_USEDEP}]
57 - dev-python/webtest[${PYTHON_USEDEP}]
58 - )"
59 -
60 -RESTRICT+=" !test? ( test )"
61 -
62 -PATCHES=(
63 - "${FILESDIR}/pyquery-1.4.1-network-tests.patch"
64 - "${FILESDIR}/pyquery-1.4.1-tests-pypy.patch"
65 -)
66 -
67 -python_test() {
68 - # The suite, it appears, requires this hard setting of PYTHONPATH!
69 - PYTHONPATH=. nosetests || die "Tests fail with ${EPYTHON}"
70 -}
71 -
72 -pkg_postinst() {
73 - optfeature "Support for BeautifulSoup3 as a parser backend" dev-python/beautifulsoup
74 -}