1.7.3
This commit is contained in:
parent
8679fa0a0c
commit
7a2250f01f
@ -6,7 +6,7 @@
|
||||
#
|
||||
|
||||
PORTNAME= recoll
|
||||
PORTVERSION= 1.6.3
|
||||
PORTVERSION= 1.7.3
|
||||
CATEGORIES= deskutils
|
||||
MASTER_SITES= http://www.lesbonscomptes.com/recoll/
|
||||
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
MD5 (recoll-1.6.3.tar.gz) = 655ec89a42d5541a91e451fccc52906c
|
||||
SHA256 (recoll-1.6.3.tar.gz) = 7ad91b31ac0f9517e77eafc7f7f982065042dd357612dd3ac24cb37ac26e2ec9
|
||||
SIZE (recoll-1.6.3.tar.gz) = 662582
|
||||
MD5 (recoll-1.7.3.tar.gz) = 455dcca6dd51df033e8e8815f830faff
|
||||
SHA256 (recoll-1.7.3.tar.gz) = 567fede1b89d4377ffff31ec3cc24faa14db0c353111ed161c31b776831f3140
|
||||
SIZE (recoll-1.7.3.tar.gz) = 722699
|
||||
|
||||
@ -7,9 +7,9 @@ Features:
|
||||
* QT-based GUI.
|
||||
* Supports the following document types (and their compressed versions):
|
||||
- Natively: text, html, OpenOffice files, maildir and mailbox
|
||||
(Mozilla and Thunderbird mail ok), gaim log files.
|
||||
(Mozilla and Thunderbird mail ok) with attachments, gaim log files.
|
||||
- With external helpers: pdf (pdftotext), postscript (ghostscript),
|
||||
msword (antiword), rtf (unrtf)
|
||||
msword (antiword), excel, ppt (catdoc), rtf (unrtf),
|
||||
* Powerful query facilities, with boolean searches, phrases, filter on
|
||||
file types and directory tree.
|
||||
* Support for multiple charsets. Internal processing and storage uses
|
||||
|
||||
@ -6,6 +6,7 @@ share/icons/hicolor/48x48/apps/recoll.png
|
||||
%%DATADIR%%/doc/usermanual.html
|
||||
%%DATADIR%%/examples/mimeconf
|
||||
%%DATADIR%%/examples/mimemap
|
||||
%%DATADIR%%/examples/mimeview
|
||||
%%DATADIR%%/examples/rclmon.sh
|
||||
%%DATADIR%%/examples/recoll.conf
|
||||
%%DATADIR%%/filters/rcldjvu
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
%define name recoll
|
||||
%define version 1.6.1
|
||||
%define version 1.7.3
|
||||
%define release 0
|
||||
|
||||
Name: %{name}
|
||||
@ -61,6 +61,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
%changelog
|
||||
* Mon Jan 08 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.3-1
|
||||
- Update to release 1.7.3
|
||||
* Tue Nov 28 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.6.1-1
|
||||
- Update to release 1.6.1
|
||||
* Mon Oct 2 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.4.3-1
|
||||
|
||||
62
packaging/rpm/recollfedora.spec
Normal file
62
packaging/rpm/recollfedora.spec
Normal file
@ -0,0 +1,62 @@
|
||||
Name: recoll
|
||||
Version: 1.7.3
|
||||
Release: 1%{?dist}
|
||||
Summary: Desktop full text search tool with a qt gui
|
||||
|
||||
Group: Applications/Databases
|
||||
License: GPL
|
||||
URL: http://www.recoll.org/
|
||||
Source0: http://www.recoll.org/recoll-1.7.3.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
# Not sure how easy it is to find a xapian-core rpm. Will be easier to
|
||||
# build by hand for many. Run time uses a static link to xapian, doesnt
|
||||
# depend on libxapian.so
|
||||
BuildRequires: qt-devel
|
||||
Requires: qt
|
||||
|
||||
%description
|
||||
Recoll is a personal full text search package for Linux, FreeBSD and
|
||||
other Unix systems. It is based on a very strong backend (Xapian), for
|
||||
which it provides an easy to use, feature-rich, easy administration
|
||||
interface.
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
[ -n "$QTDIR" ] || . %{_sysconfdir}/profile.d/qt.sh
|
||||
%configure
|
||||
make %{?_smp_mflags} static
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%{_bindir}/*
|
||||
%{_datadir}/%{name}
|
||||
%{_datadir}/applications/recoll.desktop
|
||||
%{_datadir}/icons/hicolor/48x48/apps/recoll.png
|
||||
%{_mandir}/man1/recoll*
|
||||
%{_mandir}/man5/recoll*
|
||||
%doc
|
||||
|
||||
|
||||
%changelog
|
||||
* Mon Jan 08 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.3-1
|
||||
- Update to release 1.7.3
|
||||
* Tue Nov 28 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.6.1-1
|
||||
- Update to release 1.6.0
|
||||
* Mon Nov 20 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.5.11-1
|
||||
- Update to release 1.5.11
|
||||
* Mon Oct 2 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.5.2-1
|
||||
- Update to release 1.5.2
|
||||
* Fri Mar 31 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.3.2-1
|
||||
- Update to release 1.3.1
|
||||
* Wed Feb 1 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.2.0-1
|
||||
- Initial packaging
|
||||
@ -1,5 +1,5 @@
|
||||
%define name recoll
|
||||
%define version 1.6.1
|
||||
%define version 1.7.3
|
||||
%define release %mkrel 1
|
||||
|
||||
Name: %{name}
|
||||
@ -60,6 +60,8 @@ rm -rf $RPM_BUILD_ROOT
|
||||
# ---------------------------------------------------------------------------
|
||||
|
||||
%changelog
|
||||
* Mon Jan 08 2007 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.7.3-1
|
||||
- Update to release 1.7.3
|
||||
* Tue Nov 28 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.6.1-1
|
||||
- Update to release 1.6.1
|
||||
* Mon Nov 20 2006 Jean-Francois Dockes <jean-francois.dockes@wanadoo.fr> 1.5.11-1
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user