Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-misc/gato/
Date: Sat, 24 Sep 2016 13:31:23
Message-Id: 1474723847.04f075b3a4473b33a834114156adb585d41635b8.soap@gentoo
1 commit: 04f075b3a4473b33a834114156adb585d41635b8
2 Author: David Seifert <soap <AT> gentoo <DOT> org>
3 AuthorDate: Sat Sep 24 13:25:09 2016 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Sat Sep 24 13:30:47 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f075b3
7
8 sci-misc/gato: Remove EAPI=4 ebuild
9
10 Package-Manager: portage-2.3.1
11
12 sci-misc/gato/Manifest | 1 -
13 sci-misc/gato/gato-1.1.2.ebuild | 52 -----------------------------------------
14 2 files changed, 53 deletions(-)
15
16 diff --git a/sci-misc/gato/Manifest b/sci-misc/gato/Manifest
17 index 1d23d2c..f2d4513 100644
18 --- a/sci-misc/gato/Manifest
19 +++ b/sci-misc/gato/Manifest
20 @@ -1,2 +1 @@
21 -DIST Gato-1.1.2.tar.gz 272060 SHA256 eb700c73cc411be70713d34a936da62fca9c0173f875dba636e726e47dbfcadd SHA512 a0567bc3ddb6060b713f3453f6a89d978da580c97ab28f094b90e82cfc584ba1cd459add0c5f2d32e746fc074ac78b2f3394d752a7bbdf14c8ccdd90b25e5008 WHIRLPOOL 024df3365c169a93cf2850ed571ad04a5e732f0bd3e535bd401881236acf8538aa673ba5dbc6bfa8b40dddab5737de1b863ea2d2029807631114be59c526c550
22 DIST Gato-1.2.2.tar.gz 274369 SHA256 d353b8af72ad780f0301912f101ea528822d616bea717c7ca84eaeb0609fa42f SHA512 a628827b989f28817bcd427903d09f6571b3c2e571b57242d7c41562e558a00b278e87699565d16bf2584a0c8d33c07bf0a3c5113c9feeff417546a0a712c0c9 WHIRLPOOL 5eb369c6195ecff405e851a8e777a2b9469333031bc849ea03ad957d1370a99940e1887a6b4940a3fbf07968f8c4bed07e93e3c4ac835d72bb33000e9631b76a
23
24 diff --git a/sci-misc/gato/gato-1.1.2.ebuild b/sci-misc/gato/gato-1.1.2.ebuild
25 deleted file mode 100644
26 index 89d4077..00000000
27 --- a/sci-misc/gato/gato-1.1.2.ebuild
28 +++ /dev/null
29 @@ -1,52 +0,0 @@
30 -# Copyright 1999-2012 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI=4
35 -
36 -PYTHON_DEPEND="2"
37 -PYTHON_USE_WITH="tk"
38 -
39 -inherit eutils python
40 -
41 -MYP="Gato-${PV}"
42 -
43 -DESCRIPTION="Graph Animation Toolbox"
44 -HOMEPAGE="http://gato.sourceforge.net/"
45 -SRC_URI="mirror://sourceforge/${PN}/${MYP}.tar.gz"
46 -
47 -LICENSE="LGPL-2"
48 -SLOT="0"
49 -KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
50 -IUSE=""
51 -
52 -S="${WORKDIR}/${MYP}"
53 -
54 -pkg_setup() {
55 - python_set_active_version 2
56 - python_pkg_setup
57 -}
58 -
59 -src_prepare() {
60 - # change TKinter call to avoid crashing of X
61 - sed -i \
62 - -e 's:self.overrideredirect(1):self.overrideredirect(0):' \
63 - "${S}"/GatoDialogs.py || die "failed to patch GatoDialogs.py"
64 -}
65 -
66 -src_install() {
67 - # install python code
68 - local instdir=$(python_get_sitedir)/${PN}
69 - insinto ${instdir}
70 - doins *.py
71 - fperms 755 ${instdir}/{Gato,Gred}.py
72 - python_convert_shebangs -r 2 "${ED}"
73 -
74 - # create symlinks
75 - dosym ${instdir}/Gato.py /usr/bin/gato
76 - dosym ${instdir}/Gred.py /usr/bin/gred
77 -
78 - # install data files
79 - insinto /usr/share/${PN}
80 - doins BFS.* DFS.* sample.cat
81 -}