mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-28 09:37:29 -08:00
Set HOMEPAGE to an unofficial package of the Python versions for PyPI. Upstream hasn't moved the home page from Google Code to somewhere else, so better point to an unofficial one than to nothing. Package-Manager: portage-2.3.2
26 lines
526 B
Bash
26 lines
526 B
Bash
# 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_4,3_5} pypy )
|
|
|
|
inherit distutils-r1
|
|
|
|
DESCRIPTION="Diff, match and patch algorithms for plain text"
|
|
HOMEPAGE="https://pypi.python.org/pypi/diff-match-patch/"
|
|
SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
|
|
RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
|
|
DEPEND="${RDEPEND}"
|
|
|
|
python_test() {
|
|
esetup.py test
|
|
}
|