11009a
%{!?python2_sitearch: %define python2_sitearch %(%{__python2} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
11009a
11009a
Summary: Mercurial -- a distributed SCM
11009a
Name: mercurial
11009a
Version: 4.8.2
11009a
Release: 1%{?dist}
11009a
11009a
# Release: 1.rc1%{?dist}
11009a
11009a
%define upstreamversion %{version}
11009a
11009a
License: GPLv2+
11009a
Group: Development/Tools
11009a
URL: http://www.selenic.com/mercurial/
11009a
Source0: https://www.selenic.com/mercurial/release/%{name}-%{upstreamversion}.tar.gz
11009a
Source1: mercurial-site-start.el
11009a
Source2: blacklist
11009a
BuildRequires: python2 python2-devel bash-completion
11009a
BuildRequires: emacs-nox emacs-el pkgconfig gettext python2-docutils
11009a
BuildRequires: gcc
11009a
BuildRequires: less
11009a
Requires: python2 emacs-filesystem
11009a
Provides: hg = %{version}-%{release}
11009a
Obsoletes: emacs-mercurial <= 3.4.1, emacs-mercurial-el <= 3.4.1
11009a
Provides: emacs-mercurial <= 3.4.1, emacs-mercurial-el <= 3.4.1
11009a
11009a
%description
11009a
Mercurial is a fast, lightweight source control management system designed
11009a
for efficient handling of very large distributed projects.
11009a
11009a
Quick start: http://www.selenic.com/mercurial/wiki/index.cgi/QuickStart
11009a
Tutorial: http://www.selenic.com/mercurial/wiki/index.cgi/Tutorial
11009a
Extensions: http://www.selenic.com/mercurial/wiki/index.cgi/CategoryExtension
11009a
11009a
%define pkg mercurial
11009a
11009a
# If the emacs-el package has installed a pkgconfig file, use that to determine
11009a
11009a
%package hgk
11009a
Summary:	Hgk interface for mercurial
11009a
Group:		Development/Tools
11009a
Requires:	hg = %{version}-%{release}, tk
11009a
11009a
11009a
%description hgk
11009a
A Mercurial extension for displaying the change history graphically
11009a
using Tcl/Tk.  Displays branches and merges in an easily
11009a
understandable way and shows diffs for each revision.  Based on
11009a
gitk for the git SCM.
11009a
11009a
Adds the "hg view" command.  See
11009a
http://www.selenic.com/mercurial/wiki/index.cgi/UsingHgk for more
11009a
documentation.
11009a
11009a
%prep
11009a
%setup -q -n %{name}-%{upstreamversion}
11009a
11009a
# Patch files to use python2 instead of (since lately) non existent python binary.
11009a
sed -i 's|python|python2|' %{_builddir}/%{name}-%{version}/Makefile %{_builddir}/%{name}-%{version}/doc/Makefile
11009a
11009a
%build
11009a
# Fix python shebang in hg-ssh
11009a
sed -i -e '1s,#!.*python$,#!%{__python2},' contrib/hg-ssh
11009a
make all
11009a
11009a
%install
11009a
rm -rf $RPM_BUILD_ROOT
11009a
%{__python2} setup.py install -O1 --root $RPM_BUILD_ROOT --prefix %{_prefix} --record=%{name}.files
11009a
make install-doc DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir}
11009a
11009a
grep -v -e 'hgk.py*' -e %{python2_sitearch}/mercurial/ -e %{python2_sitearch}/hgext/ < %{name}.files > %{name}-base.files
11009a
grep 'hgk.py*' < %{name}.files > %{name}-hgk.files
11009a
11009a
install -D -m 755 contrib/hgk       $RPM_BUILD_ROOT%{_libexecdir}/mercurial/hgk
11009a
install -m 755 contrib/hg-ssh       $RPM_BUILD_ROOT%{_bindir}
11009a
11009a
bash_completion_dir=$RPM_BUILD_ROOT$(pkg-config --variable=completionsdir bash-completion)
11009a
mkdir -p $bash_completion_dir
11009a
install -m 644 contrib/bash_completion $bash_completion_dir/hg
11009a
11009a
zsh_completion_dir=$RPM_BUILD_ROOT%{_datadir}/zsh/site-functions
11009a
mkdir -p $zsh_completion_dir
11009a
install -m 644 contrib/zsh_completion $zsh_completion_dir/_mercurial
11009a
11009a
mkdir -p $RPM_BUILD_ROOT%{_emacs_sitelispdir}/mercurial
11009a
11009a
pushd contrib
11009a
for file in mercurial.el mq.el; do
11009a
  #emacs -batch -l mercurial.el --no-site-file -f batch-byte-compile $file
11009a
  %{_emacs_bytecompile} $file
11009a
  install -p -m 644 $file ${file}c $RPM_BUILD_ROOT%{_emacs_sitelispdir}/mercurial
11009a
  rm ${file}c
11009a
done
11009a
popd
11009a
11009a
11009a
11009a
mkdir -p $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
11009a
11009a
mkdir -p $RPM_BUILD_ROOT%{_emacs_sitestartdir} && install -m644 %SOURCE1 $RPM_BUILD_ROOT%{_emacs_sitestartdir}
11009a
11009a
cat >hgk.rc <
11009a
[extensions]
11009a
# enable hgk extension ('hg help' shows 'view' as a command)
11009a
hgk=
11009a
11009a
[hgk]
11009a
path=%{_libexecdir}/mercurial/hgk
11009a
EOF
11009a
install -m 644 hgk.rc $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
11009a
11009a
cat > certs.rc <
11009a
# see: http://mercurial.selenic.com/wiki/CACertificates
11009a
[web]
11009a
cacerts = /etc/pki/tls/certs/ca-bundle.crt
11009a
EOF
11009a
install -m 644 certs.rc $RPM_BUILD_ROOT/%{_sysconfdir}/mercurial/hgrc.d
11009a
11009a
mv $RPM_BUILD_ROOT%{python2_sitearch}/mercurial/locale $RPM_BUILD_ROOT%{_datadir}/locale
11009a
rm -rf $RPM_BUILD_ROOT%{python2_sitearch}/mercurial/locale
11009a
11009a
11009a
%find_lang hg
11009a
11009a
grep -v locale %{name}-base.files > %{name}-base-filtered.files
11009a
11009a
%files -f %{name}-base-filtered.files -f hg.lang
11009a
%doc CONTRIBUTORS COPYING doc/README doc/hg*.txt doc/hg*.html *.cgi contrib/*.fcgi contrib/*.wsgi
11009a
%doc %attr(644,root,root) %{_mandir}/man?/hg*.gz
11009a
%doc %attr(644,root,root) contrib/*.svg
11009a
%{_datadir}/zsh/site-functions/_mercurial
11009a
%{_bindir}/hg-ssh
11009a
%{_datadir}/bash-completion/
11009a
%dir %{_datadir}/zsh/
11009a
%{_datadir}/zsh/site-functions/
11009a
%dir %{_sysconfdir}/mercurial
11009a
%dir %{_sysconfdir}/mercurial/hgrc.d
11009a
%{python2_sitearch}/mercurial
11009a
%{python2_sitearch}/hgext
11009a
%{_emacs_sitelispdir}/mercurial
11009a
%{_emacs_sitestartdir}/*.el
11009a
11009a
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/certs.rc
11009a
11009a
%files hgk -f %{name}-hgk.files
11009a
%{_libexecdir}/mercurial/
11009a
%{_sysconfdir}/mercurial/hgrc.d/hgk.rc
11009a
11009a
%check
11009a
cd tests && %{__python2} run-tests.py -t 360 --blacklist %{SOURCE2}
11009a
11009a
%changelog
11009a
* Tue Jan 08 2019 Marcel Plch <mplch@redhat.com> - 4.8.2-1
11009a
- New release 4.8.2
11009a
- enable tests
11009a
- use https for sources
11009a
- Resolves: rhbz#1650525
11009a
11009a
* Tue Jul 31 2018 Sebastian Kisela <skisela@redhat.com> - 4.6.2-1
11009a
- New release 4.6.2.
11009a
- Convert deprecated specfile python macros to use python2 macros.
11009a
- Explicitly depend on gcc, as it was removed from buildroot default packages.
11009a
11009a
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.2-5
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
11009a
11009a
* Fri Feb 09 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 4.4.2-4
11009a
- Escape macros in %%changelog
11009a
11009a
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 4.4.2-3
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
11009a
11009a
* Tue Jan 09 2018 Iryna Shcherbina <ishcherb@redhat.com> - 4.4.2-2
11009a
- Update Python 2 dependency declarations to new packaging standards
11009a
  (See https://fedoraproject.org/wiki/FinalizingFedoraSwitchtoPython3)
11009a
11009a
* Fri Dec 29 2017 Neal Becker <nbecker@nbecker2> - 4.4.2-1
11009a
- Update to 4.4.2
11009a
11009a
* Fri Aug 11 2017 Petr Stodulka <pstodulk@redhat.com> - 4.2.3-1
11009a
- Update to 4.2.3
11009a
- Resolves: CVE-2017-1000115 CVE-2017-1000116
11009a
11009a
* Thu Aug 03 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-3
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
11009a
11009a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.2.1-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
11009a
11009a
* Mon Jun 12 2017 Neal Becker <nbecker@nbecker2> - 4.2.1-1
11009a
- Update to 4.2.1
11009a
11009a
* Mon Feb 27 2017 Neal Becker <nbecker@nbecker2> - 4.1-1
11009a
- Update to 4.1
11009a
11009a
* Fri Feb 10 2017 Fedora Release Engineering <releng@fedoraproject.org> - 4.0.1-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
11009a
11009a
* Fri Dec 23 2016 Neal Becker <nbecker@nbecker2> - 4.0.1-1
11009a
- Update to 4.0.1
11009a
11009a
* Tue Jul 19 2016 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.1-2
11009a
- https://fedoraproject.org/wiki/Changes/Automatic_Provides_for_Python_RPM_Packages
11009a
11009a
* Tue May 03 2016 Neal Becker <ndbecker2@gmail.com> - 3.8.1-1
11009a
- Update to 3.8.1
11009a
11009a
* Tue Mar 29 2016 Neal Becker <ndbecker2@gmail.com> - 3.7.3-1
11009a
- Update to 3.7.3
11009a
11009a
* Thu Feb 25 2016 Neal Becker <ndbecker2@gmail.com> - 3.7.1-1
11009a
- Update to 3.7.1
11009a
11009a
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 3.6.3-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
11009a
11009a
* Fri Jan 22 2016 Neal Becker <ndbecker2@gmail.com> - 3.6.3-1
11009a
- Update to 3.6.3
11009a
11009a
* Thu Dec 24 2015 Neal Becker <ndbecker2@gmail.com> - 3.6.2-1
11009a
- Update to 3.6.2
11009a
11009a
* Fri Sep 11 2015 Neal Becker <ndbecker2@gmail.com> - 3.5.1-1
11009a
- Update to 3.5.1
11009a
11009a
* Wed Aug 12 2015 Neal Becker <ndbecker2@gmail.com> - 3.5-1
11009a
- Update to 3.5
11009a
11009a
* Tue Jun 23 2015 Neal Becker <ndbecker2@gmail.com> - 3.4.1-1
11009a
- Update to 3.4.1
11009a
- Obsolete emacs-mercurial{-el}
11009a
- own _emacs_sitelispdir/mercurial
11009a
- use standard emacs macros
11009a
11009a
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.3.3-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
11009a
11009a
* Fri Apr  3 2015 Neal Becker <ndbecker2@gmail.com> - 3.3.3-1
11009a
- update to 3.3.3
11009a
11009a
* Mon Mar 16 2015 Neal Becker <ndbecker2@gmail.com> - 3.3.2-1
11009a
- Update to 3.3.2
11009a
- upstream dropped mergetools.rc
11009a
11009a
* Sat Jan 24 2015 Ville Skyttä <ville.skytta@iki.fi> - 3.2.3-2
11009a
- Install bash completion to %%{_datadir}/bash-completion/completions
11009a
11009a
* Sun Dec 21 2014 nbecker <ndbecker2@gmail.com> - 3.2.3-1
11009a
- Fixes CVE-2014-9390
11009a
11009a
* Tue Dec 16 2014 nbecker <ndbecker2@gmail.com> - 3.2-1
11009a
- Update to 3.2.2
11009a
11009a
* Sun Oct 19 2014 nbecker <ndbecker2@gmail.com> - 3.2-1.rc
11009a
- Patch0 no longer needed?
11009a
- Drop sample.hgrc (from upstream)
11009a
11009a
* Sun Aug 17 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-3
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
11009a
11009a
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.0-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
11009a
11009a
* Fri May 30 2014 nbecker <ndbecker2@gmail.com> - 3.0-1
11009a
- fix Release
11009a
11009a
* Fri May 30 2014 nbecker <ndbecker2@gmail.com> - 3.0-
11009a
- Update to 3.0
11009a
11009a
* Wed Feb  5 2014 nbecker <ndbecker2@gmail.com> - 2.9-1
11009a
- Update to 2.9
11009a
11009a
* Fri Nov  8 2013 nbecker <ndbecker2@gmail.com> - 2.8-1
11009a
- Update to 2.8
11009a
11009a
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.6.3-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
11009a
11009a
* Mon Jul  8 2013 nbecker <ndbecker2@gmail.com> - 2.6.3-1
11009a
- Update to 2.6.3
11009a
11009a
11009a
* Thu Jun 6 2013 nbecker <ndbecker2@gmail.com> - 2.6.2-1
11009a
- Update to 2.6.2
11009a
11009a
* Wed May  8 2013 nbecker <ndbecker2@gmail.com> - 2.6-1
11009a
- Update to 2.6
11009a
11009a
* Mon Mar 18 2013 nbecker <ndbecker2@gmail.com> - 2.5.2-2
11009a
- Add hgweb.wsgi
11009a
11009a
* Sat Mar  2 2013 nbecker <ndbecker2@gmail.com> - 2.5.2-1
11009a
- Update to 2.5.2
11009a
11009a
* Sat Feb  9 2013 Neal Becker <ndbecker2@gmail.com> - 2.5.1-1
11009a
- Update to 2.5.1
11009a
11009a
* Tue Feb  5 2013 Neal Becker <ndbecker2@gmail.com> - 2.5-1
11009a
- Update to 2.5
11009a
11009a
* Sun Dec 16 2012 Neal Becker <ndbecker2@gmail.com> - 2.4.1-1
11009a
- Update to 2.4.1
11009a
11009a
* Sun Nov  4 2012 Neal Becker <ndbecker2@gmail.com> - 2.4-1
11009a
- Update to 2.4
11009a
11009a
* Wed Sep  5 2012 Neal Becker <ndbecker2@gmail.com> - 2.3.1-1
11009a
- Update to 2.3.1
11009a
11009a
* Mon Aug 13 2012 Neal Becker <ndbecker2@gmail.com> - 2.3-1
11009a
- Update to 2.3
11009a
11009a
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.2.3-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
11009a
11009a
* Mon Jul  9 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.3-1
11009a
- Update to 2.2.3
11009a
11009a
* Sun Jun  3 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.2-1
11009a
- Update to 2.2.2
11009a
11009a
* Fri May 25 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.1-2
11009a
- Add certs.rc
11009a
11009a
* Fri May  4 2012 Neal Becker <ndbecker2@gmail.com> - 2.2.1-1
11009a
- update to 2.2.1
11009a
11009a
* Wed May  2 2012 Neal Becker <ndbecker2@gmail.com> - 2.2-1
11009a
- Update to 2.2
11009a
11009a
* Fri Apr  6 2012 Neal Becker <ndbecker2@gmail.com> - 2.1.2-1
11009a
- Update to 2.1.2
11009a
11009a
* Sat Mar 10 2012 Neal Becker <ndbecker2@gmail.com> - 2.1.1-1
11009a
- Update to 2.1.1
11009a
11009a
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.0.2-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
11009a
11009a
* Sun Jan  1 2012 Neal Becker <ndbecker2@gmail.com> - 2.0.2-1
11009a
- Update to 2.0.2
11009a
11009a
* Wed Nov 16 2011 Neal Becker <ndbecker2@gmail.com> - 2.0-1
11009a
- Update to 2.0
11009a
11009a
* Tue Oct 11 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.3-2
11009a
- Fix br 744931 (unowned dir)
11009a
11009a
* Sun Oct  2 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.3-1
11009a
- update to 1.9.3
11009a
11009a
* Sat Aug 27 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.2-1
11009a
- Update to 1.9.2
11009a
11009a
* Wed Aug  3 2011 Neal Becker <ndbecker2@gmail.com> - 1.9.1-1
11009a
- Update to 1.9.1
11009a
11009a
* Fri Jul  1 2011 Neal Becker <ndbecker2@gmail.com> - 1.9-2
11009a
- Remove docutils patch
11009a
11009a
* Fri Jul  1 2011 Neal Becker <ndbecker2@gmail.com> - 1.9-1
11009a
- Update to 1.9
11009a
11009a
* Thu Jun  2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.4-2
11009a
- Add docutils-0.8 patch
11009a
11009a
* Wed Jun  1 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.4-1
11009a
- Update to 1.8.4
11009a
11009a
* Sat Apr  2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.2-1
11009a
- update to 1.8.2
11009a
11009a
* Mon Mar 14 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.1-2
11009a
- Try BR emacs-nox
11009a
11009a
* Mon Mar 14 2011 Neal Becker <ndbecker2@gmail.com> - 1.8.1-1
11009a
- Update to 1.8.1
11009a
11009a
* Wed Mar  2 2011 Neal Becker <ndbecker2@gmail.com> - 1.8-1
11009a
- Update to 1.8
11009a
11009a
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.7.5-2
11009a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
11009a
11009a
* Sat Feb  5 2011 Neal Becker <ndbecker2@gmail.com> - 1.7.5-1
11009a
- Update to 1.7.5
11009a
11009a
* Sun Jan  2 2011 Neal Becker <ndbecker2@gmail.com> - 1.7.3-1
11009a
- Update to 1.7.3
11009a
11009a
* Thu Dec  2 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.2-1
11009a
- Update to 1.7.2
11009a
11009a
* Mon Nov 15 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.1-1
11009a
- Update to 1.7.1
11009a
11009a
* Mon Nov  1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-3
11009a
- BR python-docutils
11009a
11009a
* Mon Nov  1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-2
11009a
- Make that 1.7
11009a
11009a
* Mon Nov  1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.0-1
11009a
- Update to 1.7.0
11009a
11009a
* Thu Oct 21 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-4
11009a
- Try another way to own directories
11009a
11009a
* Wed Oct 20 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
11009a
- Fixup unowned directories
11009a
11009a
* Wed Oct  6 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
11009a
- patch i18n.py so hg will find moved locale files
11009a
11009a
* Fri Oct  1 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-1
11009a
- Update to 1.6.4
11009a
11009a
* Fri Aug 27 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.3-1
11009a
- Fix some rpmlint issues
11009a
11009a
* Thu Aug 26 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.3-1
11009a
- Update to 1.6.3
11009a
11009a
* Mon Aug  2 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.2-1
11009a
- Update to 1.6.2
11009a
11009a
* Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 1.6-4
11009a
- Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
11009a
11009a
* Sun Jul  4 2010 Neal Becker <ndbecker2@gmail.com> - 1.6-2
11009a
- Remove hg-viz, git-rev-tree
11009a
11009a
* Sun Jul  4 2010 Neal Becker <ndbecker2@gmail.com> - 1.6-1
11009a
- Update to 1.6
11009a
- git-viz is removed
11009a
11009a
* Fri Jun 25 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.4-1
11009a
- Don't install mercurial-convert-repo (use hg convert instead)
11009a
11009a
* Wed Jun  2 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.4-1
11009a
- Update to 1.5.4
11009a
11009a
* Fri May 14 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.3-1
11009a
- Update to 1.5.3
11009a
11009a
* Mon May  3 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.2-1
11009a
- update to 1.5.2
11009a
11009a
* Mon Apr  5 2010 Neal Becker <ndbecker2@gmail.com> - 1.5.1-1
11009a
- Update to 1.5.1
11009a
11009a
* Sat Mar  6 2010 Neal Becker <ndbecker2@gmail.com> - 1.5-2
11009a
- doc/ja seems to be gone
11009a
11009a
* Sat Mar  6 2010 Neal Becker <ndbecker2@gmail.com> - 1.5-1
11009a
- Update to 1.5
11009a
11009a
* Fri Feb  5 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.3-2
11009a
- License changed to gplv2+
11009a
11009a
* Mon Feb  1 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.3-1
11009a
- Update to 1.4.3
11009a
11009a
* Sat Jan  2 2010 Neal Becker <ndbecker2@gmail.com> - 1.4.2-1
11009a
- Update to 1.4.2
11009a
11009a
* Wed Dec  2 2009 Neal Becker <ndbecker2@gmail.com> - 1.4.1-1
11009a
- Update to 1.4.1
11009a
11009a
* Mon Nov 16 2009 Neal Becker <ndbecker2@gmail.com> - 1.4-1.1
11009a
- Bump to 1.4-1.1
11009a
11009a
* Mon Nov 16 2009 Neal Becker <ndbecker2@gmail.com> - 1.4-1
11009a
- Update to 1.4
11009a
11009a
* Fri Jul 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.3.1-3
11009a
- Disable self-tests
11009a
11009a
* Fri Jul 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.3.1-2
11009a
- Update to 1.3.1
11009a
11009a
* Wed Jul  1 2009 Neal Becker <ndbecker2@gmail.com> - 1.3-2
11009a
- Re-enable tests since they now pass
11009a
11009a
* Wed Jul  1 2009 Neal Becker <ndbecker2@gmail.com> - 1.3-1
11009a
- Update to 1.3
11009a
11009a
* Sat Mar 21 2009 Neal Becker <ndbecker2@gmail.com> - 1.2.1-1
11009a
- Update to 1.2.1
11009a
- Tests remain disabled due to failures
11009a
11009a
* Wed Mar  4 2009 Neal Becker <ndbecker2@gmail.com> - 1.2-2
11009a
- patch0 for filemerge bug should not be needed
11009a
11009a
* Wed Mar  4 2009 Neal Becker <ndbecker2@gmail.com> - 1.2-1
11009a
- Update to 1.2
11009a
11009a
* Tue Feb 24 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-7
11009a
- Use noreplace option on config
11009a
11009a
* Mon Feb 23 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-6
11009a
- Fix typo
11009a
11009a
* Mon Feb 23 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-5
11009a
- Own directories bash_completion.d and zsh/site-functions
11009a
  https://bugzilla.redhat.com/show_bug.cgi?id=487015
11009a
11009a
* Mon Feb  9 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-4
11009a
- Mark mergetools.rc as config
11009a
11009a
* Sat Feb  7 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-3
11009a
- Patch mergetools.rc to fix filemerge bug
11009a
11009a
* Thu Jan  1 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-2
11009a
- Rename mergetools.rc -> mergetools.rc.sample
11009a
11009a
* Thu Jan  1 2009 Neal Becker <ndbecker2@gmail.com> - 1.1.2-1
11009a
- Update to 1.1.2
11009a
11009a
* Wed Dec 24 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-3
11009a
- Install mergetools.rc as mergetools.rc.sample
11009a
11009a
* Sun Dec 21 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-2
11009a
- Fix typo
11009a
11009a
* Sun Dec 21 2008 Neal Becker <ndbecker2@gmail.com> - 1.1.1-1
11009a
- Update to 1.1.1
11009a
11009a
* Thu Dec 04 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.1-2
11009a
- Rebuild for Python 2.6
11009a
11009a
* Tue Dec  2 2008 Neal Becker <ndbecker2@gmail.com> - 1.1-1
11009a
- Update to 1.1
11009a
11009a
* Mon Dec  1 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-4
11009a
- Bump tag
11009a
11009a
* Mon Dec  1 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-3
11009a
- Remove BR asciidoc
11009a
- Use macro for python executable
11009a
11009a
* Sat Nov 29 2008 Ignacio Vazquez-Abrams <ivazqueznet+rpm@gmail.com> - 1.0.2-2
11009a
- Rebuild for Python 2.6
11009a
11009a
* Fri Aug 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.2-1
11009a
- Update to 1.0.2
11009a
11009a
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-4
11009a
- Bitten by expansion of commented out macro (again)
11009a
11009a
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-3
11009a
- Add BR pkgconfig
11009a
11009a
* Sun Jun 15 2008 Neal Becker <ndbecker2@gmail.com> - 1.0.1-2
11009a
- Update to 1.0.1
11009a
- Fix emacs_version, etc macros (need expand)
11009a
- Remove patch0
11009a
11009a
* Mon Jun  2 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-15
11009a
- Bump release tag
11009a
11009a
* Thu Apr 17 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-14
11009a
- Oops, fix %%files due to last change
11009a
11009a
* Wed Apr 16 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-13
11009a
- install mergetools.hgrc as mergetools.rc
11009a
11009a
* Sat Apr 12 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-12
11009a
- Remove xemacs pkg - this is moved to xemacs-extras
11009a
- Own %%{python_sitearch}/{mercurial,hgext} dirs
11009a
11009a
* Thu Apr 10 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-11
11009a
- Use install -p to install .el{c} files
11009a
- Don't (load mercurial) by default.
11009a
11009a
* Wed Apr  9 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-10
11009a
- Patch to hgk from Mads Kiilerich <mads@kiilerich.com>
11009a
11009a
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-9
11009a
- Add '-l mercurial.el' for emacs also
11009a
11009a
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-8
11009a
- BR xemacs-packages-extra
11009a
11009a
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-7
11009a
- Various fixes
11009a
11009a
* Tue Apr  8 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-6
11009a
- fix to comply with emacs packaging guidelines
11009a
11009a
* Thu Mar 27 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-5
11009a
- Move hgk-related py files to hgk
11009a
- Put mergetools.hgrc in /etc/mercurial/hgrc.d
11009a
- Add hgk.rc and put in /etc/mercurial/hgrc.d
11009a
11009a
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-4
11009a
- Rename mercurial-site-start -> mercurial-site-start.el
11009a
11009a
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-3
11009a
- Incorprate suggestions from hopper@omnifarious.org
11009a
11009a
* Wed Mar 26 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-2
11009a
- Add site-start
11009a
11009a
* Tue Mar 25 2008 Neal Becker <ndbecker2@gmail.com> - 1.0-1
11009a
- Update to 1.0
11009a
- Disable check for now - 1 test fails
11009a
- Move emacs to separate package
11009a
- Add check
11009a
11009a
* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.9.5-7
11009a
- Autorebuild for GCC 4.3
11009a
11009a
* Fri Nov  9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-6
11009a
- rpmlint fixes
11009a
11009a
* Fri Nov  9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-5
11009a
- /etc/mercurial/hgrc.d missing
11009a
11009a
* Fri Nov  9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-3
11009a
- Fix to last change
11009a
11009a
* Fri Nov  9 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-2
11009a
- mkdir /etc/mercurial/hgrc.d for plugins
11009a
11009a
* Tue Oct 23 2007  <ndbecker2@gmail.com> - 0.9.5-2
11009a
- Bump tag to fix confusion
11009a
11009a
* Mon Oct 15 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.5-1
11009a
- Sync with spec file from mercurial
11009a
11009a
* Sat Sep 22 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-8
11009a
- Just cp contrib tree.
11009a
- Revert install -O2
11009a
11009a
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-7
11009a
- Change setup.py install to -O2 to get bytecompile on EL-4
11009a
11009a
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-6
11009a
- Revert last change.
11009a
11009a
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-5
11009a
- Use {ghost} on contrib, otherwise EL-4 build fails
11009a
11009a
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-4
11009a
- remove {_datadir}/contrib stuff for now
11009a
11009a
* Thu Sep 20 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-3
11009a
- Fix mercurial-install-contrib.patch (/usr/share/mercurial->/usr/share/mercurial/contrib)
11009a
11009a
* Wed Aug 29 2007 Jonathan Shapiro <shap@eros-os.com> - 0.9.4-2
11009a
- update to 0.9.4-2
11009a
- install contrib directory
11009a
- set up required path for hgk
11009a
- install man5 man pages
11009a
11009a
* Thu Aug 23 2007 Neal Becker <ndbecker2@gmail.com> - 0.9.4-1
11009a
- update to 0.9.4
11009a
11009a
* Wed Jan  3 2007 Jeremy Katz <katzj@redhat.com> - 0.9.3-1
11009a
- update to 0.9.3
11009a
- remove asciidoc files now that we have them as manpages
11009a
11009a
* Mon Dec 11 2006 Jeremy Katz <katzj@redhat.com> - 0.9.2-1
11009a
- update to 0.9.2
11009a
11009a
* Mon Aug 28 2006 Jeremy Katz <katzj@redhat.com> - 0.9.1-2
11009a
- rebuild
11009a
11009a
* Tue Jul 25 2006 Jeremy Katz <katzj@redhat.com> - 0.9.1-1
11009a
- update to 0.9.1
11009a
11009a
* Fri May 12 2006 Mihai Ibanescu <misa@redhat.com> - 0.9-1
11009a
- update to 0.9
11009a
11009a
* Mon Apr 10 2006 Jeremy Katz <katzj@redhat.com> - 0.8.1-1
11009a
- update to 0.8.1
11009a
- add man pages (#188144)
11009a
11009a
* Fri Mar 17 2006 Jeremy Katz <katzj@redhat.com> - 0.8-3
11009a
- rebuild
11009a
11009a
* Fri Feb 17 2006 Jeremy Katz <katzj@redhat.com> - 0.8-2
11009a
- rebuild
11009a
11009a
* Mon Jan 30 2006 Jeremy Katz <katzj@redhat.com> - 0.8-1
11009a
- update to 0.8
11009a
11009a
* Thu Sep 22 2005 Jeremy Katz <katzj@redhat.com> 
11009a
- add contributors to %%doc
11009a
11009a
* Tue Sep 20 2005 Jeremy Katz <katzj@redhat.com> - 0.7
11009a
- update to 0.7
11009a
11009a
* Mon Aug 22 2005 Jeremy Katz <katzj@redhat.com> - 0.6c
11009a
- update to 0.6c
11009a
11009a
* Tue Jul 12 2005 Jeremy Katz <katzj@redhat.com> - 0.6b
11009a
- update to new upstream 0.6b
11009a
11009a
* Fri Jul  1 2005 Jeremy Katz <katzj@redhat.com> - 0.6-1
11009a
- Initial build.
11009a