diff options
author | Slawomir Lis <slis@gentoo.org> | 2016-10-22 21:18:44 +0200 |
---|---|---|
committer | Slawomir Lis <slis@gentoo.org> | 2016-10-22 21:36:15 +0200 |
commit | 94b1f3de1eb7b408724a1ca72f1259550b892dd5 (patch) | |
tree | 1cdcbfbfec7c20d30408585e1388233c8e8e9283 /dev-python/djangocms-video/djangocms-video-2.0.2.ebuild | |
parent | dev-lang/go: remove 1.7 since it is not stable (diff) | |
download | gentoo-94b1f3de1eb7b408724a1ca72f1259550b892dd5.tar.gz gentoo-94b1f3de1eb7b408724a1ca72f1259550b892dd5.tar.bz2 gentoo-94b1f3de1eb7b408724a1ca72f1259550b892dd5.zip |
dev-python/djangocms-video: version bumpt to 2.0.2
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/djangocms-video/djangocms-video-2.0.2.ebuild')
-rw-r--r-- | dev-python/djangocms-video/djangocms-video-2.0.2.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-python/djangocms-video/djangocms-video-2.0.2.ebuild b/dev-python/djangocms-video/djangocms-video-2.0.2.ebuild new file mode 100644 index 000000000000..2b1ae72a5cf8 --- /dev/null +++ b/dev-python/djangocms-video/djangocms-video-2.0.2.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="6" + +PYTHON_COMPAT=( python{2_7,3_{3,4,5}} ) + +inherit distutils-r1 + +DESCRIPTION="Video plugin for django CMS" +HOMEPAGE="https://pypi.python.org/pypi/djangocms-video" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="test" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + dev-python/setuptools +" + +src_prepare() { + sed -i 's/find_packages()/find_packages(exclude=["tests"])/g' "${S}/setup.py" + eapply_user +} |