cleanup getmac-0.8.2

This commit is contained in:
Andreas Billmeier 2022-03-18 21:32:51 +01:00 committed by Andreas Billmeier
parent 9a4b2189cb
commit cadd30edf4
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 4 additions and 37 deletions

View File

@ -496,11 +496,11 @@ From time to time a fresh compile test on empty boxes (one with Python 3.9 and o
## 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 1790 Ebuilds in total, 1782 of them have in total 1791 (34 different) licenses assigned.
There are 1789 Ebuilds in total, 1781 of them have in total 1790 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1078|
|MIT|1077|
|Apache-2.0|330|
|BSD|107|
|GPL-3|105|

View File

@ -1,5 +1,3 @@
DIST getmac-0.8.1.tar.gz 43394 BLAKE2B f200d388f91b2bd46a35aad2bc40b1fd851189f937b790d335c3019a12ce42e1d7fbda3b38a14705063ce265d6ce38c5acb56f9b7cfaa378230be9ab284da538 SHA512 f319f1b56cc8d623c1ec304ff628583f44e7cc24b11db139d1bc97a535b8b1389d2570e9091bea62329894ceb507e960a1983c8ae521f9550257e7b8fdeb1d78
DIST getmac-0.8.2.tar.gz 47639 BLAKE2B 3b4c5c460d56a6483cfc672ccbb15e888d55182aac4c165c87461572e42d1d798925a0538e1d26468b6c4be4b8baec9cdc9b2d9e8420379df45e5b6e82f86cd9 SHA512 92ef648e99cf5d23dd91fe2303d5e2524a5efccbeeeaa2715e56f483e4abac1471cfe4af0c66beac77aecc7bec1ba6c24bc7afd3f2c6d48325d5a2203350f768
EBUILD getmac-0.8.1.ebuild 725 BLAKE2B 1ccc37444df9df2b0b70804e722845a57b122a3d244e40bfe21eb17b8016ac6b165a0a60e6e883eff5fd6bcc3266eb368da6b50a3fc7252d01be83a6d4bae736 SHA512 8c18f3c6d8dd3836bf5ec783a8ab7f15e446ecd10dcd7043ade9854795084938c95e74a478063cfca554c941fa7892d09497cdbb33b43fe19fd533ae4f8bbe88
EBUILD getmac-0.8.2.ebuild 729 BLAKE2B efac8aa05e80cabc8bd07f2422187bb0c0984342c71b6c7bf56a9ecad1db3a3fbefc01affc7d2967f761da1aa9b47aed9ab6b4bbab9f52ccc80cd749c92809fe SHA512 f6dc5bab7b45af231c973b434aa0777238f39f5dcdd1185683229fd9dac1d27d6d6fc22f4393f3e30b6663db7358176c65f5332aeae177ad39806f795f720988
EBUILD getmac-0.8.2.ebuild 727 BLAKE2B 3f692832613a3fdb55f3413926d8d4e41530153403b04a8eddcac0b9b893a68c1d185b4e4d79c0b8ec5b0229c40cae3d0ae7e62d2224dc0aab555ac947bca4bb SHA512 adccd11d0307a36500d7e5ebfe8b36ab6a9446c5f502d13cf44ae01bf9547f117e4cffa3e7078e21fe7758b7be7d6ea77d22090a7f6ba91b0a2d31c8a4832093
MISC metadata.xml 456 BLAKE2B 7d16a026b776477b9f81fee24b7098310060567014c224f08c96c173ab59f8ea01d0332f67030e59d32678751ca3ddf5099f3f0bbfef0d0a2e3043c33ac88f5f SHA512 90cd555ef47a3a17c6bee8cad46df5ff2fcac301a0fe99e090553751a0a6e364ee52e8d25e93ecd7b27027736be7ece34a9e03f8c7e15a6c220a237cfe8c780a

View File

@ -1,31 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6,7,8} )
inherit distutils-r1
DESCRIPTION="Get MAC addresses of remote hosts and local interfaces"
HOMEPAGE="https://github.com/GhostofGoes/getmac https://pypi.org/project/getmac/"
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=""
DEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )