public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/readahead-list/
Date: Fri, 12 Jan 2018 22:14:31 +0000 (UTC)	[thread overview]
Message-ID: <1515795261.e8ee4e9dd40524c72161505be792a5b354b10da4.candrews@gentoo> (raw)

commit:     e8ee4e9dd40524c72161505be792a5b354b10da4
Author:     Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Fri Jan  5 15:18:56 2018 +0000
Commit:     Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 22:14:21 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8ee4e9d

sys-apps/readahead-list: remove old

 .../readahead-list-1.20060421.1016-r1.ebuild       | 58 ---------------------
 .../readahead-list-1.20060421.1016-r2.ebuild       | 60 ----------------------
 .../readahead-list-1.20060421.1016.ebuild          | 60 ----------------------
 3 files changed, 178 deletions(-)

diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r1.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r1.ebuild
deleted file mode 100644
index 5790a1d340e..00000000000
--- a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit base
-
-DESCRIPTION="Preloads files into the page cache to accelerate program loading"
-HOMEPAGE="http://www.orbis-terrarum.net"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-		virtual/os-headers"
-
-PATCHES=( "${FILESDIR}/${P}-gcc-4.3.patch" )
-
-src_compile() {
-	econf --sbindir=/sbin || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-
-	# init scripts
-	#cd "${S}/contrib/init/gentoo/"
-	newinitd "${FILESDIR}"/init.d-readahead-list readahead-list
-	newinitd "${FILESDIR}"/init.d-readahead-list-early readahead-list-early
-	newconfd "${FILESDIR}"/conf.d-readahead-list readahead-list
-
-	# default config
-	insinto /etc/readahead-list
-	cd "${S}/contrib/data"
-	newins readahead.runlevel-default.list runlevel-default
-	newins readahead.runlevel-boot.list runlevel-boot
-	newins readahead._sbin_rc.list exec_sbin_rc
-
-	# docs
-	cd "${S}"
-	dodoc README
-	if use doc; then
-		docinto scripts
-		dodoc contrib/scripts/*
-	fi
-	# clean up a bit
-	find "${D}/usr/share/doc/${PF}/" -type f -name 'Makefile*' -exec rm -f \{\} \;
-}
-
-pkg_postinst() {
-	einfo "You should add readahead-list to your runlevels:"
-	einfo "  rc-update add readahead-list-early boot"
-	einfo "  rc-update add readahead-list boot"
-	einfo "Also consider customizing the lists in /etc/readahead-list"
-	einfo "for maximum performance gain."
-}

diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r2.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r2.ebuild
deleted file mode 100644
index 80b37f7a964..00000000000
--- a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r2.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DESCRIPTION="Preloads files into the page cache to accelerate program loading"
-HOMEPAGE="http://www.orbis-terrarum.net"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
-IUSE="doc"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-	virtual/os-headers
-"
-
-PATCHES=(
-	"${FILESDIR}/${P}-gcc-4.3.patch"
-	"${FILESDIR}/${P}-gcc6.patch"
-)
-
-src_configure() {
-	econf --sbindir=/sbin
-}
-
-src_install() {
-	default
-
-	# init scripts
-	#cd "${S}/contrib/init/gentoo/"
-	newinitd "${FILESDIR}"/init.d-readahead-list readahead-list
-	newinitd "${FILESDIR}"/init.d-readahead-list-early readahead-list-early
-	newconfd "${FILESDIR}"/conf.d-readahead-list readahead-list
-
-	# default config
-	insinto /etc/readahead-list
-	cd "${S}/contrib/data"
-	newins readahead.runlevel-default.list runlevel-default
-	newins readahead.runlevel-boot.list runlevel-boot
-	newins readahead._sbin_rc.list exec_sbin_rc
-
-	# docs
-	cd "${S}"
-	if use doc; then
-		docinto scripts
-		dodoc contrib/scripts/*
-	fi
-	# clean up a bit
-	find "${D}/usr/share/doc/${PF}/" -type f -name 'Makefile*' -exec rm -f \{\} \;
-}
-
-pkg_postinst() {
-	einfo "You should add readahead-list to your runlevels:"
-	einfo "  rc-update add readahead-list-early boot"
-	einfo "  rc-update add readahead-list boot"
-	einfo "Also consider customizing the lists in /etc/readahead-list"
-	einfo "for maximum performance gain."
-}

diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016.ebuild
deleted file mode 100644
index 1e7b7b64fb1..00000000000
--- a/sys-apps/readahead-list/readahead-list-1.20060421.1016.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit base
-
-DESCRIPTION="Preloads files into the page cache to accelerate program loading"
-HOMEPAGE="http://www.orbis-terrarum.net"
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="doc"
-
-# I'm not entirely certain about this
-# need to check if other libc variants provide readahead(2)
-RDEPEND=""
-DEPEND="${RDEPEND}
-		virtual/os-headers"
-
-PATCHES=( "${FILESDIR}/${P}-gcc-4.3.patch" )
-
-src_compile() {
-	econf --sbindir=/sbin || die "econf failed"
-	emake || die "emake failed"
-}
-
-src_install() {
-	emake DESTDIR="${D}" install || die "emake install failed"
-
-	# init scripts
-	cd "${S}/contrib/init/gentoo/"
-	newinitd init.d-readahead-list readahead-list
-	newinitd init.d-readahead-list-early readahead-list-early
-	newconfd conf.d-readahead-list readahead-list
-
-	# default config
-	insinto /etc/readahead-list
-	cd "${S}/contrib/data"
-	newins readahead.runlevel-default.list runlevel-default
-	newins readahead.runlevel-boot.list runlevel-boot
-	newins readahead._sbin_rc.list exec_sbin_rc
-
-	# docs
-	cd "${S}"
-	dodoc README
-	if use doc; then
-		docinto scripts
-		dodoc contrib/scripts/*
-	fi
-	# clean up a bit
-	find "${D}/usr/share/doc/${PF}/" -type f -name 'Makefile*' -exec rm -f \{} \;
-}
-
-pkg_postinst() {
-	einfo "You should add readahead-list to your runlevels:"
-	einfo "  rc-update add readahead-list-early boot"
-	einfo "  rc-update add readahead-list boot"
-	einfo "Also consider customizing the lists in /etc/readahead-list"
-	einfo "for maximum performance gain."
-}


             reply	other threads:[~2018-01-12 22:14 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-01-12 22:14 Craig Andrews [this message]
  -- strict thread matches above, loose matches on Subject: below --
2022-10-29 21:32 [gentoo-commits] repo/gentoo:master commit in: sys-apps/readahead-list/ Sam James
2021-05-29 19:03 David Seifert
2018-01-12 22:14 Craig Andrews
2017-10-06 22:58 Sergei Trofimovich
2017-09-27 21:45 Robin H. Johnson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1515795261.e8ee4e9dd40524c72161505be792a5b354b10da4.candrews@gentoo \
    --to=candrews@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox