Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/i2c-tools/
Date: Sat, 10 Oct 2020 07:58:40
Message-Id: 1602316713.c348fca052f3a40975e79638eff9d2259f5a45a5.zlogene@gentoo
1 commit: c348fca052f3a40975e79638eff9d2259f5a45a5
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Sat Oct 10 07:57:15 2020 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Sat Oct 10 07:58:33 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c348fca0
7
8 sys-apps/i2c-tools: Version bump (v4.2)
9
10 Package-Manager: Portage-3.0.4, Repoman-3.0.1
11 Signed-off-by: Mikle Kolyada <zlogene <AT> gentoo.org>
12
13 sys-apps/i2c-tools/Manifest | 1 +
14 sys-apps/i2c-tools/i2c-tools-4.2.ebuild | 74 +++++++++++++++++++++++++++++++++
15 2 files changed, 75 insertions(+)
16
17 diff --git a/sys-apps/i2c-tools/Manifest b/sys-apps/i2c-tools/Manifest
18 index 94fe0318fd0..6b32301a606 100644
19 --- a/sys-apps/i2c-tools/Manifest
20 +++ b/sys-apps/i2c-tools/Manifest
21 @@ -1 +1,2 @@
22 DIST i2c-tools-4.1.tar.xz 83576 BLAKE2B 0a9ed3bb335b61f6c17a6b6c705502ff008b4fb8bab6a5fde63163a32528b5214d92affc4b8d6cca29676dc7ba82dfa84be5f14943b7e81c8612a7d9419ac628 SHA512 83262bcfd94c2adf74517cc50095dd78221fa4d16a62397245d4a538de7463272abf4f6727024be8ab1ca8ecbfe647af85ba2a553e5b5e68a53e50dfcad20248
23 +DIST i2c-tools-4.2.tar.xz 87600 BLAKE2B 89f84ad07f4c042f67c308d48a402aa9ed46352062ddad3456d048730019e099e6eef626d487d802e07b100ae2c836e9aa6b2345950ff8744cbc0fe1a22616fb SHA512 5e230be4983c5c9c5718491d3ce9ee2e6205edea75c4097735eb32a25e522e37a074ef4cb61d2492707efebf0cb1b75ff65f1b2ae8c0bc1684a169526809a096
24
25 diff --git a/sys-apps/i2c-tools/i2c-tools-4.2.ebuild b/sys-apps/i2c-tools/i2c-tools-4.2.ebuild
26 new file mode 100644
27 index 00000000000..f55d8d32a05
28 --- /dev/null
29 +++ b/sys-apps/i2c-tools/i2c-tools-4.2.ebuild
30 @@ -0,0 +1,74 @@
31 +# Copyright 1999-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +PYTHON_COMPAT=( python{3_7,3_8} )
37 +DISTUTILS_OPTIONAL="1"
38 +DISTUTILS_USE_SETUPTOOLS=no
39 +
40 +inherit distutils-r1 flag-o-matic toolchain-funcs
41 +
42 +DESCRIPTION="I2C tools for bus probing, chip dumping, EEPROM decoding, and more"
43 +HOMEPAGE="https://www.kernel.org/pub/software/utils/i2c-tools"
44 +SRC_URI="https://www.kernel.org/pub/software/utils/${PN}/${P}.tar.xz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~sparc ~x86"
49 +IUSE="perl python"
50 +REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
51 +
52 +RDEPEND="
53 + python? ( ${PYTHON_DEPS} )"
54 +DEPEND="${RDEPEND}"
55 +RDEPEND+="
56 + perl? ( dev-lang/perl )"
57 +
58 +src_prepare() {
59 + default
60 + use python && distutils-r1_src_prepare
61 +
62 + # Cut out the eeprom/ & stub/ dirs as only perl scripts live there.
63 + if ! use perl ; then
64 + sed -i '/^SRCDIRS/s: eeprom stub : :g' Makefile || die
65 + fi
66 +}
67 +
68 +src_configure() {
69 + use python && distutils-r1_src_configure
70 +
71 + export BUILD_DYNAMIC_LIB=1
72 + export USE_STATIC_LIB=0
73 + export BUILD_STATIC_LIB=0
74 +}
75 +
76 +src_compile() {
77 + emake AR="$(tc-getAR)" CC="$(tc-getCC)" all-lib # parallel make
78 + emake CC="$(tc-getCC)"
79 + emake -C eepromer CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
80 +
81 + if use python ; then
82 + cd py-smbus || die
83 + append-cppflags -I../include
84 + distutils-r1_src_compile
85 + fi
86 +}
87 +
88 +src_install() {
89 + emake DESTDIR="${D}" libdir="/usr/$(get_libdir)" PREFIX="/usr" install-lib install
90 + dosbin eepromer/eeprom{,er}
91 + dodoc CHANGES README
92 + local d
93 + for d in $(usex perl eeprom '') eepromer ; do
94 + docinto "${d}"
95 + dodoc "${d}"/README*
96 + done
97 +
98 + if use python ; then
99 + cd py-smbus || die
100 + docinto py-smbus
101 + dodoc README*
102 + distutils-r1_src_install
103 + fi
104 +}