forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0_rc1
- Loading branch information
Slawomir Lis
committed
Jun 20, 2016
1 parent
048c74a
commit 160deb9
Showing
4 changed files
with
55 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DIST aldryn-common-1.0.3.tar.gz 15390 SHA256 d64ee35dff13e69ae820aadb58240b8ee7320708ec4be5cf1593efb50ff577be SHA512 22329df11d3c41f320efdf83e62116800533393b6edb974f386fccba879129594b4325a9de9c2a2c10c0861a85985a18ffc71128bc79a6f0287145a0764758e2 WHIRLPOOL acc580e157fa7213a8f95864baba3bd133c5b23f35bfb6780125d4851df0df1c9390ae9c6400c11fa4e1237660cdbe4690f049ddbce816c1a839ba400725138d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# 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,4,5}} ) | ||
|
||
inherit distutils-r1 | ||
|
||
DESCRIPTION="django CMS plugins with common utilities" | ||
HOMEPAGE="https://pypi.python.org/pypi/aldryn-common" | ||
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" | ||
|
||
LICENSE="BSD" | ||
KEYWORDS="~amd64 ~x86" | ||
SLOT="0" | ||
IUSE="test" | ||
|
||
RDEPEND=" | ||
dev-python/aldryn-boilerplates | ||
dev-python/six | ||
>=dev-python/django-sortedm2m-1.2.2 | ||
" | ||
|
||
DEPEND=" | ||
${RDEPEND} | ||
dev-python/setuptools | ||
" | ||
|
||
src_prepare() { | ||
epatch "${FILESDIR}/exclude_tests.patch" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
--- setup.py.old 2016-06-20 13:30:32.787572664 +0200 | ||
+++ setup.py 2016-06-20 13:33:47.360904835 +0200 | ||
@@ -32,7 +32,7 @@ | ||
author='Divio AG', | ||
author_email='[email protected]', | ||
url='https://github.com/aldryn/aldryn-common', | ||
- packages=find_packages(), | ||
+ packages=find_packages(exclude=('tests',)), | ||
license='LICENSE.txt', | ||
platforms=['OS Independent'], | ||
install_requires=REQUIREMENTS, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> | ||
<pkgmetadata> | ||
<maintainer type="person"> | ||
<email>[email protected]</email> | ||
</maintainer> | ||
<upstream> | ||
<remote-id type="pypi">aldryn-common</remote-id> | ||
</upstream> | ||
</pkgmetadata> |