You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-python/pgasync/pgasync-2.01-r1.ebuild

33 lines
738 B

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pgasync/pgasync-2.01-r1.ebuild,v 1.2 2015/02/19 09:08:24 ago Exp $
EAPI="5"
PYTHON_COMPAT=( python2_{6,7} )
inherit distutils-r1
DESCRIPTION="An asynchronous API to PostgreSQL for twisted"
HOMEPAGE="http://www.jamwt.com/pgasync/"
SRC_URI="http://www.jamwt.com/pgasync/files/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~x86"
IUSE="doc"
DEPEND="dev-python/twisted-core[${PYTHON_USEDEP}]"
RDEPEND="${DEPEND}"
DOCS="CHANGELOG PKG-INFO README TODO"
src_install() {
distutils-r1_python_install_all
if use doc; then
insinto /usr/share/doc/${PF}
doins -r examples
fi
}