summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Seifert <soap@gentoo.org>2016-09-24 15:25:09 +0200
committerDavid Seifert <soap@gentoo.org>2016-09-24 15:30:47 +0200
commit04f075b3a4473b33a834114156adb585d41635b8 (patch)
tree54ac15ba1ef3b1f4a2ea275973af7cb006161a47 /sci-misc
parentsci-misc/gato: Version bump to 1.2.2 + EAPI bump 4 -> 6 (diff)
downloadgentoo-04f075b3a4473b33a834114156adb585d41635b8.tar.gz
gentoo-04f075b3a4473b33a834114156adb585d41635b8.tar.bz2
gentoo-04f075b3a4473b33a834114156adb585d41635b8.zip
sci-misc/gato: Remove EAPI=4 ebuild
Package-Manager: portage-2.3.1
Diffstat (limited to 'sci-misc')
-rw-r--r--sci-misc/gato/Manifest1
-rw-r--r--sci-misc/gato/gato-1.1.2.ebuild52
2 files changed, 0 insertions, 53 deletions
diff --git a/sci-misc/gato/Manifest b/sci-misc/gato/Manifest
index 1d23d2c2330e..f2d4513dbc82 100644
--- a/sci-misc/gato/Manifest
+++ b/sci-misc/gato/Manifest
@@ -1,2 +1 @@
-DIST Gato-1.1.2.tar.gz 272060 SHA256 eb700c73cc411be70713d34a936da62fca9c0173f875dba636e726e47dbfcadd SHA512 a0567bc3ddb6060b713f3453f6a89d978da580c97ab28f094b90e82cfc584ba1cd459add0c5f2d32e746fc074ac78b2f3394d752a7bbdf14c8ccdd90b25e5008 WHIRLPOOL 024df3365c169a93cf2850ed571ad04a5e732f0bd3e535bd401881236acf8538aa673ba5dbc6bfa8b40dddab5737de1b863ea2d2029807631114be59c526c550
DIST Gato-1.2.2.tar.gz 274369 SHA256 d353b8af72ad780f0301912f101ea528822d616bea717c7ca84eaeb0609fa42f SHA512 a628827b989f28817bcd427903d09f6571b3c2e571b57242d7c41562e558a00b278e87699565d16bf2584a0c8d33c07bf0a3c5113c9feeff417546a0a712c0c9 WHIRLPOOL 5eb369c6195ecff405e851a8e777a2b9469333031bc849ea03ad957d1370a99940e1887a6b4940a3fbf07968f8c4bed07e93e3c4ac835d72bb33000e9631b76a
diff --git a/sci-misc/gato/gato-1.1.2.ebuild b/sci-misc/gato/gato-1.1.2.ebuild
deleted file mode 100644
index 89d4077712ef..000000000000
--- a/sci-misc/gato/gato-1.1.2.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-PYTHON_DEPEND="2"
-PYTHON_USE_WITH="tk"
-
-inherit eutils python
-
-MYP="Gato-${PV}"
-
-DESCRIPTION="Graph Animation Toolbox"
-HOMEPAGE="http://gato.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}/${MYP}"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # change TKinter call to avoid crashing of X
- sed -i \
- -e 's:self.overrideredirect(1):self.overrideredirect(0):' \
- "${S}"/GatoDialogs.py || die "failed to patch GatoDialogs.py"
-}
-
-src_install() {
- # install python code
- local instdir=$(python_get_sitedir)/${PN}
- insinto ${instdir}
- doins *.py
- fperms 755 ${instdir}/{Gato,Gred}.py
- python_convert_shebangs -r 2 "${ED}"
-
- # create symlinks
- dosym ${instdir}/Gato.py /usr/bin/gato
- dosym ${instdir}/Gred.py /usr/bin/gred
-
- # install data files
- insinto /usr/share/${PN}
- doins BFS.* DFS.* sample.cat
-}