blob: 0639be6c93ebe677d9f6285b9322005fe42d2848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
inherit distutils
MY_P="${PN}-hgsnapshot-${PV}"
DESCRIPTION="A collection of extra utilities based on RDFLib, including support for SPARQL"
HOMEPAGE="http://code.google.com/p/rdfextras/"
SRC_URI="http://rdfextras.googlecode.com/files/${MY_P}.zip"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="dev-python/rdflib
dev-python/pyparsing"
DEPEND="${DEPEND}
app-arch/unzip"
# The tests are bugged.
RESTRICT="test"
S="${WORKDIR}/${MY_P}"
|