blob: a34c07e6c68c59ca91ddf601e5bcc7182b49aaba (
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
37
38
39
40
41
42
43
44
45
46
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgcore-checks/pkgcore-checks-9999.ebuild,v 1.2 2011/08/06 21:31:34 ferringb Exp $
EAPI="3"
DISTUTILS_SRC_TEST="setup.py"
EGIT_REPO_URI="https://code.google.com/p/pkgcore-checks/"
inherit distutils git-2
DESCRIPTION="pkgcore developmental repoman replacement"
HOMEPAGE="http://www.pkgcore.org/"
SRC_URI=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS=""
IUSE=""
RDEPEND=">=sys-apps/pkgcore-0.5.9
>=dev-python/snakeoil-0.3.6"
DEPEND="${RDEPEND}"
DOCS="AUTHORS NEWS"
PYTHON_MODNAME="pkgcore_checks"
pkg_setup() {
# disable snakeoil 2to3 caching...
unset PY2TO3_CACHEDIR
python_pkg_setup
}
pkg_postinst() {
einfo "updating pkgcore plugin cache"
pplugincache pkgcore_checks.plugins pkgcore.plugins
distutils_pkg_postinst
}
pkg_postrm() {
# Careful not to remove this on up/downgrades.
local sitep="${ROOT}$(python_get_sitedir)"
if [[ -e "${sitep}/pkgcore_checks/plugins/plugincache2" && ! -e "${sitep}/pkgcore_checks/base.py" ]]; then
rm "${sitep}/pkgcore_checks/plugins/plugincache2"
fi
distutils_pkg_postrm
}
|