From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 30750139085 for ; Sun, 15 Jan 2017 10:33:42 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 088AA1427C; Sun, 15 Jan 2017 10:33:19 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DAD271427C for ; Sun, 15 Jan 2017 10:33:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 030C93413C3 for ; Sun, 15 Jan 2017 10:33:08 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7868F27D7 for ; Sun, 15 Jan 2017 10:33:04 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1484476313.48beb1af2ded7de108b4bbbb6b7995485b22c461.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pygtkhelpers/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pygtkhelpers/pygtkhelpers-0.4.3.ebuild X-VCS-Directories: dev-python/pygtkhelpers/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 48beb1af2ded7de108b4bbbb6b7995485b22c461 X-VCS-Branch: master Date: Sun, 15 Jan 2017 10:33:04 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 3a6e8ccb-2895-478b-8339-2f2ce0274d14 X-Archives-Hash: 48d5c483e3bfc262911731aaa569fd70 commit: 48beb1af2ded7de108b4bbbb6b7995485b22c461 Author: Pacho Ramos gentoo org> AuthorDate: Sun Jan 15 10:18:26 2017 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Jan 15 10:31:53 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48beb1af dev-python/pygtkhelpers: Drop old Package-Manager: Portage-2.3.3, Repoman-2.3.1 dev-python/pygtkhelpers/pygtkhelpers-0.4.3.ebuild | 56 ----------------------- 1 file changed, 56 deletions(-) diff --git a/dev-python/pygtkhelpers/pygtkhelpers-0.4.3.ebuild b/dev-python/pygtkhelpers/pygtkhelpers-0.4.3.ebuild deleted file mode 100644 index 694571e..00000000 --- a/dev-python/pygtkhelpers/pygtkhelpers-0.4.3.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2:2.6" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 2.5 3.*" - -inherit distutils - -DESCRIPTION="PyGTKHelpers is a library to assist the building of PyGTK applications" -HOMEPAGE="http://packages.python.org/pygtkhelpers/ https://pypi.python.org/pypi/pygtkhelpers" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="LGPL-3" -SLOT="0" -KEYWORDS="amd64 ppc64 x86" -IUSE="doc examples" - -RDEPEND="dev-python/pygtk" -DEPEND="${RDEPEND} - dev-python/setuptools - doc? ( dev-python/sphinx )" - -src_prepare() { - distutils_src_prepare - - # docs/_static/scope.jpg does not exist. - sed -e "s/^\(html_logo =.*\)/#\1/" -i docs/conf.py || die "sed failed" -} - -src_compile() { - distutils_src_compile - - if use doc; then - einfo "Generation of documentation" - "$(PYTHON -f)" setup.py build_sphinx || die "Generation of documentation failed" - fi -} - -src_install() { - distutils_src_install - - if use doc; then - pushd build/sphinx/html > /dev/null - docinto html - cp -R [a-z]* _images _static "${ED}usr/share/doc/${PF}/html" || die "Installation of documentation failed" - popd > /dev/null - fi - - if use examples; then - insinto /usr/share/doc/${PF}/examples - doins -r examples/* || die "Installation of examples failed" - fi -}