File tree 3 files changed +37
-2
lines changed
3 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1
1
DIST pylitejet-0.3.0.tar.gz 3123 BLAKE2B 38cfd60e1bfbef979ee65293502adfc272f0278cebdd8eb91e1244b314f942645fe252553e6a4f8d8da6a6020b0b81acd3b038572d963586fd4993ed19a6a77f SHA512 d96d28dec13b6462808e7a1c0223b9bf4f6c179558f668a3a8a31aa6f20dc3ba2335755872ed290d34ca43d553aa8936bb47481b5e22c302c866cd2bbca72691
2
+ DIST pylitejet-0.5.0.tar.gz 10018 BLAKE2B 6dd895a6abd99b262604c75647a24ba27c88b28e3bbf3da670e7284ecd4feba71f163e3ed3438b7988f5705c92e42e5264831805afa615f22268fad5d09d6a30 SHA512 7d4cf231fa5214d5352af1d00c600803abc637b048c094380209267ca707912a1ee4f3ff98108b75a5c8692fd4ff0936b5822b3df5cbd822379dda712d5a8cb8
2
3
EBUILD pylitejet-0.3.0.ebuild 706 BLAKE2B 610b3544afc844586ccf2efa19de02802ce1ea94439f09324f61742503fbd0f4747de245efa629da8ec826451d195a093b0d87b46ad00d589451cde4b0b292ad SHA512 761b8cf6e8f344c06901bff3b66e3072d90137e5ab85d133234f352a1a094a9a7d9cf3238bcc956831b6b81c960503881b7b830cc208e308efe00afd47ce02a2
3
- MISC metadata.xml 509 BLAKE2B a46a707da768ac09043357b0cde2f9f789783922c4e32e534f32cb9fbf2497fb85961b07d009ff0e099dc663326f8856d87f667ef2e59371ea4b1806965a294e SHA512 d7a02683730a23b254b7819d2cf7d942f88d355860078c08fd794e69f3624d4f4f7e35afc30e89f9d0d7338dcb89b168ef7fe157ea5b29a98e82a4248e58aeb7
4
+ EBUILD pylitejet-0.5.0.ebuild 737 BLAKE2B b39395d1579b9ef5e221e60f7ac7d359cf73d2e260bdc0b0ec87e6860a61d2a9912188c2c60be862ccc128d7773c21b4967e45cf161dca7c116df51cb1224c35 SHA512 dc0acb1454bdfcb3c7c757e521d9e8c8816eda5684848c3b695a5456170467a03e897c16a6106d46c9867e12d96939b5aa685da92727324ad5a70f98058fa615
5
+ MISC metadata.xml 513 BLAKE2B 71435f856bc2691a9a12d1b0041e6c3147d82a21a24325ecbf01a7a050c6ff7188de3d5549b0c8447277641e022fad4a91a8a90cfc87ee3d2bb55f41ede05b72 SHA512 5bdb1719ff77fb059c803aea25362dee0359010b3200381710ca538085098d4e99137a143f9333cc26e815e6243a18431c9add963610d1395ee5e405297a83a3
Original file line number Diff line number Diff line change 7
7
</maintainer >
8
8
<upstream >
9
9
<remote-id type =" pypi" >pylitejet</remote-id >
10
- <remote-id type =" github" >joncar/pylitejet</remote-id >
10
+ <remote-id type =" github" >joncar/pylitejet.git </remote-id >
11
11
<maintainer status =" unknown" >
12
12
13
13
<name >Jon Caruana</name >
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=" A library for controlling a LiteJet lighting system."
11
+ HOMEPAGE=" https://github.com/joncar/pylitejet https://pypi.org/project/pylitejet/"
12
+ SRC_URI=" mirror://pypi/${P: 0: 1} /${PN} /${P} .tar.gz"
13
+
14
+ LICENSE=" MIT"
15
+ SLOT=" 0"
16
+ KEYWORDS=" amd64 arm arm64 x86"
17
+ IUSE=" test"
18
+ RESTRICT=" !test? ( test )"
19
+
20
+ DOCS=" README.md"
21
+
22
+ RDEPEND=" dev-python/pyserial[${PYTHON_USEDEP} ]"
23
+ BDEPEND="
24
+ dev-python/setuptools[${PYTHON_USEDEP} ]
25
+ test? (
26
+ dev-python/pytest[${PYTHON_USEDEP} ]
27
+ )"
28
+
29
+ python_test () {
30
+ py.test -v -v || die
31
+ }
32
+
33
+ distutils_enable_tests pytest
You can’t perform that action at this time.
0 commit comments