diff --git a/README.md b/README.md index 4f552f029..b7f6c431f 100644 --- a/README.md +++ b/README.md @@ -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 1689 Ebuilds in total, 1682 of them have in total 1690 (35 different) licenses assigned. +There are 1692 Ebuilds in total, 1685 of them have in total 1693 (35 different) licenses assigned. |License| Ebuilds using it| |-------|-----| -|MIT|1030| +|MIT|1033| |Apache-2.0|309| |GPL-3|102| |BSD|90| diff --git a/dev-python/related/Manifest b/dev-python/related/Manifest new file mode 100644 index 000000000..8d9ad8880 --- /dev/null +++ b/dev-python/related/Manifest @@ -0,0 +1,3 @@ +DIST related-0.7.2.tar.gz 27399 BLAKE2B 9ec0028384b332351cd82d0eaeba354f9c47e37154bbf1bb39e7fb6075a5c855f0332f31d5e6caffdb2e1a8019ebe73af5e48d5c029a4ef4275b449be0708952 SHA512 855e6d19d9ba246a0d9424744e420dd9dde7e9971d2f1dcdd1a90f0349f04e43bfaf4a9916637ee062b09a3a60aee30b65bb5f1687f025bf9ffdeb6527342ab6 +EBUILD related-0.7.2.ebuild 944 BLAKE2B 128aef3eeb46a82372f8d44c23aa9bc9283576f9034ae07b157bc2e9e2a0a1cf11c8e380140a7c4609287d0b9c1bc704960be1695d498bb87f22492e0cac0143 SHA512 f80f6bb7d1771928fdddb5370ba17e66c8e4c4100402a8d19a8c649bbc9e4c5c2e9a81d6a02ae224ef89172068bbc32c6914d8ee9dc52b55413ea5c7442aa54b +MISC metadata.xml 326 BLAKE2B fd4d18cf91207137208b5b413111280cd4ceb7e49269d3bcf85b5737a09afe295e0b856776633a97fe8cba42f15736ef667d28085731dc7256a082ca4122b3c4 SHA512 78cb5e207719a072aee5f5268a190feca4b33a27f63e895f2fd763fa76575ab293a2e16570f8308f222e302ee76a8ee4c9d09120ff573b2fe4850d877d28a313 diff --git a/dev-python/related/metadata.xml b/dev-python/related/metadata.xml new file mode 100644 index 000000000..3946092da --- /dev/null +++ b/dev-python/related/metadata.xml @@ -0,0 +1,11 @@ + + + + + b@edevau.net + Andreas Billmeier + + + related + + diff --git a/dev-python/related/related-0.7.2.ebuild b/dev-python/related/related-0.7.2.ebuild new file mode 100644 index 000000000..cf8e2b11c --- /dev/null +++ b/dev-python/related/related-0.7.2.ebuild @@ -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} ) + +inherit distutils-r1 + +DESCRIPTION="Related: Straightforward nested object models in Python" +HOMEPAGE="https://github.com/genomoncology/related https://pypi.org/project/related/" +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=">=dev-python/attrs-19.3.0[${PYTHON_USEDEP}] + dev-python/pyyaml[${PYTHON_USEDEP}] + dev-python/future[${PYTHON_USEDEP}] + dev-python/python-dateutil[${PYTHON_USEDEP}]" +BDEPEND=" + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/nose[${PYTHON_USEDEP}] + dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pytest-runner[${PYTHON_USEDEP}] + )" + +python_test() { + nosetests --verbose || die + py.test -v -v || die +}