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: Fri, 03 Jun 2022 11:01:27
Message-Id: 1654254079.da2dbaecc57b288863e9468dcb4e291e98dd74ed.juippis@gentoo
1 commit: da2dbaecc57b288863e9468dcb4e291e98dd74ed
2 Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
3 AuthorDate: Mon May 16 14:29:42 2022 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Fri Jun 3 11:01:19 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2dbaec
7
8 dev-embedded/esptool: remove obsolete unstable versions
9
10 remove esptool-3.2-r1
11 remove esptool-3.3
12
13 Package-Manager: Portage-3.0.30, Repoman-3.0.3
14 Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
15 Closes: https://github.com/gentoo/gentoo/pull/25525
16 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
17
18 dev-embedded/esptool/Manifest | 1 -
19 dev-embedded/esptool/esptool-3.2-r1.ebuild | 46 ------------------------------
20 dev-embedded/esptool/esptool-3.3.ebuild | 46 ------------------------------
21 3 files changed, 93 deletions(-)
22
23 diff --git a/dev-embedded/esptool/Manifest b/dev-embedded/esptool/Manifest
24 index b1095cfe393f..2d772e616a22 100644
25 --- a/dev-embedded/esptool/Manifest
26 +++ b/dev-embedded/esptool/Manifest
27 @@ -1,4 +1,3 @@
28 DIST esptool-3.2.tar.gz 7155428 BLAKE2B f81a8b77f1994599c3302915915e225249a5e735accbe47c8936de47564e47a33ae711df47c57e599d980b450dc4d710f819087a97d086b9d0f15a98622c0da4 SHA512 5e67b3a17190e051d7706ee2dbbe855488765a7bfed15b15f5a04022c3fbf19112905ba6a672c37b1bac5501d45d477cfff07c004cd83b2d1a111430992cefc1
29 DIST esptool-3.3.1.tar.gz 7261340 BLAKE2B c6ee391dcbc331d9f931bfd969333fc3bfc5628d422d52e2963c9d465f4680dca5debaf17cd2f6aca0db9dcc06563fe775d7d6c15dacdff481c52577c26d4364 SHA512 8da34f7b555513d499141ce403f19c3e77b6944eecde440c757faf3bbf5e915e44ff0bcabf1b2cb7f5fe26caa717bb47104ad808c46feaf1dea254d548048095
30 -DIST esptool-3.3.tar.gz 7259717 BLAKE2B b9952dff9a1884cae5325730056673d96bd442c82cd799196d99fe5287b72bc567d312102779f64c4a526c19bd36d0f742b4e81434de8b4dadf406a19bd3d423 SHA512 1f1a43832ae5487c570e49c97ca18831371f5a4ac0d4b260fa8b7356c7af40b8514722ded630a6c84e3d59f7fba78c9d70b291d1fa581fc25ea37204ded44363
31 DIST esptool-4.1.tar.gz 7275429 BLAKE2B d89e0d2b90a9005deea71ba14328c5616062d0ada82c309fa4ad4f4c3861e0683b99e70328d6ae60f0fc0e788e25d6b0a4e39596c1c6cfac0e779840ec796f18 SHA512 b9df8d361fe1a97f0649fed03abc919df1c2ff118dc4dd05abeec641ba2d16e6c308894bd91657768e03a6801ec9e5393e573b4c3016b624e842fef7c6354b41
32
33 diff --git a/dev-embedded/esptool/esptool-3.2-r1.ebuild b/dev-embedded/esptool/esptool-3.2-r1.ebuild
34 deleted file mode 100644
35 index 8cdeb0f03135..000000000000
36 --- a/dev-embedded/esptool/esptool-3.2-r1.ebuild
37 +++ /dev/null
38 @@ -1,46 +0,0 @@
39 -# Copyright 2021-2022 Gentoo Authors
40 -# Distributed under the terms of the GNU General Public License v2
41 -
42 -EAPI=8
43 -
44 -PYTHON_COMPAT=( python3_{8..10} )
45 -DISTUTILS_SINGLE_IMPL=1
46 -
47 -inherit distutils-r1
48 -
49 -DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif ESP8266 and ESP32"
50 -HOMEPAGE="https://github.com/espressif/esptool"
51 -SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
52 -
53 -LICENSE="GPL-2+"
54 -SLOT="0"
55 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
56 -IUSE="test"
57 -RESTRICT="!test? ( test )"
58 -
59 -RDEPEND="
60 - $(python_gen_cond_dep '
61 - dev-python/bitstring[${PYTHON_USEDEP}]
62 - dev-python/cryptography[${PYTHON_USEDEP}]
63 - >=dev-python/ecdsa-0.16.0[${PYTHON_USEDEP}]
64 - dev-python/pyserial[${PYTHON_USEDEP}]
65 - dev-python/reedsolomon[${PYTHON_USEDEP}]
66 - ')
67 -"
68 -BDEPEND="
69 - $(python_gen_cond_dep '
70 - dev-python/wheel[${PYTHON_USEDEP}]
71 - ')
72 - test? ( $(python_gen_cond_dep '
73 - dev-python/coverage[${PYTHON_USEDEP}]
74 - dev-python/pyelftools[${PYTHON_USEDEP}]
75 - ') )
76 -"
77 -
78 -python_test() {
79 - "${EPYTHON}" test/test_imagegen.py || die "imagegen test failed with ${EPYTHON}"
80 - "${EPYTHON}" test/test_espsecure.py || die "espsecure test failed with ${EPYTHON}"
81 - "${EPYTHON}" test/test_espefuse_host.py || die "espefuse_host test failed with ${EPYTHON}"
82 - "${EPYTHON}" test/test_merge_bin.py || die "espefuse_host test failed with ${EPYTHON}"
83 - # test/test_rfc2217.py test/test_esptool.py and test/test_espefuse.py need real hardware connected
84 -}
85
86 diff --git a/dev-embedded/esptool/esptool-3.3.ebuild b/dev-embedded/esptool/esptool-3.3.ebuild
87 deleted file mode 100644
88 index 922aa7b84829..000000000000
89 --- a/dev-embedded/esptool/esptool-3.3.ebuild
90 +++ /dev/null
91 @@ -1,46 +0,0 @@
92 -# Copyright 2021-2022 Gentoo Authors
93 -# Distributed under the terms of the GNU General Public License v2
94 -
95 -EAPI=8
96 -
97 -PYTHON_COMPAT=( python3_{8..10} )
98 -DISTUTILS_SINGLE_IMPL=1
99 -
100 -inherit distutils-r1
101 -
102 -DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif ESP8266 and ESP32"
103 -HOMEPAGE="https://github.com/espressif/esptool"
104 -SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
105 -
106 -LICENSE="GPL-2+"
107 -SLOT="0"
108 -KEYWORDS="~amd64 ~arm ~arm64 ~x86"
109 -IUSE="test"
110 -RESTRICT="!test? ( test )"
111 -
112 -RDEPEND="
113 - $(python_gen_cond_dep '
114 - dev-python/bitstring[${PYTHON_USEDEP}]
115 - dev-python/cryptography[${PYTHON_USEDEP}]
116 - >=dev-python/ecdsa-0.16.0[${PYTHON_USEDEP}]
117 - dev-python/pyserial[${PYTHON_USEDEP}]
118 - dev-python/reedsolomon[${PYTHON_USEDEP}]
119 - ')
120 -"
121 -BDEPEND="
122 - $(python_gen_cond_dep '
123 - dev-python/wheel[${PYTHON_USEDEP}]
124 - ')
125 - test? ( $(python_gen_cond_dep '
126 - dev-python/coverage[${PYTHON_USEDEP}]
127 - dev-python/pyelftools[${PYTHON_USEDEP}]
128 - ') )
129 -"
130 -
131 -python_test() {
132 - "${EPYTHON}" test/test_imagegen.py || die "imagegen test failed with ${EPYTHON}"
133 - "${EPYTHON}" test/test_espsecure.py || die "espsecure test failed with ${EPYTHON}"
134 - "${EPYTHON}" test/test_espefuse_host.py || die "espefuse_host test failed with ${EPYTHON}"
135 - "${EPYTHON}" test/test_merge_bin.py || die "espefuse_host test failed with ${EPYTHON}"
136 - # test/test_esptool.py and test/test_espefuse.py need real hardware connected
137 -}