Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-embedded/esptool/
Date: Thu, 31 Mar 2022 11:46:03
Message-Id: 1648727156.7c7513462c47dda04365ccc8324d1697a96a9bba.juippis@gentoo
1 commit: 7c7513462c47dda04365ccc8324d1697a96a9bba
2 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
3 AuthorDate: Fri Mar 25 07:16:03 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Thu Mar 31 11:45:56 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c751346
7
8 dev-embedded/esptool: remove old
9
10 Package-Manager: Portage-3.0.30, Repoman-3.0.3
11 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
12 Closes: https://github.com/gentoo/gentoo/pull/24740
13 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
14
15 dev-embedded/esptool/Manifest | 1 -
16 dev-embedded/esptool/esptool-3.1.ebuild | 46 ---------------------------------
17 2 files changed, 47 deletions(-)
18
19 diff --git a/dev-embedded/esptool/Manifest b/dev-embedded/esptool/Manifest
20 index bc8c75542eb0..8204e36da092 100644
21 --- a/dev-embedded/esptool/Manifest
22 +++ b/dev-embedded/esptool/Manifest
23 @@ -1,3 +1,2 @@
24 -DIST esptool-3.1.tar.gz 6897273 BLAKE2B dcbba13e8775afd3cf10cdeafeee5e9e3c0d2e9722a95076a868b669ea3a11a56b48a053e1b19787c6da330af6d01f9f256a92c0be527d4a7d9848f646f194c3 SHA512 5edaaa376932acc9e7ba717fe931ec1e14b80d1eee415fcef4c69b30b375cd61887ac52a20dd1001d215b8d739019d6b9f624d294d8d76ff112e630d52f7f15b
25 DIST esptool-3.2.tar.gz 7155428 BLAKE2B f81a8b77f1994599c3302915915e225249a5e735accbe47c8936de47564e47a33ae711df47c57e599d980b450dc4d710f819087a97d086b9d0f15a98622c0da4 SHA512 5e67b3a17190e051d7706ee2dbbe855488765a7bfed15b15f5a04022c3fbf19112905ba6a672c37b1bac5501d45d477cfff07c004cd83b2d1a111430992cefc1
26 DIST esptool-3.3.tar.gz 7259717 BLAKE2B b9952dff9a1884cae5325730056673d96bd442c82cd799196d99fe5287b72bc567d312102779f64c4a526c19bd36d0f742b4e81434de8b4dadf406a19bd3d423 SHA512 1f1a43832ae5487c570e49c97ca18831371f5a4ac0d4b260fa8b7356c7af40b8514722ded630a6c84e3d59f7fba78c9d70b291d1fa581fc25ea37204ded44363
27
28 diff --git a/dev-embedded/esptool/esptool-3.1.ebuild b/dev-embedded/esptool/esptool-3.1.ebuild
29 deleted file mode 100644
30 index cae94b7a45be..000000000000
31 --- a/dev-embedded/esptool/esptool-3.1.ebuild
32 +++ /dev/null
33 @@ -1,46 +0,0 @@
34 -# Copyright 2021 Gentoo Authors
35 -# Distributed under the terms of the GNU General Public License v2
36 -
37 -EAPI=7
38 -
39 -PYTHON_COMPAT=( python3_{8..9} )
40 -DISTUTILS_SINGLE_IMPL=1
41 -
42 -inherit distutils-r1
43 -
44 -DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif ESP8266 and ESP32"
45 -HOMEPAGE="https://github.com/espressif/esptool"
46 -SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
47 -
48 -LICENSE="GPL-2+"
49 -SLOT="0"
50 -KEYWORDS="amd64 ~arm ~arm64 x86"
51 -IUSE="test"
52 -RESTRICT="!test? ( test )"
53 -
54 -RDEPEND="
55 - $(python_gen_cond_dep '
56 - dev-python/bitstring[${PYTHON_USEDEP}]
57 - dev-python/cryptography[${PYTHON_USEDEP}]
58 - >=dev-python/ecdsa-0.16.0[${PYTHON_USEDEP}]
59 - dev-python/pyserial[${PYTHON_USEDEP}]
60 - dev-python/reedsolomon[${PYTHON_USEDEP}]
61 - ')
62 -"
63 -BDEPEND="
64 - $(python_gen_cond_dep '
65 - dev-python/wheel[${PYTHON_USEDEP}]
66 - ')
67 - test? ( $(python_gen_cond_dep '
68 - dev-python/coverage[${PYTHON_USEDEP}]
69 - dev-python/pyelftools[${PYTHON_USEDEP}]
70 - ') )
71 -"
72 -
73 -python_test() {
74 - ${EPYTHON} test/test_imagegen.py || die "imagegen test failed with ${EPYTHON}"
75 - ${EPYTHON} test/test_espsecure.py || die "espsecure test failed with ${EPYTHON}"
76 - ${EPYTHON} test/test_espefuse_host.py || die "espefuse_host test failed with ${EPYTHON}"
77 - ${EPYTHON} test/test_merge_bin.py || die "espefuse_host test failed with ${EPYTHON}"
78 - # test/test_esptool.py and test/test_espefuse.py need real hardware connected
79 -}