diff options
author | Tim Harder <radhermit@gentoo.org> | 2015-07-18 17:01:33 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2015-07-18 17:01:33 +0000 |
commit | 6950046dc8014b551e1de2670eb592a0510d2a7a (patch) | |
tree | 2828938cdda08229ad96568e7e9c2c1bebf82381 /sys-apps/pkgcore | |
parent | Revert py3 targets addition, a bit more work should be done first. (diff) | |
download | gentoo-2-6950046dc8014b551e1de2670eb592a0510d2a7a.tar.gz gentoo-2-6950046dc8014b551e1de2670eb592a0510d2a7a.tar.bz2 gentoo-2-6950046dc8014b551e1de2670eb592a0510d2a7a.zip |
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'sys-apps/pkgcore')
-rw-r--r-- | sys-apps/pkgcore/ChangeLog | 6 | ||||
-rw-r--r-- | sys-apps/pkgcore/pkgcore-0.9.ebuild | 83 | ||||
-rw-r--r-- | sys-apps/pkgcore/pkgcore-9999.ebuild | 4 |
3 files changed, 7 insertions, 86 deletions
diff --git a/sys-apps/pkgcore/ChangeLog b/sys-apps/pkgcore/ChangeLog index bded00b1368d..3129a7c92302 100644 --- a/sys-apps/pkgcore/ChangeLog +++ b/sys-apps/pkgcore/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sys-apps/pkgcore # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.190 2015/07/18 03:42:02 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/ChangeLog,v 1.191 2015/07/18 17:01:33 radhermit Exp $ + + 18 Jul 2015; Tim Harder <radhermit@gentoo.org> -pkgcore-0.9.ebuild, + pkgcore-9999.ebuild: + Remove old. 18 Jul 2015; Tim Harder <radhermit@gentoo.org> pkgcore-9999.ebuild: Enable py3 targets. diff --git a/sys-apps/pkgcore/pkgcore-0.9.ebuild b/sys-apps/pkgcore/pkgcore-0.9.ebuild deleted file mode 100644 index ea4e25710e01..000000000000 --- a/sys-apps/pkgcore/pkgcore-0.9.ebuild +++ /dev/null @@ -1,83 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-0.9.ebuild,v 1.1 2015/04/02 02:34:16 radhermit Exp $ - -EAPI=5 -PYTHON_COMPAT=( python2_7 ) -inherit distutils-r1 - -if [[ ${PV} == *9999 ]] ; then - EGIT_REPO_URI="https://github.com/pkgcore/pkgcore.git" - inherit git-r3 -else - KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" - SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.bz2" -fi - -DESCRIPTION="pkgcore package manager" -HOMEPAGE="https://github.com/pkgcore/pkgcore" - -LICENSE="|| ( BSD GPL-2 )" -SLOT="0" -IUSE="doc test" - -RDEPEND=">=dev-python/snakeoil-0.6.3[${PYTHON_USEDEP}]" -DEPEND="${RDEPEND} - dev-python/pyparsing[${PYTHON_USEDEP}] - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] ) - test? ( $(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' python2_7) ) -" - -pkg_setup() { - # disable snakeoil 2to3 caching... - unset PY2TO3_CACHEDIR - - mydistutilsargs=( - build - --disable-html-docs - --disable-man-pages - ) -} - -python_compile_all() { - esetup.py $(use doc && echo 'build_docs') - - if [[ ${PV} == *9999 ]]; then - esetup.py build_man - ln -s "${BUILD_DIR}/sphinx/man" man || die - fi - - # symlinks generated manpages into source root - # dead symlinks are tolerated - ln -s "${BUILD_DIR}/sphinx/html" html || die -} - -python_test() { - esetup.py test -} - -src_install() { - mydistutilsargs+=( - install - --disable-html-docs - --disable-man-pages - ) - - distutils-r1_src_install -} - -python_install_all() { - local cmds=( - install_man - ) - use doc && cmds+=( - install_docs --path="${ED%/}"/usr/share/doc/${PF}/html - ) - - distutils-r1_python_install "${cmds[@]}" - distutils-r1_python_install_all -} - -pkg_postinst() { - python_foreach_impl pplugincache -} diff --git a/sys-apps/pkgcore/pkgcore-9999.ebuild b/sys-apps/pkgcore/pkgcore-9999.ebuild index 4f149f20da06..47f9a625c527 100644 --- a/sys-apps/pkgcore/pkgcore-9999.ebuild +++ b/sys-apps/pkgcore/pkgcore-9999.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.26 2015/07/18 03:42:02 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/pkgcore/pkgcore-9999.ebuild,v 1.27 2015/07/18 17:01:33 radhermit Exp $ EAPI=5 -PYTHON_COMPAT=( python{2_7,3_3,3_4} ) +PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 if [[ ${PV} == *9999 ]] ; then |