File tree 2 files changed +43
-0
lines changed
dev-python/motioneye-client
2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 1
1
DIST motioneye-client-0.3.12.tar.gz 12287 BLAKE2B 7cccd9418557824c052acfdcef14691c1542de8b8d3646c81c2d2aab96265a1c7e88c72b4bf1817da88586daefb868a8c61a952df7875a8a68ee8c0a9ac71de6 SHA512 ad476b1540da02d020536b0d13ba4e502331634336c9c8400bdce1f79f7e28232498e92101ddbdb8445faa13627fd79939f0df94b3595d910b5c4c0aff203dc2
2
+ DIST motioneye-client-0.3.14.tar.gz 12752 BLAKE2B 5634919e4f2b380a28757a9a75d0d20e55162be8b12473d1417c77eae36f63e0d8378c343476cab5e52eb55fab0e23dd2c8df242acbcdbe37ddaacbc3b907971 SHA512 82685c3745b3c34ab4af263ae410a0db3b52d4621b890359a4d8d0fd37e3e0a3ce66559c239f7f323af1d2233a9fac93daf640163f4f35b0bbdb3644f23969ab
2
3
EBUILD motioneye-client-0.3.12.ebuild 807 BLAKE2B a6835dfe09f7457284b9b5d566db4774e674c859707b0a400450a012ea0f09953cf489d9c7c766f189a36042cdcf13d8836dfb89288e8ed3f05365ab6b9982de SHA512 c5b87cb8970b8b83536d5dfc3ce5effe9803113e3dec0a8619bedb09689c2dba17fddc076fff7a0381f84344fc0300d465db0362844dedf8b9b07f7c72d78716
4
+ EBUILD motioneye-client-0.3.14.ebuild 1004 BLAKE2B f73ed3e6256ce960da5506dd24bc1b8b2d96f6be07664a799fa87e7e783c72c071b9c07278a2f3accbefd549c16e5b8c020574271ab0f0a3cd1371c29d6438bf SHA512 cf859951b349d7a61cf558c5a55e211f5bd861ec18b8174f0e217576e68c81d2d446c6a592b0a2cc633d5ca6c41c815c6db5899d0668df47831479ca2d01e24a
3
5
MISC metadata.xml 533 BLAKE2B 9deeaaccbfa6a370eedf1a187bee6d22e1777c668bd122fbafebb6f1ea8ab35af6ec8359bdbe0cdafe4171aa776ac3c284dff2528d747d7cf4cfeb23d263702e SHA512 ff7f98b8810e050cd3f789297367528fbaa0605901e52fdaf9a9001b8f08f343fda156d4a20ae55ab531b52f14fdce915921dbb6fa31c7d0cac057c7fa10c24b
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=poetry
8
+ inherit distutils-r1
9
+
10
+ DESCRIPTION=" motionEye client library Python Package"
11
+ HOMEPAGE=" https://github.com/dermotduffy/motioneye-client https://pypi.org/project/motioneye-client/"
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/aiohttp-3.8.1[${PYTHON_USEDEP} ]"
23
+ BDEPEND="
24
+ dev-python/setuptools[${PYTHON_USEDEP} ]
25
+ test? (
26
+ dev-python/pytest[${PYTHON_USEDEP} ]
27
+ dev-python/pytest-cov[${PYTHON_USEDEP} ]
28
+ dev-python/pytest-aiohttp[${PYTHON_USEDEP} ]
29
+ )"
30
+
31
+ python_test () {
32
+ py.test -v -v || die
33
+ }
34
+
35
+ distutils_enable_tests pytest
36
+
37
+ # include = ["motioneye_client/py.typed", "LICENSE"]
38
+ src_prepare () {
39
+ sed ' /include =/c\include = ["motioneye_client/py.typed"]' -i pyproject.toml || die
40
+ eapply_user
41
+ }
You can’t perform that action at this time.
0 commit comments