dev-python/pysoma: change SRC_URI, drop olds

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2023-11-01 22:57:16 +01:00 committed by Andreas Billmeier
parent a496fbeedf
commit f304457aca
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 41 deletions

View File

@ -612,11 +612,11 @@ A daily compile test is run at Github with Python 3.9 to catch general faults. E
## Licenses
This repository itself is released under GPL-3 (like most Gentoo repositories), all work on the depending components under the licenses they came from. Perhaps you came here because I filed an issue at your component about a bad or missing license. It is easy to [assign a license](https://docs.github.com/en/communities/setting-up-your-project-for-healthy-contributions/adding-a-license-to-a-repository). During cleanups and license investigations I have been asked often which license to choose. I am not a lawyer, but I can offer the following table, counted over this repository, perhaps this helps your decision. If a package has more than one license listed, all of them are counted.
There are 1934 Ebuilds in total, 1923 of them have in total 1939 (40 different) licenses assigned.
There are 1933 Ebuilds in total, 1922 of them have in total 1938 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1111|
|MIT|1110|
|Apache-2.0|418|
|GPL-3|123|
|BSD|108|

View File

@ -1,5 +1,3 @@
DIST pysoma-0.0.10.tar.gz 1343 BLAKE2B 53a9453c31d1462820ee4f1eb93a96925d0463ea7503ec1ef05dec8af4de0c77eaf0929f79ddc8bea9e3d95513122406a442c4b8c06424f9487a1a9077f77a0f SHA512 d93d3c2e4b07c4d88cc54242e886e63df18ae1204ca88ff2cd7f7afdf8fa0ed7d4d0d9e9b6a3c727d4d20a10376a7052390c94b41bdf3860429f2b1b7b36ab1b
DIST pysoma-0.0.12.tar.gz 2387 BLAKE2B 7e7362a5cafb0d899a0a1ea73b85120d317067fe68abadcfa2eac32f0e692aa502f5220a6b024f3dc602a1c704896702952061491f3a43a95f76ea2acb23bf75 SHA512 3c9d70de3c08f916eb129975cff993e99124819f440f314f7594c5e377c246de93e37831d130cc22b8eb923bbebc1378d226042f3c5d68ec68861907c57b31f6
EBUILD pysoma-0.0.10.ebuild 632 BLAKE2B 4861f1565b0a09d1b23ee8df56b2faa4241922d361fed164f1035826ec9e18fccad936196d2a3a15583c79225d4a252dc73174e1ccd2e13cd61ea7389266f737 SHA512 6f90a9c7c8387efcaf84fd13c089509efc6994c549ef0763a6216c74cd5f227fc4807029a4d7dec7ed4362491ce395326438bb813e968e41199a862d5a41d2b7
EBUILD pysoma-0.0.12.ebuild 698 BLAKE2B 0350ffe910c15203f742efb2b9694fe4a8fc135f65b278dea456996f725778b73f873b9db4882e73cc56ba8b238cd833ed2c4d3783c40ac07d77bd793d42a56d SHA512 bb514c2407ce00a16f2e34adec4f374444de46a88684da8be2df0f2a51a09c11944f62ef94f96127d133a110a25bb528a9f505c43a69e6b3a3c5901b307a890d
EBUILD pysoma-0.0.12.ebuild 612 BLAKE2B b5d981d95d9af7ae668e6dffc064e678ea746650d4dbe84d955bf6fbe7b8d2a84c52bf6f0956cee4504c503337d84a9e38348ee5945e2f5570a286542bb15f89 SHA512 d2c2014593c65c469ca7729559230c0b7b7d261b0977906dc12164009cb0d43c719cd495d973e910f8fa495d39ef906b95a1a65f43035497442576c48383ec7f
MISC metadata.xml 503 BLAKE2B b756da70fe3858cd1a84da5ac48c27a30d20bc0e53466fc0759f54d3b2d8d8c76627d7dc4671643a53946b33c9064c2f5d93df43501683497d868a852a5e7a00 SHA512 cb2490282fe01f88df0ff5f04e1e40a831527b3935a93ab4370504a2f870c09b394dd9e1458316bcd816a3b8c05d16418c39221ec2bbcb2a2b7412584888b7f9

View File

@ -1,32 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
inherit distutils-r1
DESCRIPTION="A simple package for controlling SOMA devices"
HOMEPAGE="https://wazombi.com https://pypi.org/project/pysoma/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -3,13 +3,12 @@
EAPI=8
PYTHON_COMPAT=( python3_{9..11} )
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1
inherit distutils-r1 pypi
DESCRIPTION="A simple package for controlling SOMA devices"
HOMEPAGE="https://github.com/ratsept/pysoma/ https://wazombi.com https://pypi.org/project/pysoma/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
@ -20,7 +19,6 @@ RESTRICT="!test? ( test )"
DOCS="README.md"
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"