dev-python/ephem: drop olds

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
Andreas Billmeier 2024-04-12 17:31:54 +02:00
parent 701db52697
commit 1aa9812e6b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 5 additions and 37 deletions

View File

@ -617,11 +617,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 1973 Ebuilds in total, 1962 of them have in total 1982 (42 different) licenses assigned.
There are 1972 Ebuilds in total, 1961 of them have in total 1981 (42 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1117|
|MIT|1116|
|Apache-2.0|450|
|GPL-3|128|
|BSD|110|

View File

@ -1,5 +1,3 @@
DIST ephem-4.1.2.tar.gz 1254878 BLAKE2B 6becc0feed6bfa5af102dbc28274f2b5974f608299f8b00995545ecdafd334725f2ce053afd0823917eed08c42d0c6aded82766af8afcd1c641331e443a1ba22 SHA512 98a10545e9209c7b91cadf9e5d11b26249f928f4aa8f8186b212bfcc4dee3ac1e1c656daebb3c819a78ea2373d0287ce838ce8cf0127394580a1c6197bba79e1
DIST ephem-4.1.5.tar.gz 1256147 BLAKE2B 25d4c1190ecd677f8d29f944ad867332f28850d788b2e611f5bf4584a106af04901ad0cfe42a859f772ce4b4286d8668cb0efe579f913d868ed42c60960219d5 SHA512 2ee4a3382e33b6aa629473792821db7cc1c1534d0f6f0ae0a0d04a8e9310817c17d0be0ee4ba6e91e0de19564d301b07e78c0651991c6c4b4abb8755d6c3b988
EBUILD ephem-4.1.2.ebuild 585 BLAKE2B 45a2d7a1389a76b9d6d4f322760485137f04ba3d8f3678a41982612ec00bbbde23ab3067f4fb88114936c0d73961d6bb449968addf8ed6856edcc420c7022eca SHA512 0b2276a08ea4625421b39c37ef48d811e4a314b05527aa911fd7999a1814555a6b90844123d95a18b85d1cf0c1402e2b93798ec0194e73757607dc6807db39e7
EBUILD ephem-4.1.5.ebuild 585 BLAKE2B 45a2d7a1389a76b9d6d4f322760485137f04ba3d8f3678a41982612ec00bbbde23ab3067f4fb88114936c0d73961d6bb449968addf8ed6856edcc420c7022eca SHA512 0b2276a08ea4625421b39c37ef48d811e4a314b05527aa911fd7999a1814555a6b90844123d95a18b85d1cf0c1402e2b93798ec0194e73757607dc6807db39e7
EBUILD ephem-4.1.5.ebuild 585 BLAKE2B 7d332ce7d94f31aebfc34ff7a9273e96fe6cf6af455cd64c00e039fb89e5bb4a1ea704245dc8df2113e185646b688f9c3b64c7a4b0c113459eff525408d03931 SHA512 48776d96101d9bf752818fb504660b00307bbf456b73de19f0e09f0e5fd34a5fbaeeee3a9fc4deb2f2467d7eead88d5cb374a15792297994d46b52831a1e8f58
MISC metadata.xml 518 BLAKE2B 86250a5ed1fe8931cda7b730feb0894680bc16982d2b3a8838312d0580556bdbf6c55043d758ea58e5e58fabdc68dcbc15193c67d388f5d1c706f435daadc06f SHA512 dcbd0dd3960e3eeb360d5e3a3dd0aba203358a73700d176b61a421ab05366ef853fc418d6462e8a3c0e802b018139d17d3a4727526b7111aee3ec801349fc584

View File

@ -1,30 +0,0 @@
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi
DESCRIPTION="Compute positions of the planets and stars"
HOMEPAGE="http://rhodesmill.org/pyephem/ https://pypi.org/project/ephem/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest

View File

@ -1,9 +1,9 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..12} )
DISTUTILS_USE_PEP517=setuptools
inherit distutils-r1 pypi