dev-python/txdbus: remove unused txdbus

This commit is contained in:
2022-10-18 01:05:24 +02:00
committed by Andreas Billmeier
parent 6fa90902d1
commit 3e6cdbcfdc
4 changed files with 2 additions and 54 deletions

View File

@@ -547,11 +547,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 1462 Ebuilds in total, 1455 of them have in total 1465 (34 different) licenses assigned.
There are 1461 Ebuilds in total, 1454 of them have in total 1464 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|851|
|MIT|850|
|Apache-2.0|297|
|GPL-3|91|
|BSD|87|

View File

@@ -1,3 +0,0 @@
DIST txdbus-1.1.2.tar.gz 61352 BLAKE2B 77948dc655ee56ab1d92701a13711426a8d128168b2918bcbabe004f3988eda78d609b8ddee69b181ebb02cd6784c06ae2d6830ddf1471b4e750f4914d65e2a5 SHA512 afb6afc105014469368c38ebd0e15f6378c152f5d339dafe24198d92f42a9b785582fa41e104c57e7b961c8cb380176401e0dc7719757c617d9d898c9d140d17
EBUILD txdbus-1.1.2.ebuild 789 BLAKE2B 905420f3139b767ff50aa4dc5d82ae31f15e50ed5f9901a822e05e5f7fa0646e8bfbaf3927ad70fca1c884671d144df7bd683aad023d0bc9d1562f1e29c776a3 SHA512 f6169b137b9458e46953e20c1803f81dcffc3b032a410395be2c138d8519eadcfcacd1e82df3f252009125c37a65aeb3c0f11894cc3adb357c9d5b46c9674795
MISC metadata.xml 499 BLAKE2B 29c1cd573a413da7e25596e757d28a34a718fa4002611a8c5a32eb8ddef12267c48902e84fb7dd8a7dc98ff496e8aa97bc7de4cba01b8da765631dc408d75313 SHA512 800a59bf4ebbe467657a19e2d6dd2266751449f72620dd4456822d651413e6ed1bca0fbf1fba462c39806511158665da2bd7d5b8fc8e759d21e5d9d698573288

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">txdbus</remote-id>
<doc>https://pythonhosted.org/txdbus/</doc>
<maintainer status="unknown">
<email>tom.cocagne@gmail.com</email>
<name>Tom Cocagne</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@@ -1,33 +0,0 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
inherit distutils-r1
DESCRIPTION="A native Python implementation of the DBus protocol for Twisted applications."
HOMEPAGE="https://github.com/cocagne/txdbus https://pypi.org/project/txdbus/"
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 )"
DOCS="README.rst"
RDEPEND=">=dev-python/twisted-0.1[${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
}