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/huawei-lte-api/
Date: Tue, 21 Sep 2021 08:20:12
Message-Id: 1632210858.daa17b7c7f1ff4ab512c1190709c392c8da235a9.mgorny@gentoo
1 commit: daa17b7c7f1ff4ab512c1190709c392c8da235a9
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Sep 21 06:49:49 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Sep 21 07:54:18 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa17b7c
7
8 dev-python/huawei-lte-api: Bump to 1.5 (or 1.5.0)
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/huawei-lte-api/Manifest | 1 +
13 .../huawei-lte-api/huawei-lte-api-1.5.ebuild | 33 ++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/huawei-lte-api/Manifest b/dev-python/huawei-lte-api/Manifest
17 index c48715730e1..6140a382e39 100644
18 --- a/dev-python/huawei-lte-api/Manifest
19 +++ b/dev-python/huawei-lte-api/Manifest
20 @@ -1 +1,2 @@
21 DIST huawei-lte-api-1.4.18.tar.gz 29701 BLAKE2B 0e242f2f2208646c9f3291dab8397a80934bce3757fb79b58fdcee389a087788962cfaea3350d7b95e53ff3e0f1fbefdf7ea6714266872fc1591848a4fb84462 SHA512 4750fcc84fff46c76f42715e6668d402b9057f8dd826276ad0682e9bac76742c86566794d4aaab7aa9ebf17d06246c4d4cc9385ee1fff9642ff5c995491fc646
22 +DIST huawei-lte-api-1.5.tar.gz 31741 BLAKE2B eded2f2ba04dfa8973a5ccd627996770b93e2509aeb2d0ff40dafc9a5ee0f6d242d032d310102297a1f56ee255b10f0e6e02c3a0ad687b6006e31ad8b53fb32e SHA512 f235664464abc23da85a36b17f356c7be65e686e06bbaba9aa06c728fa04ae5ab4fa32168c4fb2914a22472564d8f3365f9fe47f33e1892f923e6934dbd692b0
23
24 diff --git a/dev-python/huawei-lte-api/huawei-lte-api-1.5.ebuild b/dev-python/huawei-lte-api/huawei-lte-api-1.5.ebuild
25 new file mode 100644
26 index 00000000000..70850fbcf20
27 --- /dev/null
28 +++ b/dev-python/huawei-lte-api/huawei-lte-api-1.5.ebuild
29 @@ -0,0 +1,33 @@
30 +# Copyright 1999-2021 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +PYTHON_COMPAT=( pypy3 python3_{8..10} )
36 +inherit distutils-r1
37 +
38 +DESCRIPTION="API For huawei LAN/WAN LTE Modems"
39 +HOMEPAGE="https://github.com/Salamek/huawei-lte-api"
40 +SRC_URI="https://github.com/Salamek/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
41 +
42 +LICENSE="MIT"
43 +SLOT="0"
44 +KEYWORDS="~amd64"
45 +IUSE=""
46 +
47 +RDEPEND="dev-python/pycryptodome[${PYTHON_USEDEP}]
48 + dev-python/requests[${PYTHON_USEDEP}]
49 + dev-python/xmltodict[${PYTHON_USEDEP}]"
50 +
51 +python_prepare_all() {
52 + # https://github.com/Salamek/huawei-lte-api/issues/86
53 + sed "s:'pytest-runner'::" -i setup.py || die
54 +
55 + # make cryptodome-friendly
56 + find -name '*.py' -exec \
57 + sed -i -e 's:Cryptodome:Crypto:g' {} + || die
58 +
59 + distutils-r1_python_prepare_all
60 +}
61 +
62 +distutils_enable_tests pytest