dev-python/ciso8601: add 2.1.3

Signed-off-by: Andreas Billmeier <b@edevau.net>
This commit is contained in:
2023-10-22 13:39:37 +02:00
committed by Andreas Billmeier
parent 0fe9ddd431
commit a45c45cb57
3 changed files with 34 additions and 3 deletions

View File

@@ -591,18 +591,18 @@ 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 1834 Ebuilds in total, 1823 of them have in total 1840 (40 different) licenses assigned.
There are 1836 Ebuilds in total, 1825 of them have in total 1842 (40 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1069|
|MIT|1070|
|Apache-2.0|381|
|GPL-3|116|
|BSD|103|
|GPL-2|26|
|LGPL-3|24|
|all-rights-reserved|15|
|BSD-2|11|
|BSD-2|12|
|GPL-3+|11|
|LGPL-3+|11|
|Unlicense|8|

View File

@@ -1,3 +1,5 @@
DIST ciso8601-2.1.3.tar.gz 15726 BLAKE2B 2122c6b677ef0386bfab30fb76d746ff0d22e402464a3e0b928b71d0c22cf9dc26503dba52750015f45b4397ebd1dca16400873d2f67ce38dac2b5fbed2402dc SHA512 9342cf9b2ded1077a2c3906527ae4ac05dfc0e8104f1c85e041d636caa1180df390f01b2d87a33a4c197f4467a25bda1cd0136eb48585b127662cde7d0ffda7e
DIST ciso8601-2.3.0.tar.gz 26839 BLAKE2B 8a672ed93c9eb113eb6baafe1b00168f40d6074f95dc0ac193c996ebb29c080af3ccc6f1eae960ec8ce9df253b613a6729a37c91d8b9d8668c46c384e67dfb6b SHA512 75d7fe17da2b2f670d220074cbb86c3ea8182c793506c5b96504d15d14e5bee9e4d3a44a68532af54fee9791b42583910caab8b2c680f3a56007f6ed9e20d598
EBUILD ciso8601-2.1.3.ebuild 638 BLAKE2B 32aa48f307ae66907bf7a86653a16306e29b5b2607f1cca93f1ac5483154ad94124161754b51c49ce864e48e4140d2dd4b9e51155145bfb66f32f5f7922accb3 SHA512 485ec3aba6c48e41afe7fa410f3665dc27003d247a7262e038c4c91b68f4b44dcd9edfae4eca15e45c2c206a3ee6f5917e469809911ea5aae43d375e49da9829
EBUILD ciso8601-2.3.0.ebuild 679 BLAKE2B 6148ccbe02205573c4c579fdf0bd775424c56bfb238041fe48b03278101945de5e85d3e6e237fa0f40cc6c0d4a196376aa53fc1370bb5265d407a7f85db4af77 SHA512 8521777dc921f20e425ecd6b9c6e8732fadbc7c214e74f70edfa00c61c1388c11f3a73047660264b32e6bcb16c2dbd71d2b799f36922afc523053b30b4b3325c
MISC metadata.xml 385 BLAKE2B a6a00a8cc41a0fb236008df5059f355f19d9f22973f33cb43554efb598bf8a6bac66335a4d6905e2e2625f0b448912ad6174833ede3124e82e355aac011d80d8 SHA512 4c8de3b620f5639a3fe81a898d60bcbf4dcb49dadc7ccc09d247bf2d9b519270f94e005d962bd1a788e163fa3a860800afa5e902c07ea9b7bd9b3a8fbbc5a8ad

View File

@@ -0,0 +1,29 @@
# 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="Fast ISO8601 date time parser for Python written in C"
HOMEPAGE="https://github.com/closeio/ciso8601 https://pypi.org/project/ciso8601/"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 arm arm64 x86"
IUSE="test"
RESTRICT="!test? ( test )"
DOCS="README.rst"
BDEPEND="
test? (
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
)"
python_test() {
py.test -v -v || die
}
distutils_enable_tests pytest