2012-09-22 02:48:52 +00:00
|
|
|
%global _hardened_build 1
|
|
|
|
|
2005-11-10 01:52:16 +00:00
|
|
|
Summary: An utility for finding files by name
|
|
|
|
Name: mlocate
|
2012-09-22 02:48:42 +00:00
|
|
|
Version: 0.26
|
2021-10-01 09:57:00 +00:00
|
|
|
Release: 31%{?dist}
|
2005-11-10 01:52:16 +00:00
|
|
|
License: GPLv2
|
2008-03-03 03:36:55 +00:00
|
|
|
URL: https://fedorahosted.org/mlocate/
|
2010-03-04 17:52:49 +00:00
|
|
|
Source0: https://fedorahosted.org/releases/m/l/mlocate/mlocate-%{version}.tar.xz
|
2005-11-10 01:52:16 +00:00
|
|
|
Source1: updatedb.conf
|
2015-06-09 15:51:01 +00:00
|
|
|
Source2: mlocate-run-updatedb
|
|
|
|
Source3: mlocate-updatedb.service
|
|
|
|
Source4: mlocate-updatedb.timer
|
2008-11-28 11:37:24 +00:00
|
|
|
Requires(pre): shadow-utils
|
2005-12-01 23:24:05 +00:00
|
|
|
Requires(post): grep, sed
|
2021-01-07 01:48:27 +00:00
|
|
|
BuildRequires: make
|
2016-09-13 17:10:43 +00:00
|
|
|
BuildRequires: systemd
|
2018-03-22 14:45:11 +00:00
|
|
|
BuildRequires: gcc
|
2011-02-04 21:58:15 +00:00
|
|
|
Provides: bundled(gnulib)
|
2005-11-10 01:52:16 +00:00
|
|
|
Obsoletes: slocate <= 2.7-30
|
|
|
|
|
|
|
|
%description
|
|
|
|
mlocate is a locate/updatedb implementation. It keeps a database of
|
|
|
|
all existing files and allows you to lookup files by name.
|
|
|
|
|
|
|
|
The 'm' stands for "merging": updatedb reuses the existing database to avoid
|
|
|
|
rereading most of the file system, which makes updatedb faster and does not
|
|
|
|
trash the system caches as much as traditional locate implementations.
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
%build
|
2009-01-12 09:40:09 +00:00
|
|
|
%configure --localstatedir=%{_localstatedir}/lib
|
|
|
|
make %{?_smp_mflags} groupname=slocate
|
2005-11-10 01:52:16 +00:00
|
|
|
|
|
|
|
%install
|
2009-01-12 09:40:09 +00:00
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT INSTALL='install -p' groupname=slocate
|
2005-11-10 01:52:16 +00:00
|
|
|
|
|
|
|
mkdir -p $RPM_BUILD_ROOT{%{_sysconfdir},/etc/cron.daily}
|
2009-01-12 09:40:09 +00:00
|
|
|
install -p -m 644 %{SOURCE1} $RPM_BUILD_ROOT%{_sysconfdir}/updatedb.conf
|
2015-06-09 15:51:01 +00:00
|
|
|
install -D -p -m 750 %{SOURCE2} $RPM_BUILD_ROOT%{_libexecdir}/mlocate-run-updatedb
|
|
|
|
install -D -p -m 644 %{SOURCE3} $RPM_BUILD_ROOT%{_unitdir}/mlocate-updatedb.service
|
|
|
|
install -D -p -m 644 %{SOURCE4} $RPM_BUILD_ROOT%{_unitdir}/mlocate-updatedb.timer
|
|
|
|
|
2009-04-14 10:36:52 +00:00
|
|
|
# %%ghost semantics is so stupid
|
2009-01-12 09:40:09 +00:00
|
|
|
touch $RPM_BUILD_ROOT%{_localstatedir}/lib/mlocate/mlocate.db
|
2005-11-10 01:52:16 +00:00
|
|
|
|
|
|
|
%find_lang mlocate
|
|
|
|
|
|
|
|
%pre
|
2009-01-12 09:40:09 +00:00
|
|
|
getent group slocate >/dev/null || groupadd -g 21 -r -f slocate
|
|
|
|
exit 0
|
2005-11-10 01:52:16 +00:00
|
|
|
|
2005-12-01 23:24:05 +00:00
|
|
|
%post
|
|
|
|
if /bin/grep -q '^[^#]*DAILY_UPDATE' %{_sysconfdir}/updatedb.conf; then
|
|
|
|
/bin/sed -i.rpmsave -e '/DAILY_UPDATE/s/^/#/' %{_sysconfdir}/updatedb.conf
|
|
|
|
fi
|
2020-10-22 15:31:40 +00:00
|
|
|
# Bind mounts shouldn't be pruned on ostree based systems so locate works
|
|
|
|
# properly on HOME and other directories. We can't use the ostree-booted file
|
|
|
|
# to identy Silverblue - see
|
|
|
|
# https://github.com/fedora-silverblue/issue-tracker/issues/76#issuecomment-714562564
|
|
|
|
. /etc/os-release || exit
|
|
|
|
if [ "$VARIANT_ID" = "silverblue" ] || [ -f /run/ostree-booted ]; then
|
|
|
|
if /bin/grep -q '^[^#]*PRUNE_BIND_MOUNTS' %{_sysconfdir}/updatedb.conf; then
|
|
|
|
/bin/sed -i.rpmsave -e '/PRUNE_BIND_MOUNTS/s/^/#/' %{_sysconfdir}/updatedb.conf
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-06-09 15:51:01 +00:00
|
|
|
%systemd_post mlocate-updatedb.timer
|
2021-10-01 09:57:00 +00:00
|
|
|
if [ -x /usr/bin/systemctl ]; then
|
|
|
|
/usr/bin/systemctl start mlocate-updatedb.timer
|
|
|
|
fi
|
2015-06-09 15:51:01 +00:00
|
|
|
|
|
|
|
%preun
|
|
|
|
%systemd_preun mlocate-updatedb.timer
|
|
|
|
|
|
|
|
%postun
|
|
|
|
%systemd_postun_with_restart mlocate-updatedb.timer
|
|
|
|
|
|
|
|
%triggerin -- %{name} < 0.26-11
|
2021-10-01 09:57:00 +00:00
|
|
|
if [ -x /usr/bin/systemctl ]; then
|
|
|
|
/usr/bin/systemctl start mlocate-updatedb.timer
|
|
|
|
fi
|
2005-12-01 23:24:05 +00:00
|
|
|
|
2005-11-10 01:52:16 +00:00
|
|
|
%files -f mlocate.lang
|
2006-03-18 03:49:20 +00:00
|
|
|
%doc AUTHORS COPYING NEWS README
|
2005-11-10 01:52:16 +00:00
|
|
|
%config(noreplace) %{_sysconfdir}/updatedb.conf
|
|
|
|
%attr(2711,root,slocate) %{_bindir}/locate
|
2015-06-09 15:51:01 +00:00
|
|
|
%{_unitdir}/mlocate-updatedb.service
|
|
|
|
%{_unitdir}/mlocate-updatedb.timer
|
|
|
|
%{_libexecdir}/mlocate-run-updatedb
|
2005-11-10 01:52:16 +00:00
|
|
|
%{_bindir}/updatedb
|
|
|
|
%{_mandir}/man*/*
|
2009-01-12 09:40:09 +00:00
|
|
|
%dir %attr(0750,root,slocate) %{_localstatedir}/lib/mlocate
|
2015-01-26 10:33:24 +00:00
|
|
|
%ghost %attr(0640,root,slocate) %{_localstatedir}/lib/mlocate/mlocate.db
|
2005-11-10 01:52:16 +00:00
|
|
|
|
|
|
|
%changelog
|
2021-10-01 09:57:00 +00:00
|
|
|
* Fri Oct 01 2021 Kalev Lember <klember@redhat.com> - 0.26-31
|
|
|
|
- Avoid systemd_requires as per updated packaging guidelines
|
|
|
|
|
2021-07-22 15:07:00 +00:00
|
|
|
* Thu Jul 22 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-30
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild
|
|
|
|
|
2021-03-02 15:13:28 +00:00
|
|
|
* Tue Mar 02 2021 Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> - 0.26-29
|
|
|
|
- Rebuilt for updated systemd-rpm-macros
|
|
|
|
See https://pagure.io/fesco/issue/2583.
|
|
|
|
|
2021-01-26 20:34:12 +00:00
|
|
|
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-28
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
|
|
|
|
2020-10-22 15:31:40 +00:00
|
|
|
* Thu Oct 22 2020 Tomas Popela <tpopela@redhat.com> - 0.26-27
|
|
|
|
- Don't prune bind mounts on ostree based systems, prune the deployments folder
|
|
|
|
there to avoid duplications.
|
|
|
|
- Fixes: https://github.com/fedora-silverblue/issue-tracker/issues/76
|
|
|
|
|
2020-07-28 08:10:53 +00:00
|
|
|
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-26
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
|
|
|
2020-01-29 13:42:04 +00:00
|
|
|
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-25
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
|
|
|
2019-07-25 17:23:20 +00:00
|
|
|
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-24
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
|
|
|
2019-02-01 11:09:40 +00:00
|
|
|
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-23
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
|
|
|
|
|
2018-07-13 10:48:26 +00:00
|
|
|
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-22
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
|
|
|
2018-03-22 14:45:11 +00:00
|
|
|
* Thu Mar 22 2018 Michal Sekletar <msekleta@redhat.com> - 0.26-21
|
|
|
|
- add gcc to BuildRequires
|
|
|
|
|
2018-02-09 08:05:10 +00:00
|
|
|
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 0.26-20
|
|
|
|
- Escape macros in %%changelog
|
|
|
|
|
2018-02-08 02:51:48 +00:00
|
|
|
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-19
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
|
|
|
|
2017-08-03 03:24:17 +00:00
|
|
|
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-18
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
|
|
|
|
|
2017-07-26 21:59:54 +00:00
|
|
|
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-17
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
|
|
|
|
|
2017-02-10 21:29:20 +00:00
|
|
|
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-16
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
|
|
|
|
|
2016-09-13 17:08:00 +00:00
|
|
|
* Tue Sep 13 2016 Adam Williamson <awilliam@redhat.com> - 0.26-15
|
2018-02-09 08:05:10 +00:00
|
|
|
- add correct systemd requirements for scriptlets (using %%systemd_requires)
|
2016-09-13 17:08:00 +00:00
|
|
|
|
2016-03-18 13:44:54 +00:00
|
|
|
* Fri Mar 18 2016 Michal Sekletar <msekleta@redhat.com> - 0.26-14
|
|
|
|
- start timer after the installation (#1278587)
|
|
|
|
- make mlocate-updatedb.service of the type simple, systemd will then not wait for its completion (#1282232)
|
|
|
|
|
2016-02-04 08:31:01 +00:00
|
|
|
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.26-13
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
|
|
|
|
|
2015-06-17 20:46:37 +00:00
|
|
|
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26-12
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
|
|
|
|
|
2015-06-09 15:51:01 +00:00
|
|
|
* Tue Jun 9 2015 Michal Sekletar <msekleta@redhat.com> - 0.26-11
|
|
|
|
- migrate from cron job to systemd timer
|
2015-06-09 15:52:45 +00:00
|
|
|
- prune ceph filesystem (#1223582)
|
2015-06-09 15:51:01 +00:00
|
|
|
|
2015-05-26 08:11:45 +00:00
|
|
|
* Tue May 26 2015 Michal Sekletar <msekleta@redhat.com> - 0.26-10
|
|
|
|
- prune path /var/lib/ceph (#1223582)
|
|
|
|
|
2015-01-26 10:33:24 +00:00
|
|
|
* Mon Jan 26 2015 Michal Sekletar <msekleta@redhat.com> - 0.26-9
|
|
|
|
- mlocate.db is ghost file created with non-default attrs, list them explicitly so rpm --verify doesn't report errors
|
|
|
|
|
2015-01-07 12:17:01 +00:00
|
|
|
* Wed Jan 7 2015 Michal Sekletar <msekleta@redhat.com> - 0.26-8
|
|
|
|
- change permissions of cron script to conform with Red Hat Security Guide (#1179721)
|
2015-01-07 12:23:34 +00:00
|
|
|
- prune meta-data dirs of couple more VCS systems (#949320)
|
2015-01-07 12:28:33 +00:00
|
|
|
- prune dnf db dir, same as we do for yum (#1177877)
|
2015-01-07 12:45:16 +00:00
|
|
|
- add gpfs to PRUNEFS (#1179644)
|
2015-01-07 12:17:01 +00:00
|
|
|
|
2014-08-17 09:46:42 +00:00
|
|
|
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26-7
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
|
2014-07-25 18:19:43 +00:00
|
|
|
* Fri Jul 25 2014 Michal Sekletar <msekleta@redhat.com> - 0.26-6
|
|
|
|
- Don't add zfs to PRUNEFS when calling updatedb from cron (#1065366)
|
|
|
|
|
2014-06-07 10:35:14 +00:00
|
|
|
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
|
2013-08-03 11:20:44 +00:00
|
|
|
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
|
2013-04-10 16:38:00 +00:00
|
|
|
* Wed Apr 10 2013 Miloslav Trmač <mitr@redhat.com> - 0.26-3
|
|
|
|
- Update cron packaging for https://fedoraproject.org/wiki/Packaging:CronFiles
|
|
|
|
Notably, the cron script (previously not %%config) was renamed.
|
|
|
|
|
2013-02-14 07:16:25 +00:00
|
|
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.26-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
|
|
|
|
2012-09-22 02:48:42 +00:00
|
|
|
* Sat Sep 22 2012 Miloslav Trmač <mitr@redhat.com> - 0.26-1
|
|
|
|
- Update to mlocate-0.26
|
2012-08-21 18:43:59 +00:00
|
|
|
- Drop no longer necessary %%clean and %%defattr commands.
|
2012-09-22 02:48:52 +00:00
|
|
|
- Enable hardened build
|
|
|
|
Resolves: #853189
|
2012-08-21 18:43:59 +00:00
|
|
|
|
2012-07-20 02:09:29 +00:00
|
|
|
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
|
2012-03-03 05:41:08 +00:00
|
|
|
* Sat Mar 3 2012 Miloslav Trmač <mitr@redhat.com> - 0.25-1
|
|
|
|
- Update to mlocate-0.25
|
2012-03-03 05:41:20 +00:00
|
|
|
- Add /var/lib/yum/yumdb to PRUNEPATHS
|
|
|
|
Resolves: #747918
|
2012-03-03 05:41:08 +00:00
|
|
|
|
2012-01-13 10:13:42 +00:00
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.24-2
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
|
2011-03-31 18:58:57 +00:00
|
|
|
* Thu Mar 31 2011 Miloslav Trmač <mitr@redhat.com> - 0.24-1
|
|
|
|
- Update to mlocate-0.24
|
|
|
|
Resolves: #675189
|
2011-03-31 18:59:11 +00:00
|
|
|
- Explicitly exclude fuse.sshfs. Ideally we'd like to exclude all fuse.* file
|
|
|
|
systems, sshfs is urgent because it it can hang updatedb.
|
|
|
|
Resolves: #604145, #608094
|
2011-03-31 18:58:57 +00:00
|
|
|
|
2011-02-08 19:33:49 +00:00
|
|
|
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.1-5
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
|
2011-02-04 21:58:15 +00:00
|
|
|
* Fri Feb 4 2011 Miloslav Trmač <mitr@redhat.com> - 0.23.1-4
|
|
|
|
- Add Provides: bundled(gnulib)
|
|
|
|
|
2011-02-04 17:22:34 +00:00
|
|
|
* Fri Feb 4 2011 Miloslav Trmač <mitr@redhat.com> - 0.23.1-3
|
|
|
|
- Exclude /mnt by default
|
|
|
|
Resolves: #674635
|
2011-02-04 20:25:33 +00:00
|
|
|
- Drop %%triggerpostun on slocate - it is long obsolete, and rpm started
|
|
|
|
rejecting "Requries(triggerpostun)"
|
2011-02-04 17:22:34 +00:00
|
|
|
|
2010-09-29 21:48:19 +00:00
|
|
|
* Wed Sep 29 2010 jkeating - 0.23.1-2
|
|
|
|
- Rebuilt for gcc bug 634757
|
|
|
|
|
2010-09-14 14:11:35 +00:00
|
|
|
* Tue Sep 14 2010 Miloslav Trmač <mitr@redhat.com> - 0.23.1-1
|
|
|
|
- Update to mlocate-0.23.1
|
|
|
|
|
2010-08-26 20:31:57 +00:00
|
|
|
* Thu Aug 26 2010 Miloslav Trmač <mitr@redhat.com> - 0.23-1
|
|
|
|
- Update to mlocate-0.23
|
|
|
|
- Don't exclude rootfs, to avoid ambiguity when handling "/"
|
|
|
|
Resolves: #624551
|
|
|
|
|
2010-03-30 13:54:10 +00:00
|
|
|
* Tue Mar 30 2010 Miloslav Trmač <mitr@redhat.com> - 0.22.4-2
|
|
|
|
- Ignore no-op bind mounts
|
|
|
|
Resolves: #577819
|
|
|
|
|
2010-03-26 13:26:09 +00:00
|
|
|
* Fri Mar 26 2010 Miloslav Trmač <mitr@redhat.com> - 0.22.4-1
|
|
|
|
- Update to mlocate-0.22.4
|
|
|
|
|
2010-03-04 17:52:49 +00:00
|
|
|
* Thu Mar 4 2010 Miloslav Trmač <mitr@redhat.com> - 0.22.3-1
|
|
|
|
- Update to mlocate-0.22.3
|
|
|
|
- Remove no longer necessary references to BuildRoot:
|
|
|
|
|
2010-01-15 16:40:50 +00:00
|
|
|
* Fri Jan 15 2010 Miloslav Trmač <mitr@redhat.com> - 0.22.2-2
|
|
|
|
- Add "lustre" to PRUNEFS
|
|
|
|
- Add all nodev filesystems from the Fedora kernel to PRUNEFS, to make
|
|
|
|
(updatedb) work as some users expect
|
|
|
|
|
2009-10-05 12:57:40 +00:00
|
|
|
* Fri Oct 2 2009 Miloslav Trmač <mitr@redhat.com> - 0.22.2-1
|
|
|
|
- Update to mlocate-0.22.2
|
|
|
|
|
2009-09-15 18:34:48 +00:00
|
|
|
* Tue Sep 15 2009 Miloslav Trmač <mitr@redhat.com> - 0.22.1-1
|
|
|
|
- Update to mlocate-0.22.1
|
|
|
|
- Drop Provides: slocate, per NamingGuidelines
|
|
|
|
|
2009-07-25 14:38:00 +00:00
|
|
|
* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.22-3
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
|
|
|
|
|
2009-05-19 15:46:06 +00:00
|
|
|
* Tue May 19 2009 Miloslav Trmač <mitr@redhat.com> - 0.22-2
|
|
|
|
- Add /var/cache/ccache to PRUNEPATHS.
|
|
|
|
|
2009-04-14 10:36:52 +00:00
|
|
|
* Tue Apr 14 2009 Miloslav Trmač <mitr@redhat.com> - 0.22-1
|
|
|
|
- Update to mlocate-0.22
|
|
|
|
|
2009-02-26 01:44:27 +00:00
|
|
|
* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21.1-4
|
|
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
|
|
|
|
|
2009-01-12 09:40:09 +00:00
|
|
|
* Mon Jan 12 2009 Miloslav Trmač <mitr@redhat.com> - 0.21.1-3
|
|
|
|
- Merge review fixes, based on a patch by Parag AN:
|
|
|
|
- Use %%{_localstatedir}/lib instead of hard-coding /var/lib
|
|
|
|
- Use %%{?_smp_mflags}
|
|
|
|
- Preserve file time stamps
|
|
|
|
- Only create the group if it doesn't exist, hide errors from rpm
|
|
|
|
|
2008-11-28 11:37:24 +00:00
|
|
|
* Fri Nov 28 2008 Miloslav Trmač <mitr@redhat.com> - 0.21.1-2
|
|
|
|
- Add .git to PRUNENAMES
|
|
|
|
Resolves: #473227
|
|
|
|
- Avoid a rpmlint warning
|
|
|
|
|
2008-10-28 04:17:08 +00:00
|
|
|
* Tue Oct 28 2008 Miloslav Trmač <mitr@redhat.com> - 0.21.1-1
|
|
|
|
- Update to mlocate-0.21
|
|
|
|
Resolves: #461208
|
|
|
|
|
2008-06-30 00:26:54 +00:00
|
|
|
* Mon Jun 30 2008 Miloslav Trmač <mitr@redhat.com> - 0.21-1
|
|
|
|
- Update to mlocate-0.21
|
|
|
|
- Define PRUNENAMES to exclude .svn and .hg
|
|
|
|
|
2008-04-09 22:11:35 +00:00
|
|
|
* Wed Apr 9 2008 Miloslav Trmač <mitr@redhat.com> - 0.20-1
|
|
|
|
- Update to mlocate-0.20
|
|
|
|
|
2008-03-03 03:36:55 +00:00
|
|
|
* Mon Mar 3 2008 Miloslav Trmač <mitr@redhat.com> - 0.19-1
|
|
|
|
- Update to mlocate-0.19
|
|
|
|
- New home page at https://fedorahosted.org/mlocate/ .
|
|
|
|
|
2008-02-19 13:53:59 +00:00
|
|
|
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.18-2
|
|
|
|
- Autorebuild for GCC 4.3
|
|
|
|
|
2007-08-24 23:31:53 +00:00
|
|
|
* Sat Aug 25 2007 Miloslav Trmač <mitr@redhat.com> - 0.18-1
|
|
|
|
- Update to mlocate-0.18
|
|
|
|
- Run updatedb with reduced I/O priority
|
|
|
|
Resolves: #254165
|
|
|
|
|
2007-04-25 17:22:37 +00:00
|
|
|
* Wed Apr 25 2007 Miloslav Trmac <mitr@redhat.com> - 0.17-1
|
|
|
|
- Update to mlocate-0.17
|
|
|
|
Resolves: #237120
|
|
|
|
|
2007-03-06 01:58:28 +00:00
|
|
|
* Tue Mar 6 2007 Miloslav Trmac <mitr@redhat.com> - 0.16-1
|
|
|
|
- Update to mlocate-0.16
|
|
|
|
- Enable PRUNE_BIND_MOUNTS by default
|
|
|
|
Resolves: #221755
|
|
|
|
|
2007-01-05 00:59:37 +00:00
|
|
|
* Fri Jan 5 2007 Miloslav Trmac <mitr@redhat.com> - 0.15-2
|
|
|
|
- Add gfs and gfs2 to PRUNEFS
|
|
|
|
Resolves: #220491
|
|
|
|
|
2006-11-16 03:01:57 +00:00
|
|
|
* Thu Nov 16 2006 Miloslav Trmac <mitr@redhat.com> - 0.15-1
|
|
|
|
- Update to mlocate-0.15
|
|
|
|
Resolves: #215763
|
|
|
|
|
2006-07-12 07:22:06 +00:00
|
|
|
* Wed Jul 12 2006 Jesse Keating <jkeating@redhat.com> - 0.14-2.1
|
|
|
|
- rebuild
|
|
|
|
|
2006-03-18 03:49:20 +00:00
|
|
|
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 0.14-2
|
|
|
|
- Ship NEWS
|
|
|
|
|
2006-03-18 03:41:27 +00:00
|
|
|
* Sat Mar 18 2006 Miloslav Trmac <mitr@redhat.com> - 0.14-1
|
|
|
|
- Update to mlocate-0.14
|
|
|
|
|
2006-02-11 04:36:49 +00:00
|
|
|
* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 0.12-1.2
|
|
|
|
- bump again for double-long bug on ppc(64)
|
|
|
|
|
2006-02-07 12:57:59 +00:00
|
|
|
* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 0.12-1.1
|
|
|
|
- rebuilt for new gcc4.1 snapshot and glibc changes
|
|
|
|
|
2005-12-31 22:50:16 +00:00
|
|
|
* Sat Dec 31 2005 Miloslav Trmac <mitr@redhat.com> - 0.12-1
|
|
|
|
- Update to mlocate-0.12
|
|
|
|
|
2005-12-09 22:42:02 +00:00
|
|
|
* Fri Dec 09 2005 Jesse Keating <jkeating@redhat.com>
|
|
|
|
- rebuilt
|
|
|
|
|
2005-12-01 23:24:05 +00:00
|
|
|
* Fri Dec 2 2005 Miloslav Trmac <mitr@redhat.com> - 0.11-2
|
|
|
|
- Comment out DAILY_UPDATE from updatedb.conf (#174693)
|
|
|
|
|
2005-11-10 01:52:16 +00:00
|
|
|
* Thu Nov 10 2005 Miloslav Trmac <mitr@redhat.com> - 0.11-1
|
|
|
|
- Update to mlocate-0.11
|
|
|
|
- Add scriptlets to create group slocate
|
|
|
|
|
|
|
|
* Thu Jul 28 2005 Miloslav Trmac <mitr@volny.cz> - 0.10-0.testing.1
|
|
|
|
- Update to mlocate-0.10
|
|
|
|
|
|
|
|
* Thu Jul 28 2005 Miloslav Trmac <mitr@volny.cz> - 0.09-0.testing.1
|
|
|
|
- Initial build.
|