summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2018-01-13 12:28:20 +1100
committerMichael Palimaka <kensington@gentoo.org>2018-01-13 12:28:29 +1100
commite0e366b3396ac55e31df7af6631f2a980e69fdd4 (patch)
tree919c5b075e0153db10a2dfea449480aacf3b3efd /sci-misc/vitables/vitables-2.1-r1.ebuild
parentsys-apps/razercfg: remove 0.23 and 0.39-r0 (diff)
downloadgentoo-e0e366b3396ac55e31df7af6631f2a980e69fdd4.tar.gz
gentoo-e0e366b3396ac55e31df7af6631f2a980e69fdd4.tar.bz2
gentoo-e0e366b3396ac55e31df7af6631f2a980e69fdd4.zip
sci-misc/vitables: remove 2.1-r1
Package-Manager: Portage-2.3.14, Repoman-2.3.6
Diffstat (limited to 'sci-misc/vitables/vitables-2.1-r1.ebuild')
-rw-r--r--sci-misc/vitables/vitables-2.1-r1.ebuild49
1 files changed, 0 insertions, 49 deletions
diff --git a/sci-misc/vitables/vitables-2.1-r1.ebuild b/sci-misc/vitables/vitables-2.1-r1.ebuild
deleted file mode 100644
index 28354d57da74..000000000000
--- a/sci-misc/vitables/vitables-2.1-r1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_P=ViTables-${PV}
-
-DESCRIPTION="A graphical tool for browsing / editing files in both PyTables and HDF5 formats"
-HOMEPAGE="http://vitables.org/"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="doc examples"
-
-RDEPEND="
- dev-python/pytables[${PYTHON_USEDEP}]
- dev-python/PyQt4[X,${PYTHON_USEDEP}]" # FIXME: check if any other useflags are needed
-DEPEND="${RDEPEND}
- doc? ( dev-python/sphinx )"
-
-S=${WORKDIR}/${MY_P}
-
-PATCHES=( "${FILESDIR}"/${P}-no-docs.patch )
-
-python_compile_all() {
- # fixme: multiple python (anyone cares?)
- use doc && esetup.py build_sphinx
-}
-
-python_install_all() {
- dodir /usr/share/icons/hicolor/scalable/apps
- dodir /usr/share/applications
-
- if use examples; then
- docompress -x /usr/share/doc/${PF}/examples
- DOCS+=( examples )
- fi
- if use doc; then
- HTML_DOCS+=( "${BUILD_DIR}"/sphinx/html/. )
- DOCS+=( "${BUILD_DIR}"/sphinx/latex/*.pdf )
- fi
- distutils-r1_python_install_all
-}