summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2017-06-19 01:11:40 +1000
committerMichael Palimaka <kensington@gentoo.org>2017-06-19 01:11:48 +1000
commitf7c609d02a2e41c2352b90bb7bb77751801fe6a3 (patch)
tree831d84d1e043894e2823aefbd71f1804f8d062b2 /app-misc
parentsys-apps/selinux-python: Have dependency blocker on older policycoreutils ver... (diff)
downloadgentoo-f7c609d02a2e41c2352b90bb7bb77751801fe6a3.tar.gz
gentoo-f7c609d02a2e41c2352b90bb7bb77751801fe6a3.tar.bz2
gentoo-f7c609d02a2e41c2352b90bb7bb77751801fe6a3.zip
app-misc/fslint: remove 2.44-r2
Package-Manager: Portage-2.3.5, Repoman-2.3.2
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/fslint/Manifest1
-rw-r--r--app-misc/fslint/fslint-2.44-r2.ebuild73
2 files changed, 0 insertions, 74 deletions
diff --git a/app-misc/fslint/Manifest b/app-misc/fslint/Manifest
index c67c4eb60b46..6141dec78a52 100644
--- a/app-misc/fslint/Manifest
+++ b/app-misc/fslint/Manifest
@@ -1,2 +1 @@
-DIST fslint-2.44.tar.gz 116654 SHA256 8491a9cd76725e652ac8fe07288ba1f896d9331e30593c0ff3ab9e82e863f0ae SHA512 9ebb6d23186ed9a7194c854c3f3352cd787f01a71d6197aa0c53f5ff0dcb2e24004cfdddee3345655ae179f4397eba95120a5c08f25c5c0f807dab486226844b WHIRLPOOL d06bfdd29ce00a052de89757244f823fba2a30ef51c09bcf58248f73d2ecd33c859a52f172cf2c9f558d00274011083c2851bf47a5e40771fff6d4a0ba081f9b
DIST fslint-2.46.tar.xz 135988 SHA256 f15daebfecfd2eea0d3b48a0193e25974b71dcf1e4b4a33d5a3dcfb7bb9c90cc SHA512 7b6122b5920d37548cfb05bb986cc29a86c7de9f549375923299c23fe19cbc8c6a521feafcf6df6fe0562dae8b6a4e804f24fdf5a833ea2b68308be41a96b696 WHIRLPOOL 2ec6e5e494f140ad3af6b159e0838253851b2b87478b6208030eec7c3c6b178311822b1e45703e6c55bc236ab9e308b2c16e178ea1c4577695c1e34f9e85efe0
diff --git a/app-misc/fslint/fslint-2.44-r2.ebuild b/app-misc/fslint/fslint-2.44-r2.ebuild
deleted file mode 100644
index 80c05769a27a..000000000000
--- a/app-misc/fslint/fslint-2.44-r2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils python-r1
-
-DESCRIPTION="A utility to find various forms of lint on a filesystem"
-HOMEPAGE="http://www.pixelbeat.org/fslint/"
-SRC_URI="http://www.pixelbeat.org/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="nls"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
- dev-python/pygtk:2[${PYTHON_USEDEP}]
- gnome-base/libglade:2.0"
-
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext:* )"
-
-src_prepare() {
- # Change some paths to make ${PN}-gui run when installed in /usr/bin.
- sed -e "s:^liblocation=.*$:liblocation='${EROOT}usr/share/${PN}' #Gentoo:" \
- -e "s:^locale_base=.*$:locale_base=None #Gentoo:" \
- -i ${PN}-gui || die
-}
-
-src_install() {
- share=/usr/share/${PN}
-
- insinto ${share}
- doins ${PN}{.glade,.gladep,_icon.png}
-
- exeinto ${share}/${PN}
- doexe ${PN}/find*
- doexe ${PN}/${PN}
- doexe ${PN}/zipdir
-
- exeinto ${share}/${PN}/fstool/
- doexe ${PN}/fstool/*
-
- exeinto ${share}/${PN}/supprt/
- doexe ${PN}/supprt/{fslver,getffl,getffp,getfpf,md5sum_approx}
-
- exeinto ${share}/${PN}/supprt/rmlint
- doexe ${PN}/supprt/rmlint/*
-
- dobin ${PN}-gui
-
- doicon ${PN}_icon.png
- domenu ${PN}.desktop
-
- dodoc doc/{FAQ,NEWS,README,TODO}
- doman man/${PN}{.1,-gui.1}
-
- if use nls ; then
- cd po
- emake DESTDIR="${D}" install
- fi
-
- # Fix Python shebangs.
- python_replicate_script "${ED}"${share}/${PN}/fstool/dupwaste
- python_replicate_script "${ED}"${share}/${PN}/supprt/md5sum_approx
- python_replicate_script "${ED}"${share}/${PN}/supprt/rmlint/merge_hardlinks
- python_replicate_script "${ED}"${share}/${PN}/supprt/rmlint/fixdup
- python_replicate_script "${ED}"/usr/bin/${PN}-gui
-}