summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-12-03 13:13:31 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-12-03 13:13:31 +0000
commit2a0581c291387a66bf542115f98b4929e92e690f (patch)
treeeca1adf77ad4227036bae9042c722b57ea5ab6d3 /app-admin
parentx86 stable, see bug 445065 (diff)
downloadgentoo-2-2a0581c291387a66bf542115f98b4929e92e690f.tar.gz
gentoo-2-2a0581c291387a66bf542115f98b4929e92e690f.tar.bz2
gentoo-2-2a0581c291387a66bf542115f98b4929e92e690f.zip
Remove old.
(Portage version: 2.1.11.33/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-admin')
-rw-r--r--app-admin/denyhosts/ChangeLog6
-rw-r--r--app-admin/denyhosts/denyhosts-2.6-r5.ebuild77
2 files changed, 5 insertions, 78 deletions
diff --git a/app-admin/denyhosts/ChangeLog b/app-admin/denyhosts/ChangeLog
index be658de01f61..e6167d98347b 100644
--- a/app-admin/denyhosts/ChangeLog
+++ b/app-admin/denyhosts/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-admin/denyhosts
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/denyhosts/ChangeLog,v 1.56 2012/12/01 19:41:24 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-admin/denyhosts/ChangeLog,v 1.57 2012/12/03 13:13:31 kensington Exp $
+
+ 03 Dec 2012; Michael Palimaka <kensington@gentoo.org>
+ -denyhosts-2.6-r5.ebuild:
+ Remove old.
01 Dec 2012; Raúl Porcel <armin76@gentoo.org> denyhosts-2.6-r6.ebuild:
alpha/sparc stable wrt #441044
diff --git a/app-admin/denyhosts/denyhosts-2.6-r5.ebuild b/app-admin/denyhosts/denyhosts-2.6-r5.ebuild
deleted file mode 100644
index 06b50092f6fb..000000000000
--- a/app-admin/denyhosts/denyhosts-2.6-r5.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-admin/denyhosts/denyhosts-2.6-r5.ebuild,v 1.1 2011/12/31 15:46:16 idl0r Exp $
-
-EAPI="2"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="3.*"
-PYTHON_DEPEND="2"
-
-inherit distutils eutils
-
-MY_PN="DenyHosts"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="DenyHosts is a utility to help sys admins thwart ssh hackers"
-HOMEPAGE="http://www.denyhosts.net"
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc sparc x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-PYTHON_MODNAME="${MY_PN}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
- # changes default file installations
- epatch "${FILESDIR}"/${P}-gentoo.patch
- epatch "${FILESDIR}"/${P}-log-injection-regex.patch
- sed -i -e 's:DENY_THRESHOLD_VALID = 10:DENY_THRESHOLD_VALID = 5:' \
- denyhosts.cfg-dist || die "sed failed"
-}
-
-src_install() {
- DOCS="CHANGELOG.txt README.txt PKG-INFO"
- distutils_src_install
-
- insinto /etc
- insopts -m0640
- newins denyhosts.cfg-dist denyhosts.conf || die
-
- dodir /etc/logrotate.d
- insinto /etc/logrotate.d
- newins "${FILESDIR}"/${PN}.logrotate ${PN} || die
-
- newinitd "${FILESDIR}"/denyhosts.init denyhosts || die
-
- # build system installs docs that we installed above
- rm -f "${D}"/usr/share/denyhosts/*.txt
-
- keepdir /var/lib/denyhosts
-}
-
-pkg_postinst() {
- distutils_pkg_postinst
-
- if [[ ! -f "${ROOT}etc/hosts.deny" ]]; then
- touch "${ROOT}etc/hosts.deny"
- fi
-
- elog "You can configure DenyHosts to run as a daemon by running:"
- elog
- elog "rc-update add denyhosts default"
- elog
- elog "or as a cronjob, by adding the following to /etc/crontab"
- elog "# run DenyHosts every 10 minutes"
- elog "*/10 * * * * root /usr/bin/denyhosts.py -c /etc/denyhosts.conf"
- elog
- elog "More information can be found at http://denyhosts.sourceforge.net/faq.html"
- elog
- ewarn "Modify /etc/denyhosts.conf to suit your environment system."
-}