Gentoo Archives: gentoo-commits

From: Agostino Sarubbo <ago@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/huawei-lte-api/
Date: Tue, 02 Aug 2022 15:01:24
Message-Id: 1659452471.3646600b4b6aa4ab3d5e954d64d3583898b60090.ago@gentoo
1 commit: 3646600b4b6aa4ab3d5e954d64d3583898b60090
2 Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
3 AuthorDate: Tue Aug 2 15:01:11 2022 +0000
4 Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
5 CommitDate: Tue Aug 2 15:01:11 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3646600b
7
8 dev-python/huawei-lte-api: remove old
9
10 Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
11
12 dev-python/huawei-lte-api/Manifest | 1 -
13 .../huawei-lte-api/huawei-lte-api-1.6.ebuild | 40 ----------------------
14 2 files changed, 41 deletions(-)
15
16 diff --git a/dev-python/huawei-lte-api/Manifest b/dev-python/huawei-lte-api/Manifest
17 index 58acc4b3d6e8..95609d0fcead 100644
18 --- a/dev-python/huawei-lte-api/Manifest
19 +++ b/dev-python/huawei-lte-api/Manifest
20 @@ -1,2 +1 @@
21 DIST huawei-lte-api-1.6.1.gh.tar.gz 32963 BLAKE2B f159e1dc4cb759c09a88bb763c6ba5f43043eacf025e7ada871c816e0e72a238f9e7536dbc043f8596bef390ecfc2ee137c1a4c079ca33db6c3a3198147c9f98 SHA512 2a6a330c419af0d2b8eeff9d8b93a11cdf8050db04e609cb1d86a33ab770d7102c8e40652482c2500ce4bf4152b66b98ee1fc77be104db8ab9a9bbeec871ce20
22 -DIST huawei-lte-api-1.6.tar.gz 32617 BLAKE2B 194d2d983e7bd5bd456d3557b16795cda350ea157545c1ce37aa6d4dd0bace8a8a0c724b9d0ae4315e6f95585598b147a03acb77d84837bf879fa9b83737cafc SHA512 62f70853bba0fbd863e07e2d91309fc15c41508857486d01a02ec30ed513567d0880551744eed5a61517cc33a2f56583df892d22cca45124e95e24605ab23678
23
24 diff --git a/dev-python/huawei-lte-api/huawei-lte-api-1.6.ebuild b/dev-python/huawei-lte-api/huawei-lte-api-1.6.ebuild
25 deleted file mode 100644
26 index cd6657cd97d2..000000000000
27 --- a/dev-python/huawei-lte-api/huawei-lte-api-1.6.ebuild
28 +++ /dev/null
29 @@ -1,40 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( pypy3 python3_{8..11} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="API For huawei LAN/WAN LTE Modems"
41 -HOMEPAGE="
42 - https://github.com/Salamek/huawei-lte-api/
43 - https://pypi.org/project/huawei-lte-api/
44 -"
45 -SRC_URI="
46 - https://github.com/Salamek/${PN}/archive/${PV}.tar.gz
47 - -> ${P}.tar.gz
48 -"
49 -
50 -LICENSE="MIT"
51 -SLOT="0"
52 -KEYWORDS="~amd64"
53 -
54 -RDEPEND="
55 - dev-python/pycryptodome[${PYTHON_USEDEP}]
56 - dev-python/requests[${PYTHON_USEDEP}]
57 - dev-python/xmltodict[${PYTHON_USEDEP}]
58 -"
59 -
60 -python_prepare_all() {
61 - # make cryptodome-friendly
62 - sed -i -e 's:pycryptodomex:pycryptodome:' setup.py || die
63 - find -name '*.py' -exec \
64 - sed -i -e 's:Cryptodome:Crypto:g' {} + || die
65 -
66 - distutils-r1_python_prepare_all
67 -}
68 -
69 -distutils_enable_tests pytest