remove old pyotp-2.3.0

This commit is contained in:
Andreas Billmeier 2022-10-06 07:27:56 +02:00 committed by Andreas Billmeier
parent d4457d1a70
commit 8c58dee40b
Signed by: onkelbeh
GPG Key ID: E6DB12C8C550F3C0
4 changed files with 2 additions and 49 deletions

View File

@ -538,11 +538,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 1920 Ebuilds in total, 1913 of them have in total 1925 (35 different) licenses assigned.
There are 1919 Ebuilds in total, 1912 of them have in total 1924 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1155|
|MIT|1154|
|Apache-2.0|363|
|GPL-3|121|
|BSD|106|

View File

@ -1,3 +0,0 @@
DIST pyotp-2.3.0.tar.gz 11672 BLAKE2B a3d8ca5296b5a8a7aa053b0a0556285c19f335cb1dfb4f892d40fe2d79cc52313af7b31c6ee4afc4eb8c1cd8cb8248442bd1a4868e2bb921a552332a0a283a44 SHA512 4a7a4206134e9a370f7f3c3a9b7e755b75a84e30a320084faf91af5607c4262a6aa76d7b8cefaf284e4cf01faea1df4ca92d871644a14ab56f04693b227485cf
EBUILD pyotp-2.3.0.ebuild 700 BLAKE2B 4979e7c9296331dcdae1c48d69a4baea3bbff5f6e57c00355a9a3531b489e0fbb86e6e94f5aa81de3fff9382f258956d9e8df0605d0e769e72a9e9c152e42315 SHA512 f4c05bfcda0cb7c8d5f38d9682fec35b4f94e0a400891eb095d30803cc6c886c1a9d85deb337cb7c4c8f6377df535109c6ea0540bf2880cab83cfe0fe5207589
MISC metadata.xml 340 BLAKE2B 2ee2eba1adf1120989f9dbb139fd0facbe3d20edb5922be2d5bc5270aba10666f0d348675b9bfc0cea4fd2c4a5fb936efba657aad49864406ed3dddd486852f9 SHA512 ebe2a13ae19d2d5201bee56fbf8b55fb1b7fbcbdb4609ce69a639044554df7c8958ec7af1ad3483c1ec8a382855b096ebf6e9440349fbd32ba6e3229419eb723

View File

@ -1,11 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<upstream>
<remote-id type="pypi">pyotp</remote-id>
<maintainer status="unknown">
<email>kislyuk@gmail.com</email>
<name>PyOTP contributors</name>
</maintainer>
</upstream>
</pkgmetadata>

View File

@ -1,33 +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
DESCRIPTION="Python One Time Password Library"
HOMEPAGE="https://github.com/pyotp/pyotp https://pypi.org/project/pyotp/"
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=""
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
}