mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-05-05 11:00:48 +02:00
pyamf: initial ebuild
This commit is contained in:
parent
a552ec80e4
commit
d50f7e1cae
2 changed files with 44 additions and 0 deletions
2
dev-python/pyamf/Manifest
Normal file
2
dev-python/pyamf/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST pyamf-0.6.2.tar.gz 5273688 SHA256 611639bf59d35108f18b98cbfecbf0bee145ab1fddf34d4d1723ad16ae19d23e SHA512 af0cc7b41061eb4ab911dfedd886df6f798a24fcd755c939d17c93d9aa699b479333992a0e4100a43d33556102e942582374e2ca26a10dae53deb904e96028d6 WHIRLPOOL 568b8d472d4a0c14e84bf6a9e6d29209483705d62c8d11ba34263ebfa458b796b2e4a7258f75ce01ea823e95bb213fb103628949b66ca809bb5e3ba1701e20a4
|
||||
EBUILD pyamf-0.6.2.ebuild 1067 SHA256 94a67bc88a22e4c120eb633d20153c522e70f17df37cbe38a471a2e7f1bf203e SHA512 fb2d55e23a07197840cc48912c05905f1c89b657e7deab13e0e279f5193fe78aabdd2fa27eee8e75d5c2b95777be031605e3094f208d373a04b4bc8220a80f60 WHIRLPOOL 4958b8757d2f0e2c1a876aad7b156d1191eac23930c24523275c0491e206915b9c368264b641854dc6b43a9e450ef3b7c3875b8861e28b77cb6f671e34f97e43
|
||||
42
dev-python/pyamf/pyamf-0.6.2.ebuild
Normal file
42
dev-python/pyamf/pyamf-0.6.2.ebuild
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: blshkv $
|
||||
|
||||
EAPI="5"
|
||||
|
||||
PYTHON_COMPAT=( python2_7 )
|
||||
|
||||
inherit distutils-r1 eutils
|
||||
|
||||
DESCRIPTION="Action Message Format (AMF) support for Python including integration with mutliple frameworks"
|
||||
HOMEPAGE="http://pyamf.org"
|
||||
SRC_URI="https://github.com/hydralabs/pyamf/archive/release-${PV}.tar.gz -> ${P}.tar.gz"
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="c-extension cython django elixir lxml sqlalchemy twisted"
|
||||
|
||||
DEPEND="dev-python/setuptools"
|
||||
|
||||
RDEPEND="cython? ( dev-python/cython )
|
||||
django? ( dev-python/django )
|
||||
elixir? ( dev-lang/elixir )
|
||||
lxml? ( dev-python/lxml )
|
||||
sqlalchemy? ( dev-python/sqlalchemy )
|
||||
twisted? ( dev-python/twisted-core )"
|
||||
|
||||
#optioanl extra deps
|
||||
# 'wsgi': ['wsgiref'],
|
||||
|
||||
S="${WORKDIR}/${PN}-release-${PV}"
|
||||
|
||||
python_configure_all() {
|
||||
if use !c-extension; then
|
||||
mydistutilsargs=( --disable-ext )
|
||||
fi
|
||||
}
|
||||
|
||||
#src_test() {
|
||||
# #trial pyamf || die "test failed"
|
||||
# PYTHONPATH=. "${python}" setup.py test || die "test failed"
|
||||
#}
|
||||
Loading…
Reference in a new issue