diff options
author | Patrick Lauer <patrick@gentoo.org> | 2016-06-12 10:35:54 +0200 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2016-06-12 11:03:59 +0200 |
commit | e6428253b82e46a72ca3d17c6835f7e329709a9c (patch) | |
tree | 0504e06c99fb93972c4886c9532ccd355832777a /dev-python/lesscpy | |
parent | dev-python/hypothesis: Bump (diff) | |
download | gentoo-e6428253b82e46a72ca3d17c6835f7e329709a9c.tar.gz gentoo-e6428253b82e46a72ca3d17c6835f7e329709a9c.tar.bz2 gentoo-e6428253b82e46a72ca3d17c6835f7e329709a9c.zip |
dev-python/lesscpy: Bump
Package-Manager: portage-2.3.0_rc1
Diffstat (limited to 'dev-python/lesscpy')
-rw-r--r-- | dev-python/lesscpy/Manifest | 1 | ||||
-rw-r--r-- | dev-python/lesscpy/lesscpy-0.11.1.ebuild | 31 |
2 files changed, 32 insertions, 0 deletions
diff --git a/dev-python/lesscpy/Manifest b/dev-python/lesscpy/Manifest index e84ec02b436d..13ab0016c089 100644 --- a/dev-python/lesscpy/Manifest +++ b/dev-python/lesscpy/Manifest @@ -1,2 +1,3 @@ DIST lesscpy-0.10.2.tar.gz 159031 SHA256 ccad1ad2a89ced1875c5ca4e16e5478b791d31fb187fe29f1541859318ed9055 SHA512 9da17a3f5819566c081b94be016ff53a51f8251d7ab55e32fe469eb298a65378fb0db22b34abcf0192b2ba7ad092c2c41dc4a56b01403e1a8e43b107e4fd16bc WHIRLPOOL 600a744534fa284e7978340f773ebb2addeeac4f79ae7a9442271d482f0e5950ac9abe9f7d5f0079e44a5ed446fd710cd3ec3b4ab3c827dc4dd311c6591edebd +DIST lesscpy-0.11.1.tar.gz 159706 SHA256 640357af8599aec24462013c66043fa499de84c94c468b2b464e440a3ecf9b30 SHA512 2cf4e8c3a46cf5e9a7f1dd80f613550fa0e857a8acf9d33d9da2f7a90e1b264bbc18a427668f152ff136b438b19866f016dec91794c721b98ec2f2456dc504e3 WHIRLPOOL 827285d7f87724802ca9ebdf26c8fde3c4c528777acda444453f6ce31848681f9cbe967e9a76edb3cd91a70fc71f1e70b68cba0eb3411ee64d3a0ce50d3b0823 DIST lesscpy-0.9j.tar.gz 32061 SHA256 fa01d435a1ab3abafba683519bdc7aca5e19399e96225e1a8bc1d660b566364d SHA512 9063b89a1ca8dc8424b3b1989bdf7c31de74e26ab8ab5ede1664f53d1ff1946308d9add65236cd5fabc58efcaf1cb5789fa73f0775a83cb70ea9a73d25207a73 WHIRLPOOL 3e885dc03138a2b693c94af775e4386bc8c2bcecb8b6202a5f80ec5b8435798cb0d06934d7e9eb39e0a54c9861c009a673d6ee7990050f1164e239157047140a diff --git a/dev-python/lesscpy/lesscpy-0.11.1.ebuild b/dev-python/lesscpy/lesscpy-0.11.1.ebuild new file mode 100644 index 000000000000..9455ae1ea7c9 --- /dev/null +++ b/dev-python/lesscpy/lesscpy-0.11.1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} ) + +inherit distutils-r1 + +# incomplete tarball +RESTRICT="test" + +DESCRIPTION="A compiler written in Python for the LESS language" +HOMEPAGE="https://pypi.python.org/pypi/lesscpy" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]" +RDEPEND="dev-python/ply[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" + +python_test() { + # https://github.com/lesscpy/lesscpy/issues/74 + esetup.py test + # This is equally effective + # nosetests -v || die "tests failed under ${EPYTHON}" +} |