add frozendict-1.2

This commit is contained in:
layman 2019-04-30 07:14:23 -07:00
parent 12d9f97390
commit 7417772912
2 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST frozendict-1.2.tar.gz 2650 BLAKE2B 8c2e10055d60a1fcec76be993c7fa1ba2b445a4880b1f7cc2e1a1be4010912da20bba2e7481fd861445d386814b3523993c9d73786b3f95d3f9e2444c44472ce SHA512 095cf5f6f8b02bf5666e04200431992bf4b3160aae3464d528bc256b1ab643e29dda78fe94d9e8c983dbfe66cd2459e0559122e17b6b8660c0552adc5318b3da
EBUILD frozendict-1.2.ebuild 811 BLAKE2B 4a26375db9ae27fc0c46245ad1ebe5e6dc08e2509c0a7685d30c6d6c43e381c2916958122648d0fa4ef25f50a940b4d3a5a08a28e6dc568831841afc98d01dfd SHA512 52a7f9fc3c00002f25c33ffbf467e702238da271f88d03665234f51ee79d6558fa866da8e1103ee1c1c16a51cdd6dc041a9387c3e0e94c7c441440f6b949173c

View File

@ -0,0 +1,31 @@
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=(python2_7 python3_{5,6,7})
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
}