public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-apps/readahead-list/, sys-apps/readahead-list/files/
@ 2017-04-04 12:05 Pacho Ramos
  0 siblings, 0 replies; 2+ messages in thread
From: Pacho Ramos @ 2017-04-04 12:05 UTC (permalink / raw
  To: gentoo-commits

commit:     0a0e6a5e0b7ed4069266f2fcee32e74b7f08b584
Author:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Tue Apr  4 11:57:04 2017 +0000
Commit:     Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Tue Apr  4 12:05:09 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a0e6a5e

sys-apps/readahead-list: Fix gcc6 support, bug #594092 by Peter Levine, also stop using base.eclass

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../readahead-list-1.20060421.1016-gcc-4.3.patch   |  4 +-
 .../readahead-list-1.20060421.1016-gcc6.patch      | 15 ++++++
 .../readahead-list-1.20060421.1016-r2.ebuild       | 60 ++++++++++++++++++++++
 3 files changed, 77 insertions(+), 2 deletions(-)

diff --git a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
index 6264bbad952..ccee025dcbf 100644
--- a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
+++ b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc-4.3.patch
@@ -1,5 +1,5 @@
---- src/filelist-order.cxx
-+++ src/filelist-order.cxx
+--- a/src/filelist-order.cxx
++++ b/src/filelist-order.cxx
 @@ -19,6 +19,7 @@
  #include <iostream>
  #include <fstream>

diff --git a/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch
new file mode 100644
index 00000000000..a987e4aa767
--- /dev/null
+++ b/sys-apps/readahead-list/files/readahead-list-1.20060421.1016-gcc6.patch
@@ -0,0 +1,15 @@
+filelist-order.cxx:276:37: error: unable to find string literal operator ‘operator""fmt’ with ‘const char [3]’, ‘long unsigned int’ arguments
+
+https://bugs.gentoo.org/594092
+
+--- a/src/filelist-order.cxx
++++ b/src/filelist-order.cxx
+@@ -273,7 +273,7 @@ void printItem(PAIR_COMPLETE_TYPE p,vector <OrderField*> *ofa) {
+ 					continue;
+ 				}
+ 				OrderField of = *ofp;
+-#define case_entry(fmt,func) printf("%s"fmt,(first ? "" : " "),func_##func(mk)); break;
++#define case_entry(fmt,func) printf("%s" fmt,(first ? "" : " "),func_##func(mk)); break;
+ 				switch(of.type) {
+ 					case ST_DEV: case_entry("%lld",ST_DEV);
+ 					case ST_INO: case_entry("%lld",ST_INO);

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
new file mode 100644
index 00000000000..80b37f7a964
--- /dev/null
+++ b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r2.ebuild
@@ -0,0 +1,60 @@
+# 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."
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [gentoo-commits] repo/gentoo:master commit in: sys-apps/readahead-list/, sys-apps/readahead-list/files/
@ 2017-09-27 21:45 Robin H. Johnson
  0 siblings, 0 replies; 2+ messages in thread
From: Robin H. Johnson @ 2017-09-27 21:45 UTC (permalink / raw
  To: gentoo-commits

commit:     7f7ec9c6508c5a3f7d41be75831254de43c89b2a
Author:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 27 21:42:33 2017 +0000
Commit:     Robin H. Johnson <robbat2 <AT> gentoo <DOT> org>
CommitDate: Wed Sep 27 21:45:07 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7ec9c6

sys-apps/readahead-list: bump for confd tweak.

Package-Manager: Portage-2.3.8, Repoman-2.3.3

 .../readahead-list/files/conf.d-readahead-list     |  4 +-
 .../readahead-list-1.20060421.1016-r3.ebuild       | 60 ++++++++++++++++++++++
 2 files changed, 62 insertions(+), 2 deletions(-)

diff --git a/sys-apps/readahead-list/files/conf.d-readahead-list b/sys-apps/readahead-list/files/conf.d-readahead-list
index d8da5696e0e..c5ea49b0ecd 100644
--- a/sys-apps/readahead-list/files/conf.d-readahead-list
+++ b/sys-apps/readahead-list/files/conf.d-readahead-list
@@ -9,7 +9,7 @@ READAHEAD_LIST_exec_sbin_rc="/etc/readahead-list/exec_sbin_rc"
 READAHEAD_LIST_runlevel_boot="/etc/readahead-list/runlevel-boot"
 READAHEAD_LIST_runlevel_default="/etc/readahead-list/runlevel-default"
 
-READAHEAD_LIST_call_early="${!READAHEAD_LIST_exec_sbin_rc} ${!READAHEAD_LIST_runlevel_boot}"
-READAHEAD_LIST_call_main="${!READAHEAD_LIST_runlevel_default}"
+READAHEAD_LIST_call_early="${READAHEAD_LIST_exec_sbin_rc} ${READAHEAD_LIST_runlevel_boot}"
+READAHEAD_LIST_call_main="${READAHEAD_LIST_runlevel_default}"
 
 # vim: ts=4 sw=4

diff --git a/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild
new file mode 100644
index 00000000000..80b37f7a964
--- /dev/null
+++ b/sys-apps/readahead-list/readahead-list-1.20060421.1016-r3.ebuild
@@ -0,0 +1,60 @@
+# 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."
+}


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-09-27 21:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-04-04 12:05 [gentoo-commits] repo/gentoo:master commit in: sys-apps/readahead-list/, sys-apps/readahead-list/files/ Pacho Ramos
  -- strict thread matches above, loose matches on Subject: below --
2017-09-27 21:45 Robin H. Johnson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox