add py3rijndael-0.3.3

This commit is contained in:
2022-04-02 10:57:33 +02:00
committed by Andreas Billmeier
parent 5f33c72ad3
commit e3fb24eada
4 changed files with 49 additions and 2 deletions

View File

@@ -496,11 +496,11 @@ 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 1686 Ebuilds in total, 1678 of them have in total 1686 (35 different) licenses assigned.
There are 1688 Ebuilds in total, 1680 of them have in total 1688 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1034|
|MIT|1036|
|Apache-2.0|301|
|GPL-3|102|
|BSD|90|

View File

@@ -0,0 +1,3 @@
DIST py3rijndael-0.3.3.tar.gz 6620 BLAKE2B 607a11cc49c2fb5ab9e7269b260baad6689c6532a85646755ec475f1ca0bebfa2c61f8967b98f239fcf634acb0dccdcd5307c8d18047814247b9bc02763b7935 SHA512 32117925fa3f266a443051fb71fa66781e086ed7d67baa1580d01194d9ffca3a043b37597b00ed8ab213795ceb7bb4e171ffdab8d69590bb5ceecd06d3772bac
EBUILD py3rijndael-0.3.3.ebuild 716 BLAKE2B 01764c2e436781d6edddba002873f788940c2597818f5de71be2e129ba9df1c89e17e41785ef1fa14e30abaa29cf09de7ece0986b64e438323ac23681010b696 SHA512 a16eee87e981b3a67201d8bf2c35e303ff80af2cdfe9b057b3d3246aa92dbc252c6ffaf34bfa1daa715c6e3c39226dbce90eb6ef543d72aa20261dc5235db3aa
MISC metadata.xml 330 BLAKE2B 16309d2a0c137348265afc685124b0d8a9f69b2a7cebd01a8b832a160767e74193c95674e2da5b9a90f101d613aff6def746d0c1e17413d19c0f83a9d091e289 SHA512 746953952bdbe96de3410388a5c105b9bc4a905e2b7378cff6133ea01955a77e562f04f67c7126e4f75e8f3e9b5324c87824a405438b2d0f9fa44f4da3a9c1d5

View File

@@ -0,0 +1,11 @@
<?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">py3rijndael</remote-id>
</upstream>
</pkgmetadata>

View File

@@ -0,0 +1,33 @@
# 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="Rijndael algorithm library for Python3."
HOMEPAGE="https://github.com/meyt/py3rijndael https://pypi.org/project/py3rijndael/"
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
}