add dev-python/frozendict-2.0.3

This commit is contained in:
layman 2021-06-27 07:32:10 -07:00
parent 77dd31d635
commit 705d5cb1ba
3 changed files with 34 additions and 2 deletions

View File

@ -1,2 +1,3 @@
DIST frozendict-1.2.tar.gz 2650 BLAKE2B 8c2e10055d60a1fcec76be993c7fa1ba2b445a4880b1f7cc2e1a1be4010912da20bba2e7481fd861445d386814b3523993c9d73786b3f95d3f9e2444c44472ce SHA512 095cf5f6f8b02bf5666e04200431992bf4b3160aae3464d528bc256b1ab643e29dda78fe94d9e8c983dbfe66cd2459e0559122e17b6b8660c0552adc5318b3da
EBUILD frozendict-1.2.ebuild 803 BLAKE2B a5ba81422958c2032ad830475ddf86cf9d34483b121b84ee65cde1b1ce38e6b8ed0deec8e697cb0c466dc388aebbd844481ee7e36bc0b43c7db133a58bd6d840 SHA512 c4e15bd6ff5ae8884ea9c8074973155282061710587b63cf4c081be91658c3f983de9fedff228082924ebd15a87dd424cf03e86b5f79cb7ee106ba1027f201eb
EBUILD frozendict-1.2-r1.ebuild 793 BLAKE2B 33aacc3022e3adb5d1bdfcc10d58507547c734157c98e5e7662c206ffcd6734d67ca434f07e27e30629dcb07df71dafaf6e58923bf1c0a84e074a944c160a248 SHA512 0691c7d075b6a1239c378b8f429ea8f7842ee3157486b5afe1b4c9951e9709f3f16389215bd316b4a268cffb594280198b2a9a13c1710abfc0678ced3889874f
EBUILD frozendict-2.0.3.ebuild 793 BLAKE2B 792ed52ce545297120755659c50787398988587daacb0120b9d1fbf285fe10da6ecc9056343ada53f8298d37bd76d72a92148c7218009da3e7662209b21524de SHA512 9ec0f2016d9a1cf3e83813131c06a9d56ad09fe51b455a19779f4a968266ecde0dec4ad89dd8226ef4c57c5d0803bd6de9e1a45020438e8305c0de5c4fc70f25

View File

@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=(python2_7 python3_{5,6,7})
PYTHON_COMPAT=(python3_{7,8,9})
inherit distutils-r1

View File

@ -0,0 +1,31 @@
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=(python3_{7,8,9})
inherit distutils-r1
DESCRIPTION="immutable wrapper around dictionaries"
HOMEPAGE="https://pypi.org/project/frozendict/"
SRC_URI="https://files.pythonhosted.org/packages/4e/55/a12ded2c426a4d2bee73f88304c9c08ebbdbadb82569ebdd6a0c007cfd08/frozendict-1.2.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~x64-solaris"
RDEPEND="
dev-lang/python
"
DEPEND="${RDEPEND}
dev-python/setuptools[${PYTHON_USEDEP}]
"
# tests connect to various remote sites
RESTRICT="test"
python_test() {
py.test || die
}