diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-11-26 11:13:09 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-11-26 11:13:09 +0000 |
commit | 1808ba8eab1e33f654109c5333e47da254b4353a (patch) | |
tree | ac89495c87e0a804759219f4db846215a11be253 /dev-util | |
parent | amd64 stable, bug #287461 (diff) | |
download | gentoo-2-1808ba8eab1e33f654109c5333e47da254b4353a.tar.gz gentoo-2-1808ba8eab1e33f654109c5333e47da254b4353a.tar.bz2 gentoo-2-1808ba8eab1e33f654109c5333e47da254b4353a.zip |
Bump
(Portage version: 2.2_rc52/cvs/Linux x86_64)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/pkgcore-checks/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/pkgcore-checks/pkgcore-checks-0.4.9.ebuild | 44 |
2 files changed, 51 insertions, 1 deletions
diff --git a/dev-util/pkgcore-checks/ChangeLog b/dev-util/pkgcore-checks/ChangeLog index 2313df5bc90c..1d6b43987dc9 100644 --- a/dev-util/pkgcore-checks/ChangeLog +++ b/dev-util/pkgcore-checks/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for dev-util/pkgcore-checks # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgcore-checks/ChangeLog,v 1.38 2009/10/27 08:04:06 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgcore-checks/ChangeLog,v 1.39 2009/11/26 11:13:09 patrick Exp $ + +*pkgcore-checks-0.4.9 (26 Nov 2009) + + 26 Nov 2009; Patrick Lauer <patrick@gentoo.org> + +pkgcore-checks-0.4.9.ebuild: + Bump *pkgcore-checks-0.4.7 (27 Oct 2009) diff --git a/dev-util/pkgcore-checks/pkgcore-checks-0.4.9.ebuild b/dev-util/pkgcore-checks/pkgcore-checks-0.4.9.ebuild new file mode 100644 index 000000000000..f5003d64ec15 --- /dev/null +++ b/dev-util/pkgcore-checks/pkgcore-checks-0.4.9.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/pkgcore-checks/pkgcore-checks-0.4.9.ebuild,v 1.1 2009/11/26 11:13:09 patrick Exp $ + +inherit distutils + +DESCRIPTION="pkgcore developmental repoman replacement" +HOMEPAGE="http://www.pkgcore.org/" +SRC_URI="http://www.pkgcore.org/releases/${PN}/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +RDEPEND=">=sys-apps/pkgcore-0.5.5 + >=dev-python/snakeoil-0.3.3 + >=dev-lang/python-2.4" +DEPEND="${RDEPEND}" + +DOCS="NEWS AUTHORS" + +PYTHON_MODNAME=pkgcore_checks + +src_test() { + "${python}" setup.py test || die "tests returned non zero" +} + +pkg_postinst() { + einfo "updating pkgcore plugin cache" + pplugincache pkgcore_checks.plugins pkgcore.plugins + distutils_pkg_postinst +} + +pkg_postrm() { + python_version + # Careful not to remove this on up/downgrades. + local sitep="${ROOT}"usr/lib/python${PYVER}/site-packages + if [[ -e "${sitep}/pkgcore_checks/plugins/plugincache2" ]] && + ! [[ -e "${sitep}/pkgcore_checks/base.py" ]]; then + rm "${sitep}/pkgcore_checks/plugins/plugincache2" + fi + distutils_pkg_postrm +} |