Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 1441765 Details for
Bug 1490881
notmuch-0.26.2 is available
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
notmuch-0.26.2.spec
notmuch.spec (text/x-matlab), 15.09 KB, created by
Dan Čermák
on 2018-05-26 06:41:04 UTC
(
hide
)
Description:
notmuch-0.26.2.spec
Filename:
MIME Type:
Creator:
Dan Čermák
Created:
2018-05-26 06:41:04 UTC
Size:
15.09 KB
patch
obsolete
>%if 0%{?fedora} >%global with_python3 1 >%endif > >%if 0%{?rhel} && 0%{?rhel} <= 6 >%{!?__python2: %global __python2 /usr/bin/python2} >%{!?python2_sitelib: %global python2_sitelib %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib())")} >%{!?python2_sitearch: %global python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print(get_python_lib(1))")} >%endif > >Name: notmuch >Version: 0.26.2 >Release: 0%{?dist} >Summary: System for indexing, searching, and tagging email >Group: Applications/Internet >License: GPLv3+ >URL: https://notmuchmail.org/ >Source0: https://notmuchmail.org/releases/notmuch-%{version}.tar.gz > ># These should be removed in Fedora 26 >Obsoletes: notmuch-deliver < 0.19-5 >Provides: notmuch-deliver >= 0.19-5 > >BuildRequires: bash-completion >BuildRequires: emacs >BuildRequires: emacs-el >BuildRequires: emacs-nox >BuildRequires: glib libtool >%if 0%{?fedora} >= 27 >BuildRequires: gmime30-devel >%else >BuildRequires: gmime-devel >%endif >BuildRequires: libtalloc-devel >BuildRequires: perl-interpreter >BuildRequires: perl-generators >BuildRequires: perl-podlators >BuildRequires: python2-devel >BuildRequires: python2-docutils >BuildRequires: python2-sphinx >BuildRequires: ruby-devel >BuildRequires: xapian-core-devel >BuildRequires: zlib-devel > >%if 0%{?with_python3} >BuildRequires: python3-devel >BuildRequires: python3-docutils >BuildRequires: python3-sphinx >%endif > >%description >Fast system for indexing, searching, and tagging email. Even if you >receive 12000 messages per month or have on the order of millions of >messages that you've been saving for decades, Notmuch will be able to >quickly search all of it. > >Notmuch is not much of an email program. It doesn't receive messages >(no POP or IMAP support). It doesn't send messages (no mail composer, >no network code at all). And for what it does do (email search) that >work is provided by an external library, Xapian. So if Notmuch >provides no user interface and Xapian does all the heavy lifting, then >what's left here? Not much. > >%package devel >Summary: Development libraries and header files for the Notmuch library >Group: Development/Libraries >Requires: %{name} = %{version}-%{release} > >%description devel >Notmuch-devel contains the development libraries and header files for >Notmuch email program. These libraries and header files are >necessary if you plan to do development using Notmuch. > >Install notmuch-devel if you are developing C programs which will use the >Notmuch library. You'll also need to install the notmuch package. > >%package -n emacs-notmuch >Summary: Not much support for Emacs >Group: Applications/Editors >BuildArch: noarch >Requires: %{name} = %{version}-%{release} >Requires: emacs(bin) >= %{_emacs_version} > >%description -n emacs-notmuch >%{summary}. > >%package -n python2-notmuch >Summary: Python2 bindings for notmuch >%{?python_provide:%python_provide python2-notmuch} > >Requires: python2 > >%description -n python2-notmuch >%{summary}. > >%if 0%{?with_python3} >%package -n python3-notmuch >Summary: Python3 bindings for notmuch >%{?python_provide:%python_provide python3-notmuch} > >Requires: python3 > >%description -n python3-notmuch >%{summary}. >%endif > >%package -n ruby-notmuch >Summary: Ruby bindings for notmuch >Group: Development/Libraries >Requires: %{name} = %{version}-%{release} > >%description -n ruby-notmuch >%{summary}. > >%package mutt >Summary: Notmuch (of a) helper for Mutt >Group: Development/Libraries >BuildArch: noarch >Requires: %{name} = %{version}-%{release} >Requires: perl(Term::ReadLine::Gnu) > >%description mutt >notmuch-mutt provide integration among the Mutt mail user agent and >the Notmuch mail indexer. > >%package vim >Summary: A Vim plugin for notmuch >Group: Applications/Editors >Requires: %{name} = %{version}-%{release} >Requires: rubygem-mail >Requires: vim-enhanced ># Required for updating helptags in scriptlets. >Requires(post): vim-enhanced >Requires(postun): vim-enhanced > >%description vim >notmuch-vim is a Vim plugin that provides a fully usable mail client >interface, utilizing the notmuch framework. > >%prep >%setup -q > >%build ># The %%configure macro cannot be used because notmuch doesn't support ># some arguments the macro adds to the ./configure call. >./configure --prefix=%{_prefix} --sysconfdir=%{_sysconfdir} \ > --libdir=%{_libdir} --mandir=%{_mandir} --includedir=%{_includedir} \ > --emacslispdir=%{_emacs_sitelispdir} >make %{?_smp_mflags} CFLAGS="%{optflags} -fPIC" > ># Build the python bindings >pushd bindings/python > %py2_build > %if 0%{?with_python3} > %py3_build > %endif >popd > ># Build notmuch-mutt >pushd contrib/notmuch-mutt > make >popd > >%install >make install DESTDIR=%{buildroot} > ># Enable dynamic library stripping. >find %{buildroot}%{_libdir} -name *.so* -exec chmod 755 {} \; > ># Install the python bindings and documentation >pushd bindings/python > %py2_install > %if 0%{?with_python3} > %py3_install > %endif >popd > ># Install the ruby bindings >pushd bindings/ruby > make install DESTDIR=%{buildroot} >popd > ># Install notmuch-mutt >install -m0755 contrib/notmuch-mutt/notmuch-mutt \ > %{buildroot}%{_bindir}/notmuch-mutt >install -m0644 contrib/notmuch-mutt/notmuch-mutt.1 \ > %{buildroot}%{_mandir}/man1/notmuch-mutt.1 > ># Install notmuch-vim >pushd vim > make install DESTDIR=%{buildroot} prefix="%{_datadir}/vim/vimfiles" >popd > >rm -f %{buildroot}/%{_datadir}/applications/mimeinfo.cache > >ls -lR %{buildroot}%{_mandir} > >%post -p /sbin/ldconfig > >%postun -p /sbin/ldconfig > >%post vim >cd %{_datadir}/vim/vimfiles/doc >vim -u NONE -esX -c "helptags ." -c quit > >%postun vim >cd %{_datadir}/vim/vimfiles/doc >vim -u NONE -esX -c "helptags ." -c quit > >%files >%doc AUTHORS COPYING COPYING-GPL-3 README >%{_datadir}/zsh/functions/Completion/Unix/_notmuch >%{_datadir}/bash-completion/completions/notmuch >%{_bindir}/notmuch >%{_mandir}/man1/notmuch.1* >%{_mandir}/man1/notmuch-address.1* >%{_mandir}/man1/notmuch-config.1* >%{_mandir}/man1/notmuch-count.1* >%{_mandir}/man1/notmuch-dump.1* >%{_mandir}/man1/notmuch-insert.1* >%{_mandir}/man1/notmuch-new.1* >%{_mandir}/man1/notmuch-reindex.1* >%{_mandir}/man1/notmuch-reply.1* >%{_mandir}/man1/notmuch-restore.1* >%{_mandir}/man1/notmuch-search.1* >%{_mandir}/man1/notmuch-setup.1* >%{_mandir}/man1/notmuch-show.1* >%{_mandir}/man1/notmuch-tag.1* >%{_mandir}/man1/notmuch-compact.1* >%{_mandir}/man5/notmuch*.5* >%{_mandir}/man7/notmuch*.7* >%{_libdir}/libnotmuch.so.5* > >%files devel >%{_libdir}/libnotmuch.so >%{_includedir}/* > >%files -n emacs-notmuch >%{_emacs_sitelispdir}/*.el >%{_emacs_sitelispdir}/*.elc >%{_emacs_sitelispdir}/notmuch-logo.png >%{_mandir}/man1/notmuch-emacs-mua.1* >%{_bindir}/notmuch-emacs-mua >%{_datadir}/applications/notmuch-emacs-mua.desktop > >%files -n python2-notmuch >%doc bindings/python/README >%{python2_sitelib}/notmuch* > >%if 0%{?with_python3} >%files -n python3-notmuch >%doc bindings/python/README >%{python3_sitelib}/notmuch* >%endif > >%files -n ruby-notmuch >%{ruby_vendorarchdir}/* > >%files mutt >%{_bindir}/notmuch-mutt >%{_mandir}/man1/notmuch-mutt.1* > >%files vim >%{_datadir}/vim/vimfiles/doc/notmuch.txt >%{_datadir}/vim/vimfiles/plugin/notmuch.vim >%{_datadir}/vim/vimfiles/syntax/notmuch-compose.vim >%{_datadir}/vim/vimfiles/syntax/notmuch-folders.vim >%{_datadir}/vim/vimfiles/syntax/notmuch-git-diff.vim >%{_datadir}/vim/vimfiles/syntax/notmuch-search.vim >%{_datadir}/vim/vimfiles/syntax/notmuch-show.vim > >%changelog >* Sat May 26 2018 Dan Äermák <dan.cermak@cgc-instruments.com> - 0.26.2-0 >- new upstream version > >* Thu Feb 08 2018 Iryna Shcherbina <ishcherb@redhat.com> - 0.25-6 >- Update Python 2 dependency declarations to new packaging standards > (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3) > >* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.25-5 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild > >* Sat Jan 20 2018 Björn Esser <besser82@fedoraproject.org> - 0.25-4 >- Rebuilt for switch to libxcrypt > >* Fri Jan 05 2018 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.25-3 >- F-28: rebuild for ruby25 > >* Fri Sep 08 2017 Kalev Lember <klember@redhat.com> - 0.25-2 >- Switch to gmime 3.0 on F27+ > >* Mon Aug 21 2017 Gonéri Le Bouder <goneri@redhat.com> - 0.25-0 >- new upstream version > >* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.2-3 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild > >* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.24.2-2 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild > >* Thu Jun 01 2017 Ralph Bean <rbean@redhat.com> - 0.24.2-1 >- new version > >* Tue Apr 04 2017 Ralph Bean <rbean@redhat.com> - 0.24.1-1 >- new version > >* Mon Mar 13 2017 Ralph Bean <rbean@redhat.com> - 0.24-1 >- new version > >* Thu Mar 02 2017 Ralph Bean <rbean@redhat.com> - 0.23.7-1 >- new version > >* Tue Feb 28 2017 Ralph Bean <rbean@redhat.com> - 0.23.6-1 >- new version > >* Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.23.5-3 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild > >* Thu Jan 12 2017 VÃt Ondruch <vondruch@redhat.com> - 0.23.5-2 >- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.4 > >* Mon Jan 09 2017 Ralph Bean <rbean@redhat.com> - 0.23.5-1 >- new version > >* Mon Dec 26 2016 Peter Robinson <pbrobinson@fedoraproject.org> 0.23.3-3 >- Rebuild (xapian 1.4) > >* Mon Dec 19 2016 Miro HronÄok <mhroncok@redhat.com> - 0.23.3-2 >- Rebuild for Python 3.6 > >* Wed Nov 30 2016 Ralph Bean <rbean@redhat.com> - 0.23.3-1 >- new version > >* Mon Oct 24 2016 Ralph Bean <rbean@redhat.com> - 0.23.1-1 >- new version > >* Tue Oct 04 2016 Ralph Bean <rbean@redhat.com> - 0.23-1 >- new version > >* Tue Sep 27 2016 Ralph Bean <rbean@redhat.com> - 0.22.2-1 >- Latest upstream. > >* Tue Sep 27 2016 Ralph Bean <rbean@redhat.com> - 0.21-6 >- Fixed python3 conditional in the files section. > >* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.21-5 >- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages > >* Mon Apr 04 2016 Ralph Bean <rbean@redhat.com> - 0.21-4 >- Modernized python macros and added a python3 subpackage. > >* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.21-3 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild > >* Tue Jan 12 2016 VÃt Ondruch <vondruch@redhat.com> - 0.21-2 >- Rebuilt for https://fedoraproject.org/wiki/Changes/Ruby_2.3 > >* Fri Nov 27 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.21-1 >- Update to 0.21 >- Remove sha1 files - unused >- Ruby bindings are now built by default, so don't build them explicitly (thanks Jan SynáÄek) >- Add -fPIC to compiler flags > >* Wed Sep 16 2015 Jonathan Underwood <jonathan.underwood@gmail.com> - 0.20.2-1 >- Update to 0.20.2 >- No longer build notmuch-deliver (no longer shipped upstream) >- Add python-sphinx to BuildRequires so man pages are built > >* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.19-4 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild > >* Sat May 02 2015 Kalev Lember <kalevlember@gmail.com> - 0.19-3 >- Rebuilt for GCC 5 C++11 ABI change > >* Sat Jan 17 2015 Mamoru TASAKA <mtasaka@fedoraproject.org> - 0.19-2 >- Rebuild for https://fedoraproject.org/wiki/Changes/Ruby_2.2 > >* Sat Nov 29 2014 Jamie Nguyen <jamielinux@fedoraproject.org> - 0.19-1 >- update to upstream release 0.19 >- add notmuch-vim subpackage >- fix "self-obsoletion" due to incorrect Provides for emacs-notmuch subpackage > (and we can remove both Obsoletes and Provides anyway as no longer relevant) >- fix "non-conffile-in-etc /etc/bash_completion.d/notmuch" >- fix "install-file-in-docs /usr/share/doc/notmuch/INSTALL" >- fix "spurious-executable-perm /usr/share/man/man1/notmuch-mutt.1.gz" >- {__python} is deprecated > >* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.18.1-4 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild > >* Wed Aug 13 2014 Luke Macken <lmacken@redhat.com> - 0.18.1-3 >- Build a ruby-notmuch subpackage (#947571) > >* Wed Aug 13 2014 Luke Macken <lmacken@redhat.com> - 0.18.1-2 >- Add bash-completion, emacs, and python-docutils to the build requirements > >* Mon Jul 28 2014 Luke Macken <lmacken@redhat.com> - 0.18.1-1 >- Update to 0.18.1 (#1094701) > >* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.17-2 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild > >* Thu Feb 13 2014 Ralph Bean <rbean@redhat.com> - 0.17-1 >- Latest upstream. > >* Wed Feb 12 2014 Ralph Bean <rbean@redhat.com> - 0.16-2 >- Added install of notmuch-deliver. > >* Fri Sep 27 2013 Lars Kellogg-Stedman <lars@redhat.com> - 0.16-1 >- Updated to notmuch 0.16. > >* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.2-7 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild > >* Wed Jul 17 2013 Petr Pisar <ppisar@redhat.com> - 0.13.2-6 >- Perl 5.18 rebuild > >* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.2-5 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild > >* Mon Sep 17 2012 Karel KlÃÄ <kklic@redhat.com> - 0.13.2-4 >- notmuch-mutt requires perl(Term::Readline::Gnu) > >* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.13.2-3 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild > >* Fri Jul 13 2012 Karel KlÃÄ <kklic@redhat.com> - 0.13.2-2 >- Packaged notmuch-mutt from contrib > >* Fri Jul 13 2012 Karel KlÃÄ <kklic@redhat.com> - 0.13.2-1 >- Update to the newest release >- Merge emacs-notmuch-el into emacs-el to conform to the packaging > guidelines > >* Wed Mar 7 2012 Karel KlÃÄ <kklic@redhat.com> - 0.11.1-1 >- Update to newest release, which fixes CVE-2011-1103 > >* Mon Jan 30 2012 Stanislav Ochotnicky <sochotnicky@redhat.com> - 0.11-1 >- Latest upstream release >- Update patch so it applies > >* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.9-2 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild > >* Thu Oct 20 2011 Luke Macken <lmacken@redhat.com> - 0.9-1 >- Latest upstream release > >* Tue Aug 09 2011 Luke Macken <lmacken@redhat.com> - 0.6.1-2 >- Create a subpackage for the Python bindings > >* Thu Jul 28 2011 Karel KlÃÄ <kklic@redhat.com> - 0.6.1-1 >- Latest upstream release >- Added -gmime patch to compile with GMime 2.5.x (upstream uses GMime 2.4.x) > >* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.5-4 >- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild > >* Thu Dec 09 2010 Karel Klic <kklic@redhat.com> - 0.5-3 >- Removed local emacs %%globals, as they are not needed > >* Thu Nov 25 2010 Karel Klic <kklic@redhat.com> - 0.5-2 >- Removed BuildRoot tag >- Removed %%clean section > >* Mon Nov 15 2010 Karel Klic <kklic@redhat.com> - 0.5-1 >- New upstream release > >* Fri Oct 15 2010 Karel Klic <kklic@redhat.com> - 0.3.1-3 >- Improved the main package description. >- Various spec file improvements. > >* Fri Oct 8 2010 Karel Klic <kklic@redhat.com> - 0.3.1-2 >- Added patch that fixes linking on F13+ > >* Thu Oct 7 2010 Karel Klic <kklic@redhat.com> - 0.3.1-1 >- New version >- Splitted notmuch into several packages > >* Wed Nov 18 2009 Jeffrey C. Ollie <jeff@ocjtech.us> - 0.0-0.3.306635c2 >- First version
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1490881
:
1324856
|
1348355
|
1365259
|
1379032
| 1441765