File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 1
1
DIST tololib-0.1.0_beta3.tar.gz 19094 BLAKE2B 8cd320026505fcbf8e98d155ef36a748f908efcd28e886380c246a8cc3450193188cefc4f4a368f90c4998dd0b0db560ef80fa2846b7b90993bc75aa5090bf18 SHA512 0eb0d4026dd013463b94772af2c4458206114c7bb884b151651489ef488bc11020b443bd1ce083e075a9ebea469f3b153e04725ba6a593ba0071d24a61e545f0
2
+ DIST tololib-0.1.0_beta4.tar.gz 19196 BLAKE2B cae3a20f4562a3bea77c8923fccf94f16f4dd8709110ab743b5fdb402e832aab3515a2f3276b82e13c175c40d609e2755c0a2df8a3967dd62c22a31184410ee6 SHA512 70a1ff2e223544589b6ccaceba9dbe236d0ac284312c175a4c7e268a4988ac24f8974215023b5d2548e09e37de587d844c0cee0e10a6cc23bec09fec7be4df69
2
3
EBUILD tololib-0.1.0_beta3.ebuild 736 BLAKE2B d8509f6ff938593ccec1550399a3d705fb3136869c59e6e6f92489b86224342529b29b9fda9261f995bc23f2cfa5b57de30a568b98c3352242132dc845cd3b61 SHA512 ebc4d3adebf03f7c78f1315c58d9f32a57316a2fb9125bdfc87e814f7e1dff4c4d8cf9378121ae6d65efe593f87603a53532e89e27137a837c2397346d0790ea
4
+ EBUILD tololib-0.1.0_beta4.ebuild 767 BLAKE2B b296e90c80532e6894552fc738508b08b8602840ab36540ffe2ce1b3cdb6e93c7850049c2beb3213c84e4e74b0855b4284e59487873a4f92bcb270950694bb17 SHA512 e480704111be8f644cb91d715c6db69cb306906b7777e3e8298998dc807b11961a11868c58fb10bbbc7e96f27665188b78f3fee5f7fedd1dfbddc852182c5749
3
5
MISC metadata.xml 509 BLAKE2B e19f350ce02e50797043ca2f08e48ada185460bbdc24997879ee9198d16042f42ac503cea53b34b0d1e1c8a0125fbfb3371ca9f37f76ed9941dbe2ef05cfd54e SHA512 4ca0262dc9cc226bc286c93cd86dee14d1d054539b8e5e474f1fc38252d047e12d1fe123afdc0f89268bcb366934c095945a5d89ffe916a9a257d27e46314207
Original file line number Diff line number Diff line change
1
+ # Copyright 1999-2023 Gentoo Authors
2
+ # Distributed under the terms of the GNU General Public License v2
3
+
4
+ EAPI=8
5
+
6
+ PYTHON_COMPAT=( python3_{9..11} )
7
+ DISTUTILS_USE_PEP517=setuptools
8
+ inherit distutils-r1
9
+
10
+ DESCRIPTION=" Python Library for Controlling TOLO Sauna/Steam Bath Devices"
11
+ HOMEPAGE=" https://gitlab.com/MatthiasLohr/tololib https://pypi.org/project/tololib/"
12
+ MY_P=" ${PN} -${PV/ _beta/ b} "
13
+ SRC_URI=" mirror://pypi/${P: 0: 1} /${PN} /${MY_P} .tar.gz -> ${P} .tar.gz"
14
+ S=" ${WORKDIR} /${MY_P} "
15
+
16
+ LICENSE=" MIT"
17
+ SLOT=" 0"
18
+ KEYWORDS=" amd64 arm arm64 x86"
19
+ IUSE=" test"
20
+ RESTRICT=" !test? ( test )"
21
+
22
+ DOCS=" README.md"
23
+
24
+ BDEPEND="
25
+ dev-python/setuptools[${PYTHON_USEDEP} ]
26
+ test? (
27
+ dev-python/pytest[${PYTHON_USEDEP} ]
28
+ )"
29
+
30
+ python_test () {
31
+ py.test -v -v || die
32
+ }
33
+
34
+ distutils_enable_tests pytest
You can’t perform that action at this time.
0 commit comments