diff options
author | William Hubbs <williamh@gentoo.org> | 2017-01-03 11:55:55 -0600 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2017-01-05 18:07:57 -0600 |
commit | bef2b64cbf2345a34a581e1a67d06c7fc0005bcf (patch) | |
tree | c8748bccbe30084e5fef9015988ab6f2a022b806 /dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild | |
parent | app-emulation/docker: Version bump to 1.13.0_rc5 (diff) | |
download | gentoo-bef2b64cbf2345a34a581e1a67d06c7fc0005bcf.tar.gz gentoo-bef2b64cbf2345a34a581e1a67d06c7fc0005bcf.tar.bz2 gentoo-bef2b64cbf2345a34a581e1a67d06c7fc0005bcf.zip |
dev-python/MechanicalSoup: initial ebuild
Package-Manager: Portage-2.3.0, Repoman-2.3.1
Diffstat (limited to 'dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild')
-rw-r--r-- | dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild b/dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild new file mode 100644 index 000000000000..fdd6a82e41c2 --- /dev/null +++ b/dev-python/MechanicalSoup/MechanicalSoup-0.6.0.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +PYTHON_COMPAT=( python2_7 python3_{4,5} ) +inherit distutils-r1 + +if [[ ${PV} = *9999* ]]; then + EGIT_REPO_URI="git://github.com/hickford/MechanicalSoup" + inherit git-r3 +else + SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.zip" + KEYWORDS="~amd64" +fi + +DESCRIPTION="a python library for automating interaction with web sites" +HOMEPAGE="https://pypi.python.org/pypi/MechanicalSoup" + +LICENSE="MIT" +SLOT="0" +IUSE="" + +COMMON_DEPEND=" + >=dev-python/beautifulsoup-4.0 + >=dev-python/requests-2.0 + >=dev-python/six-1.4 +" +DEPEND=" +${COMMON_DEPEND} +app-arch/unzip + dev-python/setuptools +" +RDEPEND="${COMMON_DEPEND}" |