diff options
author | Slawomir Lis <slis@gentoo.org> | 2016-10-22 21:24:15 +0200 |
---|---|---|
committer | Slawomir Lis <slis@gentoo.org> | 2016-10-22 21:36:29 +0200 |
commit | 499f81b92c73aae974af1b4ff37cca0e0efbbfbe (patch) | |
tree | 2e8354d4e658ca9ce4cab6af4b8fb27e7989e951 /dev-python/djangocms-picture | |
parent | dev-python/djangocms-snippet: version bump to 1.9.1 (diff) | |
download | gentoo-499f81b92c73aae974af1b4ff37cca0e0efbbfbe.tar.gz gentoo-499f81b92c73aae974af1b4ff37cca0e0efbbfbe.tar.bz2 gentoo-499f81b92c73aae974af1b4ff37cca0e0efbbfbe.zip |
dev-python/djangocms-picture: version bump to 2.0.2
Package-Manager: portage-2.3.2
Diffstat (limited to 'dev-python/djangocms-picture')
-rw-r--r-- | dev-python/djangocms-picture/Manifest | 1 | ||||
-rw-r--r-- | dev-python/djangocms-picture/djangocms-picture-2.0.2.ebuild | 29 |
2 files changed, 30 insertions, 0 deletions
diff --git a/dev-python/djangocms-picture/Manifest b/dev-python/djangocms-picture/Manifest index e4a1e7ffae73..7376c5b69b23 100644 --- a/dev-python/djangocms-picture/Manifest +++ b/dev-python/djangocms-picture/Manifest @@ -1,2 +1,3 @@ DIST djangocms-picture-0.1.tar.gz 33969 SHA256 c9d553c712a062bb8997a2862f8349c545a481ee5bdbde16b8c7cbf35026cbd3 SHA512 ea925d873d32e2a1fdb789bf51758c3d7dacd295bbe217be4fb490b3cd26e452c17895c52713f6405edba83e6dead68596ed5c19d5bca22dff5f762e175e490c WHIRLPOOL 1a1feb08c3f5fda9a3775df4839335be1960a9bcf70ff75b79923197b9b6e09075a9744de9ec474bf1a74ab81e02e602b624728b0598089021857fb7a0cf55bc DIST djangocms-picture-1.0.0.tar.gz 35127 SHA256 38b40f36362114aa8978864c5c9afd13aa904c0d2f92f7a86f22b766ddf2d9ac SHA512 863c7f6d542b5a847627f509e61be90f192fa619d56aac08fa7c6bf1c462124d598d99915834ac746f08b0250477ca6cca69bde6bafb7169aced98757b2e838c WHIRLPOOL e923581fbd0c38cdec771a1fa45730ac0e735bd574166008a5e58197cb37a73bb9c6fb7ed35c4f8ff6fe55bb81bb07eb3f568ff7a85d462e931c3e19a59ec421 +DIST djangocms-picture-2.0.2.tar.gz 24425 SHA256 53de977b83e27173a1d9d582935c461cf9b4e8b7d360168d1d9a7ad81186771d SHA512 7ffa5748a4484e0f5c4d08715ff941e9830f42651c04d386bc443f7308f285af75a0215f0e28ba00d7de1b0f97585693f28ac117097788524e7ecf490a63ec58 WHIRLPOOL e58772dedc9be347cd07f667ad428c1138b348ee27004dd77a72bebe77e6738e2bbb2484b05be0d3d9a095c2b5c34514ee0f0d63ea18d892fb3c2fa42b7f4e21 diff --git a/dev-python/djangocms-picture/djangocms-picture-2.0.2.ebuild b/dev-python/djangocms-picture/djangocms-picture-2.0.2.ebuild new file mode 100644 index 000000000000..0653b4c44631 --- /dev/null +++ b/dev-python/djangocms-picture/djangocms-picture-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="Picture plugin for django CMS" +HOMEPAGE="https://pypi.python.org/pypi/djangocms-picture" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="BSD" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +RDEPEND="" +DEPEND=" + ${RDEPEND} + dev-python/setuptools +" + +src_prepare() { + sed -i 's/find_packages()/find_packages(exclude=["tests"])/g' "${S}/setup.py" + eapply_user +} |