Gentoo Archives: gentoo-commits

From: Arthur Zamarin <arthurzam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyroute2/
Date: Sat, 10 Sep 2022 05:38:37
Message-Id: 1662788300.b2eeca763255e42c7f4d4984805ac3c4ee023408.arthurzam@gentoo
1 commit: b2eeca763255e42c7f4d4984805ac3c4ee023408
2 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 10 05:06:22 2022 +0000
4 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 10 05:38:20 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2eeca76
7
8 dev-python/pyroute2: add 0.7.3
9
10 Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>
11
12 dev-python/pyroute2/Manifest | 1 +
13 dev-python/pyroute2/pyroute2-0.7.3.ebuild | 33 +++++++++++++++++++++++++++++++
14 2 files changed, 34 insertions(+)
15
16 diff --git a/dev-python/pyroute2/Manifest b/dev-python/pyroute2/Manifest
17 index 2e397ebdeb8f..2b2333f30f18 100644
18 --- a/dev-python/pyroute2/Manifest
19 +++ b/dev-python/pyroute2/Manifest
20 @@ -1 +1,2 @@
21 DIST pyroute2-0.7.2.gh.tar.gz 469459 BLAKE2B 06aa7640bb21c0a7b8035723069d78b28ca39b554b5bdc0a031dbc7376251265b118b222cb4283156c02136e63de4b77103c02a88b700ac5f49fa8ceac28528a SHA512 6c032b39675d539958642bb16b3b964e78613cdd2d49e2e206a13d5256872e3800de5c73cff761e4a756d31df0e07f18f08d193a0543c87be89da348662e6dbd
22 +DIST pyroute2-0.7.3.gh.tar.gz 484152 BLAKE2B 4f0cd0fc000c7bd3baffaa2ed25468bc28806fef2f9bc96e39606afe46e616d85865f497df6d1e3e4b2e5e3956b5fca22af273140bbb38954c6f0c0f86c386a6 SHA512 c8aeddaeaa014bcf8c4b831cb5b4080db5c99b582f3999fdbdd840b9448e032fbbf64ce5707ebc0795765138d8e89cde830efb2469c827ed8d4e63dd1beafe62
23
24 diff --git a/dev-python/pyroute2/pyroute2-0.7.3.ebuild b/dev-python/pyroute2/pyroute2-0.7.3.ebuild
25 new file mode 100644
26 index 000000000000..791e7e0b54d8
27 --- /dev/null
28 +++ b/dev-python/pyroute2/pyroute2-0.7.3.ebuild
29 @@ -0,0 +1,33 @@
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=( python3_{8,9,10} pypy3 )
37 +PYTHON_REQ_USE="sqlite"
38 +
39 +inherit distutils-r1
40 +
41 +DESCRIPTION="A pure Python netlink and Linux network configuration library"
42 +HOMEPAGE="https://github.com/svinota/pyroute2"
43 +
44 +SRC_URI="
45 + https://github.com/svinota/${PN}/archive/${PV}.tar.gz
46 + -> ${P}.gh.tar.gz
47 +"
48 +
49 +LICENSE="Apache-2.0"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~arm64 ~x86"
52 +
53 +RDEPEND="
54 + dev-python/setuptools[${PYTHON_USEDEP}]
55 +"
56 +BDEPEND="
57 + dev-python/setuptools_scm[${PYTHON_USEDEP}]
58 + dev-python/wheel[${PYTHON_USEDEP}]
59 +"
60 +
61 +# tests need root access
62 +RESTRICT="test"