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 7C49E138330 for ; Mon, 5 Sep 2016 16:40:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C9AA2E0838; Mon, 5 Sep 2016 16:40:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 39F30E0838 for ; Mon, 5 Sep 2016 16:40: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 7E196340931 for ; Mon, 5 Sep 2016 16:40:11 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 509BE246F for ; Mon, 5 Sep 2016 16:40:09 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1473093500.ac40477c169947c524c081e43907781aaea5c1d8.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/visual/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/visual/visual-5.74.ebuild X-VCS-Directories: dev-python/visual/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: ac40477c169947c524c081e43907781aaea5c1d8 X-VCS-Branch: master Date: Mon, 5 Sep 2016 16:40:09 +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: 14790d54-112e-4f25-9c5c-d3a4f096a59a X-Archives-Hash: 23101c2ce301c99a00dd3e2413bff976 commit: ac40477c169947c524c081e43907781aaea5c1d8 Author: Manuel Rüger gentoo org> AuthorDate: Mon Sep 5 16:38:20 2016 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Mon Sep 5 16:38:20 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac40477c dev-python/visual: Remove old Package-Manager: portage-2.3.0 dev-python/visual/visual-5.74.ebuild | 85 ------------------------------------ 1 file changed, 85 deletions(-) diff --git a/dev-python/visual/visual-5.74.ebuild b/dev-python/visual/visual-5.74.ebuild deleted file mode 100644 index 5ac636d..00000000 --- a/dev-python/visual/visual-5.74.ebuild +++ /dev/null @@ -1,85 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.5 3.* *-jython 2.7-pypy-*" -PYTHON_EXPORT_PHASE_FUNCTIONS="1" - -inherit eutils flag-o-matic multilib python versionator - -MY_P="${PN}-$(delete_version_separator 2)_release" - -DESCRIPTION="Real-time 3D graphics library for Python" -HOMEPAGE="http://www.vpython.org/" -SRC_URI="http://www.vpython.org/contents/download/${MY_P}.tar.bz2" - -LICENSE="HPND Boost-1.0" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc examples" - -RDEPEND=">=dev-cpp/gtkglextmm-1.2 - dev-cpp/libglademm - >=dev-libs/boost-1.48[python] - dev-python/numpy - dev-python/polygon:2 - dev-python/ttfquery" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S="${WORKDIR}/${MY_P}" - -src_prepare() { - # Verbose build. - sed -i \ - -e 's/2\?>>[[:space:]]*\$(LOGFILE).*//' \ - src/Makefile.in || die - - epatch "${FILESDIR}/${P}-boost-1.50.patch" - - python_clean_py-compile_files - python_src_prepare - - preparation() { - sed -i \ - -e "s/-lboost_python/-lboost_python-${PYTHON_ABI}/" \ - -e "s/libboost_python/libboost_python-${PYTHON_ABI}/" \ - src/Makefile.in src/gtk2/makefile - } - python_execute_function -s preparation -} - -src_configure() { - BOOST_PKG="$(best_version ">=dev-libs/boost-1.48")" - BOOST_VER="$(get_version_component_range 1-2 "${BOOST_PKG/*boost-/}")" - BOOST_VER="$(replace_all_version_separators _ "${BOOST_VER}")" - BOOST_INC="${EPREFIX}/usr/include/boost-${BOOST_VER}" - BOOST_LIB="${EPREFIX}/usr/$(get_libdir)/boost-${BOOST_VER}" - - # Specify the include and lib directory for Boost. - append-cxxflags -I${BOOST_INC} - append-ldflags -L${BOOST_LIB} - - python_src_configure \ - --with-example-dir="${EPREFIX}/usr/share/doc/${PF}/examples" \ - --with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html" \ - $(use_enable doc docs) \ - $(use_enable examples) -} - -src_install() { - python_src_install - python_clean_installation_image - - dodoc authors.txt HACKING.txt NEWS.txt -} - -pkg_postinst() { - python_mod_optimize vis visual -} - -pkg_postrm() { - python_mod_cleanup vis visual -}