diff options
author | Michael Weber <xmw@gentoo.org> | 2013-03-18 09:53:41 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2013-03-18 09:53:41 +0000 |
commit | e8a9b28362506530e1fb3dee4332b97ebe539628 (patch) | |
tree | 686d9924c86d0b0d83cc7a8e5f49f215a649e082 /app-admin/bcfg2 | |
parent | Revbump to include dev-python/nose RDEPEND (thanks Alexandr Tiurin, bug 447396) (diff) | |
download | gentoo-2-e8a9b28362506530e1fb3dee4332b97ebe539628.tar.gz gentoo-2-e8a9b28362506530e1fb3dee4332b97ebe539628.tar.bz2 gentoo-2-e8a9b28362506530e1fb3dee4332b97ebe539628.zip |
Drop old versions
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'app-admin/bcfg2')
-rw-r--r-- | app-admin/bcfg2/ChangeLog | 6 | ||||
-rw-r--r-- | app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild | 84 | ||||
-rw-r--r-- | app-admin/bcfg2/bcfg2-1.2.2.ebuild | 79 |
3 files changed, 5 insertions, 164 deletions
diff --git a/app-admin/bcfg2/ChangeLog b/app-admin/bcfg2/ChangeLog index 8ddcfa14d50e..c6156f37cd6d 100644 --- a/app-admin/bcfg2/ChangeLog +++ b/app-admin/bcfg2/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-admin/bcfg2 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/ChangeLog,v 1.29 2013/03/18 09:50:56 xmw Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/ChangeLog,v 1.30 2013/03/18 09:53:41 xmw Exp $ + + 18 Mar 2013; Michael Weber <xmw@gentoo.org> -bcfg2-1.2.2.ebuild, + -bcfg2-1.2.2-r1.ebuild: + Drop old versions *bcfg2-1.2.3-r1 (18 Mar 2013) diff --git a/app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild b/app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild deleted file mode 100644 index fb5e0cd482e7..000000000000 --- a/app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild +++ /dev/null @@ -1,84 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.2-r1.ebuild,v 1.1 2012/06/29 06:28:40 xmw Exp $ - -EAPI="4" - -PYTHON_DEPEND="2:2.6" -SUPPORT_PYTHON_ABIS="1" -# ssl module required. -RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" - -inherit distutils eutils - -DESCRIPTION="configuration management tool" -HOMEPAGE="http://bcfg2.org" -SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="doc cheetah genshi server" - -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx )" -RDEPEND="app-portage/gentoolkit - cheetah? ( dev-python/cheetah ) - genshi? ( dev-python/genshi ) - server? ( - virtual/fam - dev-python/lxml - dev-libs/libgamin[python] )" - -PYTHON_MODNAME="Bcfg2" - -distutils_src_install_post_hook() { - if ! use server; then - rm -f "$(distutils_get_intermediate_installation_image)${EPREFIX}/usr/sbin/bcfg2-"* - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${P}-CVE-2012-3366-Trigger-plugin.patch - distutils_src_prepare -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Building Bcfg2 documentation" - PYTHONPATH="build-$(PYTHON -f --ABI)" \ - sphinx-build doc doc_output || die - fi -} - -src_install() { - distutils_src_install --record=PY_SERVER_LIBS --install-scripts "${EPREFIX}/usr/sbin" - - if ! use server; then - rm -rf "${ED}usr/share/bcfg2" || die - rm -rf "${ED}usr/share/man/man8" || die - else - newinitd "${FILESDIR}/${PN}-server-1.2.0.rc" bcfg2-server - fi - - insinto /etc - doins examples/bcfg2.conf - - if use doc; then - pushd doc_output > /dev/null - insinto /usr/share/doc/${PF}/html - doins -r [a-z]* _images _static || die "Failed to install documentation" - popd > /dev/null - fi -} - -pkg_postinst () { - distutils_pkg_postinst - - if use server; then - einfo "If this is a new installation, you probably need to run:" - einfo " bcfg2-admin init" - fi -} diff --git a/app-admin/bcfg2/bcfg2-1.2.2.ebuild b/app-admin/bcfg2/bcfg2-1.2.2.ebuild deleted file mode 100644 index 9980f8b1ba31..000000000000 --- a/app-admin/bcfg2/bcfg2-1.2.2.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/bcfg2/bcfg2-1.2.2.ebuild,v 1.4 2012/06/29 06:16:32 xmw Exp $ - -EAPI="4" - -PYTHON_DEPEND="2:2.6" -SUPPORT_PYTHON_ABIS="1" -# ssl module required. -RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" - -inherit distutils - -DESCRIPTION="configuration management tool" -HOMEPAGE="http://bcfg2.org" -SRC_URI="ftp://ftp.mcs.anl.gov/pub/bcfg/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris" -IUSE="doc cheetah genshi server" - -DEPEND="dev-python/setuptools - doc? ( dev-python/sphinx )" -RDEPEND="app-portage/gentoolkit - cheetah? ( dev-python/cheetah ) - genshi? ( dev-python/genshi ) - server? ( - virtual/fam - dev-python/lxml - dev-libs/libgamin[python] )" - -PYTHON_MODNAME="Bcfg2" - -distutils_src_install_post_hook() { - if ! use server; then - rm -f "$(distutils_get_intermediate_installation_image)${EPREFIX}/usr/sbin/bcfg2-"* - fi -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Building Bcfg2 documentation" - PYTHONPATH="build-$(PYTHON -f --ABI)" \ - sphinx-build doc doc_output || die - fi -} - -src_install() { - distutils_src_install --record=PY_SERVER_LIBS --install-scripts "${EPREFIX}/usr/sbin" - - if ! use server; then - rm -rf "${ED}usr/share/bcfg2" || die - rm -rf "${ED}usr/share/man/man8" || die - else - newinitd "${FILESDIR}/${PN}-server-1.2.0.rc" bcfg2-server - fi - - insinto /etc - doins examples/bcfg2.conf - - if use doc; then - pushd doc_output > /dev/null - insinto /usr/share/doc/${PF}/html - doins -r [a-z]* _images _static || die "Failed to install documentation" - popd > /dev/null - fi -} - -pkg_postinst () { - distutils_pkg_postinst - - if use server; then - einfo "If this is a new installation, you probably need to run:" - einfo " bcfg2-admin init" - fi -} |