summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-04-06 01:01:55 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-04-06 01:24:56 +0200
commit8fcb174a5ce2b781ba601cc7f5a9246763665560 (patch)
treeceed10ab73a49b297fde4652895b37d1b15ac844 /dev-python/atom/atom-0.4.1.ebuild
parentsci-biology/qrna: Drop old (diff)
downloadgentoo-8fcb174a5ce2b781ba601cc7f5a9246763665560.tar.gz
gentoo-8fcb174a5ce2b781ba601cc7f5a9246763665560.tar.bz2
gentoo-8fcb174a5ce2b781ba601cc7f5a9246763665560.zip
dev-python/atom: 0.4.1 version bump
Tests either fail or report success with "Ran 0 tests in 0.000s". Not going to carry over the hackish attempt to fix tests from 0.3.10 that only achieves the latter. Package-Manager: Portage-2.3.28, Repoman-2.3.9
Diffstat (limited to 'dev-python/atom/atom-0.4.1.ebuild')
-rw-r--r--dev-python/atom/atom-0.4.1.ebuild33
1 files changed, 33 insertions, 0 deletions
diff --git a/dev-python/atom/atom-0.4.1.ebuild b/dev-python/atom/atom-0.4.1.ebuild
new file mode 100644
index 000000000000..a58ad5387d5a
--- /dev/null
+++ b/dev-python/atom/atom-0.4.1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+inherit distutils-r1 flag-o-matic
+
+DESCRIPTION="Memory efficient Python objects"
+HOMEPAGE="https://github.com/nucleic/atom"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="
+ dev-python/future[${PYTHON_USEDEP}]
+ dev-python/setuptools[${PYTHON_USEDEP}]
+ test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+RESTRICT="test"
+
+python_prepare_all() {
+ append-flags -fno-strict-aliasing
+ distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+ distutils-r1_python_install_all
+}