cleanup georss-client-0.14

This commit is contained in:
2022-03-18 21:27:51 +01:00
committed by Andreas Billmeier
parent f0e4a47237
commit 4b9c68b60f
4 changed files with 4 additions and 47 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 1794 Ebuilds in total, 1786 of them have in total 1795 (34 different) licenses assigned.
There are 1793 Ebuilds in total, 1785 of them have in total 1794 (34 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1078|
|Apache-2.0|334|
|Apache-2.0|333|
|BSD|107|
|GPL-3|105|
|LGPL-3|27|

View File

@@ -1,5 +1,3 @@
DIST georss-client-0.10.tar.gz 16685 BLAKE2B e971c54d0051475640d1763022c4f537fc0689d32816c94ec7f0649e77b3f62ca4bafad0fca97941983e6b2cb6d23be5f582868c2cdef6739c0e5320aa69731f SHA512 40470c2e028ac0cb72106bd9914000642cb8fe9d01c2060213728e8067f439b31ab1b7b9eb6586a0180996c1f74a1e99109e356582097d95127fd2fa1b997253
DIST georss-client-0.14.tar.gz 13797 BLAKE2B 99ef2599895f0e86a3efefa93003a82f6aec7543edd1bde6862d6f08d4fb461c24562692ed27220c0e2e2e792aa189f921ea60753cb51c42921d0fbfad188177 SHA512 665e8591f9de60981d51a7bec8b17e8dbbacd1efa526208a26b25bb41c65b20a20f9608d45918e5c2925493a984b2a2c99823f4a8671badf90201793883160c0
EBUILD georss-client-0.10.ebuild 1124 BLAKE2B 2a15993d846e4890ce8e085fc5a5325e2689cfebb73ae8aac10fdd68b12bc522ab994154671735fa634c7b495a7b19048f7d0dac3d8833b7ad5259fc2996f32a SHA512 70b7915c0892f62d22302dd3da63f6f2054bc648a65a372f8e53e05fdc2450037c79810ccf58f862266b0dea509cbcdb385b19f613b976b21c82c350939a3845
EBUILD georss-client-0.14.ebuild 992 BLAKE2B 67c812268be55f022630a05a428d9c5e957cd48fd8c8fbb307942c17126f94fd1a92a447e6c1094fd50b0995c00c843c4ce40e36603a654eea265354b9ec0bc8 SHA512 3b31cd30682f6e9f23c5e9b438450a6d1ce27e7eec6cd8352a86d46c65e4097c42ba12b7789ef151c9617869884ad65a94e643142093ea54012da9ade6d812f9
EBUILD georss-client-0.14.ebuild 990 BLAKE2B 5eb4b688b38ca01fca9c9a8bcd817ec16dc8bc0e51d208c5f3e50506227e367847b702257b24afb3c1172da2b96f4d5464c3549a050b23377abdd4f6b1f903f8 SHA512 6791e998a58e22b852a4e76a06669f70c8543f58c82f1675f97a7cbe8dc94603c5f07b245b83399686d160d2618fa1f29cbc335e2396c80ad9c4e3e75e35ee7a
MISC metadata.xml 457 BLAKE2B 9ee933f026e49e241e4e7866ef541f10722a9484b6bf28f9af3d1fe7b01b0c64085fcefc3468ebf4029da7e568b46c438c09f51f5ac30c40f8570470d1746e69 SHA512 972d81b4a934ab8697a4c1971ed503eff42dd9a1e0ac3d6a7e13164e5f3a263d7868970bff5966841e976ff6d130f5704060bb79b58154cc8333bdee35d82917

View File

@@ -1,41 +0,0 @@
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_{6..8} )
inherit distutils-r1
DESCRIPTION="A GeoRSS client library."
HOMEPAGE="https://github.com/exxamalte/python-georss-client https://pypi.org/project/georss-client/"
MY_PN=${PN/-/_}
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
S="${WORKDIR}/${MY_PN}-${PV}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
IUSE="test"
RESTRICT="!test? ( test )"
RDEPEND=">=dev-python/haversine-1.0.1[${PYTHON_USEDEP}]
>=dev-python/xmltodict-0.11.0[${PYTHON_USEDEP}]
>=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
>=dev-python/dateparser-0.7.0[${PYTHON_USEDEP}]"
BDEPEND="${REDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
src_prepare() {
sed "s/packages=find_packages()/packages=find_packages(exclude=['tests', 'tests.*'])/g" -i setup.py || die
eapply_user
}
python_test() {
nosetests --verbose || die
py.test -v -v || die
}

View File

@@ -1,7 +1,7 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )