Merge branch 'master' into f13
This commit is contained in:
commit
70f1e7fd08
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ mercurial-1.6.2.tar.gz
|
|||||||
*~
|
*~
|
||||||
/mercurial-1.6.3.tar.gz
|
/mercurial-1.6.3.tar.gz
|
||||||
/mercurial-1.6.4.tar.gz
|
/mercurial-1.6.4.tar.gz
|
||||||
|
/mercurial-1.7.tar.gz
|
||||||
|
@ -2,8 +2,8 @@
|
|||||||
|
|
||||||
Summary: Mercurial -- a distributed SCM
|
Summary: Mercurial -- a distributed SCM
|
||||||
Name: mercurial
|
Name: mercurial
|
||||||
Version: 1.6.4
|
Version: 1.7
|
||||||
Release: 4%{?dist}
|
Release: 3%{?dist}
|
||||||
License: GPLv2+
|
License: GPLv2+
|
||||||
Group: Development/Tools
|
Group: Development/Tools
|
||||||
URL: http://www.selenic.com/mercurial/
|
URL: http://www.selenic.com/mercurial/
|
||||||
@ -12,7 +12,7 @@ Source1: mercurial-site-start.el
|
|||||||
Patch0: mercurial-i18n.patch
|
Patch0: mercurial-i18n.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
|
||||||
BuildRequires: python python-devel
|
BuildRequires: python python-devel
|
||||||
BuildRequires: emacs emacs-el pkgconfig gettext
|
BuildRequires: emacs emacs-el pkgconfig gettext python-docutils
|
||||||
Requires: python
|
Requires: python
|
||||||
Provides: hg = %{version}-%{release}
|
Provides: hg = %{version}-%{release}
|
||||||
|
|
||||||
@ -86,7 +86,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%{__python} setup.py install -O1 --root $RPM_BUILD_ROOT --prefix %{_prefix} --record=%{name}.files
|
%{__python} setup.py install -O1 --root $RPM_BUILD_ROOT --prefix %{_prefix} --record=%{name}.files
|
||||||
make install-doc DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir}
|
make install-doc DESTDIR=$RPM_BUILD_ROOT MANDIR=%{_mandir}
|
||||||
|
|
||||||
grep -v 'hgk.py*' < %{name}.files > %{name}-base.files
|
grep -v -e 'hgk.py*' -e %{python_sitearch}/mercurial/ -e %{python_sitearch}/hgext/ < %{name}.files > %{name}-base.files
|
||||||
grep 'hgk.py*' < %{name}.files > %{name}-hgk.files
|
grep 'hgk.py*' < %{name}.files > %{name}-hgk.files
|
||||||
|
|
||||||
install -D -m 755 contrib/hgk $RPM_BUILD_ROOT%{_libexecdir}/mercurial/hgk
|
install -D -m 755 contrib/hgk $RPM_BUILD_ROOT%{_libexecdir}/mercurial/hgk
|
||||||
@ -135,8 +135,6 @@ rm -rf $RPM_BUILD_ROOT%{python_sitearch}/mercurial/locale
|
|||||||
%find_lang hg
|
%find_lang hg
|
||||||
|
|
||||||
grep -v locale %{name}-base.files > %{name}-base-filtered.files
|
grep -v locale %{name}-base.files > %{name}-base-filtered.files
|
||||||
find $RPM_BUILD_ROOT%{python_sitearch}/{mercurial,hgext} -type d \
|
|
||||||
| sed -e "s|^$RPM_BUILD_ROOT\(.*\)|%%dir \1|" >> %{name}-base-filtered.files
|
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
@ -153,6 +151,8 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
%dir %{_datadir}/zsh/site-functions/
|
%dir %{_datadir}/zsh/site-functions/
|
||||||
%dir %{_sysconfdir}/mercurial
|
%dir %{_sysconfdir}/mercurial
|
||||||
%dir %{_sysconfdir}/mercurial/hgrc.d
|
%dir %{_sysconfdir}/mercurial/hgrc.d
|
||||||
|
%{python_sitearch}/mercurial
|
||||||
|
%{python_sitearch}/hgext
|
||||||
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/mergetools.rc
|
%config(noreplace) %{_sysconfdir}/mercurial/hgrc.d/mergetools.rc
|
||||||
|
|
||||||
%files -n emacs-%{pkg}
|
%files -n emacs-%{pkg}
|
||||||
@ -173,6 +173,18 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
##cd tests && %{__python} run-tests.py
|
##cd tests && %{__python} run-tests.py
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-3
|
||||||
|
- BR python-docutils
|
||||||
|
|
||||||
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7-2
|
||||||
|
- Make that 1.7
|
||||||
|
|
||||||
|
* Mon Nov 1 2010 Neal Becker <ndbecker2@gmail.com> - 1.7.0-1
|
||||||
|
- Update to 1.7.0
|
||||||
|
|
||||||
|
* Thu Oct 21 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-4
|
||||||
|
- Try another way to own directories
|
||||||
|
|
||||||
* Wed Oct 20 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
|
* Wed Oct 20 2010 Neal Becker <ndbecker2@gmail.com> - 1.6.4-3
|
||||||
- Fixup unowned directories
|
- Fixup unowned directories
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user