cleanup lmnotify

This commit is contained in:
Andreas Billmeier 2022-09-03 13:04:43 +02:00 committed by Andreas Billmeier
parent d9dbdcc350
commit a7d027983e
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 6 additions and 41 deletions

View File

@ -523,11 +523,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 1863 Ebuilds in total, 1856 of them have in total 1868 (35 different) licenses assigned.
There are 1862 Ebuilds in total, 1855 of them have in total 1867 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1131|
|MIT|1130|
|Apache-2.0|341|
|GPL-3|113|
|BSD|106|

View File

@ -1,5 +1,3 @@
DIST lmnotify-0.0.4.tar.gz 9075 BLAKE2B f4812a1b99395d936d74429551dcfc203b8464756d092f306f98f2220751df023516dab15ff55b92a06397eb966421545b804dafce3d3183e994ab259475184b SHA512 37ed029640f78233b0b081a555cb6c4acf33cfefdb3f3766b380e3a6ff0709b24aa64fdfe01f4489c33974731a90151867baacfad6dba12191d8a947b46f125e
DIST lmnotify-0.0.6.tar.gz 17072 BLAKE2B 443a0e0cbaf7a18fee9a65867246ed4cd4e7e478fd9c2dd517b1a548edf7b866ae4613260dfe941fcdf8882f5b4b00768346473c87f83340fbfc8792488ae733 SHA512 1666e378a9bde4069fc7ba95bbb00250651f1a2f503623f517fa5669632a0b3bec3d07072116c4199387fa1fdb74ef2968c508ed5fceec4804e9ef277b9abe5c
EBUILD lmnotify-0.0.4.ebuild 835 BLAKE2B ac356ca53d4bdc92e52a11f4fd5e5854bead943c89e876b44ca181b92989ea9ccb9afceb64c8b2558f01cc6c59c11876e287649797dacf1d6c4bc32d589b83cc SHA512 9cb52d057a1bfc5db5ec5cf6b19569c206223f1cf4895ef2bcc441567cd06d14683b816055f3df11745bf61926f80fa167568483cebcc92fae50c1bbae9fb349
EBUILD lmnotify-0.0.6.ebuild 835 BLAKE2B ac356ca53d4bdc92e52a11f4fd5e5854bead943c89e876b44ca181b92989ea9ccb9afceb64c8b2558f01cc6c59c11876e287649797dacf1d6c4bc32d589b83cc SHA512 9cb52d057a1bfc5db5ec5cf6b19569c206223f1cf4895ef2bcc441567cd06d14683b816055f3df11745bf61926f80fa167568483cebcc92fae50c1bbae9fb349
EBUILD lmnotify-0.0.4.ebuild 806 BLAKE2B de84666be8c4f3b1e7236deb8611d3f3cf0cfdebf6a015cc2b403af166cd27c1fad2a7eb57de30c877ded17fdcc8342c1a0e3213c8246acedcd52301f9057898 SHA512 96d3ffa09dbf256b81f2457391100f14595e848d1cc7e2cee17380a4cd36838b5b73c7b0539cb36e473d73b5bb01a3a20ff9b558f4000633a6c536a1e8993767
MISC metadata.xml 447 BLAKE2B a0a075a82ba27750b7a3f6765905847de3ce69a243c30c7c619aba62faddc4a15cb1a2ff14e2a1d888c843188fd2ca5203a8989eb5713c156c6a55e865ae0285 SHA512 a696cbb2154ea469c37d1fabadb4c0dc9e74c2d73e26041061c391bf172fe88855d5e48163181eaa91759e749ddea96330a27b4cc414a9959d0acd21a13623f5

View File

@ -1,9 +1,9 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..9} )
PYTHON_COMPAT=( python3_{8..11} )
inherit distutils-r1
@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"

View File

@ -1,33 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..9} )
inherit distutils-r1
DESCRIPTION="A package for sending notifications to LaMetric Time."
HOMEPAGE="https://github.com/keans/lmnotify https://pypi.org/project/lmnotify/"
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="dev-python/requests[${PYTHON_USEDEP}]
dev-python/oauthlib[${PYTHON_USEDEP}]
dev-python/requests-oauthlib[${PYTHON_USEDEP}]"
BDEPEND="
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
}