From 317b1fe9f7abe0741e35f1e9b51f83b9861de21b Mon Sep 17 00:00:00 2001 From: "Andreas Billmeier (@Home/mbp)" Date: Mon, 14 Jun 2021 11:15:37 +0200 Subject: [PATCH] bump django-appconf-1.0.4-r2 --- dev-python/django-appconf/Manifest | 1 + .../django-appconf-1.0.4-r2.ebuild | 32 +++++++++++++++++++ 2 files changed, 33 insertions(+) create mode 100644 dev-python/django-appconf/django-appconf-1.0.4-r2.ebuild diff --git a/dev-python/django-appconf/Manifest b/dev-python/django-appconf/Manifest index 74c65b0..3e9d77d 100644 --- a/dev-python/django-appconf/Manifest +++ b/dev-python/django-appconf/Manifest @@ -1,4 +1,5 @@ AUX docs.patch 713 BLAKE2B dabe5ab114ea18911e9f7de38040348405116486bcb0cb0eeca8d2dcfd4becbdc99ce3a306338b03987064a53adec5fa7acc310f81de8e76d68582d91148d335 SHA512 af930dfca53b0353c7d0af3671a924174b5c2d6dbf3da299a77dfd603e2a510724024e2d6b1d51cb2ad6d7edff3f1bef0813b7f12af1d7628f022e3ee4667996 DIST django-appconf-1.0.4.tar.gz 18733 BLAKE2B 21af3c3913aafe6a7670256bb10e80d0ac286fdeea646f91e8696470be3c1dcfb0b6d04e626f80784de02693583bf0b7a16da658175f8a1d81200a5c837831ee SHA512 0d0a206d43d4c6d7f3dbe5fb6423f5f012dae42bae7459f3ee06501f9c126e73f69a30da5c34c84014e582a7b42f253ebd37ece8b8477963cb5d2357ca095639 EBUILD django-appconf-1.0.4-r1.ebuild 1002 BLAKE2B ae579c951025e8d8f4da704ef00de47654e96ea238670ac1eb5ce3bdfd04600de890afce4b1017f2b10db83a51248268465e80d018ffc6c882119e0f469d5e44 SHA512 6ab60832c12606a410096cf4915e924b194116afe7881c6e9a6a943b4bf904013bdde3137c8b2c8665fc01bb3f0ae7270d3d94cfb6bfb9ee5df074f885c93d80 +EBUILD django-appconf-1.0.4-r2.ebuild 774 BLAKE2B a3e470dacfd3887dd639418e0ee9cd373f9b750686222ab584aef806801b7046fd8b9451517030dbfd19e3b18ed550dbd849405904a3f7e890522d1b734e2016 SHA512 4daef890bfb2c1f7d7d110574370ebc712626e2fac6677c9eabc9efba08d4f17d97bab51b031ff7f638deb3cbb7eea9d08d3b5d3f27f3a5f7214a8daef1e7806 MISC metadata.xml 458 BLAKE2B 229af21eab63ad8da4ce275113db270a6ca512983506fd9e7c4f31344fcfda204fe3976491af3e6d6bfacf9bd079c69398dda6dcadf8e5f5aa65ff1a5b7b7385 SHA512 555b688ddbc718a199e3279f8254f1968959a96d993f790a0e0c7ea66abc3468b99591e205d3300c62ea2b36e9ebbf4694f6e1ac3be6386a5ce3360aa0a65b6b diff --git a/dev-python/django-appconf/django-appconf-1.0.4-r2.ebuild b/dev-python/django-appconf/django-appconf-1.0.4-r2.ebuild new file mode 100644 index 0000000..c57d06a --- /dev/null +++ b/dev-python/django-appconf/django-appconf-1.0.4-r2.ebuild @@ -0,0 +1,32 @@ +# 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="A helper class for handling configuration defaults of packaged apps gracefully." +HOMEPAGE="https://django-appconf.readthedocs.io/ https://pypi.org/project/django-appconf/" +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux" +IUSE="test" + +DOCS="" + +RDEPEND=">=dev-python/django-1.4.1[${PYTHON_USEDEP}]" +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 +}