File tree 3 files changed +36
-1
lines changed
3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change 1
1
DIST pysoma-0.0.10.tar.gz 1343 BLAKE2B 53a9453c31d1462820ee4f1eb93a96925d0463ea7503ec1ef05dec8af4de0c77eaf0929f79ddc8bea9e3d95513122406a442c4b8c06424f9487a1a9077f77a0f SHA512 d93d3c2e4b07c4d88cc54242e886e63df18ae1204ca88ff2cd7f7afdf8fa0ed7d4d0d9e9b6a3c727d4d20a10376a7052390c94b41bdf3860429f2b1b7b36ab1b
2
+ DIST pysoma-0.0.12.tar.gz 2387 BLAKE2B 7e7362a5cafb0d899a0a1ea73b85120d317067fe68abadcfa2eac32f0e692aa502f5220a6b024f3dc602a1c704896702952061491f3a43a95f76ea2acb23bf75 SHA512 3c9d70de3c08f916eb129975cff993e99124819f440f314f7594c5e377c246de93e37831d130cc22b8eb923bbebc1378d226042f3c5d68ec68861907c57b31f6
2
3
EBUILD pysoma-0.0.10.ebuild 632 BLAKE2B 4861f1565b0a09d1b23ee8df56b2faa4241922d361fed164f1035826ec9e18fccad936196d2a3a15583c79225d4a252dc73174e1ccd2e13cd61ea7389266f737 SHA512 6f90a9c7c8387efcaf84fd13c089509efc6994c549ef0763a6216c74cd5f227fc4807029a4d7dec7ed4362491ce395326438bb813e968e41199a862d5a41d2b7
3
- MISC metadata.xml 447 BLAKE2B 4ce9f8725e1fcbed7984cfc55909f1d05cd54f2916da001b37ec3777a5f840cc541c1c1609219b52e82cdde8161fc3c6b62dc5c98fb98d400602303e5a77f515 SHA512 8c5af07df507bfcb90d6acd50155ad68a07830f4221e2a3f055e02f213bc201b25bea7763f9a5c102e9c84c817b1ea2fb7dbce4fe63bced56df3bed0dadd8cb6
4
+ EBUILD pysoma-0.0.12.ebuild 698 BLAKE2B 0350ffe910c15203f742efb2b9694fe4a8fc135f65b278dea456996f725778b73f873b9db4882e73cc56ba8b238cd833ed2c4d3783c40ac07d77bd793d42a56d SHA512 bb514c2407ce00a16f2e34adec4f374444de46a88684da8be2df0f2a51a09c11944f62ef94f96127d133a110a25bb528a9f505c43a69e6b3a3c5901b307a890d
5
+ MISC metadata.xml 503 BLAKE2B b756da70fe3858cd1a84da5ac48c27a30d20bc0e53466fc0759f54d3b2d8d8c76627d7dc4671643a53946b33c9064c2f5d93df43501683497d868a852a5e7a00 SHA512 cb2490282fe01f88df0ff5f04e1e40a831527b3935a93ab4370504a2f870c09b394dd9e1458316bcd816a3b8c05d16418c39221ec2bbcb2a2b7412584888b7f9
Original file line number Diff line number Diff line change 7
7
</maintainer >
8
8
<upstream >
9
9
<remote-id type =" pypi" >pysoma</remote-id >
10
+ <remote-id type =" github" >ratsept/pysoma</remote-id >
10
11
<maintainer status =" unknown" >
11
12
12
13
<name >Wazombi Labs</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 simple package for controlling SOMA devices"
11
+ HOMEPAGE=" https://github.com/ratsept/pysoma/ https://wazombi.com https://pypi.org/project/pysoma/"
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
+ BDEPEND="
23
+ dev-python/setuptools[${PYTHON_USEDEP} ]
24
+ test? (
25
+ dev-python/pytest[${PYTHON_USEDEP} ]
26
+ )"
27
+
28
+ python_test () {
29
+ py.test -v -v || die
30
+ }
31
+
32
+ distutils_enable_tests pytest
You can’t perform that action at this time.
0 commit comments