dev-python/jsonfield: version bump.
authorPatrice Clement <monsieurp@gentoo.org>
Sat, 4 Aug 2018 15:48:47 +0000 (17:48 +0200)
committerPatrice Clement <monsieurp@gentoo.org>
Sun, 5 Aug 2018 13:52:52 +0000 (15:52 +0200)
Package-Manager: Portage-2.3.40, Repoman-2.3.9

dev-python/jsonfield/Manifest
dev-python/jsonfield/jsonfield-2.0.2.ebuild [new file with mode: 0644]

index d8e7efe9105081ce06a564d378ebb216bc32b72b..ae288af7f363fd4dc52bbc5911d1e5159d54af00 100644 (file)
@@ -1 +1,2 @@
 DIST jsonfield-1.0.3.tar.gz 7950 BLAKE2B fefaa4f2d3b6abbcb291394baf6147444a6829b15303795856156668a4dc86d4df7a31f7d684783c81467f30de6ca3313b5a86845d088cbbf0ed00bb1cb5a30e SHA512 b69b783266f593d40b588f8deb42828b36fe31f62aba0a80286a24fd788bbea543c74b0566a70fb336fb80105f488a16932bab417a01d3730fa89201f542deb0
+DIST jsonfield-2.0.2.tar.gz 10806 BLAKE2B 67638b380f3356390d93a10b2bd432016ca46d525cbac17c4cc4d1ec901b92d7de00e7ddb6610a97e547728e2c60ddab757e705348b8a8f66ff443b34550f0d5 SHA512 9d4a8a483ea7be4c13c272a959666ca73fdf662ca91373ca5787fc86c0366d074e90fccd61d371898f85e5bf6a1a265820bd9b971e5056c800a27c099835eebf
diff --git a/dev-python/jsonfield/jsonfield-2.0.2.ebuild b/dev-python/jsonfield/jsonfield-2.0.2.ebuild
new file mode 100644 (file)
index 0000000..4ea2a18
--- /dev/null
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1
+
+DESCRIPTION="Reusable Django field that allows you to store validated JSON in your model"
+HOMEPAGE="https://pypi.org/project/jsonfield/ https://github.com/bradjasper/django-jsonfield"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="test? ( dev-python/django[${PYTHON_USEDEP}] )"
+
+python_test() {
+       esetup.py test
+}