update awesomeversion-22.5.2

This commit is contained in:
2022-05-29 14:55:30 +02:00
committed by Andreas Billmeier
parent c11839e7d0
commit 06abcf3f79
3 changed files with 41 additions and 2 deletions

View File

@@ -524,11 +524,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 1749 Ebuilds in total, 1742 of them have in total 1749 (35 different) licenses assigned.
There are 1750 Ebuilds in total, 1743 of them have in total 1750 (35 different) licenses assigned.
|License| Ebuilds using it|
|-------|-----|
|MIT|1067|
|MIT|1068|
|Apache-2.0|314|
|GPL-3|108|
|BSD|96|

View File

@@ -1,5 +1,7 @@
DIST awesomeversion-22.2.0.tar.gz 9500 BLAKE2B c25ee4adac3319c9d2e665abc0a15547fe0b82f330d9fe5647f1b4e084f83e934c1df1570404b58ef5b6e24705872451f766c88380317f03d69c03cedb071b0c SHA512 358df6b2540d91768bec7d2e8fa481b635e5183807dcf551a6b9485268a82d9af77868978cd4efae973eec0bcaa42b8acb8c6412e93d50e5363aeca2457d2198
DIST awesomeversion-22.5.1.tar.gz 9595 BLAKE2B bb9d49552e19d00b64d37764d929c230727bad0c56a7794b1043f0a8e8e41b3ff07ffe88de881a824ea669c8549285f25a030c0c7462a5e73970a614f7d5fbcd SHA512 0a04b8b15722fd067e4afc471fae9a40795ce11020420ea6186e2050dde56cf3666f501e8b1af1d2ba357980d9a7c4e98f592cd6b6604a64b311b327644067e6
DIST awesomeversion-22.5.2.tar.gz 9651 BLAKE2B fce13604fac984a21b26f87cf07c48e902f6ff3f157fd43e197340fb50d77fc230fdb0592ddbe6a45849c22e8a5d5f752ec660890a9f9dd6d7c350ba1c9701a1 SHA512 0e5ac73ee00034737ffd8c563ff0d6c28a394f22506be379e2a176ea8b071f18f7404727ac9eba8f9d25de17aa8d362e0b09f1d3e02e4f5493655b182b22b4fd
EBUILD awesomeversion-22.2.0.ebuild 870 BLAKE2B 995ddd9b45b5244ec59e371eb41e341d0d927c61e4db23c6adc8bec3234ec94fbbee9796e218226f218bc02308f33bed88d04abdee2680c4f9309a728d153c46 SHA512 319fa6f004cc78dc921c0309d51dbc46af38144d2d86b55e6629e85f513343cb7cfcb99a1263fc6dd6388236fcf5bef4d61124098649cd6ba8b51052ec75108b
EBUILD awesomeversion-22.5.1.ebuild 868 BLAKE2B 0c9c47f618d823856904e5f59ad9726c9ee0d673a10fbfcf419f1d9a4befc4fcb50cb305da52eba901f3bfcc9e26cfdb58b1cf05ddbc0ba38a9eacaf8136e039 SHA512 8ad9b6a053957acdc4796d052a43ef4b332567d8d15f83b1f11f3871712aa608cf81b67c5a47c99d1226c75dfd07d14fc7fc098c07d7ab4ff3b936f4b75d06be
EBUILD awesomeversion-22.5.2.ebuild 927 BLAKE2B 24847366ead0d40041a59a24570ac6612847ebae41b1988677f15fb3871a81461fca09975facb0c0258e799976b378a780881379389a2c5dee955e0a3c1b9338 SHA512 91cddb8b9409e7adb5b4ca7a832a12167e6143c3c6ee89917fa80e63e0c4a121ef582c8821d1d245acbf1d76781f4c49c5de39f691192327d051b2122d8dd901
MISC metadata.xml 453 BLAKE2B d96a40378a1c8c1cec8f4097ca07d283618e22a7981b8e869937b59e77d3953e64f505b4d8f60b79ac62e19d109ca2ae42b072b5f875b1b09b3ad147d787b220 SHA512 b618432337bc9957fe60147aa18a14f96d91de742f358cf69c74547a03a013ac5f48c760b5ef03e08df9715015a46aacbb2946f54e7f88e60a4d39684907c657

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
PYTHON_COMPAT=( python3_{8..10} )
DISTUTILS_USE_PEP517=poetry
inherit distutils-r1
DESCRIPTION="One version package to rule them all, One version package to find them, One version package to bring them all, and in the darkness bind them."
HOMEPAGE="https://github.com/ludeeus/awesomeversion https://pypi.org/project/awesomeversion/"
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.md"
RDEPEND=""
BDEPEND="
dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/nose[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
)"
python_test() {
nosetests --verbose || die
py.test -v -v || die
}
distutils_enable_tests pytest