public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sys-apps/mlocate: ChangeLog mlocate-0.21-r1.ebuild
@ 2008-09-07  2:12 Christian Faulhammer (opfer)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Faulhammer (opfer) @ 2008-09-07  2:12 UTC (permalink / raw
  To: gentoo-commits

opfer       08/09/07 02:12:11

  Modified:             ChangeLog
  Added:                mlocate-0.21-r1.ebuild
  Log:
  enable usage of ionice to keep annoyance during database update down, thanks to Daniel Pielmeier <daniel DOT pielmeier AT googlemail DOT com> in bug 231203; also get updatedb.conf in sync with slocate's version
  (Portage version: 2.1.4.4)

Revision  Changes    Path
1.27                 sys-apps/mlocate/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?rev=1.27&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?rev=1.27&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?r1=1.26&r2=1.27

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	12 Aug 2008 08:39:44 -0000	1.26
+++ ChangeLog	7 Sep 2008 02:12:10 -0000	1.27
@@ -1,6 +1,15 @@
 # ChangeLog for sys-apps/mlocate
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.26 2008/08/12 08:39:44 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.27 2008/09/07 02:12:10 opfer Exp $
+
+*mlocate-0.21-r1 (07 Sep 2008)
+
+  07 Sep 2008; Christian Faulhammer <opfer@gentoo.org>
+  +files/mlocate.cron-r1, +files/mlocate-cron.conf, files/updatedb.conf,
+  +mlocate-0.21-r1.ebuild:
+  enable usage of ionice to keep annoyance during database update down,
+  thanks to Daniel Pielmeier <daniel DOT pielmeier AT googlemail DOT com> in
+  bug 231203; also get updatedb.conf in sync with slocate's version
 
   12 Aug 2008; Christian Faulhammer <opfer@gentoo.org> -mlocate-0.20.ebuild:
   clean up



1.1                  sys-apps/mlocate/mlocate-0.21-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/mlocate-0.21-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/mlocate-0.21-r1.ebuild?rev=1.1&content-type=text/plain

Index: mlocate-0.21-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/mlocate-0.21-r1.ebuild,v 1.1 2008/09/07 02:12:10 opfer Exp $

inherit eutils

DESCRIPTION="Merging locate is an utility to index and quickly search for files"
HOMEPAGE="https://fedorahosted.org/mlocate/"
SRC_URI="https://fedorahosted.org/releases/m/l/mlocate/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""

RDEPEND="!sys-apps/slocate
	!sys-apps/rlocate"

pkg_setup() {
	enewgroup locate
}

src_compile() {
	econf || die "econf failed"
	emake groupname=locate || die "emake failed"
}

src_install() {
	emake groupname=locate DESTDIR="${D}" install || die "emake install failed"
	dodoc AUTHORS ChangeLog README NEWS

	insinto /etc
	doins "${FILESDIR}/updatedb.conf"
	fperms 0644 /etc/updatedb.conf

	insinto /etc
	doins "${FILESDIR}/mlocate-cron.conf"
	fperms 0644 /etc/mlocate-cron.conf

	insinto /etc/cron.daily
	newins "${FILESDIR}/mlocate.cron-r1" mlocate
	fperms 0755 /etc/cron.daily/mlocate

	fowners 0:locate /usr/bin/locate
	fperms go-r,g+s /usr/bin/locate

	chown -R 0:locate "${D}/var/lib/mlocate"
	fperms 0750 /var/lib/mlocate
	keepdir /var/lib/mlocate
}

src_test() {
	if has userpriv ${FEATURES} && ! has usersandbox ${FEATURES}; then
		make check-local || die "test suite failed"
	else
		ewarn "Activate FEATURES=userpriv and deactivate FEATURES=usersandbox to run testsuite."
	fi
}

pkg_postinst() {
	elog "Note that the /etc/updatedb.conf file is generic"
	elog "Please customize it to your system requirements"
}






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

* [gentoo-commits] gentoo-x86 commit in sys-apps/mlocate: ChangeLog mlocate-0.21-r1.ebuild
@ 2009-01-04 11:58 Christian Faulhammer (fauli)
  0 siblings, 0 replies; 2+ messages in thread
From: Christian Faulhammer (fauli) @ 2009-01-04 11:58 UTC (permalink / raw
  To: gentoo-commits

fauli       09/01/04 11:58:54

  Modified:             ChangeLog
  Removed:              mlocate-0.21-r1.ebuild
  Log:
  clean up
  (Portage version: 2.1.6.4/cvs/Linux 2.6.26-gentoo-r4 i686)

Revision  Changes    Path
1.38                 sys-apps/mlocate/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?rev=1.38&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?rev=1.38&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-apps/mlocate/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog	3 Jan 2009 13:39:06 -0000	1.37
+++ ChangeLog	4 Jan 2009 11:58:53 -0000	1.38
@@ -1,6 +1,10 @@
 # ChangeLog for sys-apps/mlocate
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.37 2009/01/03 13:39:06 cla Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/mlocate/ChangeLog,v 1.38 2009/01/04 11:58:53 fauli Exp $
+
+  04 Jan 2009; Christian Faulhammer <fauli@gentoo.org>
+  -mlocate-0.21-r1.ebuild:
+  clean up
 
   03 Jan 2009; Dawid Węgliński <cla@gentoo.org> mlocate-0.21.1.ebuild:
   Stable on amd64 (bug #253232)






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

end of thread, other threads:[~2009-01-04 11:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-04 11:58 [gentoo-commits] gentoo-x86 commit in sys-apps/mlocate: ChangeLog mlocate-0.21-r1.ebuild Christian Faulhammer (fauli)
  -- strict thread matches above, loose matches on Subject: below --
2008-09-07  2:12 Christian Faulhammer (opfer)

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