dev-python/uEagle: remove unused uEagle

This commit is contained in:
Andreas Billmeier 2022-10-18 01:09:52 +02:00 committed by Andreas Billmeier
parent 02b30060a7
commit 49e8b68c81
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 53 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 1461 Ebuilds in total, 1454 of them have in total 1464 (34 different) licenses assigned.
There are 1460 Ebuilds in total, 1453 of them have in total 1463 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|850|
|MIT|849|
|Apache-2.0|297|
|GPL-3|91|
|BSD|87|

View File

@ -1,3 +0,0 @@
DIST uEagle-0.0.2.tar.gz 3925 BLAKE2B ff42155e760cc874552d6a148f0d66ef8c7d0c7cf4276da85afdcca8157cb2381098a34aca9824b1d69f69c72166ba431f9b72a0a03505f55f0ff5ca9d55d3b3 SHA512 091f6fc7a6ce25ed2f62af8d48cdd82a3aadf8a689f48e16faa8419fca448833130e862740c447ad97a713939d847c6c7f53f5b34590ceaf76eab65bb84e1de4
EBUILD uEagle-0.0.2.ebuild 754 BLAKE2B f56a230a1a9bbd503bd0fe175979a45ad628a891bfa93c72aa53fe66eaf370428bb268caeb43be12444f594a9c8c747bd225d08a96ea853c46c65028bb03fb6a SHA512 ce87eebbd755262d845b9a4a415516322c5250875b583e36c56bfb2d19a7250fadd42ee48834cdb1a3148a3a24fb03c7ec90c17d421915d1f558251ef3fc2424
MISC metadata.xml 448 BLAKE2B 91e9f4537355e799d0e1d48f2eeedeb388e3ac0b980c2e3463dd31686c41d6c42b956111098f83137705fc8f660c2db5539f3e84c91cbef0dba4f31e0357b46e SHA512 7f40cad82e5b2ac2d516f9c4b182ebbfa8d2250a8b563f9bf077e7b49a5e989fa6ebba525e2e1069b329f2a200e30fb77e9bde1ffc18dd4801cfb7510763b354

View File

@ -1,15 +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">uEagle</remote-id>
<maintainer status="unknown">
<email>joe@jcalbert.com</email>
<name>Joseph Albert</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="Tool to read data from Rainforest Legacy Eagle."
HOMEPAGE="https://github.com/jcalbert/uEagle https://pypi.org/project/uEagle/"
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.md"
RDEPEND="dev-python/requests[${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
}