Gentoo Archives: gentoo-commits

From: Michael Palimaka <kensington@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fslint/
Date: Sun, 20 Sep 2015 15:18:30
Message-Id: 1442762295.b95b7363db24abdaeea48a094abe168f097be349.kensington@gentoo
1 commit: b95b7363db24abdaeea48a094abe168f097be349
2 Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
3 AuthorDate: Sun Sep 20 15:15:57 2015 +0000
4 Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
5 CommitDate: Sun Sep 20 15:18:15 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b95b7363
7
8 app-misc/fslint: remove old.
9
10 Package-Manager: portage-2.2.20.1
11
12 app-misc/fslint/Manifest | 1 -
13 app-misc/fslint/fslint-2.42.ebuild | 62 --------------------------------------
14 2 files changed, 63 deletions(-)
15
16 diff --git a/app-misc/fslint/Manifest b/app-misc/fslint/Manifest
17 index 6c0de11..39c7f63 100644
18 --- a/app-misc/fslint/Manifest
19 +++ b/app-misc/fslint/Manifest
20 @@ -1,2 +1 @@
21 -DIST fslint-2.42.tar.gz 111520 SHA256 babbef4a34f42ab1d396152fd79b4353adc114b2e8d68b838e20a8067c5a3273 SHA512 e32575827769a6e0e1847f6edb4ed5337fc5705d65f327e93510af29cafe11df175eec9924f15e9525ff7c320048940e9341e9e62b4ec717b2630aa405a484e6 WHIRLPOOL fc74fb8ddd9d03283d6f7ec7763c2efef9036242ab5ba487046af14f880f0bc8661cec07614fc61fcee684933614abe49142f6dde4c3ef1d42d0f5292437be67
22 DIST fslint-2.44.tar.gz 116654 SHA256 8491a9cd76725e652ac8fe07288ba1f896d9331e30593c0ff3ab9e82e863f0ae SHA512 9ebb6d23186ed9a7194c854c3f3352cd787f01a71d6197aa0c53f5ff0dcb2e24004cfdddee3345655ae179f4397eba95120a5c08f25c5c0f807dab486226844b WHIRLPOOL d06bfdd29ce00a052de89757244f823fba2a30ef51c09bcf58248f73d2ecd33c859a52f172cf2c9f558d00274011083c2851bf47a5e40771fff6d4a0ba081f9b
23
24 diff --git a/app-misc/fslint/fslint-2.42.ebuild b/app-misc/fslint/fslint-2.42.ebuild
25 deleted file mode 100644
26 index c0968ad..0000000
27 --- a/app-misc/fslint/fslint-2.42.ebuild
28 +++ /dev/null
29 @@ -1,62 +0,0 @@
30 -# Copyright 1999-2014 Gentoo Foundation
31 -# Distributed under the terms of the GNU General Public License v2
32 -# $Id$
33 -
34 -EAPI="5"
35 -
36 -PYTHON_DEPEND="2"
37 -
38 -inherit eutils python
39 -
40 -DESCRIPTION="A utility to find various forms of lint on a filesystem"
41 -HOMEPAGE="http://www.pixelbeat.org/fslint/"
42 -SRC_URI="http://www.pixelbeat.org/${PN}/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="amd64 x86"
47 -IUSE="nls"
48 -
49 -DEPEND="nls? ( sys-devel/gettext )"
50 -RDEPEND="dev-python/pygtk:2"
51 -
52 -src_prepare() {
53 - python_convert_shebangs -r 2 .
54 -
55 - # Change some paths to make ${PN}-gui run when installed in /usr/bin.
56 - sed -e "s:^liblocation=.*$:liblocation='${EROOT}usr/share/${PN}' #Gentoo:" \
57 - -e "s:^locale_base=.*$:locale_base=None #Gentoo:" \
58 - -i ${PN}-gui || die "sed failed"
59 -}
60 -
61 -src_install() {
62 - insinto /usr/share/${PN}
63 - doins ${PN}{.glade,.gladep,_icon.png}
64 -
65 - exeinto /usr/share/${PN}/${PN}
66 - doexe ${PN}/find*
67 - doexe ${PN}/${PN}
68 - doexe ${PN}/zipdir
69 -
70 - exeinto /usr/share/${PN}/${PN}/fstool/
71 - doexe ${PN}/fstool/*
72 -
73 - exeinto /usr/share/${PN}/${PN}/supprt/
74 - doexe ${PN}/supprt/{fslver,getffl,getffp,getfpf,md5sum_approx}
75 -
76 - exeinto /usr/share/${PN}/${PN}/supprt/rmlint
77 - doexe ${PN}/supprt/rmlint/*
78 -
79 - dobin ${PN}-gui
80 -
81 - doicon ${PN}_icon.png
82 - domenu ${PN}.desktop
83 -
84 - dodoc doc/{FAQ,NEWS,README,TODO}
85 - doman man/${PN}{.1,-gui.1}
86 -
87 - if use nls ; then
88 - cd po
89 - emake DESTDIR="${D}" install
90 - fi
91 -}