blob: d955ad7e5cddbde5a38f7339a649843d731a9c20 (
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
32
33
34
35
36
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/pytz/pytz-2009g.ebuild,v 1.8 2009/07/05 13:06:28 maekke Exp $
NEED_PYTHON=2.3
EAPI=2
inherit eutils distutils
DESCRIPTION="World Timezone Definitions for Python"
HOMEPAGE="http://pytz.sourceforge.net/"
SRC_URI="http://cheeseshop.python.org/packages/source/${PN:0:1}/${PN}/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 ~ppc ppc64 s390 sh sparc x86"
IUSE=""
RDEPEND=">=sys-libs/timezone-data-${PV}"
DEPEND="${RDEPEND}"
DOCS="CHANGES.txt"
src_prepare() {
# use timezone-data zoneinfo
epatch "${FILESDIR}"/${PN}-2008i-zoneinfo.patch
}
src_test() {
PYTHONPATH=. "${python}" pytz/tests/test_tzinfo.py || die "test failed"
}
src_install() {
distutils_src_install
rm -rf "${D}"/usr/lib*/python*/site-packages/pytz/zoneinfo
}
|