2013-08-09 23:31:21 +04:00
|
|
|
# Copyright 1999-2013 Gentoo Foundation
|
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2013-12-22 01:02:19 +04:00
|
|
|
# $Header: /var/cvsroot/gentoo-x86/app-admin/lib_users/lib_users-0.6-r1.ebuild,v 1.4 2013/12/21 15:56:10 ago Exp $
|
2013-08-09 23:31:21 +04:00
|
|
|
|
|
|
|
EAPI=5
|
|
|
|
|
|
|
|
PYTHON_COMPAT=( python{2_7,3_2,3_3} )
|
|
|
|
|
|
|
|
inherit python-r1
|
|
|
|
|
|
|
|
DESCRIPTION="Checks /proc for libraries being mapped but marked as deleted"
|
|
|
|
HOMEPAGE="http://schwarzvogel.de/software-misc.shtml"
|
|
|
|
SRC_URI="http://schwarzvogel.de/pkgs/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
2013-12-22 01:02:19 +04:00
|
|
|
KEYWORDS="~alpha amd64 hppa ppc ~x86 ~amd64-linux ~x86-linux"
|
2013-08-09 23:31:21 +04:00
|
|
|
IUSE="test"
|
|
|
|
|
|
|
|
REQUIRED_USE="${PYTHON_REQUIRED_USE}"
|
|
|
|
|
|
|
|
DEPEND="${PYTHON_DEPS}
|
|
|
|
test? ( dev-python/nose[${PYTHON_USEDEP}] )"
|
|
|
|
RDEPEND="${PYTHON_DEPS}"
|
|
|
|
|
|
|
|
src_test() {
|
|
|
|
python_foreach_impl nosetests --verbosity=2
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
python_foreach_impl python_newscript lib_users.py lib_users
|
|
|
|
dodoc README TODO
|
|
|
|
}
|