dev-python/temperusb: change SRC_URI, drop olds
Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
parent
31423a8014
commit
c6ba3d0388
@ -612,13 +612,13 @@ 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 1869 Ebuilds in total, 1858 of them have in total 1877 (40 different) licenses assigned.
|
||||
There are 1868 Ebuilds in total, 1857 of them have in total 1876 (40 different) licenses assigned.
|
||||
|
||||
|License| Ebuilds using it|
|
||||
|-------|-----|
|
||||
|MIT|1074|
|
||||
|Apache-2.0|408|
|
||||
|GPL-3|121|
|
||||
|GPL-3|120|
|
||||
|BSD|100|
|
||||
|GPL-2|27|
|
||||
|LGPL-3|24|
|
||||
|
@ -1,5 +1,3 @@
|
||||
DIST temperusb-1.5.3.tar.gz 19983 BLAKE2B 09db940f45f3d75a4d9fc8a0468bbfa1da2e5da5d608d8551dad39927e762d4dc0349bceec020c51aea0ee4a2382cd83648944f7921fe3a7e04d3875b161784a SHA512 99b60956b9923eb342727d500dddc6b14637e57851fa4564a2d8d9df9fd22c85d444d36830cb72d511273d311d782ef4f22a11b91e14620b1a9cb7e0c9de432a
|
||||
DIST temperusb-1.6.0.tar.gz 34344 BLAKE2B 6dc5d0abe8dcb88eac1b6071d84f76a3644d9d916594631466adb86c88c7989692e85bda3d4272e73be46762e63714d1f4ce6cd1b548392b05671b69d2a7038e SHA512 917179e9b3dfbef519cbf94cf7d8ad8073925cc32f2f8f38a99f39da10db22adbefb9b8605f016efb2449c2648fa7eac258dc0a97010beba5ff4d9ee1e3de59a
|
||||
EBUILD temperusb-1.5.3.ebuild 711 BLAKE2B bf14853a3f95d298600235164b75b35d9333731be0005fd8c446e9cda12de3a5f0f07479693b32aab9ccf61a20935a4dd335957d0ade896cc8e68e839a4fdfbb SHA512 763b37f7b0dc28ab97898697cd90175119ab9c10fe8ea0e2225f3bcdb92833d8e18207b8a9c586de9c4552bb19c767962160b027ab6ff38b4a42f8feaad8a153
|
||||
EBUILD temperusb-1.6.0.ebuild 711 BLAKE2B bf14853a3f95d298600235164b75b35d9333731be0005fd8c446e9cda12de3a5f0f07479693b32aab9ccf61a20935a4dd335957d0ade896cc8e68e839a4fdfbb SHA512 763b37f7b0dc28ab97898697cd90175119ab9c10fe8ea0e2225f3bcdb92833d8e18207b8a9c586de9c4552bb19c767962160b027ab6ff38b4a42f8feaad8a153
|
||||
EBUILD temperusb-1.6.0.ebuild 655 BLAKE2B 1b8be125699976632487bd7268166dc44b5ed094e6bfac6ce8ddb4dc064ec6afced3e87e55e7a1ce965ba5677673956a6b7aa4100a1dc7626bcb30495d6a6575 SHA512 e20630abece2a452c226dc7868d7744a30eaf980f8d2aeb13c8e5bebfddcb04492d014df53db2ee6e540089b28ad6d32edf28d1894600113b7c65697c4223f5c
|
||||
MISC metadata.xml 530 BLAKE2B c54f6cffd9acaaacc97f688fea82f13edd0a58f32aebce6757ed1895dbc3f10b3d5b880a871af30698ebe508c0cd9d3e463e61037a7e6e28c414789f0d42782c SHA512 b4c73e4a04122d24be86df812c73bfb8d9d26e6c7bc4baad149953fb822d75a7e12601e9ab0fe07d66ff4905f770cbf9d05e959807f2c814fc58da52f9703725
|
||||
|
@ -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="Reads temperature from TEMPerV1 devices (USB 0c45:7401)"
|
||||
HOMEPAGE="https://github.com/padelt/temper-python https://pypi.org/project/temperusb/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 arm arm64 x86"
|
||||
IUSE="test"
|
||||
RESTRICT="!test? ( test )"
|
||||
|
||||
DOCS="README.md"
|
||||
RDEPEND="dev-python/pyusb[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
||||
python_test() {
|
||||
py.test -v -v || die
|
||||
}
|
||||
|
||||
distutils_enable_tests pytest
|
@ -1,15 +1,13 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
PYTHON_COMPAT=( python3_{9..11} )
|
||||
|
||||
inherit distutils-r1
|
||||
PYTHON_COMPAT=( python3_{10..12} )
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
inherit distutils-r1 pypi
|
||||
|
||||
DESCRIPTION="Reads temperature from TEMPerV1 devices (USB 0c45:7401)"
|
||||
HOMEPAGE="https://github.com/padelt/temper-python https://pypi.org/project/temperusb/"
|
||||
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-3"
|
||||
SLOT="0"
|
||||
@ -20,7 +18,6 @@ RESTRICT="!test? ( test )"
|
||||
DOCS="README.md"
|
||||
RDEPEND="dev-python/pyusb[${PYTHON_USEDEP}]"
|
||||
BDEPEND="
|
||||
dev-python/setuptools[${PYTHON_USEDEP}]
|
||||
test? (
|
||||
dev-python/pytest[${PYTHON_USEDEP}]
|
||||
)"
|
||||
|
Loading…
x
Reference in New Issue
Block a user