Gentoo Archives: gentoo-commits

From: Georgy Yakovlev <gyakovlev@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-ethtool/
Date: Sat, 02 Feb 2019 23:42:38
Message-Id: 1549150938.11493888722d73f78833799d16c860fe07e9dec2.gyakovlev@gentoo
1 commit: 11493888722d73f78833799d16c860fe07e9dec2
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Tue Jan 29 13:51:07 2019 +0000
4 Commit: Georgy Yakovlev <gyakovlev <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 2 23:42:18 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11493888
7
8 dev-python/python-ethtool: EAPI7, fix Homepage and SRC_URI
9
10 Closes: https://bugs.gentoo.org/676784
11 Closes: https://github.com/gentoo/gentoo/pull/10930
12 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
13 Signed-off-by: Georgy Yakovlev <gyakovlev <AT> gentoo.org>
14
15 dev-python/python-ethtool/Manifest | 1 +
16 .../python-ethtool/python-ethtool-0.11-r1.ebuild | 27 ++++++++++++++++++++++
17 2 files changed, 28 insertions(+)
18
19 diff --git a/dev-python/python-ethtool/Manifest b/dev-python/python-ethtool/Manifest
20 index 8e5f0451c7a..b472e3a2229 100644
21 --- a/dev-python/python-ethtool/Manifest
22 +++ b/dev-python/python-ethtool/Manifest
23 @@ -1 +1,2 @@
24 DIST python-ethtool-0.11.tar.bz2 34487 BLAKE2B bdb5eced32c508a593bbbc80fc287ece547c34504bbdf36877f4b62dea1239a33c5ea23dcecdd8b0f8104eea3ec7d5418a3ee5a1697930ea24a51da42f3ddc24 SHA512 b260e608e1024c48eedb72327b704b01fb42396219ca3d942fe42f22d3e8018fc74bfeffd96e37abd4efd2ce49a73915e0e2af5841a537a02e247d4ba5548f20
25 +DIST python-ethtool-0.11.tar.gz 37326 BLAKE2B b2345f5aece60c3b418d9fcd61220ab77fb49b9995a23b0ed6d97135dee61e4ffa177059869a8702430703b9f6518ffdcb8d690c868d0f8338ab16fdc36c58ea SHA512 227a9248dfdd36a9018a441d3ef4680691c23dac52972fe1ecc67ff30991f3de4cd71af0e48669ca382d6f177d1b3ebc97596e5a5ae4b4c80371456effe637b5
26
27 diff --git a/dev-python/python-ethtool/python-ethtool-0.11-r1.ebuild b/dev-python/python-ethtool/python-ethtool-0.11-r1.ebuild
28 new file mode 100644
29 index 00000000000..8feab87c53c
30 --- /dev/null
31 +++ b/dev-python/python-ethtool/python-ethtool-0.11-r1.ebuild
32 @@ -0,0 +1,27 @@
33 +# Copyright 1999-2019 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=7
37 +
38 +PYTHON_COMPAT=( python2_7 )
39 +
40 +# TODO: install scripts and their man pages
41 +
42 +inherit distutils-r1
43 +
44 +DESCRIPTION="Ethernet settings python bindings"
45 +HOMEPAGE="https://pypi.org/project/ethtool/
46 + https://github.com/fedora-python/python-ethtool"
47 +SRC_URI="https://github.com/fedora-python/python-ethtool/archive/v${PV}.tar.gz -> ${P}.tar.gz"
48 +
49 +LICENSE="GPL-2"
50 +SLOT="0"
51 +KEYWORDS="~amd64 ~amd64"
52 +
53 +DEPEND="dev-libs/libnl:3"
54 +RDEPEND="${DEPEND}"
55 +BDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
56 +
57 +PATCHES=(
58 + "${FILESDIR}/${P}_include-net-if.h-for-IFF_-macros.patch"
59 +)