remove old / dupe watchdog

This commit is contained in:
Andreas Billmeier 2022-03-20 13:51:24 +01:00 committed by Andreas Billmeier
parent 73d30a7099
commit 2fa0a5d4b9
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
5 changed files with 2 additions and 109 deletions

View File

@ -496,12 +496,12 @@ 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 1705 Ebuilds in total, 1698 of them have in total 1706 (35 different) licenses assigned.
There are 1703 Ebuilds in total, 1696 of them have in total 1704 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1033|
|Apache-2.0|315|
|Apache-2.0|313|
|GPL-3|105|
|BSD|92|
|LGPL-3|27|

View File

@ -1,5 +0,0 @@
DIST watchdog-2.1.3.tar.gz 97545 BLAKE2B 6d92e1aed939a17bfb684f2b9fe9dfb49ac982d479d3eeba70f9ff732e4042829eff1a73fd2c584b1ed7813522ba48276b06dadf4c1184965c72aa6838b3ed26 SHA512 9defe3999752119ecabe3d5fb5e5a83eb896aa79fe5ecdf9a6ca34286a65bd2edd11ef3747f10136dab9487045039dcd826e2c6705617e1d1e65400533e7337d
DIST watchdog-2.1.6.tar.gz 99756 BLAKE2B 5ea08660c28f77be02b261a22e6fbfdfaaa59f79af1eecb396fda2e56ab4b5b290dc2c791b31a6841ac6d96c7974d51e846ce0232e9de6728f6031685685e761 SHA512 810ee2c40d92102815685c6e06bee403dfb85df7c8de5f1b7066b27cef2a8e25f506f8d9cc0ff0ec3213b889a7844138692fd9d1ab0c40d0aa2097c55e85f531
EBUILD watchdog-2.1.3.ebuild 1035 BLAKE2B ce82234b6e01ac574f2e7165eac47166596856930f547767452bcd45e283e559b166d043ff7c062fb563d171523f022b2b9d6ec7ec195852b30c55b6a632203f SHA512 60a2d130c1143c616cab9f35fd3bb5dc1b76a0fb7dc49caea10fe8ecac200c327445a275889e5ccddefd14df3db6b89fe2625d5c2107521ed512aace6b2c8854
EBUILD watchdog-2.1.6.ebuild 1035 BLAKE2B ce82234b6e01ac574f2e7165eac47166596856930f547767452bcd45e283e559b166d043ff7c062fb563d171523f022b2b9d6ec7ec195852b30c55b6a632203f SHA512 60a2d130c1143c616cab9f35fd3bb5dc1b76a0fb7dc49caea10fe8ecac200c327445a275889e5ccddefd14df3db6b89fe2625d5c2107521ed512aace6b2c8854
MISC metadata.xml 510 BLAKE2B 53353bd91d99dd901d68e138c9590ccd114331c952ce2c0e5164325b9eb43c1a76470c44054824db0c8abf8fe918e81b38df1b790a31c246dd110e615a36f565 SHA512 cb34dc6241c32fd96d3cde8c9eabc8b93ed1e75213237d1d0e3735d32c9d03f3bb785c1cfc0aa0eb37a208b9b211027fe5d5dcb941856bcbc774116f880b4a41

View File

@ -1,16 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>b@edevau.net</email>
<name>Andreas Billmeier</name>
</maintainer>
<upstream>
<remote-id type="pypi">watchdog</remote-id>
<doc>https://pythonhosted.org/watchdog/</doc>
<maintainer status="unknown">
<email>yesudeep@gmail.com</email>
<name>Yesudeep Mangalapilly</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,43 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 optfeature
DESCRIPTION="Python API and shell utilities to monitor file system events"
HOMEPAGE="https://github.com/gorakhargosh/watchdog"
SRC_URI="https://github.com/gorakhargosh/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ia64 ppc ppc64 riscv sparc x86"
CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dev-python/argh[${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
test? (
>=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest
src_prepare() {
sed -i -e '/--cov/d' setup.cfg || die
default
}
python_test() {
local deselect=()
[[ ${EPYTHON} == pypy3 ]] && deselect+=(
tests/test_inotify_buffer.py::test_move_internal_batch
)
epytest -p no:django ${deselect[@]/#/--deselect }
}
pkg_postinst() {
optfeature "Bash completion" dev-python/argcomplete
}

View File

@ -1,43 +0,0 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1 optfeature
DESCRIPTION="Python API and shell utilities to monitor file system events"
HOMEPAGE="https://github.com/gorakhargosh/watchdog"
SRC_URI="https://github.com/gorakhargosh/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="amd64 ~arm ~arm64 ia64 ppc ppc64 riscv sparc x86"
CDEPEND="dev-python/pyyaml[${PYTHON_USEDEP}]"
RDEPEND="${CDEPEND}
dev-python/argh[${PYTHON_USEDEP}]"
DEPEND="${CDEPEND}
test? (
>=dev-python/pytest-timeout-0.3[${PYTHON_USEDEP}]
)"
distutils_enable_tests pytest
src_prepare() {
sed -i -e '/--cov/d' setup.cfg || die
default
}
python_test() {
local deselect=()
[[ ${EPYTHON} == pypy3 ]] && deselect+=(
tests/test_inotify_buffer.py::test_move_internal_batch
)
epytest -p no:django ${deselect[@]/#/--deselect }
}
pkg_postinst() {
optfeature "Bash completion" dev-python/argcomplete
}